Home
last modified time | relevance | path

Searched refs:double_array (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/cronet/base/android/
H A Djni_array.cc121 jdoubleArray double_array = env->NewDoubleArray(len_jsize); in ToJavaDoubleArray() local
123 DCHECK(double_array); in ToJavaDoubleArray()
125 env->SetDoubleArrayRegion(double_array, 0, len_jsize, in ToJavaDoubleArray()
129 return ScopedJavaLocalRef<jdoubleArray>(env, double_array); in ToJavaDoubleArray()
442 const JavaRef<jdoubleArray>& double_array, in JavaDoubleArrayToDoubleVector() argument
445 size_t len = SafeGetArrayLength(env, double_array); in JavaDoubleArrayToDoubleVector()
449 env->GetDoubleArrayRegion(double_array.obj(), 0, static_cast<jsize>(len), in JavaDoubleArrayToDoubleVector()
H A Djni_array.h204 const JavaRef<jdoubleArray>& double_array,
/aosp_15_r20/external/llvm/test/CodeGen/PowerPC/
H A Dppc64-toc.ll5 @double_array = global [32 x double] zeroinitializer, align 8
49 …%arrayidx = getelementptr inbounds [32 x double], [32 x double]* @double_array, i64 0, i64 %idxprom
60 ; * double array 'double_array'
/aosp_15_r20/external/llvm/test/CodeGen/Mips/cconv/
H A Dmemory-layout.ll76 @double_array = global [2 x double] [double 1.0, double 2.0], align 1
109 ; ALL-LABEL: double_array:
112 ; ALL: .size double_array, 16
/aosp_15_r20/external/llvm/test/Transforms/LoopVectorize/X86/
H A Dfp64_to_uint32-cost-model.ll7 @double_array = common global [10000 x double] zeroinitializer, align 16
25 …%arrayidx = getelementptr inbounds [10000 x double], [10000 x double]* @double_array, i64 0, i64 %…
/aosp_15_r20/packages/services/Car/packages/ScriptExecutor/tests/functional/src/com/android/car/scriptexecutortest/functional/
DScriptExecutorFunctionalTest.java294 double[] double_array = new double[] {1.5, 2.222}; in invokeScript_allSupportedArrayTypesWorkRoundTripWithKeyNamesPreserved() local
300 previousState.putDoubleArray("double_array", double_array); in invokeScript_allSupportedArrayTypesWorkRoundTripWithKeyNamesPreserved()
313 assertThat(mListener.mInterimResult.getDoubleArray("double_array")).isEqualTo(double_array); in invokeScript_allSupportedArrayTypesWorkRoundTripWithKeyNamesPreserved()
/aosp_15_r20/external/clang/test/PCH/
H A Dexprs.c82 double get_from_double_array(unsigned Idx) { return double_array[Idx]; } in get_from_double_array()
H A Dexprs.h83 double double_array[3] = { 1.0, 2.0 }; variable
/aosp_15_r20/external/googleapis/google/cloud/integrations/v1alpha/
H A Dvalue_type.proto47 DoubleParameterArray double_array = 7; field
/aosp_15_r20/art/runtime/
H A Dclass_linker_test.cc1115 Handle<mirror::DoubleArray> double_array(hs.NewHandle(mirror::DoubleArray::Alloc(soa.Self(), 0))); in TEST_F() local
1116 EXPECT_OBJ_PTR_EQ(class_linker_->FindSystemClass(soa.Self(), "[D"), double_array->GetClass()); in TEST_F()
1117 data_offset = reinterpret_cast<uintptr_t>(double_array->GetData()); in TEST_F()