/aosp12/frameworks/compile/slang/lit-tests/padding/ |
H A D | more_structs.rscript | 3 // RUN: %rs-filecheck-wrapper %s --check-prefix=CHECK-LL 7 // CHECK-LL: %struct.char_struct{{(\.[0-9]+)?}} = type { i16, [6 x i8], i64 } 13 // CHECK-LL: define void @.helper_check_char_struct({ i16, [6 x i8], i64 }* nocapture) 15 // CHECK-LL: [[C_F1_VAL:%[0-9]+]] = load i16, i16* [[C_F1_ADDR]] 17 // CHECK-LL: [[C_F2_VAL:%[0-9]+]] = load i64, i64* [[C_F2_ADDR]] 18 // CHECK-LL: tail call void @check_char_struct(i16 [[C_F1_VAL]], i64 [[C_F2_VAL]]) 22 // CHECK-LL: [[F_F1_VAL:%[0-9]+]] = load i8, i8* [[F_F1_ADDR]] 24 // CHECK-LL: [[F_F2_VAL:%[0-9]+]] = load i64, i64* [[F_F2_ADDR]] 26 // CHECK-LL: [[F_F3_VAL:%[0-9]+]] = load i16, i16* [[F_F3_ADDR]] 28 // CHECK-LL: [[F_F4_VAL:%[0-9]+]] = load i64, i64* [[F_F4_ADDR]] [all …]
|
H A D | small_struct.rscript | 3 // RUN: %rs-filecheck-wrapper %s --check-prefix=CHECK-LL 5 // CHECK-LL: %struct.small_struct{{(\.[0-9]+)?}} = type { i32, [4 x i8], i64 } 8 // CHECK-LL: define void @.helper_checkStruct({ i32, [4 x i8], i64 }* nocapture) 9 // CHECK-LL: [[FIELD_I_ADDR:%[0-9]+]] = getelementptr inbounds { i32, [4 x i8], i64 }, { i32, [4 x … 10 // CHECK-LL: [[FIELD_I_VAL:%[0-9]+]] = load i32, i32* [[FIELD_I_ADDR]] 11 // CHECK-LL: [[FIELD_L_ADDR:%[0-9]+]] = getelementptr inbounds { i32, [4 x i8], i64 }, { i32, [4 x … 12 // CHECK-LL: [[FIELD_L_VAL:%[0-9]+]] = load i64, i64* [[FIELD_L_ADDR]] 13 // CHECK-LL: call void @checkStruct(i32 [[FIELD_I_VAL]], i64 [[FIELD_L_VAL]])
|
H A D | small_struct_2.rscript | 3 // RUN: %rs-filecheck-wrapper %s --check-prefix=CHECK-LL 5 // CHECK-LL: %struct.small_struct_2{{(\.[0-9]+)?}} = type { i64, i32, [4 x i8] } 8 // CHECK-LL: define void @.helper_checkStruct({ i64, i32, [4 x i8] }* nocapture) 9 // CHECK-LL: [[FIELD_L_ADDR:%[0-9]+]] = getelementptr inbounds { i64, i32, [4 x i8] }, { i64, i32, … 10 // CHECK-LL: [[FIELD_L_VAL:%[0-9]+]] = load i64, i64* [[FIELD_L_ADDR]] 11 // CHECK-LL: [[FIELD_I_ADDR:%[0-9]+]] = getelementptr inbounds { i64, i32, [4 x i8] }, { i64, i32, … 12 // CHECK-LL: [[FIELD_I_VAL:%[0-9]+]] = load i32, i32* [[FIELD_I_ADDR]] 13 // CHECK-LL: call void @checkStruct(i64 [[FIELD_L_VAL]], i32 [[FIELD_I_VAL]])
|
H A D | bitfield.rscript | 3 // RUN: %rs-filecheck-wrapper %s --check-prefix=CHECK-LL 5 // CHECK-LL: %struct.NoBitfield{{(\.[0-9]+)?}} = type { i32, [4 x i8], i64, float, [4 x i8] } 6 // CHECK-LL: %struct.Bitfield{{(\.[0-9]+)?}} = type { i32, [4 x i8], i64, i8 } 8 // CHECK-LL: !\23rs_export_type = !{![[NODE:[0-9]+]]} 9 // CHECK-LL: ![[NODE]] = !{!"NoBitfield"}
|
/aosp12/frameworks/rs/driver/ |
H A D | rsdRuntimeStubs.cpp | 1377 ALOGD("%s %lld 0x%llx", s, LL(l), LL(l)); 1381 ALOGD("%s %lld 0x%llx", s, LL(ll), LL(ll)); 1386 ALOGD("%s {%lld, %lld} 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.x), LL(ll.y)); 1391 …"%s {%lld, %lld, %lld} 0x%llx 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.z), LL(ll.x), LL(ll.y)… 1396 …%lld} 0x%llx 0x%llx 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.z), LL(ll.w), LL(ll.x), LL(ll.y)… 1438 ALOGD("%s {%lld, %lld} 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.x), LL(ll.y)); 1443 …"%s {%lld, %lld, %lld} 0x%llx 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.z), LL(ll.x), LL(ll.y)… 1448 …%lld} 0x%llx 0x%llx 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.z), LL(ll.w), LL(ll.x), LL(ll.y)… 1468 ALOGD("%s {%lld, %lld} 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.x), LL(ll.y)); 1472 …"%s {%lld, %lld, %lld} 0x%llx 0x%llx 0x%llx", s, LL(ll.x), LL(ll.y), LL(ll.z), LL(ll.x), LL(ll.y)… [all …]
|
/aosp12/frameworks/compile/slang/tests/P_warnings_rsSetElementAt/ |
H A D | setelementat.rscript | 43 long long LL = 4.0f; 44 rsSetElementAt(A, &LL, 0, 0);
|
/aosp12/build/soong/docs/ |
H A D | map_files.md | 3 Native APIs such as those exposed by the NDK, LL-NDK, or APEX are described by 75 to both APEX and the LL-NDK. 129 Indicates that the version or symbol is to be exposed in the LL-NDK stubs rather 131 both APEX and the LL-NDK. 133 Historically this annotation was spelled `vndk`, but it has always meant LL-NDK. 143 for use by the NDK, LL-NDK, or APEX (similar to Java's `@SystemAPI`). It is
|
/aosp12/frameworks/av/media/libaudioclient/aidl/android/media/ |
H A D | AudioDualMonoMode.aidl | 24 LL = 2, enumConstant
|
/aosp12/bionic/libc/include/android/ |
H A D | legacy_stdlib_inlines.h | 42 return (__n < 0LL) ? -__n : __n; in llabs()
|
/aosp12/art/build/apex/ |
H A D | com.android.art.pem | 25 DzEwFQkxC+LL+FtcueGh4XTpB9hZiXIhakp1iL5iSJA211FjqQVwKb51Nx7qo1J7
|
/aosp12/system/core/libprocessgroup/cgrouprc/ |
H A D | Android.bp | 27 // modules should use libprocessgroup which links to the LL-NDK library
|
/aosp12/hardware/google/pixel/power-libperfmgr/aidl/ |
H A D | PowerHintSession.h | 50 duration(0LL), in AppHintDesc()
|
/aosp12/system/hardware/interfaces/net/netd/1.0/ |
H A D | INetd.hal | 43 * instead pass the networkHandle to the android_set*network LL-NDK APIs.
|
/aosp12/frameworks/native/libs/android_runtime_lazy/ |
H A D | Android.bp | 29 // Some libraries which serve as LL-NDK and NDK as well may depend on this
|
/aosp12/hardware/interfaces/audio/core/all-versions/vts/functional/6.0/ |
H A D | AudioPrimaryHidlHalTest.cpp | 61 {DualMonoMode::LR, DualMonoMode::LL, DualMonoMode::RR}, in TEST_P()
|
/aosp12/bionic/libc/include/ |
H A D | stdint.h | 147 # define INT64_C(c) c ## LL
|
/aosp12/frameworks/av/media/libaudioclient/include/media/ |
H A D | AudioRecord.h | 630 void pauseInternal(nsecs_t ns = 0LL);
|
H A D | AudioTrack.h | 1067 void pauseInternal(nsecs_t ns = 0LL);
|
/aosp12/hardware/qcom/audio/hal/msm8960/ |
H A D | platform.c | 1094 int64_t delay = 0LL; in platform_render_latency() 1117 int64_t delay = 0LL; in platform_capture_latency()
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
H A D | internals.md | 253 The iterative parser is a recursive descent LL(1) parser 274 to make the grammar be LL(1).
|
/aosp12/hardware/interfaces/audio/6.0/ |
H A D | types.hal | 287 LL = 2,
|
/aosp12/hardware/interfaces/audio/7.0/ |
H A D | types.hal | 302 LL = 2,
|
/aosp12/hardware/qcom/audio/hal/msm8916/ |
H A D | platform.c | 2632 int64_t delay = 0LL; 2655 int64_t delay = 0LL;
|
/aosp12/frameworks/av/media/libaudioclient/ |
H A D | AidlConversion.cpp | 2187 case media::AudioDualMonoMode::LL: in aidl2legacy_AudioDualMonoMode_audio_dual_mono_mode_t() 2203 return media::AudioDualMonoMode::LL; in legacy2aidl_audio_dual_mono_mode_t_AudioDualMonoMode()
|
/aosp12/hardware/qcom/audio/hal/msm8974/ |
H A D | platform.c | 3902 int64_t delay = 0LL; in platform_render_latency() 3932 int64_t delay = 0LL; in platform_capture_latency()
|