Home
last modified time | relevance | path

Searched refs:stuff (Results 1 – 25 of 732) sorted by relevance

12345678910>>...30

/external/elfutils/tests/
Daddrcfi.c76 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/
Dfnmatch.py100 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/
Dat91_udc.h152 # 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/
Dptr-int-transitivity-3.ll4 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()
Dptr-int-transitivity-1.ll4 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()
Dmerge-ptr-and-int.ll5 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()
Dptr-int-transitivity-2.ll4 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()
Dinline-asm.ll14 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/
Dptr-int-transitivity-1.ll4 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()
Dptr-int-transitivity-3.ll4 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()
Dmerge-ptr-and-int.ll5 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()
Dptr-int-transitivity-2.ll4 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/
Dpr21792.ll7 @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/
Dfnmatch.py111 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)
Dihooks.py118 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/clang/test/SemaCXX/
Dconstexpr-duffs-device.cpp20 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/
Dfakesyscalls-exercise.c18 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/clang/test/Modules/Inputs/submodules-merge-defs/
Dmodule.modulemap1 module "stuff" {
10 // Do not re-export stuff.use
11 use "stuff"
16 use "stuff"
/external/llvm/test/CodeGen/X86/
Dpr21792.ll5 @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/
Dmalloc-annotations.c22 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/cpython2/Doc/library/
Dpprint.rst58 >>> stuff = ['spam', 'eggs', 'lumberjack', 'knights', 'ni']
59 >>> stuff.insert(0, stuff[:])
61 >>> pp.pprint(stuff)
95 >>> stuff = ['spam', 'eggs', 'lumberjack', 'knights', 'ni']
96 >>> stuff.insert(0, stuff)
97 >>> pprint.pprint(stuff)
117 >>> pprint.isreadable(stuff)
135 >>> pprint.saferepr(stuff)
213 >>> stuff = ['a' * 10, tup, ['a' * 30, 'b' * 30], ['c' * 20, 'd' * 20]]
214 >>> pprint.pprint(stuff)
[all …]
/external/toybox/scripts/
Dmkstatus.py24 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]:
/external/python/pyasn1/
D.gitignore1 # Python stuff
14 # PyCharm stuff
20 # Eclipse stuff
/external/python/cpython2/Lib/test/
Dtest_pyexpat.py312 self.stuff = []
318 self.assertEqual(self.stuff, expected,
320 % (label, self.stuff, map(unicode, expected)))
323 self.stuff.append(text)
326 self.stuff.append("<%s>" % name)
334 self.stuff.append("</%s>" % name)
337 self.stuff.append("<!--%s-->" % data)
351 self.assertEqual(self.stuff, ['123'],
359 self.assertEqual(self.stuff,
365 self.assertEqual(self.stuff, ["1<2> \n 3"],
[all …]
/external/python/cpython3/Lib/test/
Dtest_pyexpat.py347 self.stuff = []
353 self.assertEqual(self.stuff, expected,
355 % (label, self.stuff, map(str, expected)))
358 self.stuff.append(text)
361 self.stuff.append("<%s>" % name)
369 self.stuff.append("</%s>" % name)
372 self.stuff.append("<!--%s-->" % data)
386 self.assertEqual(self.stuff, ['123'],
394 self.assertEqual(self.stuff,
400 self.assertEqual(self.stuff, ["1<2> \n 3"],
[all …]

12345678910>>...30