Home
last modified time | relevance | path

Searched refs:mod (Results 1 – 25 of 2046) sorted by relevance

12345678910>>...82

/third_party/elfutils/libdwfl/
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, false, in mod_verify_build_id()
177 mod->main.elf), 2)) in mod_verify_build_id()
[all …]
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->eh_cfi != NULL) in __libdwfl_module_free()
[all …]
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->symdata; in __libdwfl_getsym()
69 symxndxdata = mod->symxndxdata; in __libdwfl_getsym()
[all …]
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, shdr->sh_addr); in cache_sections()
145 if (mod->e_type == ET_REL in cache_sections()
[all …]
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, addr); in addrarange()
98 size_t l = 0, u = mod->naranges; in addrarange()
[all …]
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->main.elf, false); in dwfl_module_getelf()
54 if (mod->debug.elf == mod->main.elf) in dwfl_module_getelf()
55 mod->debug.relocated = true; in dwfl_module_getelf()
[all …]
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
68 assert (mod != NULL); in __libdwfl_find_build_id()
70 int result = __libdwfl_find_elf_build_id (mod, elf, &build_id_bits, in __libdwfl_find_build_id()
76 ? mod->main_bias : 0); in __libdwfl_find_build_id()
[all …]
/third_party/typescript/tests/baselines/reference/
DjsdocTypeFromChainedAssignment2.symbols2 var mod = require('./mod');
3 >mod : Symbol(mod, Decl(use.js, 0, 3))
5 >'./mod' : Symbol(mod, Decl(mod.js, 0, 0))
7 mod.f('no')
8 >mod.f : Symbol(mod.f, Decl(mod.js, 0, 0))
9 >mod : Symbol(mod, Decl(use.js, 0, 3))
10 >f : Symbol(mod.f, Decl(mod.js, 0, 0))
12 mod.g('also no')
13 >mod.g : Symbol(mod.g, Decl(mod.js, 1, 11))
14 >mod : Symbol(mod, Decl(use.js, 0, 3))
[all …]
DchainedPrototypeAssignment.symbols3 var mod = require('./mod');
4 >mod : Symbol(mod, Decl(use.js, 1, 3))
6 >'./mod' : Symbol(mod, Decl(mod.js, 0, 0))
8 var a = new mod.A()
10 >mod.A : Symbol(mod.A, Decl(mod.js, 6, 1))
11 >mod : Symbol(mod, Decl(use.js, 1, 3))
12 >A : Symbol(mod.A, Decl(mod.js, 6, 1))
14 var b = new mod.B()
16 >mod.B : Symbol(mod.B, Decl(mod.js, 7, 13))
17 >mod : Symbol(mod, Decl(use.js, 1, 3))
[all …]
DesModuleIntersectionCrash.symbols1 === tests/cases/compiler/mod.d.ts ===
3 >modObj : Symbol(modObj, Decl(mod.d.ts, 1, 13), Decl(mod.d.ts, 1, 42))
6 >modObj : Symbol(modObj, Decl(mod.d.ts, 1, 13), Decl(mod.d.ts, 1, 42))
7 >modObj : Symbol(modObj, Decl(mod.d.ts, 1, 13), Decl(mod.d.ts, 1, 42))
8 >A : Symbol(modObj.A, Decl(mod.d.ts, 2, 26))
9 >modObj : Symbol(modObj, Decl(mod.d.ts, 1, 13), Decl(mod.d.ts, 1, 42))
10 >B : Symbol(modObj.B, Decl(mod.d.ts, 3, 40))
13 >modObj : Symbol(modObj, Decl(mod.d.ts, 1, 13), Decl(mod.d.ts, 1, 42))
16 >A : Symbol(A, Decl(mod.d.ts, 2, 26))
17 >a : Symbol(A.a, Decl(mod.d.ts, 3, 27))
[all …]
DcheckOtherObjectAssignProperty.types2 const mod = require("./mod1");
3 >mod : typeof mod
4 >require("./mod1") : typeof mod
8 mod.thing;
9 >mod.thing : number
10 >mod : typeof mod
13 mod.other;
14 >mod.other : any
15 >mod : typeof mod
18 mod.prop;
[all …]
DcheckOtherObjectAssignProperty.symbols2 const mod = require("./mod1");
3 >mod : Symbol(mod, Decl(importer.js, 0, 5))
5 >"./mod1" : Symbol(mod, Decl(mod1.js, 0, 0))
7 mod.thing;
8 >mod.thing : Symbol(mod.thing, Decl(mod1.js, 0, 42))
9 >mod : Symbol(mod, Decl(importer.js, 0, 5))
10 >thing : Symbol(mod.thing, Decl(mod1.js, 0, 42))
12 mod.other;
13 >mod : Symbol(mod, Decl(importer.js, 0, 5))
15 mod.prop;
[all …]
DmoduleExportNestedNamespaces.symbols1 === tests/cases/conformance/salsa/mod.js ===
3 >module.exports.n : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 15))
4 >module.exports : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 15))
5 >module : Symbol(module, Decl(mod.js, 0, 0))
6 >exports : Symbol(module.exports, Decl(mod.js, 0, 0))
7 >n : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 15))
10 >module.exports.n.K : Symbol(n.K, Decl(mod.js, 0, 22))
11 >module.exports.n : Symbol(n.K, Decl(mod.js, 0, 22))
12 >module.exports : Symbol(module.exports, Decl(mod.js, 0, 0))
13 >module : Symbol(module, Decl(mod.js, 0, 0))
[all …]
DexportNestedNamespaces.symbols1 === tests/cases/conformance/salsa/mod.js ===
3 >exports.n : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 8))
4 >exports : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 8))
5 >n : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 8))
8 >exports.n.K : Symbol(n.K, Decl(mod.js, 0, 15))
9 >exports.n : Symbol(n.K, Decl(mod.js, 0, 15))
10 >exports : Symbol("tests/cases/conformance/salsa/mod", Decl(mod.js, 0, 0))
11 >n : Symbol(n, Decl(mod.js, 0, 0), Decl(mod.js, 1, 8))
12 >K : Symbol(n.K, Decl(mod.js, 0, 15))
15 >this.x : Symbol(K.x, Decl(mod.js, 1, 27))
[all …]
DmoduleExportAssignment7.errors.txt1 …sa/index.ts(2,24): error TS2694: Namespace '"tests/cases/conformance/salsa/mod".export=' has no ex…
2 …sa/index.ts(3,24): error TS2694: Namespace '"tests/cases/conformance/salsa/mod".export=' has no ex…
3 …sa/index.ts(4,24): error TS2694: Namespace '"tests/cases/conformance/salsa/mod".export=' has no ex…
4 …sa/index.ts(5,24): error TS2694: Namespace '"tests/cases/conformance/salsa/mod".export=' has no ex…
5 …sa/index.ts(6,24): error TS2694: Namespace '"tests/cases/conformance/salsa/mod".export=' has no ex…
6 …sa/index.ts(8,24): error TS2694: Namespace '"tests/cases/conformance/salsa/mod".export=' has no ex…
7 …a/index.ts(19,31): error TS2694: Namespace '"tests/cases/conformance/salsa/mod".export=' has no ex…
8 …sa/main.js(20,35): error TS2694: Namespace '"tests/cases/conformance/salsa/mod".export=' has no ex…
11 ==== tests/cases/conformance/salsa/mod.js (0 errors) ====
27 * @param {import("./mod").Thing} a
[all …]
DjsdocTypeFromChainedAssignment2.types2 var mod = require('./mod');
3 >mod : typeof mod
4 >require('./mod') : typeof mod
6 >'./mod' : "./mod"
8 mod.f('no')
9 >mod.f('no') : number
10 >mod.f : (n: number) => number
11 >mod : typeof mod
15 mod.g('also no')
16 >mod.g('also no') : number
[all …]
DnodeModulesTypesVersionPackageExports(module=node16).js5 import * as mod from "inner";
6 mod.correctVersionApplied;
10 import * as mod from "inner";
11 mod.correctVersionApplied;
15 import * as mod from "inner";
16 mod.correctVersionApplied;
56 import * as mod from "inner";
57 mod.correctVersionApplied;
60 import * as mod from "inner";
61 mod.correctVersionApplied;
[all …]
DnodeModulesTypesVersionPackageExports(module=nodenext).js5 import * as mod from "inner";
6 mod.correctVersionApplied;
10 import * as mod from "inner";
11 mod.correctVersionApplied;
15 import * as mod from "inner";
16 mod.correctVersionApplied;
56 import * as mod from "inner";
57 mod.correctVersionApplied;
60 import * as mod from "inner";
61 mod.correctVersionApplied;
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DMutablePatternModifierTest.java28 MutablePatternModifier mod = new MutablePatternModifier(false); in basic() local
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()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
DMutablePatternModifierTest.java31 MutablePatternModifier mod = new MutablePatternModifier(false); in basic() local
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()
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dnumbertest_patternmodifier.cpp25 MutablePatternModifier mod(false); in testBasic() local
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, status)); in testBasic()
[all …]
/third_party/elfutils/libcpu/defs/
Di38616 %mask {mod} 2
74 1000000{w},{mod}010{r_m},{imm}:adc{w} {imm}{w},{mod}{r_m}{w}
75 1000001{w},{mod}010{r_m},{imms8}:adc{w} {imms8},{mod}{r_m}
76 0001000{w},{mod}{reg}{r_m}:adc {reg}{w},{mod}{r_m}{w}
77 0001001{w},{mod}{reg}{r_m}:adc {mod}{r_m}{w},{reg}{w}
79 1000000{w},{mod}000{r_m},{imm}:add{w} {imm}{w},{mod}{r_m}{w}
80 10000011,{mod}000{r_m},{imms8}:add{w} {imms8},{mod}{r_m}
81 0000000{w},{mod}{reg}{r_m}:add {reg}{w},{mod}{r_m}{w}
82 0000001{w},{mod}{reg}{r_m}:add {mod}{r_m}{w},{reg}{w}
86 1000000{w},{mod}100{r_m},{imm}:and{w} {imm}{w},{mod}{r_m}{w}
[all …]
/third_party/skia/
Dgo.sum1 cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
2 cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
3 cloud.google.com/go v0.37.4/go.mod h1:NHPJ89PdicEuT9hdPXMROBD91xc5uRDxsMtSB16k7hw=
5 cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=
7 cloud.google.com/go v0.43.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg=
9 cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=
10 cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=
12 cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=
14 cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0=
15 cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To=
[all …]
/third_party/skia/third_party/externals/tint/tools/src/
Dgo.sum1 github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA=
3 github.com/Microsoft/go-winio v0.4.16/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0=
5 github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7/go.mod h1:z4/9nQmJSSwwds7ejkxaJw…
7 github.com/acomagu/bufpipe v1.0.3/go.mod h1:mxdxdup/WdsKVreO5GpW4+M/1CE2sMG4jeGJ2sYmHc4=
9 github.com/andygrunwald/go-gerrit v0.0.0-20210709065208-9d38b0be0268/go.mod h1:aqcjwEnmLLSalFNYR0p2…
11 github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0U…
13 github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7…
14 github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
15 github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
17 github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
[all …]
/third_party/mesa3d/src/microsoft/compiler/
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 … 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, psv->cols_and_start & 0xf); // Number of columns in fill_SV_param_nodes()
[all …]

12345678910>>...82