HomeSort by relevance Sort by last modified time
    Searched refs:hs (Results 76 - 100 of 599) sorted by null

1 2 34 5 6 7 8 91011>>

  /art/runtime/gc/space/
space_test.h 56 StackHandleScope<1> hs(self);
57 auto null_loader(hs.NewHandle<mirror::ClassLoader>(nullptr));
75 StackHandleScope<1> hs(self);
76 Handle<mirror::Class> byte_array_class(hs.NewHandle(GetByteArrayClass(self)));
95 StackHandleScope<1> hs(self);
96 Handle<mirror::Class> byte_array_class(hs.NewHandle(GetByteArrayClass(self)));
190 StackHandleScope<1> hs(soa.Self());
191 auto object(hs.NewHandle<mirror::Object>(nullptr));
287 StackHandleScope<1> hs(soa.Self());
288 auto large_object(hs.NewHandle<mirror::Object>(nullptr))
    [all...]
space_create_test.cc 104 StackHandleScope<3> hs(soa.Self());
105 MutableHandle<mirror::Object> ptr1(hs.NewHandle(Alloc(space,
123 MutableHandle<mirror::Object> ptr3(hs.NewHandle(AllocWithGrowth(space,
151 Handle<mirror::Object> ptr6(hs.NewHandle(AllocWithGrowth(space,
238 StackHandleScope<3> hs(soa.Self());
239 MutableHandle<mirror::Object> ptr1(hs.NewHandle(Alloc(space,
257 MutableHandle<mirror::Object> ptr3(hs.NewHandle(AllocWithGrowth(space,
285 Handle<mirror::Object> ptr6(hs.NewHandle(AllocWithGrowth(space,
  /art/runtime/interpreter/
unstarted_runtime.cc 141 StackHandleScope<1> hs(self);
142 Handle<mirror::Class> h_class(hs.NewHandle(found));
208 StackHandleScope<1> hs(self);
209 Handle<mirror::String> h_class_name(hs.NewHandle(class_name));
237 StackHandleScope<2> hs(self); // Class, constructor, object.
244 Handle<mirror::Class> h_klass(hs.NewHandle(klass));
270 Handle<mirror::Object> h_obj(hs.NewHandle(klass->AllocObject(self)));
412 StackHandleScope<1> hs(self);
413 Handle<mirror::Class> klass(hs.NewHandle(
431 StackHandleScope<1> hs(self)
    [all...]
unstarted_runtime_test.cc 305 StackHandleScope<2> hs(self);
308 Handle<mirror::String> h_test_string(hs.NewHandle(
311 Handle<mirror::CharArray> h_char_array(hs.NewHandle(
903 StackHandleScope<1> hs(soa.Self());
905 hs.NewHandle(soa.Decode<mirror::ClassLoader>(class_loader)));
923 StackHandleScope<4> hs(self);
925 hs.NewHandle(soa.Decode<mirror::ClassLoader>(class_loader)));
927 Handle<mirror::Class> nested_klass(hs.NewHandle(
929 Handle<mirror::Class> inner_klass(hs.NewHandle(
931 Handle<mirror::Class> anon_klass(hs.NewHandle
    [all...]
interpreter_common.cc 151 StackHandleScope<1> hs(Thread::Current());
153 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj);
324 StackHandleScope<1> hs(Thread::Current());
326 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj);
389 StackHandleScope<2> hs(self);
390 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
397 hs.NewHandle(exception->GetClass()), dex_pc, &clear_exception);
471 StackHandleScope<1> hs(self);
472 Handle<mirror::Class> h_class(hs.NewHandle(declaringClass));
540 StackHandleScope<5> hs(self)
    [all...]
  /art/runtime/
indirect_reference_table_test.cc 64 StackHandleScope<4> hs(soa.Self());
66 Handle<mirror::Object> obj0 = hs.NewHandle(c->AllocObject(soa.Self()));
68 Handle<mirror::Object> obj1 = hs.NewHandle(c->AllocObject(soa.Self()));
70 Handle<mirror::Object> obj2 = hs.NewHandle(c->AllocObject(soa.Self()));
72 Handle<mirror::Object> obj3 = hs.NewHandle(c->AllocObject(soa.Self()));
282 StackHandleScope<5> hs(soa.Self());
284 Handle<mirror::Object> obj0 = hs.NewHandle(c->AllocObject(soa.Self()));
286 Handle<mirror::Object> obj1 = hs.NewHandle(c->AllocObject(soa.Self()));
288 Handle<mirror::Object> obj2 = hs.NewHandle(c->AllocObject(soa.Self()));
290 Handle<mirror::Object> obj3 = hs.NewHandle(c->AllocObject(soa.Self()))
    [all...]
class_table_test.cc 74 VariableSizedHandleScope hs(soa.Self());
75 Handle<ClassLoader> class_loader(hs.NewHandle(soa.Decode<ClassLoader>(jclass_loader)));
79 hs.NewHandle(class_linker_->FindClass(soa.Self(), descriptor_x, class_loader)));
81 hs.NewHandle(class_linker_->FindClass(soa.Self(), descriptor_y, class_loader)));
82 Handle<mirror::Object> obj_X = hs.NewHandle(h_X->AllocObject(soa.Self()));
method_handles-inl.h 88 StackHandleScope<2> hs(self);
89 Handle<mirror::ObjectArray<mirror::Class>> from_types(hs.NewHandle(callsite_type->GetPTypes()));
90 Handle<mirror::ObjectArray<mirror::Class>> to_types(hs.NewHandle(callee_type->GetPTypes()));
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 282 : start(amountStart), length(amountLength), hs(howSpecified), amt(amount),
286 : start(nullptr),length(0), hs(valid ? NotSpecified : Invalid), amt(0),
290 return hs == Invalid;
293 HowSpecified getHowSpecified() const { return hs; }
294 void setHowSpecified(HowSpecified h) { hs = h; }
296 bool hasDataArgument() const { return hs == Arg; }
304 assert(hs == Constant);
314 assert(hs == Constant);
334 HowSpecified hs; member in class:clang::analyze_format_string::OptionalAmount
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzFind.c 181 UInt32 hs; local
186 hs = (1 << 16) - 1;
189 hs = historySize - 1;
190 hs |= (hs >> 1);
191 hs |= (hs >> 2);
192 hs |= (hs >> 4);
193 hs |= (hs >> 8);
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzFind.c 200 UInt32 hs; local
205 hs = (1 << 16) - 1;
208 hs = historySize - 1;
209 hs |= (hs >> 1);
210 hs |= (hs >> 2);
211 hs |= (hs >> 4);
212 hs |= (hs >> 8);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzFind.c 200 UInt32 hs; local
205 hs = (1 << 16) - 1;
208 hs = historySize - 1;
209 hs |= (hs >> 1);
210 hs |= (hs >> 2);
211 hs |= (hs >> 4);
212 hs |= (hs >> 8);
    [all...]
  /external/lzma/C/
LzFind.c 194 UInt32 hs; local
199 hs = (1 << 16) - 1;
202 hs = historySize - 1;
203 hs |= (hs >> 1);
204 hs |= (hs >> 2);
205 hs |= (hs >> 4);
206 hs |= (hs >> 8);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
SignalTileView.java 75 int hs = MeasureSpec.makeMeasureSpec(mIconFrame.getMeasuredHeight(), MeasureSpec.EXACTLY); local
77 mIn.measure(ws, hs);
78 mOut.measure(ws, hs);
  /art/runtime/entrypoints/quick/
quick_alloc_entrypoints.cc 97 StackHandleScope<1> hs(self); \
98 Handle<mirror::ByteArray> handle_array(hs.NewHandle(byte_array)); \
105 StackHandleScope<1> hs(self); \
106 Handle<mirror::CharArray> handle_array(hs.NewHandle(char_array)); \
113 StackHandleScope<1> hs(self); \
114 Handle<mirror::String> handle_string(hs.NewHandle(string)); \
  /external/aac/libSBRdec/src/
psdec_hybrid.cpp 107 InitHybridFilterBank ( HANDLE_HYBRID hs, /*!< Handle to HYBRID struct. */
116 hs->pResolution[i] = pResolution[i];
121 hs->nQmfBands = noBands;
122 hs->frameSize = frameSize;
123 hs->qmfBufferMove = HYBRID_FILTER_LENGTH - 1;
125 hs->sf_mQmfBuffer = 0;
  /art/compiler/driver/
compiler_driver_test.cc 87 StackHandleScope<1> hs(soa.Self());
89 hs.NewHandle(soa.Decode<mirror::ClassLoader>(class_loader)));
212 StackHandleScope<1> hs(self);
214 hs.NewHandle(soa.Decode<mirror::ClassLoader>(class_loader)));
274 StackHandleScope<1> hs(self);
276 hs.NewHandle(soa.Decode<mirror::ClassLoader>(class_loader)));
335 StackHandleScope<1> hs(self);
337 hs.NewHandle(soa.Decode<mirror::ClassLoader>(class_loader)));
  /art/runtime/openjdkjvmti/
transform.cc 144 art::StackHandleScope<1> hs(art::Thread::Current());
145 art::Handle<art::mirror::Class> hs_klass(hs.NewHandle(soa.Decode<art::mirror::Class>(klass)));
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/
dsbase.py 85 hs = struct.pack("!HBB", self.key_tag, self.algorithm,
89 v = cmp(hs, ho)
  /prebuilts/go/darwin-x86/src/net/
hosts.go 64 hs := make(map[string][]string)
88 hs[key] = append(hs[key], addr)
95 hosts.byName = hs
  /prebuilts/go/linux-x86/src/net/
hosts.go 64 hs := make(map[string][]string)
88 hs[key] = append(hs[key], addr)
95 hosts.byName = hs
  /art/runtime/entrypoints/
entrypoint_utils-inl.h 135 StackHandleScope<1> hs(self);
136 Handle<mirror::Class> h_klass(hs.NewHandle(klass));
164 StackHandleScope<1> hs(self);
165 Handle<mirror::Class> h_class(hs.NewHandle(klass));
352 StackHandleScope<2> hs(self);
353 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(method->GetDexCache()));
354 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(method->GetClassLoader()));
406 StackHandleScope<1> hs(self);
407 if (LIKELY(class_linker->EnsureInitialized(self, hs.NewHandle(fields_class), true, true))) {
448 StackHandleScope<1> hs(self)
    [all...]
  /external/boringssl/linux-arm/crypto/chacha/
chacha-armv4.S 237 itt hs
245 itt hs
256 itt hs
263 itt hs
275 itt hs
282 itt hs
293 itt hs
300 itt hs
315 itt hs
327 itt hs
    [all...]
  /art/runtime/gc/
system_weak_test.cc 138 StackHandleScope<1> hs(soa.Self());
141 Handle<mirror::String> s(hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "ABC")));
183 StackHandleScope<1> hs(soa.Self());
186 Handle<mirror::String> s(hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "ABC")));
  /art/runtime/native/
libcore_util_CharsetUtils.cc 156 StackHandleScope<1> hs(soa.Self());
157 Handle<mirror::String> string(hs.NewHandle(soa.Decode<mirror::String>(java_string)));
193 StackHandleScope<1> hs(soa.Self());
194 Handle<mirror::String> string(hs.NewHandle(soa.Decode<mirror::String>(java_string)));

Completed in 2454 milliseconds

1 2 34 5 6 7 8 91011>>