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

  /art/runtime/mirror/
array-inl.h 30 int32_t component_count = GetLength(); local
32 size_t data_size = component_count * component_size;
array.cc 35 Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count,
38 DCHECK_GE(component_count, 0);
42 size_t data_size = component_count * component_size;
47 if (UNLIKELY(data_size >> component_shift != size_t(component_count) || size < data_size)) {
50 component_count).c_str());
58 array->SetLength(component_count);
63 Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count) {
65 return Alloc(self, array_class, component_count, array_class->GetComponentSize());
array.h 29 static Array* Alloc(Thread* self, Class* array_class, int32_t component_count)
32 static Array* Alloc(Thread* self, Class* array_class, int32_t component_count,
  /art/runtime/entrypoints/quick/
quick_alloc_entrypoints.cc 43 int32_t component_count, Thread* self,
47 return AllocArrayFromCode(type_idx, method, component_count, self, false);
52 int32_t component_count,
57 return AllocArrayFromCode(type_idx, method, component_count, self, true);
62 int32_t component_count, Thread* self,
66 return CheckAndAllocArrayFromCode(type_idx, method, component_count, self, false);
71 int32_t component_count,
76 return CheckAndAllocArrayFromCode(type_idx, method, component_count, self, true);
  /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/entrypoints/
entrypoint_utils.h 84 int32_t component_count,
87 if (UNLIKELY(component_count < 0)) {
88 ThrowNegativeArraySizeException(component_count);
107 return mirror::Array::Alloc(self, klass, component_count);
111 int32_t component_count,
entrypoint_utils.cc 38 int32_t component_count, Thread* self,
40 if (UNLIKELY(component_count < 0)) {
41 ThrowNegativeArraySizeException(component_count);
73 return mirror::Array::Alloc(self, klass, component_count);
  /art/runtime/arch/mips/
quick_entrypoints_mips.S 795 # artAllocArrayFromCode(uint32_t type_idx, Method* method, int32_t component_count, Thread*, $sp)
810 # artAllocArrayFromCodeWithAccessCheck(type_idx, method, component_count, Thread*, $sp)
    [all...]
  /art/runtime/arch/arm/
quick_entrypoints_arm.S 735 @ artAllocArrayFromCode(uint32_t type_idx, Method* method, int32_t component_count, Thread*, SP)
756 @ artAllocArrayFromCodeWithAccessCheck(type_idx, method, component_count, Thread*, SP)
    [all...]

Completed in 500 milliseconds