/external/syslinux/libfat/ |
D | searchdir.c | 27 struct fat_dirent *dep; in libfat_searchdir() local 37 dep = libfat_get_sector(fs, s); in libfat_searchdir() 38 if (!dep) in libfat_searchdir() 43 if (!memcmp(dep->name, name, 11)) { in libfat_searchdir() 45 memcpy(direntry->entry, dep, sizeof(*dep)); in libfat_searchdir() 49 if (read32(&dep->size) == 0) in libfat_searchdir() 52 return read16(&dep->clustlo) + in libfat_searchdir() 53 (read16(&dep->clusthi) << 16); in libfat_searchdir() 56 if (dep->name[0] == 0) in libfat_searchdir() 59 dep++; in libfat_searchdir()
|
/external/toybox/kconfig/ |
D | menu.c | 102 void menu_add_dep(struct expr *dep) in menu_add_dep() argument 104 current_entry->dep = expr_alloc_and(current_entry->dep, menu_check_dep(dep)); in menu_add_dep() 122 …uct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep) in menu_add_prop() argument 128 prop->visible.expr = menu_check_dep(dep); in menu_add_prop() 145 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) in menu_add_prompt() argument 147 return menu_add_prop(type, prompt, NULL, dep); in menu_add_prompt() 150 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument 152 menu_add_prop(type, NULL, expr, dep); in menu_add_expr() 155 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) in menu_add_symbol() argument 157 menu_add_prop(type, NULL, expr_alloc_symbol(sym), dep); in menu_add_symbol() [all …]
|
D | lkc.h | 82 void menu_add_dep(struct expr *dep); 83 …ct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep); 84 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep); 85 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep); 86 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
|
/external/kmod/libkmod/ |
D | libkmod-config.c | 97 const struct kmod_softdep *dep = l->data; in kmod_softdep_get_name() local 98 return dep->name; in kmod_softdep_get_name() 102 const struct kmod_softdep *dep = l->data; in kmod_softdep_get_pre() local 103 *count = dep->n_pre; in kmod_softdep_get_pre() 104 return dep->pre; in kmod_softdep_get_pre() 108 const struct kmod_softdep *dep = l->data; in kmod_softdep_get_post() local 109 *count = dep->n_post; in kmod_softdep_get_post() 110 return dep->post; in kmod_softdep_get_post() 263 struct kmod_softdep *dep; in kmod_config_add_softdep() local 317 dep = malloc(sizeof(struct kmod_softdep) + modnamelen + in kmod_config_add_softdep() [all …]
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_batch.c | 142 struct fd_batch *dep; in batch_flush_reset_dependencies() local 144 foreach_batch(dep, cache, batch->dependents_mask) { in batch_flush_reset_dependencies() 146 fd_batch_flush(dep, false); in batch_flush_reset_dependencies() 147 fd_batch_reference(&dep, NULL); in batch_flush_reset_dependencies() 317 struct fd_batch *dep; in batch_depends_on() local 322 foreach_batch(dep, cache, batch->dependents_mask) in batch_depends_on() 323 if (batch_depends_on(batch, dep)) in batch_depends_on() 330 batch_add_dep(struct fd_batch *batch, struct fd_batch *dep) in batch_add_dep() argument 332 if (batch->dependents_mask & (1 << dep->idx)) in batch_add_dep() 338 if (batch_depends_on(dep, batch)) { in batch_add_dep() [all …]
|
/external/syslinux/core/fs/xfs/ |
D | xfs_readdir.c | 134 xfs_dir2_data_entry_t *dep; in xfs_readdir_dir2_block() local 165 dep = (xfs_dir2_data_entry_t *)p; in xfs_readdir_dir2_block() 173 p += xfs_dir2_data_entsize(dep->namelen); in xfs_readdir_dir2_block() 177 dep = (xfs_dir2_data_entry_t *)p; in xfs_readdir_dir2_block() 179 start_name = &dep->name[0]; in xfs_readdir_dir2_block() 180 end_name = start_name + dep->namelen; in xfs_readdir_dir2_block() 182 ino = be64_to_cpu(dep->inumber); in xfs_readdir_dir2_block() 207 xfs_dir2_data_entry_t *dep; in xfs_readdir_dir2_leaf() local 256 dep = (xfs_dir2_data_entry_t *)((uint8_t *)buf + offset); in xfs_readdir_dir2_leaf() 258 start_name = &dep->name[0]; in xfs_readdir_dir2_leaf() [all …]
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | dependency_manager_unittest.py | 54 dep = 'dependency' 56 dep_info.dependency = dep 59 expected_lookup_dict = {dep: {plat: dep_info}} 67 dep = 'dependency' 71 dep_info1.dependency = dep 74 dep_info2.dependency = dep 78 expected_lookup_dict = {dep: {plat1: dep_info1, 114 dep = 'dependency' 128 dep_info_c.dependency = dep 131 start_lookup_dict = {dep: {plat1: dep_info_a, [all …]
|
/external/llvm/lib/Analysis/ |
D | MemDepPrinter.cpp | 63 static InstTypePair getInstTypePair(MemDepResult dep) { in getInstTypePair() 64 if (dep.isClobber()) in getInstTypePair() 65 return InstTypePair(dep.getInst(), Clobber); in getInstTypePair() 66 if (dep.isDef()) in getInstTypePair() 67 return InstTypePair(dep.getInst(), Def); in getInstTypePair() 68 if (dep.isNonFuncLocal()) in getInstTypePair() 69 return InstTypePair(dep.getInst(), NonFuncLocal); in getInstTypePair() 70 assert(dep.isUnknown() && "unexpected dependence type"); in getInstTypePair() 71 return InstTypePair(dep.getInst(), Unknown); in getInstTypePair()
|
/external/curl/docs/libcurl/ |
D | mksymbolsmanpage.pl | 74 my ($intro, $dep, $rem); 79 $dep = $1; 85 if($dep) { 86 print "Deprecated since $dep\n"; 89 print "Last used in $dep\n";
|
/external/llvm/utils/llvm-build/llvmbuild/ |
D | main.py | 355 self.component_info_map[dep].get_llvmconfig_component_name() 356 for dep in c.required_libraries] 359 for dep in c.add_to_library_groups: 360 entries[dep][2].append(llvmconfig_component_name) 423 ', '.join('"%s"' % dep 424 for dep in required_names))) 450 dep = self.component_info_map[name] 453 if dep.type_name == 'Library' or dep.type_name == 'OptionalLibrary': 454 yield dep 459 if dep.type_name in ('LibraryGroup', 'TargetGroup'): [all …]
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | MemDepPrinter.cpp | 64 static InstTypePair getInstTypePair(MemDepResult dep) { in getInstTypePair() 65 if (dep.isClobber()) in getInstTypePair() 66 return InstTypePair(dep.getInst(), Clobber); in getInstTypePair() 67 if (dep.isDef()) in getInstTypePair() 68 return InstTypePair(dep.getInst(), Def); in getInstTypePair() 69 if (dep.isNonFuncLocal()) in getInstTypePair() 70 return InstTypePair(dep.getInst(), NonFuncLocal); in getInstTypePair() 71 assert(dep.isUnknown() && "unexptected dependence type"); in getInstTypePair() 72 return InstTypePair(dep.getInst(), Unknown); in getInstTypePair()
|
/external/skqp/gn/ |
D | gn_to_bp_utils.py | 35 for dep in js['targets'][name]['deps']: 36 if 'third_party' in dep: 38 if 'none' in dep: 40 if exclude and exclude in dep: 42 list_to_extend.update(_strip_slash(js['targets'][dep].get(value_type, []))) 43 GrabDependentValues(js, dep, value_type, list_to_extend, exclude)
|
/external/skia/gn/ |
D | gn_to_bp_utils.py | 35 for dep in js['targets'][name]['deps']: 36 if 'third_party' in dep: 38 if 'none' in dep: 40 if exclude and exclude in dep: 42 list_to_extend.update(_strip_slash(js['targets'][dep].get(value_type, []))) 43 GrabDependentValues(js, dep, value_type, list_to_extend, exclude)
|
/external/icu/icu4c/source/test/depstest/ |
D | dependencies.py | 106 for dep in line.split(): 107 _CheckGroupName(dep) 108 dep_item = items.get(dep) 111 "library or library group %s") % (_line_number, dep)) 114 items[dep] = {"type": "group"} 115 if library_name: items[dep]["library"] = library_name 116 _groups_to_be_defined.add(dep) 117 item_deps.add(dep)
|
/external/autotest/scheduler/ |
D | rdb_lib.py | 47 for dep in self._job_deps.get(job_id, []): 48 if not provision.is_for_special_action(self._labels[dep].name): 49 job_deps.append(dep) 50 elif provision.Provision.acts_on(self._labels[dep].name): 51 job_preferred_deps.append(dep)
|
/external/perfetto/tools/ |
D | gen_android_bp | 428 for dep in target['deps']: 429 if desc[dep]['type'] != 'executable': 431 _, executable = os.path.split(desc[dep]['outputs'][0]) 435 label_to_module_name(dep) 437 source_module.tools.append(label_to_module_name(dep)) 439 create_modules_from_target(blueprint, desc, dep) 518 for dep in resolve_dependencies(desc, target_name): 519 apply_module_dependency(blueprint, desc, module, dep) 543 for dep in target.get('deps', []): 544 resolved_deps.add(dep) [all …]
|
/external/e2fsprogs/lib/e2p/ |
D | iod.c | 32 struct dirent *de, *dep; in iterate_on_dir() local 61 while ((dep = readdir (dir))) { in iterate_on_dir() 63 len = dep->d_reclen; in iterate_on_dir() 69 memcpy(de, dep, len); in iterate_on_dir()
|
/external/kmod/man/ |
D | Makefile.am | 1 MAN5 = depmod.d.5 modprobe.d.5 modules.dep.5 3 MAN_STUB = modules.dep.bin.5 13 modules.dep.bin.5: modules.dep.5
|
/external/chromium-trace/catapult/common/battor/bin/ |
D | upload_battor_binaries.py | 25 def UploadBinary(arch, path, config, dep): argument 30 print ' dep: %s' % dep 33 dep, arch, path, version=None, execute_job=True) 50 UploadBinary(args.arch, args.path, args.config, args.dep)
|
/external/skia/infra/bots/ |
D | recipes.py | 149 dep, recipes_path = parse(repo_root, recipes_cfg_path) 150 if dep is None: 154 url = dep.url 160 revision = dep.revision 161 subpath = dep.path_override 162 branch = dep.branch
|
/external/skqp/infra/bots/ |
D | recipes.py | 149 dep, recipes_path = parse(repo_root, recipes_cfg_path) 150 if dep is None: 154 url = dep.url 160 revision = dep.revision 161 subpath = dep.path_override 162 branch = dep.branch
|
/external/clang/test/Modules/Inputs/ |
D | relative-dep-gen.modulemap | 1 module "relative-dep-gen" { 2 header "relative-dep-gen-1.h" 3 header "relative-dep-gen-2.h"
|
D | relative-dep-gen-cwd.modulemap | 1 module "relative-dep-gen" { 2 header "Inputs/relative-dep-gen-1.h" 3 header "Inputs/relative-dep-gen-2.h"
|
/external/libdrm/amdgpu/ |
D | amdgpu_cs.c | 261 struct drm_amdgpu_cs_chunk_dep *dep = &dependencies[i]; in amdgpu_cs_submit_one() local 262 dep->ip_type = info->ip_type; in amdgpu_cs_submit_one() 263 dep->ip_instance = info->ip_instance; in amdgpu_cs_submit_one() 264 dep->ring = info->ring; in amdgpu_cs_submit_one() 265 dep->ctx_id = info->context->id; in amdgpu_cs_submit_one() 266 dep->handle = info->fence; in amdgpu_cs_submit_one() 291 struct drm_amdgpu_cs_chunk_dep *dep = &sem_dependencies[sem_count++]; in amdgpu_cs_submit_one() local 292 dep->ip_type = info->ip_type; in amdgpu_cs_submit_one() 293 dep->ip_instance = info->ip_instance; in amdgpu_cs_submit_one() 294 dep->ring = info->ring; in amdgpu_cs_submit_one() [all …]
|
/external/autotest/client/site_tests/camera_HAL3/ |
D | camera_HAL3.py | 20 dep = 'camera_hal3' variable in camera_HAL3 30 self.dep_dir = os.path.join(self.autodir, 'deps', self.dep) 31 self.job.setup_dep([self.dep]) 38 self.job.install_pkg(self.dep, 'dep', self.dep_dir)
|