Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 25 of 32) sorted by relevance

12

/cts/apps/CtsVerifier/include/colorchecker/
Dvec3.h37 Vec3<T> temp(mRed + param.r(), mGreen + param.g(), mBlue + param.b());
38 return temp;
42 Vec3<T> temp(mRed - param.r(), mGreen - param.g(), mBlue - param.b());
43 return temp;
47 Vec3<T> temp(mRed * param, mGreen * param, mBlue * param);
48 return temp;
53 Vec3<float> temp(mRed * static_cast<U>(param.r()),
56 return temp;
61 Vec3<float> temp; variable
63 temp.set(static_cast<float>(mRed) / static_cast<float>(param),
[all …]
Dvec2.h34 Vec2<T> temp(mX + param.x(), mY + param.y());
35 return temp;
39 Vec2<T> temp(mX - param.x(), mY - param.y());
40 return temp;
/cts/tests/openglperf2/jni/graphics/
DMatrix.cpp78 Matrix* temp = new Matrix(*this); in translate() local
79 if (m != NULL && temp != NULL) { in translate()
80 multiply(*temp, *m); in translate()
83 delete temp; in translate()
88 Matrix* temp = new Matrix(*this); in scale() local
89 if (m != NULL && temp != NULL) { in scale()
90 multiply(*temp, *m); in scale()
93 delete temp; in scale()
98 Matrix* temp = new Matrix(*this); in rotate() local
99 if (m != NULL && temp != NULL) { in rotate()
[all …]
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2014-9803/
Dpoc.c32 char *temp = in check_zero_page() local
34 int zeropage = *(int *)temp; in check_zero_page()
35 munmap(temp, 4096); in check_zero_page()
/cts/tests/tests/systemui/src/android/systemui/cts/
DColorUtils.java40 int temp = Math.min(b, Math.min(r, g)); in hue() local
44 if (V == temp) { in hue()
47 final float vtemp = (float) (V - temp); in hue()
/cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
DHardwarePropertiesManagerTest.java39 private void checkDeviceTemp(float temp, float throttlingTemp, float shutdownTemp) { in checkDeviceTemp() argument
41 assertTrue(Math.abs(temp) < MAX_DEVICE_TEMPERATURE in checkDeviceTemp()
42 || temp == HardwarePropertiesManager.UNDEFINED_TEMPERATURE); in checkDeviceTemp()
51 assertTrue(temp > shutdownTemp in checkDeviceTemp()
52 || temp == HardwarePropertiesManager.UNDEFINED_TEMPERATURE); in checkDeviceTemp()
58 assertTrue(temp < shutdownTemp in checkDeviceTemp()
59 || temp == HardwarePropertiesManager.UNDEFINED_TEMPERATURE); in checkDeviceTemp()
DVrTemperatureTest.java35 private void checkDeviceTemp(float temp, float throttlingTemp, float shutdownTemp, in checkDeviceTemp() argument
45 assertTrue(temp > shutdownTemp in checkDeviceTemp()
46 || temp == HardwarePropertiesManager.UNDEFINED_TEMPERATURE); in checkDeviceTemp()
52 assertTrue(temp < shutdownTemp in checkDeviceTemp()
53 || temp == HardwarePropertiesManager.UNDEFINED_TEMPERATURE); in checkDeviceTemp()
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DRSBaseCompute.java249 double temp = minArray[i]; in enforceOrdering() local
251 maxArray[i] = temp; in enforceOrdering()
264 float temp = minArray[i]; in enforceOrdering() local
266 maxArray[i] = temp; in enforceOrdering()
280 short temp = minArray[i]; in enforceOrdering() local
282 maxArray[i] = temp; in enforceOrdering()
294 long temp = minArray[i]; in enforceOrdering() local
296 maxArray[i] = temp; in enforceOrdering()
308 long temp = minArray[i]; in enforceOrdering() local
310 maxArray[i] = temp; in enforceOrdering()
[all …]
DSendToClient.java105 private String createErrorMsgF(int i, int in, int temp) { in createErrorMsgF() argument
110 bf.append("; exceptValue = " + temp); in createErrorMsgF()
DMatrix2fTest.java171 float temp = expectedData[1]; in testTranspose() local
173 expectedData[2] = temp; in testTranspose()
/cts/hostsidetests/install/app/src/android/cts/install/
DUpgradeTest.java51 List<Object[]> temp = new ArrayList<>(); in combinations() local
55 temp.add(new Object[]{installType, staged, enableRollback}); in combinations()
59 return temp; in combinations()
DDowngradeTest.java50 List<Object[]> temp = new ArrayList<>(); in combinations() local
54 temp.add(new Object[]{installType, staged, enableRollback}); in combinations()
58 return temp; in combinations()
DSamegradeTest.java56 List<Object[]> temp = new ArrayList<>(); in combinations() local
60 temp.add(new Object[]{installType, staged, enableRollback}); in combinations()
64 return temp; in combinations()
DInstallTest.java64 List<Object[]> temp = new ArrayList<>(); in combinations() local
68 temp.add(new Object[]{installType, staged, enableRollback}); in combinations()
72 return temp; in combinations()
/cts/hostsidetests/securitybulletin/securityPatch/includes/
Dmemutils.c193 void* temp = malloc(size); in realloc() local
194 if (temp == NULL) { in realloc()
198 memcpy(temp, ptr, size); in realloc()
200 memcpy(temp, ptr, s_mem_map[i].mem_size); in realloc()
203 return temp; in realloc()
/cts/tests/tests/selinux/common/src/android/security/
DSELinuxTargetSdkTestBase.java161 File temp = File.createTempFile("badbin", "exe", appDataDir); in canExecuteFromHomeDir() local
162 temp.deleteOnExit(); in canExecuteFromHomeDir()
163 String path = temp.getPath(); in canExecuteFromHomeDir()
170 temp.delete(); in canExecuteFromHomeDir()
/cts/hostsidetests/install/src/android/cts/install/host/
DUpgradeTest.java69 List<Object[]> temp = new ArrayList<>(); in combinations() local
72 temp.add(new Object[]{installType, enableRollback}); in combinations()
75 return temp; in combinations()
DInstallTest.java74 List<Object[]> temp = new ArrayList<>(); in combinations() local
77 temp.add(new Object[]{installType, enableRollback}); in combinations()
80 return temp; in combinations()
DSamegradeTest.java72 List<Object[]> temp = new ArrayList<>(); in combinations() local
75 temp.add(new Object[]{installType, enableRollback}); in combinations()
78 return temp; in combinations()
DDowngradeTest.java73 List<Object[]> temp = new ArrayList<>(); in combinations() local
76 temp.add(new Object[]{installType, enableRollback}); in combinations()
79 return temp; in combinations()
/cts/tests/tests/view/src/android/view/cts/
DViewGroup_LayoutParamsTest.java60 LayoutParams temp = new ViewGroup.LayoutParams(320, 480); in testConstructor() local
62 new ViewGroup.LayoutParams(temp); in testConstructor()
/cts/hostsidetests/blobstore/src/com/android/cts/host/blob/
DStatsdBlobStoreAtomTest.java123 final AtomsProto.BlobInfo temp = atom.getBlobInfo(); in testPulledBlobStoreStats() local
124 if (temp.getCommitters().getCommitter(0).getUid() == mTestAppUid) { in testPulledBlobStoreStats()
125 blobInfo = temp; in testPulledBlobStoreStats()
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
DRGBZ.java170 int temp = (depth_data[i] & 0x000000FF) << 24; in setAlphaChannelFromBitmap() local
171 v = v | temp; in setAlphaChannelFromBitmap()
/cts/hostsidetests/stagedinstall/src/com/android/tests/stagedinstall/host/
DStagedInstallTest.java681 List<ApexInfo> temp = in testApexInfoList() local
685 assertThat(temp).hasSize(1); in testApexInfoList()
686 ApexInfo apexInfo = temp.get(0); in testApexInfoList()
838 List<ApexInfo> temp = in getShimApexInfo() local
842 assertThat(temp).hasSize(1); in getShimApexInfo()
843 return temp.get(0); in getShimApexInfo()
/cts/hostsidetests/multidevices/
DAndroid.bp79 …"$(location soong_zip) -o $(genDir)/multidevice-temp.zip -P android-cts-verifier/MultiDevice -C $$…
80 …"$(location merge_zips) $(out) $(genDir)/multidevice-temp.zip $(location :multidevice-test-list) $…

12