HomeSort by relevance Sort by last modified time
    Searched refs:component_count (Results 1 - 12 of 12) sorted by null

  /art/runtime/entrypoints/quick/
quick_alloc_entrypoints.cc 58 uint32_t type_idx, mirror::ArtMethod* method, int32_t component_count, Thread* self, \
62 return AllocArrayFromCode<false, instrumented_bool>(type_idx, method, component_count, self, \
66 mirror::Class* klass, mirror::ArtMethod* method, int32_t component_count, Thread* self, \
70 return AllocArrayFromCodeResolved<false, instrumented_bool>(klass, method, component_count, self, \
74 uint32_t type_idx, mirror::ArtMethod* method, int32_t component_count, Thread* self, \
78 return AllocArrayFromCode<true, instrumented_bool>(type_idx, method, component_count, self, \
82 uint32_t type_idx, mirror::ArtMethod* method, int32_t component_count, Thread* self, \
87 return CheckAndAllocArrayFromCode(type_idx, method, component_count, self, false, allocator_type); \
89 return CheckAndAllocArrayFromCodeInstrumented(type_idx, method, component_count, self, false, allocator_type); \
93 uint32_t type_idx, mirror::ArtMethod* method, int32_t component_count, Thread* self,
    [all...]
  /art/runtime/mirror/
array-inl.h 41 int32_t component_count = local
44 size_t data_size = component_count * component_size;
58 static inline size_t ComputeArraySize(Thread* self, Class* array_class, int32_t component_count,
62 DCHECK_GE(component_count, 0);
66 size_t data_size = component_count * component_size;
71 if (UNLIKELY(data_size >> component_shift != size_t(component_count) || size < data_size)) {
74 component_count).c_str());
133 inline Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count,
137 size_t size = ComputeArraySize(self, array_class, component_count, component_size);
144 SetLengthVisitor visitor(component_count);
    [all...]
array.h 37 // least component_count size, however, if there's usable space at the end of the allocation the
40 static Array* Alloc(Thread* self, Class* array_class, int32_t component_count,
  /art/runtime/entrypoints/
entrypoint_utils.cc 38 int32_t component_count,
42 if (UNLIKELY(component_count < 0)) {
43 ThrowNegativeArraySizeException(component_count);
81 int32_t component_count, Thread* self,
84 mirror::Class* klass = CheckFilledNewArrayAlloc(type_idx, referrer, component_count, self,
93 return mirror::Array::Alloc<false>(self, klass, component_count, klass->GetComponentSize(),
100 int32_t component_count,
104 mirror::Class* klass = CheckFilledNewArrayAlloc(type_idx, referrer, component_count, self,
112 return mirror::Array::Alloc<true>(self, klass, component_count, klass->GetComponentSize(),
entrypoint_utils.h 85 int32_t component_count,
96 int32_t component_count,
104 int32_t component_count,
110 int32_t component_count, Thread* self,
117 int32_t component_count, Thread* self,
entrypoint_utils-inl.h 178 int32_t component_count,
180 if (UNLIKELY(component_count < 0)) {
181 ThrowNegativeArraySizeException(component_count);
214 int32_t component_count,
218 mirror::Class* klass = CheckArrayAlloc<kAccessCheck>(type_idx, method, component_count,
225 return mirror::Array::Alloc<kInstrumented>(self, klass, component_count,
229 return mirror::Array::Alloc<kInstrumented>(self, klass, component_count,
236 int32_t component_count,
240 if (UNLIKELY(component_count < 0)) {
241 ThrowNegativeArraySizeException(component_count);
    [all...]
  /frameworks/base/media/mca/filterfw/jni/
jni_shader_program.h 133 jint component_count);
141 jint component_count,
jni_shader_program.cpp 270 jint component_count) {
286 component_count);
300 jint component_count,
318 component_count,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
SIGenRegisterInfo.pl 260 my $component_count = $reg_width / 32;
262 for (my $i = 0; $i < $reg_count; $i += $component_count) {
265 for (my $idx = 0; $idx < $component_count; $idx++) {
286 print " let SubRegClasses = [($class_prefix\_", ($reg_width / $component_count) , ' ', join(', ', @{$sub_reg_ref}), ")];\n}\n";
  /external/mesa3d/src/gallium/drivers/radeon/
SIGenRegisterInfo.pl 260 my $component_count = $reg_width / 32;
262 for (my $i = 0; $i < $reg_count; $i += $component_count) {
265 for (my $idx = 0; $idx < $component_count; $idx++) {
286 print " let SubRegClasses = [($class_prefix\_", ($reg_width / $component_count) , ' ', join(', ', @{$sub_reg_ref}), ")];\n}\n";
  /art/runtime/arch/arm/
quick_entrypoints_arm.S     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9mesh.h     [all...]

Completed in 2560 milliseconds