HomeSort by relevance Sort by last modified time
    Searched defs:expectedBytes (Results 1 - 12 of 12) sorted by null

  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmComputeShaderTestUtil.cpp 39 std::vector<deUint8> expectedBytes;
40 expectedOutputs[outputNdx]->getBytes(expectedBytes);
42 std::vector<float> expectedFloats (expectedBytes.size() / sizeof (float));
43 std::vector<float> actualFloats (expectedBytes.size() / sizeof (float));
45 memcpy(&expectedFloats[0], &expectedBytes.front(), expectedBytes.size());
46 memcpy(&actualFloats[0], outputAllocs[outputNdx]->getHostPtr(), expectedBytes.size());
vktSpvAsmComputeShaderCase.cpp 480 vector<deUint8> expectedBytes;
482 expectedOutput->getBytes(expectedBytes);
484 if (deMemCmp(&expectedBytes.front(), outputAllocs[outputNdx]->getHostPtr(), expectedBytes.size()))
vktSpvAsm16bitStorageTests.cpp 206 vector<deUint8> expectedBytes;
207 expectedOutputs[outputNdx].second->getBytes(expectedBytes);
210 const float* expectedAsFloat = reinterpret_cast<const float*>(&expectedBytes.front());
211 const deUint32 count = static_cast<deUint32>(expectedBytes.size() / sizeof(float));
232 vector<deUint8> expectedBytes;
233 expectedOutputs[outputNdx]->getBytes(expectedBytes);
236 const float* expectedAsFloat = reinterpret_cast<const float*>(&expectedBytes.front());
237 const deUint32 count = static_cast<deUint32>(expectedBytes.size() / sizeof(float));
    [all...]
vktSpvAsmGraphicsShaderTestUtil.cpp     [all...]
vktSpvAsmInstructionTests.cpp 260 vector<deUint8> expectedBytes;
264 expectedOutputs[0]->getBytes(expectedBytes);
266 const deInt32* const expectedOutputAsInt = reinterpret_cast<const deInt32* const>(&expectedBytes.front());
272 for (size_t idx = 0; idx < expectedBytes.size() / sizeof(deInt32); ++idx)
882 vector<deUint8> expectedBytes;
883 expectedOutputs[0]->getBytes(expectedBytes);
885 const float* expectedOutputAsFloat = reinterpret_cast<const float*>(&expectedBytes.front());
888 for (size_t idx = 0; idx < expectedBytes.size() / sizeof(float); ++idx)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Latin1Converter.java 75 int expectedBytes = 0;
95 expectedBytes = -1;
97 for (; expectedBytes < 8 && (test & 0x80) == 0x80; test = test << 1)
99 expectedBytes++;
113 if (expectedBytes > 0 && (b & 0xC0) == 0x80)
117 expectedBytes--;
119 if (expectedBytes == 0)
  /system/vold/
MoveStorage.cpp 85 uint64_t expectedBytes = GetTreeBytes(path);
118 ((deltaFreeBytes * stepProgress) / expectedBytes), 0, stepProgress), listener);
127 uint64_t expectedBytes = GetTreeBytes(fromPath);
130 if (expectedBytes > startFreeBytes) {
131 LOG(ERROR) << "Data size " << expectedBytes << " is too large to fit in free space "
169 ((deltaFreeBytes * stepProgress) / expectedBytes), 0, stepProgress), listener);
  /libcore/ojluni/src/test/java/time/tck/java/time/
AbstractTCKTest.java 112 protected static void assertSerializedBySer(Object object, byte[] expectedBytes, byte[]... matches) throws Exception {
135 if (expectedBytes.length < 256) {
137 assertEquals(dis.readUnsignedByte(), expectedBytes.length, "blockdata length incorrect");
140 assertEquals(dis.readInt(), expectedBytes.length, "blockdatalong length incorrect");
142 byte[] input = new byte[expectedBytes.length];
144 assertEquals(input, expectedBytes);
  /frameworks/rs/tests/java_api/LivePreview/src/com/android/rs/livepreview/
CameraPreviewActivity.java 290 int expectedBytes = mPreviewSize.width * mPreviewSize.height *
293 mCamera.addCallbackBuffer(new byte[expectedBytes]);
352 int expectedBytes = mPreviewSize.width * mPreviewSize.height *
355 if (expectedBytes != data.length) {
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ManageCachePage.java 370 long expectedBytes = mCacheStorageInfo.getExpectedUsedBytes();
384 (int) (expectedBytes * PROGRESS_BAR_MAX / totalBytes));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/
CameraFormatsActivity.java 626 int expectedBytes;
636 expectedBytes = ySize + uvSize * 2;
641 expectedBytes = mPreviewSize.width * mPreviewSize.height *
645 if (expectedBytes != data.length) {
649 expectedBytes + ", but got " +
  /frameworks/base/media/java/android/media/audiofx/
DynamicsProcessing.java     [all...]

Completed in 1972 milliseconds