/external/zstd/contrib/diagnose_corruption/ |
D | check_flipped_bits.c | 44 static void free_stuff(stuff_t* stuff) { in free_stuff() argument 45 free(stuff->input); in free_stuff() 46 free(stuff->output); in free_stuff() 47 ZSTD_freeDDict(stuff->ddict); in free_stuff() 48 free(stuff->dict); in free_stuff() 49 ZSTD_freeDCtx(stuff->dctx); in free_stuff() 62 static void print_summary(stuff_t* stuff) { in print_summary() argument 64 fprintf(stderr, "%9d successful decompressions\n", stuff->success_count); in print_summary() 66 int count = stuff->error_counts[error_code]; in print_summary() 144 static ZSTD_DDict* readDictByID(stuff_t *stuff, int32_t dict_id, char **buf, size_t* size) { in readDictByID() argument [all …]
|
/external/elfutils/tests/ |
D | addrcfi.c | 76 struct stuff struct 91 struct stuff *stuff = arg; in print_register() local 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/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/ |
D | MapRelatedTypesDeserTest.java | 21 List<Map.Entry<String,Long>> stuff = MAPPER.readValue(aposToQuotes("[{'a':15},{'b':42}]"), in testMapEntrySimpleTypes() local 23 assertNotNull(stuff); in testMapEntrySimpleTypes() 24 assertEquals(2, stuff.size()); in testMapEntrySimpleTypes() 25 assertNotNull(stuff.get(1)); in testMapEntrySimpleTypes() 26 assertEquals("b", stuff.get(1).getKey()); in testMapEntrySimpleTypes() 27 assertEquals(Long.valueOf(42), stuff.get(1).getValue()); in testMapEntrySimpleTypes() 32 …List<Map.Entry<Integer,StringWrapper>> stuff = MAPPER.readValue(aposToQuotes("[{'28':'Foo'},{'13':… in testMapEntryWithStringBean() local 34 assertNotNull(stuff); in testMapEntryWithStringBean() 35 assertEquals(2, stuff.size()); in testMapEntryWithStringBean() 36 assertNotNull(stuff.get(1)); in testMapEntryWithStringBean() [all …]
|
/external/bc/scripts/ |
D | radamsa.txt | 3 -lqg '/home/gavin/bc stuff.bc' 4 -lqg "/home/gavin/bc stuff.bc" 5 -lqg '/home/gavin/"bc" stuff.bc' 6 -lqg "/home/gavin/'bc' stuff.bc" 7 -lqg '/home/gavin/bc stuff.bc 8 -lqg "/home/gavin/bc stuff.bc 9 -lqg '/home/gavin/"bc" stuff.bc 10 -lqg "/home/gavin/'bc' stuff.bc 14 --file="/home/gavin/bc stuff.bc"
|
/external/python/cpython3/Lib/ |
D | fnmatch.py | 110 stuff = pat[i:j] 111 if '--' not in stuff: 112 stuff = stuff.replace('\\', r'\\') 126 stuff = '-'.join(s.replace('\\', r'\\').replace('-', r'\-') 129 stuff = re.sub(r'([&~|])', r'\\\1', stuff) 131 if stuff[0] == '!': 132 stuff = '^' + stuff[1:] 133 elif stuff[0] in ('^', '['): 134 stuff = '\\' + stuff
|
/external/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()
|
/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/jackson-core/src/test/java/com/fasterxml/jackson/core/ |
D | TestJDKSerializability.java | 37 byte[] stuff = jdkSerialize(orig); in testBase64Variant() 38 Base64Variant back = jdkDeserialize(stuff); in testBase64Variant() 45 byte[] stuff = jdkSerialize(p); in testPrettyPrinter() 46 PrettyPrinter back = jdkDeserialize(stuff); in testPrettyPrinter() 58 byte[] stuff = jdkSerialize(loc); in testLocation() 59 JsonLocation loc2 = jdkDeserialize(stuff); in testLocation() 80 byte[] stuff = jdkSerialize(exc); in testParseException() 81 JsonParseException result = jdkDeserialize(stuff); in testParseException() 98 byte[] stuff = jdkSerialize(exc); in testGenerationException() 99 JsonGenerationException result = jdkDeserialize(stuff); in testGenerationException()
|
/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)
|
D | errors.txt | 209 for (i=0; i; ++i) if (i) print "stuff"; else i; if (!i) i + 1; else i; } 291 v = "stuff" + "other" 292 v = "stuff"; v + v 293 v = "stuff"; v * 3 294 v = "stuff"; v - 3 295 v = "stuff"; v / 3 296 v = "stuff"; divmod(v, 3, a[]) 297 v = "stuff"; modexp(v, 3, 2) 298 define f(x) { x * x }; f("stuff") 299 define f(x) { x * x }; v = "stuff"; f(v)
|
/external/toybox/lib/ |
D | env.c | 119 char *s, *stuff[] = {"TERM", "DISPLAY", "COLORTERM", "XAUTHORITY"}; in reset_env() local 121 for (i=0; i<ARRAY_LEN(stuff); i++) in reset_env() 122 stuff[i] = (s = getenv(stuff[i])) ? xmprintf("%s=%s", stuff[i], s) : 0; in reset_env() 124 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/jackson-databind/src/test/java/com/fasterxml/jackson/databind/mixins/ |
D | MixinsWithBundlesTest.java | 27 private String stuff; field in MixinsWithBundlesTest.Foo 29 Foo(String stuff) { in Foo() argument 30 this.stuff = stuff; in Foo() 34 return stuff; in getStuff()
|
/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/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/builder/ |
D | BuilderSimpleTest.java | 217 private Map<String,Object> stuff = new HashMap<String,Object>(); field in BuilderSimpleTest.ValueBuilder822 227 stuff.put(key, value); in addStuff() 231 return new ValueClass822(x, stuff); in build() 238 public Map<String,Object> stuff; field in BuilderSimpleTest.ValueClass822 240 public ValueClass822(int x, Map<String,Object> stuff) { in ValueClass822() argument 242 this.stuff = stuff; in ValueClass822() 408 assertNotNull(value.stuff); in testWithAnySetter822() 409 assertEquals(3, value.stuff.size()); in testWithAnySetter822() 410 assertEquals(Integer.valueOf(3), value.stuff.get("extra")); in testWithAnySetter822() 411 assertEquals("bob", value.stuff.get("name")); in testWithAnySetter822() [all …]
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/filter/ |
D | MapInclusionTest.java | 14 public Map<String,String> stuff = new LinkedHashMap<String,String>(); field in MapInclusionTest.NoEmptiesMapContainer 17 stuff.put(key, value); in add() 25 public Map<String,String> stuff = new LinkedHashMap<String,String>(); field in MapInclusionTest.NoNullsMapContainer 28 stuff.put(key, value); in add() 36 public Map<String,String> stuff = new LinkedHashMap<String,String>(); field in MapInclusionTest.NoNullsNotEmptyMapContainer 39 stuff.put(key, value); in add()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/creators/ |
D | BigCreatorTest.java | 12 final int[] stuff; field in BigCreatorTest.Biggie 37 stuff = new int[] { in Biggie() 53 int[] stuff = value.stuff; in testBigPartial() local 54 for (int i = 0; i < stuff.length; ++i) { in testBigPartial() 67 assertEquals("Entry #"+i, exp, stuff[i]); in testBigPartial()
|
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/filter/ |
D | JsonPointerGeneratorFilteringTest.java | 134 final String[] stuff = new String[] { "foo", "bar" }; in _testArrayFiltering582() local 141 gen.writeStartArray(stuff); in _testArrayFiltering582() 144 gen.writeStartArray(stuff, stuff.length); in _testArrayFiltering582() 146 gen.writeString(stuff[0]); in _testArrayFiltering582() 147 gen.writeString(stuff[1]); in _testArrayFiltering582()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/jdk/ |
D | MapKeySerializationTest.java | 91 public Map<ABC,String> stuff = new HashMap<ABC,String>(); field in MapKeySerializationTest.ABCMapWrapper 93 stuff.put(ABC.B, "bar"); in ABCMapWrapper() 286 Map<ABC,BAR<?>> stuff = new HashMap<ABC,BAR<?>>(); in testUnWrappedMapWithKeySerializer() local 287 stuff.put(ABC.B, new BAR<String>("bar")); in testUnWrappedMapWithKeySerializer() 289 .writeValueAsString(stuff); in testUnWrappedMapWithKeySerializer() 308 Map<ABC,String> stuff = new HashMap<ABC,String>(); in testUnWrappedMapWithDefaultType() local 309 stuff.put(ABC.B, "bar"); in testUnWrappedMapWithDefaultType() 311 .writeValueAsString(stuff); in testUnWrappedMapWithDefaultType() 318 Map<Object,Integer> stuff = new LinkedHashMap<Object,Integer>(); in testDynamicMapKeys() local 319 stuff.put(AbcLC.B, Integer.valueOf(3)); in testDynamicMapKeys() [all …]
|
/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 …
|