Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 25 of 31) 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/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()
DMatrix4fTest.java169 float temp = expectedData[i*4 + j]; in testTranspose() local
171 expectedData[j*4 + i] = temp; in testTranspose()
DMatrix3fTest.java218 float temp = expectedData[i*3 + j]; in testTranspose() local
220 expectedData[j*3 + i] = temp; in testTranspose()
/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/tests/tests/selinux/common/src/android/security/
DSELinuxTargetSdkTestBase.java157 File temp = File.createTempFile("badbin", "exe", appDataDir); in canExecuteFromHomeDir() local
158 temp.deleteOnExit(); in canExecuteFromHomeDir()
159 String path = temp.getPath(); in canExecuteFromHomeDir()
166 temp.delete(); in canExecuteFromHomeDir()
/cts/hostsidetests/securitybulletin/securityPatch/includes/
Dmemutils.c191 void* temp = malloc(size); in realloc() local
192 if (temp == NULL) { in realloc()
196 memcpy(temp, ptr, size); in realloc()
198 memcpy(temp, ptr, s_mem_map[i].mem_size); in realloc()
201 return temp; in realloc()
/cts/hostsidetests/install/app/src/android/cts/install/
DUpgradeTest.java49 List<Object[]> temp = new ArrayList<>(); in combinations() local
53 temp.add(new Object[]{installType, staged, enableRollback}); in combinations()
57 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.java55 List<Object[]> temp = new ArrayList<>(); in combinations() local
59 temp.add(new Object[]{installType, staged, enableRollback}); in combinations()
63 return temp; in combinations()
DInstallTest.java65 List<Object[]> temp = new ArrayList<>(); in combinations() local
69 temp.add(new Object[]{installType, staged, enableRollback}); in combinations()
73 return temp; in combinations()
/cts/hostsidetests/install/src/android/cts/install/host/
DInstallTest.java74 List<Object[]> temp = new ArrayList<>(); in combinations() local
77 temp.add(new Object[]{installType, enableRollback}); in combinations()
80 return temp; in combinations()
DUpgradeTest.java68 List<Object[]> temp = new ArrayList<>(); in combinations() local
71 temp.add(new Object[]{installType, enableRollback}); in combinations()
74 return temp; in combinations()
DSamegradeTest.java71 List<Object[]> temp = new ArrayList<>(); in combinations() local
74 temp.add(new Object[]{installType, enableRollback}); in combinations()
77 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.java58 LayoutParams temp = new ViewGroup.LayoutParams(320, 480); in testConstructor() local
60 new ViewGroup.LayoutParams(temp); in testConstructor()
/cts/hostsidetests/blobstore/src/com/android/cts/host/blob/
DStatsdBlobStoreAtomTest.java122 final AtomsProto.BlobInfo temp = atom.getBlobInfo(); in testPulledBlobStoreStats() local
123 if (temp.getCommitters().getCommitter(0).getUid() == mTestAppUid) { in testPulledBlobStoreStats()
124 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()

12