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

1 2 3 4 5 6 7 8 9

  /prebuilts/go/darwin-x86/src/io/ioutil/
ioutil_test.go 12 func checkSize(t *testing.T, path string, size int64) {
35 checkSize(t, filename, int64(len(contents)))
  /prebuilts/go/linux-x86/src/io/ioutil/
ioutil_test.go 12 func checkSize(t *testing.T, path string, size int64) {
35 checkSize(t, filename, int64(len(contents)))
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
TypeList.java 58 int checkSize = Math.min(size, other.size);
59 for (int i = 0; i < checkSize; i++) {
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchTable.java 72 int checkSize = Math.min(thisSize, otherSize);
74 for (int i = 0; i < checkSize; i++) {
CatchHandlerList.java 144 int checkSize = Math.min(thisSize, otherSize);
146 for (int i = 0; i < checkSize; i++) {
  /dalvik/dx/src/com/android/dx/dex/code/
CatchTable.java 72 int checkSize = Math.min(thisSize, otherSize);
74 for (int i = 0; i < checkSize; i++) {
CatchHandlerList.java 146 int checkSize = Math.min(thisSize, otherSize);
148 for (int i = 0; i < checkSize; i++) {
  /hardware/libhardware/modules/sensors/tests/
SensorEventQueue_test.cpp 26 bool checkSize(SensorEventQueue* queue, int expected) {
46 if (!checkSize(queue, 0)) return false;
52 if (!checkSize(queue, 7)) return false;
58 if (!checkSize(queue, 10)) return false;
69 if (!checkSize(queue, 9)) return false;
74 if (!checkSize(queue, 7)) return false;
79 if (!checkSize(queue, 8)) return false;
85 if (!checkSize(queue, 10)) return false;
  /cts/tests/camera/src/android/hardware/cts/
Camera_SizeTest.java 57 checkSize(parameters, WIDTH1, HEIGHT1);
58 checkSize(parameters, WIDTH2, HEIGHT2);
59 checkSize(parameters, WIDTH3, HEIGHT3);
110 private void checkSize(Parameters parameters, int width, int height) {
  /external/lzma/C/
XzDec.c 767 UInt32 checkSize = XzFlags_GetCheckSize(p->streamFlags);
768 UInt32 cur = checkSize - p->pos;
783 if (XzCheck_Final(&p->check, digest) && memcmp(digest, p->buf, checkSize) != 0)
  /external/swiftshader/third_party/LLVM/lib/Object/
COFFObjectFile.cpp 31 bool checkSize(const MemoryBuffer *m, error_code &ec, uint64_t size) {
413 if (!checkSize(Data, ec, sizeof(coff_file_header))) return;
423 if (!checkSize(Data, ec, 0x3c + 8)) return;
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
BaseWrapContentWithAspectRatioTest.java 225 private boolean checkSize = false;
232 matcher.checkSize = true;
239 matcher.checkSize = true;
246 matcher.checkSize = false;
265 if (checkSize && size != mSize) {
279 if (checkSize && size != mSize) {
291 if (checkSize) {
  /system/vold/
KeyStorage.cpp 81 static bool checkSize(const std::string& kind, size_t actual, size_t expected) {
251 if (!checkSize("nonce", nonce.size(), GCM_NONCE_BYTES)) return false;
257 if (!checkSize("mac", mac.size(), GCM_MAC_BYTES)) return false;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieMapTest.java 360 int size = checkSize(0, null, Option.SMALL, 0);
361 checkSize(size, Style.BYTES, Option.SMALL, 0.20);
362 checkSize(size, Style.BYTES, Option.FAST, 0.20);
363 checkSize(size, Style.CHARS, Option.SMALL, 0.30);
364 checkSize(size, Style.CHARS, Option.FAST, 0.30);
372 private int checkSize(int comparisonSize, Style style, Option option, double ratioToMap) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TrieMapTest.java 357 int size = checkSize(0, null, Option.SMALL, 0);
358 checkSize(size, Style.BYTES, Option.SMALL, 0.20);
359 checkSize(size, Style.BYTES, Option.FAST, 0.20);
360 checkSize(size, Style.CHARS, Option.SMALL, 0.30);
361 checkSize(size, Style.CHARS, Option.FAST, 0.30);
369 private int checkSize(int comparisonSize, Style style, Option option, double ratioToMap) {
  /prebuilts/go/darwin-x86/src/os/
os_test.go 1085 func checkSize(t *testing.T, f *File, size int64) {
1100 checkSize(t, f, 0)
1102 checkSize(t, f, 13)
1104 checkSize(t, f, 10)
1106 checkSize(t, f, 1024)
1108 checkSize(t, f, 0)
1111 checkSize(t, f, 13+9) // wrote at offset past where hello, world was.
1120 checkSize(t, f, 0)
1122 checkSize(t, f, 13)
1124 checkSize(t, f, 10
    [all...]
  /prebuilts/go/linux-x86/src/os/
os_test.go 1085 func checkSize(t *testing.T, f *File, size int64) {
1100 checkSize(t, f, 0)
1102 checkSize(t, f, 13)
1104 checkSize(t, f, 10)
1106 checkSize(t, f, 1024)
1108 checkSize(t, f, 0)
1111 checkSize(t, f, 13+9) // wrote at offset past where hello, world was.
1120 checkSize(t, f, 0)
1122 checkSize(t, f, 13)
1124 checkSize(t, f, 10
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 34 static bool checkSize(MemoryBufferRef M, std::error_code &EC, uint64_t Size) {
638 if (!checkSize(Data, EC, sizeof(coff_file_header)))
649 if (checkSize(Data, EC, sizeof(dos_header) + sizeof(COFF::PEMagic))) {
672 checkSize(Data, EC, sizeof(coff_bigobj_file_header))) {
688 // The prior checkSize call may have failed. This isn't a hard error
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineRenderToImageTests.cpp     [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.0.CR3/
netty-codec-http-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.3.Final/
netty-codec-http-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/
netty-codec-http-4.1.6.Final.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/24.3.0-alpha1/
lint-checks-24.3.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/24.3.0-alpha2/
lint-checks-24.3.0-alpha2.jar 

Completed in 563 milliseconds

1 2 3 4 5 6 7 8 9