/external/elfutils/tests/ |
D | addrcfi.c | 76 struct stuff struct 91 struct stuff *stuff = arg; in print_register() argument 98 int result = dwarf_frame_register (stuff->frame, regno, ops_mem, &ops, &nops); in print_register() 99 print_detail (result, ops, nops, stuff->bias); in print_register() 106 GElf_Addr pc, struct stuff *stuff) in handle_cfi() argument 114 int result = dwarf_cfi_addrframe (cfi, pc - stuff->bias, &stuff->frame); in handle_cfi() 124 int ra_regno = dwarf_frame_info (stuff->frame, &start, &end, &signalp); in handle_cfi() 127 start += stuff->bias; in handle_cfi() 128 end += stuff->bias; in handle_cfi() 146 result = dwarf_frame_cfa (stuff->frame, &cfa_ops, &cfa_nops); in handle_cfi() [all …]
|
/external/python/cpython3/Lib/ |
D | fnmatch.py | 100 stuff = pat[i:j] 101 if '--' not in stuff: 102 stuff = stuff.replace('\\', r'\\') 116 stuff = '-'.join(s.replace('\\', r'\\').replace('-', r'\-') 119 stuff = re.sub(r'([&~|])', r'\\\1', stuff) 121 if stuff[0] == '!': 122 stuff = '^' + stuff[1:] 123 elif stuff[0] in ('^', '['): 124 stuff = '\\' + stuff 125 res = '%s[%s]' % (res, stuff)
|
/external/u-boot/drivers/usb/gadget/ |
D | at91_udc.h | 152 # define VDBG(stuff...) do{}while(0) argument 158 # define PACKET(stuff...) do{}while(0) argument 161 #define ERR(stuff...) debug("udc: " stuff) argument 162 #define WARNING(stuff...) debug("udc: " stuff) argument 163 #define INFO(stuff...) debug("udc: " stuff) argument 164 #define DBG(stuff...) debug("udc: " stuff) argument
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/MergeFunc/ |
D | ptr-int-transitivity-1.ll | 4 declare void @stuff() 8 call void @stuff() 9 call void @stuff() 10 call void @stuff() 16 call void @stuff() 17 call void @stuff() 18 call void @stuff()
|
D | ptr-int-transitivity-3.ll | 4 declare void @stuff() 8 call void @stuff() 9 call void @stuff() 10 call void @stuff() 16 call void @stuff() 17 call void @stuff() 18 call void @stuff()
|
D | merge-ptr-and-int.ll | 5 declare void @stuff() 10 call void @stuff() 11 call void @stuff() 12 call void @stuff() 22 call void @stuff() 23 call void @stuff() 24 call void @stuff()
|
D | ptr-int-transitivity-2.ll | 4 declare void @stuff() 8 call void @stuff() 9 call void @stuff() 10 call void @stuff() 20 call void @stuff() 21 call void @stuff() 22 call void @stuff()
|
D | inline-asm.ll | 14 declare void @stuff() 19 call void @stuff() 25 call void @stuff() 32 call void @stuff() 38 call void @stuff() 45 call void @stuff() 51 call void @stuff()
|
/external/llvm/test/Transforms/MergeFunc/ |
D | ptr-int-transitivity-3.ll | 4 declare void @stuff() 8 call void @stuff() 9 call void @stuff() 10 call void @stuff() 16 call void @stuff() 17 call void @stuff() 18 call void @stuff()
|
D | ptr-int-transitivity-1.ll | 4 declare void @stuff() 8 call void @stuff() 9 call void @stuff() 10 call void @stuff() 16 call void @stuff() 17 call void @stuff() 18 call void @stuff()
|
D | merge-ptr-and-int.ll | 5 declare void @stuff() 10 call void @stuff() 11 call void @stuff() 12 call void @stuff() 22 call void @stuff() 23 call void @stuff() 24 call void @stuff()
|
D | ptr-int-transitivity-2.ll | 4 declare void @stuff() 8 call void @stuff() 9 call void @stuff() 10 call void @stuff() 20 call void @stuff() 21 call void @stuff() 22 call void @stuff()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | pr21792.ll | 7 @stuff = external constant [256 x double], align 16 16 ; CHECK-NEXT: leaq stuff(%r8), %rdi 18 ; CHECK-NEXT: leaq stuff(%rax), %rsi 21 ; CHECK-NEXT: leaq stuff(%rdx), %rdx 22 ; CHECK-NEXT: leaq stuff(%rcx), %rcx 23 ; CHECK-NEXT: leaq stuff+8(%r8), %r8 24 ; CHECK-NEXT: leaq stuff+8(%rax), %r9 35 %add.ptr = getelementptr inbounds i8, i8* bitcast ([256 x double]* @stuff to i8*), i64 %idx.ext 39 %add.ptr6 = getelementptr inbounds i8, i8* bitcast ([256 x double]* @stuff to i8*), i64 %idx.ext5 43 …%add.ptr15 = getelementptr inbounds i8, i8* bitcast ([256 x double]* @stuff to i8*), i64 %idx.ext14 [all …]
|
/external/python/cpython2/Lib/ |
D | fnmatch.py | 111 stuff = pat[i:j].replace('\\','\\\\') 113 if stuff[0] == '!': 114 stuff = '^' + stuff[1:] 115 elif stuff[0] == '^': 116 stuff = '\\' + stuff 117 res = '%s[%s]' % (res, stuff)
|
D | ihooks.py | 118 stuff = self.find_module_in_dir(name, dir) 119 if stuff: return stuff 142 def load_module(self, name, stuff): argument 143 file, filename, info = stuff 246 stuff = self.find_module_in_dir("__init__", fullname, 0) 247 if stuff: 248 file = stuff[0] 261 def load_module(self, name, stuff): argument 262 file, filename, info = stuff 290 def load_module(self, name, stuff): argument [all …]
|
/external/bc/tests/bc/ |
D | void.txt | 1 define void stuff(x) { 9 stuff(0) 10 stuff(1) 11 stuff(2.2839) 12 stuff(-9.9289389)
|
/external/toybox/lib/ |
D | env.c | 105 char *s, *stuff[] = {"TERM", "DISPLAY", "COLORTERM", "XAUTHORITY"}; in reset_env() local 107 for (i=0; i<ARRAY_LEN(stuff); i++) in reset_env() 108 stuff[i] = (s = getenv(stuff[i])) ? xmprintf("%s=%s", stuff[i], s) : 0; in reset_env() 110 for (i=0; i < ARRAY_LEN(stuff); i++) if (stuff[i]) xsetenv(stuff[i], 0); in reset_env()
|
/external/clang/test/SemaCXX/ |
D | constexpr-duffs-device.cpp | 20 char stuff[14]; member 21 constexpr S() : stuff{} { in S() 22 copy("Hello, world!", 14, stuff); 31 static_assert(streq(S().stuff, "Hello, world!"), "should be same"); 32 static_assert(!streq(S().stuff, "Something else"), "should be different");
|
/external/autotest/client/deps/fakegudev/src/ |
D | fakesyscalls-exercise.c | 18 const char *stuff = "stuff"; in main() local 19 const int stuff_len = strlen(stuff) + 1; in main() 33 if (write (f, stuff, stuff_len) < stuff_len) { in main() 50 } else if (strncmp (stuff, read_back, stuff_len) != 0) { in main() 54 stuff, read_back); in main()
|
/external/pdfium/core/fxcrt/ |
D | pdfium_span_unittest.cpp | 12 int stuff[] = {1, 2, 3}; in TEST() local 13 pdfium::span<int> stuff_span(stuff); in TEST() 25 int stuff[] = {1, 2, 3}; in TEST() local 26 pdfium::span<int> stuff_span(stuff); in TEST()
|
/external/clang/test/Modules/Inputs/submodules-merge-defs/ |
D | module.modulemap | 1 module "stuff" { 10 // Do not re-export stuff.use 11 use "stuff" 16 use "stuff"
|
/external/llvm/test/CodeGen/X86/ |
D | pr21792.ll | 5 @stuff = external constant [256 x double], align 16 14 %add.ptr = getelementptr inbounds i8, i8* bitcast ([256 x double]* @stuff to i8*), i64 %idx.ext 18 %add.ptr6 = getelementptr inbounds i8, i8* bitcast ([256 x double]* @stuff to i8*), i64 %idx.ext5 22 …%add.ptr15 = getelementptr inbounds i8, i8* bitcast ([256 x double]* @stuff to i8*), i64 %idx.ext14 26 …%add.ptr20 = getelementptr inbounds i8, i8* bitcast ([256 x double]* @stuff to i8*), i64 %idx.ext19 28 …bitcast (double* getelementptr inbounds ([256 x double], [256 x double]* @stuff, i64 0, i64 1) to … 30 …bitcast (double* getelementptr inbounds ([256 x double], [256 x double]* @stuff, i64 0, i64 1) to …
|
/external/clang/test/Analysis/ |
D | malloc-annotations.c | 22 struct stuff { struct 25 struct stuff myglobalstuff; argument 74 struct stuff mystuff; in af1_d() 83 void af1_f(struct stuff *somestuff) { in af1_f() 88 void af1_g(struct stuff **pps) { in af1_g() 89 *pps = my_malloc(sizeof(struct stuff)); // no-warning in af1_g()
|
/external/python/pyasn1/ |
D | .gitignore | 1 # Python stuff 14 # PyCharm stuff 20 # Eclipse stuff
|
/external/toybox/scripts/ |
D | mkstatus.py | 24 stuff,blah=readit(["sed","-n", 's/<span id=\\([a-z_]*\\)>/\\1 /;t good;d;:good;h;:loop;n;s@</span>@… variable 34 for i in stuff: 35 for j in stuff[i]: 113 for i in stuff: 116 for j in stuff[i]:
|