Home
last modified time | relevance | path

Searched full:stuff (Results 1 – 25 of 6404) sorted by relevance

12345678910>>...257

/aosp_15_r20/external/zstd/contrib/diagnose_corruption/
H A Dcheck_flipped_bits.c44 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 …]
/aosp_15_r20/external/cronet/base/strings/
H A Dcstring_view_unittest.cc50 constexpr auto stuff = cstring_view("stuff"); in TEST() local
53 static_assert(std::same_as<decltype(stuff), const cstring_view>); in TEST()
57 static_assert(stuff.size() == 5u); in TEST()
61 static_assert(stuff[stuff.size()] == '\0'); in TEST()
66 cstring_view s = "stuff"; in TEST()
67 EXPECT_EQ(s, cstring_view("stuff")); in TEST()
78 constexpr const char* c_stuff = "stuff"; in TEST()
79 constexpr auto stuff = UNSAFE_BUFFERS(cstring_view(c_stuff, 5u)); in TEST() local
80 static_assert(std::same_as<const cstring_view, decltype(stuff)>); in TEST()
81 EXPECT_EQ(stuff.data(), c_stuff); in TEST()
[all …]
/aosp_15_r20/build/blueprint/parser/
H A Dprinter_test.go49 stuff: ["asdf", "jkl;", "qwert",
55 stuff: [
69 stuff: ["asdf"] + var,
74 stuff: ["asdf"] + var,
82 stuff: [
89 stuff: [
99 stuff: ["asdf"] + var + ["qwert"],
104 stuff: ["asdf"] + var + ["qwert"],
111 stuff: {
120 stuff: {
[all …]
/aosp_15_r20/external/mbedtls/library/
H A Daesni.c150 __m128i aa = _mm_slli_epi64(xx, 63); // x1<<63:x0<<63 = stuff:a in gcm_reduce()
151 __m128i bb = _mm_slli_epi64(xx, 62); // x1<<62:x0<<62 = stuff:b in gcm_reduce()
152 __m128i cc = _mm_slli_epi64(xx, 57); // x1<<57:x0<<57 = stuff:c in gcm_reduce()
166 __m128i eh = _mm_slli_epi64(dx, 63); // d<<63:stuff in gcm_mix()
167 __m128i fh = _mm_slli_epi64(dx, 62); // d<<62:stuff in gcm_mix()
168 __m128i gh = _mm_slli_epi64(dx, 57); // d<<57:stuff in gcm_mix()
229 * On entry state is r3:r2:r1:r0 and xword is X:stuff:stuff:stuff in aesni_set_rk_128()
275 * On entry state0 is r3:r2:r1:r0, state1 is stuff:stuff:r5:r4 in aesni_set_rk_192()
276 * and xword is stuff:stuff:X:stuff with X = rot( sub( r3 ) ) ^ RCON in aesni_set_rk_192()
279 * On exit, state0 is r9:r8:r7:r6 and state1 is stuff:stuff:r11:r10 in aesni_set_rk_192()
[all …]
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/library/
H A Daesni.c168 __m128i aa = _mm_slli_epi64(xx, 63); // x1<<63:x0<<63 = stuff:a in gcm_reduce()
169 __m128i bb = _mm_slli_epi64(xx, 62); // x1<<62:x0<<62 = stuff:b in gcm_reduce()
170 __m128i cc = _mm_slli_epi64(xx, 57); // x1<<57:x0<<57 = stuff:c in gcm_reduce()
184 __m128i eh = _mm_slli_epi64(dx, 63); // d<<63:stuff in gcm_mix()
185 __m128i fh = _mm_slli_epi64(dx, 62); // d<<62:stuff in gcm_mix()
186 __m128i gh = _mm_slli_epi64(dx, 57); // d<<57:stuff in gcm_mix()
249 * On entry state is r3:r2:r1:r0 and xword is X:stuff:stuff:stuff in aesni_set_rk_128()
295 * On entry state0 is r3:r2:r1:r0, state1 is stuff:stuff:r5:r4 in aesni_set_rk_192()
296 * and xword is stuff:stuff:X:stuff with X = rot( sub( r3 ) ) ^ RCON in aesni_set_rk_192()
299 * On exit, state0 is r9:r8:r7:r6 and state1 is stuff:stuff:r11:r10 in aesni_set_rk_192()
[all …]
/aosp_15_r20/external/elfutils/tests/
H A 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 …]
/aosp_15_r20/external/rust/android-crates-io/crates/tracing-subscriber/tests/env_filter/
Dmain.rs66 let filter: EnvFilter = "info,stuff=debug".parse().expect("filter should parse"); in level_filter_event_with_target()
69 .event(expect::event().at_level(Level::DEBUG).with_target("stuff")) in level_filter_event_with_target()
70 .event(expect::event().at_level(Level::WARN).with_target("stuff")) in level_filter_event_with_target()
72 .event(expect::event().at_level(Level::ERROR).with_target("stuff")) in level_filter_event_with_target()
80 tracing::debug!(target: "stuff", "this should be enabled"); in level_filter_event_with_target()
82 tracing::trace!(target: "stuff", "and neither should this"); in level_filter_event_with_target()
83 tracing::warn!(target: "stuff", "this should be enabled"); in level_filter_event_with_target()
85 tracing::error!(target: "stuff", "this should be enabled also"); in level_filter_event_with_target()
93 let filter: EnvFilter = "info,stuff[cool_span]=debug" in level_filter_event_with_target_and_span_global()
116 let _span = tracing::info_span!(target: "stuff", "cool_span").entered(); in level_filter_event_with_target_and_span_global()
[all …]
Dper_layer.rs63 let filter: EnvFilter = "info,stuff=debug".parse().expect("filter should parse"); in level_filter_event_with_target()
66 .event(expect::event().at_level(Level::DEBUG).with_target("stuff")) in level_filter_event_with_target()
67 .event(expect::event().at_level(Level::WARN).with_target("stuff")) in level_filter_event_with_target()
69 .event(expect::event().at_level(Level::ERROR).with_target("stuff")) in level_filter_event_with_target()
79 tracing::debug!(target: "stuff", "this should be enabled"); in level_filter_event_with_target()
81 tracing::trace!(target: "stuff", "and neither should this"); in level_filter_event_with_target()
82 tracing::warn!(target: "stuff", "this should be enabled"); in level_filter_event_with_target()
84 tracing::error!(target: "stuff", "this should be enabled also"); in level_filter_event_with_target()
91 let filter: EnvFilter = "stuff[cool_span]=debug" in level_filter_event_with_target_and_span()
112 let _span = tracing::info_span!(target: "stuff", "cool_span").entered(); in level_filter_event_with_target_and_span()
[all …]
/aosp_15_r20/external/ow2-asm/asm/src/main/java/org/objectweb/asm/
H A DOpcodes.java80 * [ do stuff ]
89 * <li>call visitNewStuff: the redirection test is skipped and 'do stuff' is executed directly.
92 * directly executes 'do stuff'.
100 * executes 'do stuff'.
103 * time visitNewStuff does not redirect the call, and instead executes 'do stuff'.
118 * public void visitNewStuff(int arg, ...) { [ do stuff ] }
123 * [ do user stuff ]
128 * <p>It is then obvious that whether visitNewStuff or visitOldStuff is called, 'do stuff' and 'do
129 * user stuff' will be executed, in this order.
143 * [ do stuff ]
[all …]
/aosp_15_r20/external/python/cpython2/Mac/Modules/file/
Dfilescan.py109 "CInfoPBPtr", # Old stuff
110 "CMovePBPtr", # Old stuff
111 "ParmBlkPtr", # Old stuff
112 "HParmBlkPtr", # Old stuff
113 "DTPBPtr", # Old stuff
114 "FCBPBPtr", # Old stuff
115 "QHdrPtr", # Old stuff
116 "CSParamPtr", # Old stuff
117 "FSCatalogBulkParam", # old stuff
118 "FSForkCBInfoParam", # old stuff
[all …]
/aosp_15_r20/external/python/cpython2/Lib/
Dihooks.py109 find_module(name, [path]) returns None or 'stuff', and
110 load_module(name, stuff) loads the module.
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
[all …]
/aosp_15_r20/frameworks/native/libs/binderthreadstate/
H A Dtest.cpp73 auto stuff = IHidlStuff::getService(id2name(id)); in callHidl() local
74 CHECK(stuff->call(idx).isOk()); in callHidl()
78 sp<IAidlStuff> stuff; in callAidl() local
79 CHECK_EQ(OK, android::getService<IAidlStuff>(String16(id2name(id).c_str()), &stuff)); in callAidl()
80 auto ret = stuff->call(idx); in callAidl()
181 auto stuff = IHidlStuff::getService(id2name(kP1Id)); in TEST() local
182 ASSERT_NE(nullptr, stuff); in TEST()
183 ASSERT_TRUE(stuff->call(0).isOk()); in TEST()
186 sp<IAidlStuff> stuff; in TEST() local
187 ASSERT_EQ(OK, android::getService<IAidlStuff>(String16(id2name(kP1Id).c_str()), &stuff)); in TEST()
[all …]
/aosp_15_r20/external/python/cpython3/Lib/
Dfnmatch.py104 stuff = pat[i:j]
105 if '-' not in stuff:
106 stuff = stuff.replace('\\', r'\\')
129 stuff = '-'.join(s.replace('\\', r'\\').replace('-', r'\-')
132 stuff = re.sub(r'([&~|])', r'\\\1', stuff)
134 if not stuff:
137 elif stuff == '!':
141 if stuff[0] == '!':
142 stuff = '^' + stuff[1:]
143 elif stuff[0] in ('^', '['):
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/
Dfnmatch.py104 stuff = pat[i:j]
105 if '-' not in stuff:
106 stuff = stuff.replace('\\', r'\\')
129 stuff = '-'.join(s.replace('\\', r'\\').replace('-', r'\-')
132 stuff = re.sub(r'([&~|])', r'\\\1', stuff)
134 if not stuff:
137 elif stuff == '!':
141 if stuff[0] == '!':
142 stuff = '^' + stuff[1:]
143 elif stuff[0] in ('^', '['):
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
Dfnmatch.py104 stuff = pat[i:j]
105 if '-' not in stuff:
106 stuff = stuff.replace('\\', r'\\')
129 stuff = '-'.join(s.replace('\\', r'\\').replace('-', r'\-')
132 stuff = re.sub(r'([&~|])', r'\\\1', stuff)
134 if not stuff:
137 elif stuff == '!':
141 if stuff[0] == '!':
142 stuff = '^' + stuff[1:]
143 elif stuff[0] in ('^', '['):
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/
Dfnmatch.py104 stuff = pat[i:j]
105 if '-' not in stuff:
106 stuff = stuff.replace('\\', r'\\')
129 stuff = '-'.join(s.replace('\\', r'\\').replace('-', r'\-')
132 stuff = re.sub(r'([&~|])', r'\\\1', stuff)
134 if not stuff:
137 elif stuff == '!':
141 if stuff[0] == '!':
142 stuff = '^' + stuff[1:]
143 elif stuff[0] in ('^', '['):
[all …]
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/
H A Dfnmatch.py104 stuff = pat[i:j]
105 if '-' not in stuff:
106 stuff = stuff.replace('\\', r'\\')
129 stuff = '-'.join(s.replace('\\', r'\\').replace('-', r'\-')
132 stuff = re.sub(r'([&~|])', r'\\\1', stuff)
134 if not stuff:
137 elif stuff == '!':
141 if stuff[0] == '!':
142 stuff = '^' + stuff[1:]
143 elif stuff[0] in ('^', '['):
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/
Dfnmatch.py104 stuff = pat[i:j]
105 if '-' not in stuff:
106 stuff = stuff.replace('\\', r'\\')
129 stuff = '-'.join(s.replace('\\', r'\\').replace('-', r'\-')
132 stuff = re.sub(r'([&~|])', r'\\\1', stuff)
134 if not stuff:
137 elif stuff == '!':
141 if stuff[0] == '!':
142 stuff = '^' + stuff[1:]
143 elif stuff[0] in ('^', '['):
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/url/tests/
Dsetters_tests.json247 "comment": "Stuff after the first ':' is ignored",
256 "comment": "Stuff after the first ':' is ignored",
602 "href": "data:text/plain,Stuff",
605 "href": "data:text/plain,Stuff",
746 "comment": "Stuff after a / delimiter is ignored",
748 "new_value": "example.com/stuff",
757 "comment": "Stuff after a / delimiter is ignored",
759 "new_value": "example.com:8080/stuff",
768 "comment": "Stuff after a ? delimiter is ignored",
770 "new_value": "example.com?stuff",
[all …]
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/io/
H A DOldWriterTest.java30 assertEquals("Wrong stuff written!", "ab", tobj.toString()); in test_appendChar()
43 assertEquals("Wrong stuff written!", testString, tobj.toString()); in test_appendCharSequence()
57 assertEquals("Wrong stuff written!", "01234", tobj.toString()); in test_appendCharSequenceIntInt()
59 assertEquals("Wrong stuff written!", "01234abcde", tobj.toString()); in test_appendCharSequenceIntInt()
61 assertEquals("Wrong stuff written!", "01234abcdeABCDEFGHIJ", tobj.toString()); in test_appendCharSequenceIntInt()
103 assertEquals("Wrong stuff written!", "01234", tobj.toString()); in test_write$C()
105 assertEquals("Wrong stuff written!", "01234abcde", tobj.toString()); in test_write$C()
107 assertEquals("Wrong stuff written!", "01234abcdeABCDEFGHIJ", tobj.toString()); in test_write$C()
121 assertEquals("Wrong stuff written!", "ab", tobj.toString()); in test_writeI()
133 assertEquals("Wrong stuff written!", "01234", tobj.toString()); in test_writeLjava_lang_String()
[all …]
/aosp_15_r20/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DAlertDialogSamples.java92 /* User clicked OK so do some stuff */ in onCreateDialog()
98 /* User clicked Cancel so do some stuff */ in onCreateDialog()
159 /* User clicked OK so do some stuff */ in onCreateDialog()
165 /* User clicked Something so do some stuff */ in onCreateDialog()
171 /* User clicked Cancel so do some stuff */ in onCreateDialog()
182 /* User clicked OK so do some stuff */ in onCreateDialog()
188 /* User clicked Something so do some stuff */ in onCreateDialog()
194 /* User clicked Cancel so do some stuff */ in onCreateDialog()
204 /* User clicked so do some stuff */ in onCreateDialog()
221 /* User clicked Yes so do some stuff */ in onCreateDialog()
[all …]
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/
H A DMapRelatedTypesDeserTest.java21 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 …]
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/jdk/
H A DMapKeySerializationTest.java91 public Map<ABC,String> stuff = new HashMap<ABC,String>(); field in MapKeySerializationTest.ABCMapWrapper
93 stuff.put(ABC.B, "bar"); in ABCMapWrapper()
209 assertEquals("{\"stuff\":{\"xxxB\":\"bar\"}}", json); in testCustomForEnum()
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
[all …]
/aosp_15_r20/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 …]
/aosp_15_r20/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/issues/
H A DVelocity614TestCase.java38 String template = "#something(Stuff)"; in testSchmoo()
44 String template = "\\#something(Stuff)"; in testEscapeSchmooButNotReallySinceSchmooHasNoEscaping()
73 assertEvalException("#foreach(Stuff in That)foo#end"); in testDirectivesWithBadArg()
74 assertEvalException("#include(Stuff)"); in testDirectivesWithBadArg()
75 assertEvalException("#parse(Stuff)"); in testDirectivesWithBadArg()
76 assertEvalException("#define(Stuff)foo#end"); in testDirectivesWithBadArg()
77 assertEvalException("#macro( name Stuff)foo#end"); in testDirectivesWithBadArg()
78 assertEvalException("#foreach($i in [1..3])#break(Stuff)#end"); in testDirectivesWithBadArg()
79 assertEvalException("#literal(Stuff)foo#end"); in testDirectivesWithBadArg()
80 assertEvalException("#evaluate(Stuff)", ParseErrorException.class); in testDirectivesWithBadArg()

12345678910>>...257