Home
last modified time | relevance | path

Searched refs:i32 (Results 1 – 4 of 4) sorted by relevance

/cts/suite/audio_quality/test_description/
Dprocessing_main.py159 i32 = struct.unpack("<i", raw)
160 return i32[0]
177 def sendI32(self, i32): argument
178 raw = struct.pack("<i", i32)
/cts/tests/camera/libctscamera2jni/
Dnative-camera-jni.cpp754 if (entry.data.i32[i] == format && in getMaxSizeForFormat()
755 entry.data.i32[i+3] == streamConfigOutputTag && in getMaxSizeForFormat()
756 entry.data.i32[i+1] * entry.data.i32[i+2] > w * h) { in getMaxSizeForFormat()
757 w = entry.data.i32[i+1]; in getMaxSizeForFormat()
758 h = entry.data.i32[i+2]; in getMaxSizeForFormat()
792 if (entry.data.i32[i] == format && in isSizeSupportedForFormat()
793 entry.data.i32[i+3] == streamConfigOutputTag && in isSizeSupportedForFormat()
794 entry.data.i32[i+1] == width && in isSizeSupportedForFormat()
795 entry.data.i32[i+2] == height) { in isSizeSupportedForFormat()
1789 entry.count == 0 || entry.type != ACAMERA_TYPE_BYTE || entry.data.i32 == nullptr) { in Java_android_hardware_camera2_cts_NativeCameraManagerTest_testCameraManagerCharacteristicsNative()
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DScriptGroupTest.java314 Type i32 = new Type.Builder(mRS, Element.I32(mRS)).setX(1).create(); in testScriptGroupSharedGlobal() local
317 Allocation aFailed = Allocation.createTyped(mRS, i32); in testScriptGroupSharedGlobal()
318 Allocation aSharedInt = Allocation.createTyped(mRS, i32); in testScriptGroupSharedGlobal()
Dsmall_structs.rscript231 MAKE_TWO_ELEMENT_STRUCT_TEST(i32, int32_t)