HomeSort by relevance Sort by last modified time
    Searched defs:actualSize (Results 1 - 25 of 155) sorted by null

1 2 3 4 5 6 7

  /cts/tests/tests/dpi/src/android/dpi/cts/
ConfigurationScreenLayoutTest.java 58 int actualSize = mConfig.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
61 assertEquals("Expected screen size value of " + expectedSize + " but got " + actualSize
62 + " for orientation " + ORIENTATIONS[i], expectedSize, actualSize);
  /external/vulkan-validation-layers/layers/
shader_validation.h 152 size_t actualSize = headerSize;
160 for (auto it = good_shader_hashes.begin(); it != good_shader_hashes.end() && actualSize < *pDataSize;
161 it++, out++, actualSize += sizeof(uint32_t)) {
165 *pDataSize = actualSize;
  /frameworks/av/media/libaaudio/tests/
test_various.cpp 421 int32_t actualSize = 0;
443 actualSize = AAudioStream_setBufferSizeInFrames(aaudioStream, 0);
444 EXPECT_GT(actualSize, 0);
445 EXPECT_LE(actualSize, bufferCapacity);
447 actualSize = AAudioStream_setBufferSizeInFrames(aaudioStream, 2 * framesPerBurst);
448 EXPECT_GT(actualSize, framesPerBurst);
449 EXPECT_LE(actualSize, bufferCapacity);
451 actualSize = AAudioStream_setBufferSizeInFrames(aaudioStream, bufferCapacity - 1);
452 EXPECT_GT(actualSize, framesPerBurst);
453 EXPECT_LE(actualSize, bufferCapacity)
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
SocketTimeoutTest.java 116 int actualSize = sock.getSendBufferSize() + serverSocket.getReceiveBufferSize();
126 sock.getOutputStream().write(new byte[actualSize + 1]);
  /cts/tests/app/src/android/app/cts/
WallpaperManagerTest.java 248 Point actualSize = new Point(mWallpaperManager.getDesiredMinimumWidth(),
250 if (actualSize.x > 0 || actualSize.y > 0) {
251 if ((actualSize.x < minSize.x || actualSize.y < minSize.y)) {
253 + minSize.y + ", got x: " + actualSize.x +
254 " y: " + actualSize.y);
  /frameworks/av/media/libmediaplayer2/
MediaPlayer2AudioOutput.cpp 648 size_t actualSize = (*me->mCallback)(
661 ALOGV_IF(actualSize == 0 && buffer->size > 0, "callbackwrapper: empty buffer returned");
663 buffer->size = actualSize;
  /frameworks/base/services/core/java/com/android/server/
PersistentDataBlockService.java 385 long actualSize = getBlockDeviceSize() - HEADER_SIZE - DIGEST_SIZE_BYTES
387 return actualSize <= MAX_DATA_BLOCK_SIZE ? actualSize : MAX_DATA_BLOCK_SIZE;
  /external/libusb/libusb/os/
wince_usb.c 379 DWORD actualSize = len;
382 if (!UkwGetConfigDescriptor(priv->dev, UKW_ACTIVE_CONFIGURATION, buffer, len, &actualSize))
385 return actualSize;
394 DWORD actualSize = len;
397 if (!UkwGetConfigDescriptor(priv->dev, config_index, buffer, len, &actualSize))
400 return actualSize;
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 359 int actualSize = 0;
360 for (; actualSize < all.length; actualSize++) {
361 if (all[actualSize] == null) {
365 return Arrays.copyOfRange(all, 0, actualSize);
  /cts/tests/camera/src/android/hardware/camera2/cts/
AllocationTest.java 449 int actualSize = data.length;
454 "(%d)", packedSize, actualSize), packedSize <= actualSize);
477 if (VERBOSE) Log.v(TAG, "validating Buffer , size = " + actualSize);
    [all...]
RobustnessTest.java 152 Size actualSize = new Size(imageWidth, imageHeight);
154 assertTrue("Camera does not contain outputted image resolution " + actualSize,
155 testSizes.contains(actualSize));
    [all...]
  /hardware/intel/common/libwsbm/src/
wsbm_slabpool.c 114 unsigned long actualSize;
245 (void)munmap(kbo->virtual, kbo->actualSize);
341 if ((kboTmp->actualSize == size) &&
417 kbo->actualSize = arg.rep.bo_size;
422 kbo->virtual = mmap(0, kbo->actualSize,
465 numBuffers = slab->kbo->actualSize / header->bufSize;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadGroupTest.java 708 int actualSize = 0;
709 for (; actualSize < all.length; actualSize++) {
710 if (all[actualSize] == null) {
715 if (actualSize == all.length) {
718 result = new ThreadGroup[actualSize];
719 System.arraycopy(all, 0, result, 0, actualSize);
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp     [all...]
  /external/mdnsresponder/mDNSWindows/
mDNSWin32.c     [all...]
  /frameworks/base/core/java/com/android/internal/widget/
FloatingToolbar.java     [all...]
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderDef.h 502 uint32_t actualSize;
  /prebuilts/tools/common/fest/
fest-assert-1.2.jar 
  /prebuilts/misc/common/truth/
truth-0.28.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.26/
truth-0.26.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.28/
truth-0.28.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.31/
truth-0.31.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.34/
truth-0.34.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.36/
truth-0.36.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.24/
truth-0.24.jar 

Completed in 414 milliseconds

1 2 3 4 5 6 7