| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/ |
| H A D | qlocationutils.cpp | 66 QList<QByteArray> parts = sentence.split(','); in qlocationutils_readGga() local 69 if (hasFix && parts.count() > 6 && parts[6].count() > 0) in qlocationutils_readGga() 70 *hasFix = parts[6].toInt() > 0; in qlocationutils_readGga() 72 if (parts.count() > 1 && parts[1].count() > 0) { in qlocationutils_readGga() 74 if (QLocationUtils::getNmeaTime(parts[1], &time)) in qlocationutils_readGga() 78 if (parts.count() > 5 && parts[3].count() == 1 && parts[5].count() == 1) { in qlocationutils_readGga() 81 … if (QLocationUtils::getNmeaLatLong(parts[2], parts[3][0], parts[4], parts[5][0], &lat, &lng)) { in qlocationutils_readGga() 87 if (parts.count() > 8 && !parts[8].isEmpty()) { in qlocationutils_readGga() 89 double hdop = parts[8].toDouble(&hasHdop); in qlocationutils_readGga() 94 if (parts.count() > 9 && parts[9].count() > 0) { in qlocationutils_readGga() [all …]
|
| /OK3568_Linux_fs/kernel/block/ |
| H A D | cmdline-parser.c | 79 static void free_subpart(struct cmdline_parts *parts) in free_subpart() argument 83 while (parts->subpart) { in free_subpart() 84 subpart = parts->subpart; in free_subpart() 85 parts->subpart = subpart->next_subpart; in free_subpart() 90 static int parse_parts(struct cmdline_parts **parts, const char *bdevdef) in parse_parts() argument 99 *parts = NULL; in parse_parts() 142 *parts = newparts; in parse_parts() 151 void cmdline_parts_free(struct cmdline_parts **parts) in cmdline_parts_free() argument 155 while (*parts) { in cmdline_parts_free() 156 next_parts = (*parts)->next_parts; in cmdline_parts_free() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/mtd/parsers/ |
| H A D | cmdlinepart.c | 23 * <size> and <offset> can be specified such that the parts are out of order 26 * The parts are assigned MTD numbers in the order they are specified in the 63 struct mtd_partition *parts; member 89 struct mtd_partition *parts; in newpart() local 169 parts = newpart(s + 1, &s, num_parts, this_part + 1, in newpart() 171 if (IS_ERR(parts)) in newpart() 172 return parts; in newpart() 181 parts = kzalloc(alloc_size, GFP_KERNEL); in newpart() 182 if (!parts) in newpart() 184 extra_mem = (unsigned char *)(parts + *num_parts); in newpart() [all …]
|
| H A D | ofpart.c | 28 struct mtd_partition *parts; in parse_fixed_partitions() local 70 parts = kcalloc(nr_parts, sizeof(*parts), GFP_KERNEL); in parse_fixed_partitions() 71 if (!parts) in parse_fixed_partitions() 105 parts[i].offset = of_read_number(reg, a_cells); in parse_fixed_partitions() 106 parts[i].size = of_read_number(reg + a_cells, s_cells); in parse_fixed_partitions() 107 parts[i].of_node = pp; in parse_fixed_partitions() 112 parts[i].name = partname; in parse_fixed_partitions() 115 parts[i].mask_flags |= MTD_WRITEABLE; in parse_fixed_partitions() 118 parts[i].mask_flags |= MTD_POWERUP_LOCK; in parse_fixed_partitions() 121 parts[i].add_flags |= MTD_SLC_ON_MLC_EMULATION; in parse_fixed_partitions() [all …]
|
| H A D | bcm63xxpart.c | 83 struct mtd_partition *parts; in bcm63xx_parse_cfe_nor_partitions() local 96 parts = kzalloc(sizeof(*parts) * nrparts + 10 * nrparts, GFP_KERNEL); in bcm63xx_parse_cfe_nor_partitions() 97 if (!parts) in bcm63xx_parse_cfe_nor_partitions() 101 parts[curpart].name = "CFE"; in bcm63xx_parse_cfe_nor_partitions() 102 parts[curpart].offset = 0; in bcm63xx_parse_cfe_nor_partitions() 103 parts[curpart].size = cfelen; in bcm63xx_parse_cfe_nor_partitions() 106 parts[curpart].name = "nvram"; in bcm63xx_parse_cfe_nor_partitions() 107 parts[curpart].offset = master->size - nvramlen; in bcm63xx_parse_cfe_nor_partitions() 108 parts[curpart].size = nvramlen; in bcm63xx_parse_cfe_nor_partitions() 112 parts[curpart].name = "linux"; in bcm63xx_parse_cfe_nor_partitions() [all …]
|
| H A D | parser_trx.c | 54 struct mtd_partition *parts; in parser_trx_parse() local 61 parts = kcalloc(TRX_PARSER_MAX_PARTS, sizeof(struct mtd_partition), in parser_trx_parse() 63 if (!parts) in parser_trx_parse() 69 kfree(parts); in parser_trx_parse() 74 kfree(parts); in parser_trx_parse() 80 part = &parts[curr_part++]; in parser_trx_parse() 87 part = &parts[curr_part++]; in parser_trx_parse() 94 part = &parts[curr_part++]; in parser_trx_parse() 106 parts[i + 1].offset : mtd->size; in parser_trx_parse() 108 parts[i].size = next_part_offset - parts[i].offset; in parser_trx_parse() [all …]
|
| H A D | parser_imagetag.c | 66 struct mtd_partition *parts; in bcm963xx_parse_imagetag_partitions() local 153 parts = kzalloc(sizeof(*parts) * nrparts + 10 * nrparts, GFP_KERNEL); in bcm963xx_parse_imagetag_partitions() 154 if (!parts) { in bcm963xx_parse_imagetag_partitions() 165 parts[kernelpart].name = "kernel"; in bcm963xx_parse_imagetag_partitions() 166 parts[kernelpart].offset = kerneladdr; in bcm963xx_parse_imagetag_partitions() 167 parts[kernelpart].size = kernellen; in bcm963xx_parse_imagetag_partitions() 176 parts[rootfspart].name = "rootfs"; in bcm963xx_parse_imagetag_partitions() 177 parts[rootfspart].offset = rootfsaddr; in bcm963xx_parse_imagetag_partitions() 178 parts[rootfspart].size = rootfslen; in bcm963xx_parse_imagetag_partitions() 180 parts[rootfspart].size += sparelen; in bcm963xx_parse_imagetag_partitions() [all …]
|
| H A D | bcm47xxpart.c | 90 struct mtd_partition *parts; in bcm47xxpart_parse() local 109 parts = kcalloc(BCM47XXPART_MAX_PARTS, sizeof(struct mtd_partition), in bcm47xxpart_parse() 111 if (!parts) in bcm47xxpart_parse() 116 kfree(parts); in bcm47xxpart_parse() 144 bcm47xxpart_add_part(&parts[curr_part++], "boot", in bcm47xxpart_parse() 154 bcm47xxpart_add_part(&parts[curr_part++], "board_data", in bcm47xxpart_parse() 161 bcm47xxpart_add_part(&parts[curr_part++], "factory", in bcm47xxpart_parse() 169 bcm47xxpart_add_part(&parts[curr_part++], "POT", offset, in bcm47xxpart_parse() 177 bcm47xxpart_add_part(&parts[curr_part++], "ML", offset, in bcm47xxpart_parse() 193 bcm47xxpart_add_part(&parts[curr_part++], "firmware", in bcm47xxpart_parse() [all …]
|
| H A D | redboot.c | 78 struct mtd_partition *parts; in parse_redboot_partitions() local 243 parts = kzalloc(sizeof(*parts)*nrparts + nulllen + namelen, GFP_KERNEL); in parse_redboot_partitions() 245 if (!parts) { in parse_redboot_partitions() 250 nullname = (char *)&parts[nrparts]; in parse_redboot_partitions() 262 parts[0].name = nullname; in parse_redboot_partitions() 263 parts[0].size = fl->img->flash_base; in parse_redboot_partitions() 264 parts[0].offset = 0; in parse_redboot_partitions() 269 parts[i].size = fl->img->size; in parse_redboot_partitions() 270 parts[i].offset = fl->img->flash_base; in parse_redboot_partitions() 271 parts[i].name = names; in parse_redboot_partitions() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/alchemy/devboards/ |
| H A D | platform.c | 157 struct mtd_partition *parts; in db1x_register_norflash() local 165 parts = kcalloc(5, sizeof(struct mtd_partition), GFP_KERNEL); in db1x_register_norflash() 166 if (!parts) in db1x_register_norflash() 192 parts[i].offset = 0; in db1x_register_norflash() 193 parts[i].name = "User FS"; in db1x_register_norflash() 194 parts[i].size = size / 2; in db1x_register_norflash() 198 parts[i].offset = MTDPART_OFS_APPEND; in db1x_register_norflash() 199 parts[i].name = "User FS 2"; in db1x_register_norflash() 200 parts[i].size = (size / 2) - (0x20000000 - 0x1fc00000); in db1x_register_norflash() 203 parts[i].offset = MTDPART_OFS_APPEND; in db1x_register_norflash() [all …]
|
| /OK3568_Linux_fs/device/rockchip/common/build-hooks/ |
| H A D | 05-partitions.sh | 5 normalized_usage | grep -v "^mod-parts" 24 case "${SUB_CMD:-print-parts}" in 26 print-parts) 30 edit-parts) FUNC=rk_partition_edit ;; 31 new-parts) FUNC=rk_partition_create ;; 56 echo -e "print-parts \tprint partitions" 57 echo -e "mod-parts \tinteractive partition table modify" 58 echo -e "edit-parts \tedit raw partitions" 59 echo -e "new-parts:<offset>:<name>:<size>...\tre-create partitions" 67 PRE_BUILD_CMDS="print-parts mod-parts edit-parts new-parts insert-part del-part move-part rename-pa… [all …]
|
| /OK3568_Linux_fs/device/rockchip/common/scripts/ |
| H A D | mk-partitions.sh | 5 normalized_usage | grep -v "^mod-parts" 24 case "${SUB_CMD:-print-parts}" in 26 print-parts) 30 edit-parts) FUNC=rk_partition_edit ;; 31 new-parts) FUNC=rk_partition_create ;; 56 echo -e "print-parts \tprint partitions" 57 echo -e "mod-parts \tinteractive partition table modify" 58 echo -e "edit-parts \tedit raw partitions" 59 echo -e "new-parts:<offset>:<name>:<size>...\tre-create partitions" 67 PRE_BUILD_CMDS="print-parts mod-parts edit-parts new-parts insert-part del-part move-part rename-pa… [all …]
|
| /OK3568_Linux_fs/kernel/block/partitions/ |
| H A D | cmdline.c | 38 info = &state->parts[slot].info; in add_part() 48 state->parts[slot].has_info = true; in add_part() 92 for (; slot < state->limit && state->parts[slot].has_info; slot++) { in cmdline_parts_verifier() 93 for (i = slot+1; i < state->limit && state->parts[i].has_info; in cmdline_parts_verifier() 95 if (has_overlaps(state->parts[slot].from, in cmdline_parts_verifier() 96 state->parts[slot].size, in cmdline_parts_verifier() 97 state->parts[i].from, in cmdline_parts_verifier() 98 state->parts[i].size)) { in cmdline_parts_verifier() 105 state->parts[slot].info.volname, in cmdline_parts_verifier() 106 (u64)state->parts[slot].from << 9, in cmdline_parts_verifier() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/regulator/ |
| H A D | qcom_rpm-regulator.c | 45 (((reg)->parts->fm.mask >> (reg)->parts->fm.shift) == 3) 53 const struct rpm_reg_parts *parts; member 203 vreg->parts->request_len); in rpm_reg_write() 210 const struct rpm_reg_parts *parts = vreg->parts; in rpm_reg_set_mV_sel() local 211 const struct request_member *req = &parts->mV; in rpm_reg_set_mV_sel() 237 const struct rpm_reg_parts *parts = vreg->parts; in rpm_reg_set_uV_sel() local 238 const struct request_member *req = &parts->uV; in rpm_reg_set_uV_sel() 270 const struct rpm_reg_parts *parts = vreg->parts; in rpm_reg_mV_enable() local 271 const struct request_member *req = &parts->mV; in rpm_reg_mV_enable() 289 const struct rpm_reg_parts *parts = vreg->parts; in rpm_reg_uV_enable() local [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/debianutils/ |
| H A D | debianutils_5.7.bb | 30 for app in run-parts; do 38 PACKAGES =+ "${PN}-run-parts" 39 FILES:${PN}-run-parts = "${base_bindir}/run-parts.debianutils" 41 RDEPENDS:${PN} += "${PN}-run-parts" 47 ALTERNATIVE_PRIORITY_${PN}-run-parts = "60" 48 ALTERNATIVE:${PN}-run-parts = "run-parts" 56 ALTERNATIVE_LINK_NAME[run-parts] = "${base_bindir}/run-parts"
|
| /OK3568_Linux_fs/external/common_algorithm/audio/rkap_3a/lib/ |
| HD | libRKAP_3A.so | ... d Gain = %d ---- AEC Parts ---- ---- Echo Parts ... |
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geojsonvt/6.5.1/include/mapbox/geojsonvt/ |
| H A D | clip.hpp | 30 vt_multi_line_string parts; in operator ()() local 31 clipLine(line, parts); in operator ()() 32 if (parts.size() == 1) in operator ()() 33 return parts[0]; in operator ()() 35 return parts; in operator ()() 39 vt_multi_line_string parts; in operator ()() local 41 clipLine(line, parts); in operator ()() 43 if (parts.size() == 1) in operator ()() 44 return parts[0]; in operator ()() 46 return parts; in operator ()() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlxsw/ |
| H A D | spectrum1_kvdl.c | 67 struct mlxsw_sp1_kvdl_part *parts[MLXSW_SP1_KVDL_PARTS_INFO_LEN]; member 78 part = kvdl->parts[i]; in mlxsw_sp1_kvdl_alloc_size_part() 95 part = kvdl->parts[i]; in mlxsw_sp1_kvdl_index_part() 254 kvdl->parts[i] = mlxsw_sp1_kvdl_part_init(mlxsw_sp, info, in mlxsw_sp1_kvdl_parts_init() 256 if (IS_ERR(kvdl->parts[i])) { in mlxsw_sp1_kvdl_parts_init() 257 err = PTR_ERR(kvdl->parts[i]); in mlxsw_sp1_kvdl_parts_init() 260 part_prev = kvdl->parts[i]; in mlxsw_sp1_kvdl_parts_init() 266 mlxsw_sp1_kvdl_part_fini(kvdl->parts[i]); in mlxsw_sp1_kvdl_parts_init() 275 mlxsw_sp1_kvdl_part_fini(kvdl->parts[i]); in mlxsw_sp1_kvdl_parts_fini() 301 occ += mlxsw_sp1_kvdl_part_occ(kvdl->parts[i]); in mlxsw_sp1_kvdl_occ_get() [all …]
|
| /OK3568_Linux_fs/yocto/poky/scripts/tiny/ |
| H A D | ksize.py | 56 r.parts.append(oreport) 62 r.parts.append(Report.create(f, path, str(path) + "/*/built-in.[o,a]")) 63 r.parts.sort(reverse=True) 65 for b in r.parts: 82 self.parts = [] 93 for p in self.parts: 146 for b in vmlinux.parts: 147 if b.totals["total"] > 0 and len(b.parts) > 1: 150 for d in b.parts: 151 if d.totals["total"] > 0 and len(d.parts) > 1:
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/ |
| H A D | crate.py | 55 parts = ud.url.split('/') 56 if len(parts) < 5: 60 version = parts[len(parts) - 1] 62 name = parts[len(parts) - 2] 64 host = '/'.join(parts[2:len(parts) - 2])
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/ |
| H A D | fdlibm.h | 277 } parts; member 291 } parts; member 302 (ix0) = ew_u.parts.msw; \ 303 (ix1) = ew_u.parts.lsw; \ 312 (i) = gh_u.parts.msw; \ 321 (i) = gl_u.parts.lsw; \ 329 iw_u.parts.msw = (ix0); \ 330 iw_u.parts.lsw = (ix1); \ 340 sh_u.parts.msw = (v); \ 350 sl_u.parts.lsw = (v); \ [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/ |
| H A D | fdlibm.h | 277 } parts; member 291 } parts; member 302 (ix0) = ew_u.parts.msw; \ 303 (ix1) = ew_u.parts.lsw; \ 312 (i) = gh_u.parts.msw; \ 321 (i) = gl_u.parts.lsw; \ 329 iw_u.parts.msw = (ix0); \ 330 iw_u.parts.lsw = (ix1); \ 340 sh_u.parts.msw = (v); \ 350 sl_u.parts.lsw = (v); \ [all …]
|
| /OK3568_Linux_fs/kernel/arch/x86/include/asm/ |
| H A D | intel-family.h | 24 * - regular client parts 25 * _L - regular mobile parts 26 * _G - parts with extra graphics on 27 * _X - regular server parts 28 * _D - micro server parts 32 * _EP - 2 socket server parts 33 * _EX - 4+ socket server parts
|
| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | rate_poly_fir0.h | 30 …for (i = 0; p->at.parts.integer < num_in * p->L; ++i, p->at.parts.integer += p->step.parts.integer… in FUNCTION() 31 div_t divided = div(p->at.parts.integer, p->L); in FUNCTION() 40 divided2 = div(p->at.parts.integer, p->L); in FUNCTION() 42 p->at.parts.integer = divided2.rem; in FUNCTION()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/parallel/ |
| H A D | equally_split.h | 36 /** @brief function to split a sequence into parts of almost equal size. 39 * splitting positions when splitting the range [0,__n) into parts of 41 * one n. There may result empty parts. 43 * @param __num_threads Number of parts 64 /** @brief function to split a sequence into parts of almost equal size. 70 * @param __num_threads Number of parts
|