Home
last modified time | relevance | path

Searched refs:mod (Results 1 - 25 of 768) sorted by relevance

12345678910>>...31

/third_party/elfutils/libdwfl/
H A Ddwfl_module_getdwarf.c76 open_elf (Dwfl_Module *mod, struct dwfl_file *file) in open_elf() argument
155 if (file == &mod->main) in open_elf()
157 mod->e_type = ehdr->e_type; in open_elf()
160 if (mod->e_type == ET_EXEC && file->vaddr != mod->low_addr) in open_elf()
161 mod->e_type = ET_DYN; in open_elf()
164 assert (mod->main.elf != NULL); in open_elf()
172 mod_verify_build_id (Dwfl_Module *mod) in mod_verify_build_id() argument
174 assert (mod->build_id_len > 0); in mod_verify_build_id()
176 switch (__builtin_expect (__libdwfl_find_build_id (mod, fals in mod_verify_build_id()
210 __libdwfl_getelf(Dwfl_Module *mod) __libdwfl_getelf() argument
273 find_prelink_address_sync(Dwfl_Module *mod, struct dwfl_file *file) find_prelink_address_sync() argument
528 find_debuginfo(Dwfl_Module *mod) find_debuginfo() argument
554 find_debug_altlink(Dwfl_Module *mod, const char *filename) find_debug_altlink() argument
702 translate_offs(GElf_Addr adjust, Dwfl_Module *mod, size_t phnum, GElf_Addr addrs[i_max], GElf_Xword strsz, GElf_Ehdr *ehdr) translate_offs() argument
824 find_dynsym(Dwfl_Module *mod) find_dynsym() argument
906 find_aux_address_sync(Dwfl_Module *mod) find_aux_address_sync() argument
1052 find_symtab(Dwfl_Module *mod) find_symtab() argument
1302 __libdwfl_module_getebl(Dwfl_Module *mod) __libdwfl_module_getebl() argument
1319 load_dw(Dwfl_Module *mod, struct dwfl_file *debugfile) load_dw() argument
1379 find_dw(Dwfl_Module *mod) find_dw() argument
1441 dwfl_module_getdwarf(Dwfl_Module *mod, Dwarf_Addr *bias) dwfl_module_getdwarf() argument
[all...]
H A Ddwfl_module.c62 __libdwfl_module_free (Dwfl_Module *mod) in __libdwfl_module_free() argument
64 if (mod->lazy_cu_root != NULL) in __libdwfl_module_free()
65 tdestroy (mod->lazy_cu_root, nofree); in __libdwfl_module_free()
67 if (mod->aranges != NULL) in __libdwfl_module_free()
68 free (mod->aranges); in __libdwfl_module_free()
70 if (mod->cu != NULL) in __libdwfl_module_free()
72 for (size_t i = 0; i < mod->ncu; ++i) in __libdwfl_module_free()
73 free_cu (mod->cu[i]); in __libdwfl_module_free()
74 free (mod->cu); in __libdwfl_module_free()
79 if (mod in __libdwfl_module_free()
148 use(Dwfl_Module *mod, Dwfl_Module **tailp, Dwfl *dwfl) use() argument
187 Dwfl_Module *mod = calloc (1, sizeof *mod); dwfl_report_module() local
[all...]
H A Ddwfl_module_getsym.c37 __libdwfl_getsym (Dwfl_Module *mod, int ndx, GElf_Sym *sym, GElf_Addr *addr, in __libdwfl_getsym() argument
41 if (unlikely (mod == NULL)) in __libdwfl_getsym()
44 if (unlikely (mod->symdata == NULL)) in __libdwfl_getsym()
46 int result = INTUSE(dwfl_module_getsymtab) (mod); in __libdwfl_getsym()
57 int skip_aux_zero = (mod->syments > 0 && mod->aux_syments > 0) ? 1 : 0; in __libdwfl_getsym()
62 if (mod->aux_symdata == NULL in __libdwfl_getsym()
63 || ndx < mod->first_global) in __libdwfl_getsym()
67 elf = mod->symfile->elf; in __libdwfl_getsym()
68 symdata = mod in __libdwfl_getsym()
201 dwfl_module_getsym_info(Dwfl_Module *mod, int ndx, GElf_Sym *sym, GElf_Addr *addr, GElf_Word *shndxp, Elf **elfp, Dwarf_Addr *bias) dwfl_module_getsym_info() argument
[all...]
H A Ddwfl_module_getelf.c36 dwfl_module_getelf (Dwfl_Module *mod, GElf_Addr *loadbase) in dwfl_module_getelf() argument
38 if (mod == NULL) in dwfl_module_getelf()
41 __libdwfl_getelf (mod); in dwfl_module_getelf()
42 if (mod->elferr == DWFL_E_NOERROR) in dwfl_module_getelf()
44 if (mod->e_type == ET_REL && ! mod->main.relocated) in dwfl_module_getelf()
49 mod->main.relocated = true; in dwfl_module_getelf()
50 if (likely (__libdwfl_module_getebl (mod) == DWFL_E_NOERROR)) in dwfl_module_getelf()
52 (void) __libdwfl_relocate (mod, mod in dwfl_module_getelf()
[all...]
H A Ddwfl_module_build_id.c36 found_build_id (Dwfl_Module *mod, bool set, in found_build_id() argument
43 return 1 + (mod->build_id_len == len in found_build_id()
44 && !memcmp (bits, mod->build_id_bits, len)); in found_build_id()
53 mod->build_id_bits = memcpy (copy, bits, len); in found_build_id()
54 mod->build_id_vaddr = vaddr; in found_build_id()
55 mod->build_id_len = len; in found_build_id()
61 __libdwfl_find_build_id (Dwfl_Module *mod, bool set, Elf *elf) in __libdwfl_find_build_id() argument
67 /* For mod == NULL use dwelf_elf_gnu_build_id directly. */ in __libdwfl_find_build_id()
68 assert (mod != NULL); in __libdwfl_find_build_id()
70 int result = __libdwfl_find_elf_build_id (mod, el in __libdwfl_find_build_id()
82 dwfl_module_build_id(Dwfl_Module *mod, const unsigned char **bits, GElf_Addr *vaddr) dwfl_module_build_id() argument
[all...]
H A Dcu.c40 dwar (Dwfl_Module *mod, unsigned int idx) in dwar() argument
42 return &mod->dw->aranges->info[mod->aranges[idx].arange]; in dwar()
47 addrarange (Dwfl_Module *mod, Dwarf_Addr addr, struct dwfl_arange **arange) in addrarange() argument
49 if (mod->aranges == NULL) in addrarange()
54 if (INTUSE(dwarf_getaranges) (mod->dw, &dwaranges, &naranges) != 0) in addrarange()
85 mod->naranges = naranges; in addrarange()
87 mod->aranges = (realloc (aranges, naranges * sizeof aranges[0]) in addrarange()
91 mod->lazycu += naranges; in addrarange()
95 addr = dwfl_deadjust_dwarf_addr (mod, add in addrarange()
148 less_lazy(Dwfl_Module *mod) less_lazy() argument
174 intern_cu(Dwfl_Module *mod, Dwarf_Off cuoff, struct dwfl_cu **result) intern_cu() argument
245 __libdwfl_nextcu(Dwfl_Module *mod, struct dwfl_cu *lastcu, struct dwfl_cu **cu) __libdwfl_nextcu() argument
295 arangecu(Dwfl_Module *mod, struct dwfl_arange *arange, struct dwfl_cu **cu) arangecu() argument
313 __libdwfl_addrcu(Dwfl_Module *mod, Dwarf_Addr addr, struct dwfl_cu **cu) __libdwfl_addrcu() argument
[all...]
H A Dderelocate.c80 cache_sections (Dwfl_Module *mod) in cache_sections() argument
82 if (likely (mod->reloc_info != NULL)) in cache_sections()
83 return mod->reloc_info->count; in cache_sections()
89 if (unlikely (elf_getshdrstrndx (mod->main.elf, &shstrndx) < 0)) in cache_sections()
99 while ((scn = elf_nextscn (mod->main.elf, scn)) != NULL) in cache_sections()
107 && mod->e_type == ET_REL) in cache_sections()
110 if (__libdwfl_relocate_value (mod, mod->main.elf, &shstrndx, in cache_sections()
121 const char *name = elf_strptr (mod->main.elf, shstrndx, in cache_sections()
138 newref->start = dwfl_adjusted_address (mod, shd in cache_sections()
237 dwfl_module_relocations(Dwfl_Module *mod) dwfl_module_relocations() argument
259 dwfl_module_relocation_info(Dwfl_Module *mod, unsigned int idx, Elf32_Word *shndxp) dwfl_module_relocation_info() argument
297 check_module(Dwfl_Module *mod) check_module() argument
331 find_section(Dwfl_Module *mod, Dwarf_Addr *addr) find_section() argument
368 __libdwfl_find_section_ndx(Dwfl_Module *mod, Dwarf_Addr *addr) __libdwfl_find_section_ndx() argument
378 dwfl_module_relocate_address(Dwfl_Module *mod, Dwarf_Addr *addr) dwfl_module_relocate_address() argument
[all...]
H A Dfind-debuginfo.c89 validate (Dwfl_Module *mod, int fd, bool check, GElf_Word debuglink_crc) in validate() argument
92 if (mod->dw != NULL) in validate()
97 ssize_t build_id_len = INTUSE(dwelf_dwarf_gnu_debugaltlink) (mod->dw, in validate()
105 Dwfl_Error error = __libdw_open_file (&fd, &mod->alt_elf, in validate()
112 ssize_t alt_len = INTUSE(dwelf_elf_gnu_build_id) (mod->alt_elf, in validate()
120 elf_end (mod->alt_elf); in validate()
121 mod->alt_elf = NULL; in validate()
131 if (mod->build_id_len > 0) in validate()
137 mod->debug.valid = false; in validate()
138 Dwfl_Error error = __libdw_open_file (&fd, &mod in validate()
161 find_debuginfo_in_path(Dwfl_Module *mod, const char *file_name, const char *debuglink_file, GElf_Word debuglink_crc, char **debuginfo_file_name) find_debuginfo_in_path() argument
348 dwfl_standard_find_debuginfo(Dwfl_Module *mod, void **userdata __attribute__ ((unused)), const char *modname __attribute__ ((unused)), GElf_Addr base __attribute__ ((unused)), const char *file_name, const char *debuglink_file, GElf_Word debuglink_crc, char **debuginfo_file_name) dwfl_standard_find_debuginfo() argument
[all...]
H A Ddwfl_build_id_find_elf.c41 __libdwfl_open_by_build_id (Dwfl_Module *mod, bool debug, char **file_name, in __libdwfl_open_by_build_id() argument
75 const Dwfl_Callbacks *const cb = mod->dwfl->callbacks; in __libdwfl_open_by_build_id()
128 __libdwfl_open_mod_by_build_id (Dwfl_Module *mod, bool debug, char **file_name) in __libdwfl_open_mod_by_build_id() argument
133 if (mod->build_id_len <= 0) in __libdwfl_open_mod_by_build_id()
136 const size_t id_len = mod->build_id_len; in __libdwfl_open_mod_by_build_id()
137 const uint8_t *id = mod->build_id_bits; in __libdwfl_open_mod_by_build_id()
139 return __libdwfl_open_by_build_id (mod, debug, file_name, id_len, id); in __libdwfl_open_mod_by_build_id()
143 dwfl_build_id_find_elf (Dwfl_Module *mod, in dwfl_build_id_find_elf() argument
150 if (mod->is_executable in dwfl_build_id_find_elf()
151 && mod in dwfl_build_id_find_elf()
[all...]
H A Ddwfl_nextcu.c42 Dwfl_Module *mod; in dwfl_nextcu() local
46 mod = dwfl->modulelist; in dwfl_nextcu()
50 mod = cu->mod; in dwfl_nextcu()
55 error = __libdwfl_nextcu (mod, cu, &cu); in dwfl_nextcu()
61 *bias = dwfl_adjusted_dwarf_addr (mod, 0); in dwfl_nextcu()
67 mod = mod->next; in dwfl_nextcu()
70 if (mod == NULL) in dwfl_nextcu()
73 if (mod in dwfl_nextcu()
[all...]
H A Doffline.c44 dwfl_offline_section_address (Dwfl_Module *mod, in dwfl_offline_section_address() argument
53 assert (mod->e_type == ET_REL); in dwfl_offline_section_address()
58 if (mod->debug.elf == NULL) in dwfl_offline_section_address()
66 Elf_Scn *ourscn = elf_getscn (mod->debug.elf, shndx); in dwfl_offline_section_address()
69 while ((scn = elf_nextscn (mod->debug.elf, scn)) != ourscn) in dwfl_offline_section_address()
81 while ((scn = elf_nextscn (mod->main.elf, scn)) != NULL) in dwfl_offline_section_address()
135 Dwfl_Module *mod = __libdwfl_report_elf (dwfl, name, file_name, fd, elf, in process_elf() local
138 if (mod != NULL) in process_elf()
146 if ((dwfl->offline_next_address >= mod->low_addr in process_elf()
147 || mod in process_elf()
168 process_archive_member(Dwfl *dwfl, const char *name, const char *file_name, int (*predicate) (const char *module, const char *file), int fd, Elf *member, Dwfl_Module **mod) process_archive_member() argument
254 Dwfl_Module *mod = NULL; process_archive() local
292 Dwfl_Module *mod = process_file (dwfl, name, file_name, fd, elf, predicate); __libdwfl_report_offline() local
342 Dwfl_Module *mod = process_file (dwfl, name, file_name, -1, elf, NULL); INTDEF() local
[all...]
H A Ddwfl_module_info.c36 dwfl_module_info (Dwfl_Module *mod, void ***userdata, in dwfl_module_info() argument
41 if (mod == NULL) in dwfl_module_info()
45 *userdata = &mod->userdata; in dwfl_module_info()
47 *start = mod->low_addr; in dwfl_module_info()
49 *end = mod->high_addr; in dwfl_module_info()
52 *dwbias = (mod->debug.elf == NULL ? (Dwarf_Addr) -1 in dwfl_module_info()
53 : dwfl_adjusted_dwarf_addr (mod, 0)); in dwfl_module_info()
55 *symbias = (mod->symfile == NULL ? (Dwarf_Addr) -1 in dwfl_module_info()
56 : dwfl_adjusted_st_value (mod, mod in dwfl_module_info()
[all...]
H A Ddwfl_build_id_find_debuginfo.c36 dwfl_build_id_find_debuginfo (Dwfl_Module *mod, in dwfl_build_id_find_debuginfo() argument
50 if (mod->dw != NULL) in dwfl_build_id_find_debuginfo()
54 ssize_t build_id_len = INTUSE(dwelf_dwarf_gnu_debugaltlink) (mod->dw, in dwfl_build_id_find_debuginfo()
58 fd = __libdwfl_open_by_build_id (mod, true, debuginfo_file_name, in dwfl_build_id_find_debuginfo()
66 Dwfl_Error error = __libdw_open_file (&fd, &mod->alt_elf, in dwfl_build_id_find_debuginfo()
73 ssize_t alt_len = INTUSE(dwelf_elf_gnu_build_id) (mod->alt_elf, in dwfl_build_id_find_debuginfo()
81 elf_end (mod->alt_elf); in dwfl_build_id_find_debuginfo()
82 mod->alt_elf = NULL; in dwfl_build_id_find_debuginfo()
99 if (INTUSE(dwfl_module_build_id) (mod, &bits, &vaddr) > 0) in dwfl_build_id_find_debuginfo()
100 fd = __libdwfl_open_mod_by_build_id (mod, tru in dwfl_build_id_find_debuginfo()
[all...]
H A DlibdwflP.h302 Dwfl_Module *mod; /* Pointer back to containing module. */ member
336 dwfl_adjusted_address (Dwfl_Module *mod, GElf_Addr addr) in dwfl_adjusted_address() argument
338 return addr + mod->main_bias; in dwfl_adjusted_address()
342 dwfl_deadjust_address (Dwfl_Module *mod, GElf_Addr addr) in dwfl_deadjust_address() argument
344 return addr - mod->main_bias; in dwfl_deadjust_address()
348 dwfl_adjusted_dwarf_addr (Dwfl_Module *mod, Dwarf_Addr addr) in dwfl_adjusted_dwarf_addr() argument
350 return dwfl_adjusted_address (mod, (addr in dwfl_adjusted_dwarf_addr()
351 - mod->debug.address_sync in dwfl_adjusted_dwarf_addr()
352 + mod->main.address_sync)); in dwfl_adjusted_dwarf_addr()
356 dwfl_deadjust_dwarf_addr (Dwfl_Module *mod, Dwarf_Add argument
364 dwfl_adjusted_aux_sym_addr(Dwfl_Module *mod, Dwarf_Addr addr) dwfl_adjusted_aux_sym_addr() argument
372 dwfl_deadjust_aux_sym_addr(Dwfl_Module *mod, Dwarf_Addr addr) dwfl_deadjust_aux_sym_addr() argument
380 dwfl_adjusted_st_value(Dwfl_Module *mod, Elf *symelf, GElf_Addr addr) dwfl_adjusted_st_value() argument
390 dwfl_deadjust_st_value(Dwfl_Module *mod, Elf *symelf, GElf_Addr addr) dwfl_deadjust_st_value() argument
[all...]
H A Ddwfl_module_eh_cfi.c37 dwfl_module_eh_cfi (Dwfl_Module *mod, Dwarf_Addr *bias) in dwfl_module_eh_cfi() argument
39 if (mod == NULL) in dwfl_module_eh_cfi()
42 if (mod->eh_cfi != NULL) in dwfl_module_eh_cfi()
44 *bias = dwfl_adjusted_address (mod, 0); in dwfl_module_eh_cfi()
45 return mod->eh_cfi; in dwfl_module_eh_cfi()
48 __libdwfl_getelf (mod); in dwfl_module_eh_cfi()
49 if (mod->elferr != DWFL_E_NOERROR) in dwfl_module_eh_cfi()
51 __libdwfl_seterrno (mod->elferr); in dwfl_module_eh_cfi()
55 *bias = dwfl_adjusted_address (mod, 0); in dwfl_module_eh_cfi()
56 return __libdwfl_set_cfi (mod, in dwfl_module_eh_cfi()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
H A DMutablePatternModifierTest.java28 MutablePatternModifier mod = new MutablePatternModifier(false); in basic()
29 mod.setPatternInfo(PatternStringParser.parseToPatternInfo("a0b"), null); in basic()
30 mod.setPatternAttributes(SignDisplay.AUTO, false, false); in basic()
31 mod.setSymbols(DecimalFormatSymbols.getInstance(ULocale.ENGLISH), in basic()
36 mod.setNumberProperties(Signum.POS, null); in basic()
37 assertEquals("a", getPrefix(mod)); in basic()
38 assertEquals("b", getSuffix(mod)); in basic()
39 mod.setPatternAttributes(SignDisplay.ALWAYS, false, false); in basic()
40 assertEquals("+a", getPrefix(mod)); in basic()
41 assertEquals("b", getSuffix(mod)); in basic()
144 getPrefix(MutablePatternModifier mod) getPrefix() argument
150 getSuffix(MutablePatternModifier mod) getSuffix() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
H A DMutablePatternModifierTest.java31 MutablePatternModifier mod = new MutablePatternModifier(false); in basic()
32 mod.setPatternInfo(PatternStringParser.parseToPatternInfo("a0b"), null); in basic()
33 mod.setPatternAttributes(SignDisplay.AUTO, false); in basic()
34 mod.setSymbols(DecimalFormatSymbols.getInstance(ULocale.ENGLISH), in basic()
39 mod.setNumberProperties(Signum.POS, null); in basic()
40 assertEquals("a", getPrefix(mod)); in basic()
41 assertEquals("b", getSuffix(mod)); in basic()
42 mod.setPatternAttributes(SignDisplay.ALWAYS, false); in basic()
43 assertEquals("+a", getPrefix(mod)); in basic()
44 assertEquals("b", getSuffix(mod)); in basic()
142 getPrefix(MutablePatternModifier mod) getPrefix() argument
148 getSuffix(MutablePatternModifier mod) getSuffix() argument
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dnumbertest_patternmodifier.cpp25 MutablePatternModifier mod(false); in testBasic()
29 mod.setPatternInfo(&patternInfo, kUndefinedField); in testBasic()
30 mod.setPatternAttributes(UNUM_SIGN_AUTO, false, false); in testBasic()
32 mod.setSymbols(&symbols, {u"USD", status}, UNUM_UNIT_WIDTH_SHORT, nullptr, status); in testBasic()
37 mod.setNumberProperties(SIGNUM_POS, StandardPlural::Form::COUNT); in testBasic()
38 assertEquals("Pattern a0b", u"a", getPrefix(mod, status)); in testBasic()
39 assertEquals("Pattern a0b", u"b", getSuffix(mod, status)); in testBasic()
40 mod.setPatternAttributes(UNUM_SIGN_ALWAYS, false, false); in testBasic()
41 assertEquals("Pattern a0b", u"+a", getPrefix(mod, status)); in testBasic()
42 assertEquals("Pattern a0b", u"b", getSuffix(mod, statu in testBasic()
198 getPrefix(const MutablePatternModifier &mod, UErrorCode &status) getPrefix() argument
205 getSuffix(const MutablePatternModifier &mod, UErrorCode &status) getSuffix() argument
[all...]
/third_party/node/deps/npm/node_modules/is-core-module/test/
H A Dindex.js32 var mod = cores[i];
33 var requireFunc = function () { require(mod); }; // eslint-disable-line no-loop-func
34 if (isCore(mod)) {
35 st.doesNotThrow(requireFunc, mod + ' supported; requiring does not throw');
37 st['throws'](requireFunc, mod + ' not supported; requiring throws');
50 var mod = libs[i];
51 st.ok(data[mod], mod + ' is a core module');
53 function () { require(mod); }, // eslint-disable-line no-loop-func
54 'requiring ' + mod
[all...]
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_signature.c439 fill_SV_param_nodes(struct dxil_module *mod, unsigned record_id, in fill_SV_param_nodes() argument
450 flattened_semantics[i] = dxil_get_metadata_int32(mod, rec->elements[i].semantic_index); in fill_SV_param_nodes()
452 SV_params_nodes[0] = dxil_get_metadata_int32(mod, (int)record_id); // Unique element ID in fill_SV_param_nodes()
453 SV_params_nodes[1] = dxil_get_metadata_string(mod, rec->name); // Element name in fill_SV_param_nodes()
454 SV_params_nodes[2] = dxil_get_metadata_int8(mod, rec->sig_comp_type); // Element type in fill_SV_param_nodes()
455 SV_params_nodes[3] = dxil_get_metadata_int8(mod, (int8_t)psv->semantic_kind); // Effective system value in fill_SV_param_nodes()
456 SV_params_nodes[4] = dxil_get_metadata_node(mod, flattened_semantics, in fill_SV_param_nodes()
458 SV_params_nodes[5] = dxil_get_metadata_int8(mod, psv->interpolation_mode); // Interpolation mode in fill_SV_param_nodes()
459 SV_params_nodes[6] = dxil_get_metadata_int32(mod, psv->rows); // Number of rows in fill_SV_param_nodes()
460 SV_params_nodes[7] = dxil_get_metadata_int8(mod, ps in fill_SV_param_nodes()
509 fill_psv_signature_element(struct dxil_psv_signature_element *psv_elm, struct semantic_info *semantic, struct dxil_module *mod) fill_psv_signature_element() argument
548 fill_io_signature(struct dxil_module *mod, int id, struct semantic_info *semantic, struct dxil_signature_record *rec, struct dxil_psv_signature_element *psv_elm) fill_io_signature() argument
563 get_input_signature_group(struct dxil_module *mod, unsigned num_inputs, nir_shader *s, nir_variable_mode modes, semantic_info_proc get_semantics, unsigned *row_iter, unsigned input_clip_size) get_input_signature_group() argument
595 process_input_signature(struct dxil_module *mod, nir_shader *s, unsigned input_clip_size) process_input_signature() argument
632 process_output_signature(struct dxil_module *mod, nir_shader *s) process_output_signature() argument
712 process_patch_const_signature(struct dxil_module *mod, nir_shader *s) process_patch_const_signature() argument
759 preprocess_signatures(struct dxil_module *mod, nir_shader *s, unsigned input_clip_size) preprocess_signatures() argument
771 get_signature_metadata(struct dxil_module *mod, const struct dxil_signature_record *recs, const struct dxil_psv_signature_element *psvs, unsigned num_elements, bool is_input) get_signature_metadata() argument
789 get_signatures(struct dxil_module *mod) get_signatures() argument
[all...]
H A Ddxil_function.c125 allocate_function_from_predefined(struct dxil_module *mod, in allocate_function_from_predefined() argument
131 return dxil_alloc_func(mod, name, overload, in allocate_function_from_predefined()
141 dxil_get_function(struct dxil_module *mod, in dxil_get_function() argument
145 const struct rb_node *node = rb_tree_search(mod->functions, &descr, in dxil_get_function()
150 return allocate_function_from_predefined(mod, name, overload); in dxil_get_function()
171 get_type_from_string(struct dxil_module *mod, const char *param_descr, in get_type_from_string() argument
179 case DXIL_FUNC_PARAM_INT64: return dxil_module_get_int_type(mod, 64); in get_type_from_string()
180 case DXIL_FUNC_PARAM_INT32: return dxil_module_get_int_type(mod, 32); in get_type_from_string()
181 case DXIL_FUNC_PARAM_INT16: return dxil_module_get_int_type(mod, 16); in get_type_from_string()
182 case DXIL_FUNC_PARAM_INT8: return dxil_module_get_int_type(mod, in get_type_from_string()
206 dxil_alloc_func_with_rettype(struct dxil_module *mod, const char *name, enum overload_type overload, const struct dxil_type *retval_type, const char *param_descr, enum dxil_attr_kind attr) dxil_alloc_func_with_rettype() argument
246 dxil_alloc_func(struct dxil_module *mod, const char *name, enum overload_type overload, const char *retval_type_descr, const char *param_descr, enum dxil_attr_kind attr) dxil_alloc_func() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DexportAsNamespace4(module=commonjs).js48 var __importStar = (this && this.__importStar) || function (mod) {
49 if (mod && mod.__esModule) return mod;
51 if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
52 __setModuleDefault(result, mod);
76 var __importStar = (this && this.__importStar) || function (mod) {
[all...]
H A DjsDeclarationsReactComponents.js100 var __importDefault = (this && this.__importDefault) || function (mod) {
101 return (mod && mod.__esModule) ? mod : { "default": mod };
119 var __importDefault = (this && this.__importDefault) || function (mod) {
120 return (mod && mod.__esModule) ? mod : { "default": mod };
[all...]
/third_party/FreeBSD/sbin/fsck_msdosfs/
H A Dcheck.c53 int mod = 0; in checkfilesys() local
96 mod |= readfat(dosfs, &boot, &fat); in checkfilesys()
97 if (mod & FSFATAL) { in checkfilesys()
105 mod |= resetDosDirSection(fat); in checkfilesys()
107 if (mod & FSFATAL) in checkfilesys()
111 mod |= handleDirTree(fat); in checkfilesys()
112 if (mod & FSFATAL) in checkfilesys()
118 mod |= checklost(fat); in checkfilesys()
119 if (mod & FSFATAL) in checkfilesys()
123 if (mod in checkfilesys()
[all...]
/third_party/typescript/tests/baselines/reference/tsbuild/sample1/
H A Dinvalidates-projects-correctly.js48 import * as mod from '../core/anotherModule';
49 export const m = mod;
74 import * as mod from '../core/anotherModule';
75 export const m = mod;
189 var mod = require("../core/anotherModule"); variable
190 exports.m = mod;
195 import * as mod from '../core/anotherModule';
196 export declare const m: typeof mod;
200 {"program":{"fileNames":["../../../../a/lib/lib.d.ts","../core/index.d.ts","../core/anothermodule.d.ts","./index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true},"-9047123202-export declare const someString: string;\nexport declare function leftPad(s: string, n: number): string;\nexport declare function multiply(a: number, b: number): number;\n//# sourceMappingURL=index.d.ts.map","-4454971016-export declare const World = \"hello\";\n//# sourceMappingURL=anotherModule.d.ts.map",{"version":"-5786964698-import * as c from '../core/index';\r\nexport function getSecondsInDay() {\r\n return c.multiply(10, 15);\r\n}\r\nimport * as mod from '../core/anotherModule';\r\nexport const m = mod;\
276 var mod = require("../core/anotherModule"); global() variable
393 var mod = require("../core/anotherModule"); global() variable
497 var mod = require("../core/anotherModule"); global() variable
[all...]

Completed in 10 milliseconds

12345678910>>...31