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

1 2 3 4 5 6 7

  /external/skia/gm/
modecolorfilters.cpp 39 static sk_sp<SkShader> make_bg_shader(int checkSize) {
41 bmp.allocN32Pixels(2 * checkSize, 2 * checkSize);
47 SkIntToScalar(checkSize), SkIntToScalar(checkSize));
48 SkRect rect1 = SkRect::MakeXYWH(SkIntToScalar(checkSize), SkIntToScalar(checkSize),
49 SkIntToScalar(checkSize), SkIntToScalar(checkSize));
  /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 55 checkSize(parameters, WIDTH1, HEIGHT1);
56 checkSize(parameters, WIDTH2, HEIGHT2);
57 checkSize(parameters, WIDTH3, HEIGHT3);
108 private void checkSize(Parameters parameters, int width, int height) {
  /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 71 int checkSize = Math.min(thisSize, otherSize);
73 for (int i = 0; i < checkSize; i++) {
CatchHandlerList.java 144 int checkSize = Math.min(thisSize, otherSize);
146 for (int i = 0; i < checkSize; i++) {
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseWrapContentWithAspectRatioTest.java 223 private boolean checkSize = false;
230 matcher.checkSize = true;
237 matcher.checkSize = true;
244 matcher.checkSize = false;
263 if (checkSize && size != mSize) {
277 if (checkSize && size != mSize) {
289 if (checkSize) {
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprof.java 121 public String checkSize(int actual) {
BinaryHprofWriter.java 135 String error = hprofTag.checkSize(recordLength);
BinaryHprofReader.java 180 String error = hprofTag.checkSize(recordLength);
  /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)))
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieMapTest.java 350 int size = checkSize(0, null, Option.SMALL, 0);
351 checkSize(size, Style.BYTES, Option.SMALL, 0.20);
352 checkSize(size, Style.BYTES, Option.FAST, 0.20);
353 checkSize(size, Style.CHARS, Option.SMALL, 0.30);
354 checkSize(size, Style.CHARS, Option.FAST, 0.30);
362 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 349 int size = checkSize(0, null, Option.SMALL, 0);
350 checkSize(size, Style.BYTES, Option.SMALL, 0.20);
351 checkSize(size, Style.BYTES, Option.FAST, 0.20);
352 checkSize(size, Style.CHARS, Option.SMALL, 0.30);
353 checkSize(size, Style.CHARS, Option.FAST, 0.30);
361 private int checkSize(int comparisonSize, Style style, Option option, double ratioToMap) {
  /external/skia/tools/
sk_tool_utils.h 105 int checkSize);
110 int checkSize);
sk_tool_utils.cpp 245 SkBitmap create_checkerboard_bitmap(int w, int h, SkColor c1, SkColor c2, int checkSize) {
250 sk_tool_utils::draw_checkerboard(&canvas, c1, c2, checkSize);
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.cpp     [all...]
  /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;
  /system/vold/
KeyStorage.cpp 82 static bool checkSize(const std::string& kind, size_t actual, size_t expected) {
210 if (!checkSize("nonce", nonce.size(), GCM_NONCE_BYTES)) return false;
216 if (!checkSize("mac", mac.size(), GCM_MAC_BYTES)) return false;
  /prebuilts/go/darwin-x86/src/os/
os_test.go 963 func checkSize(t *testing.T, f *File, size int64) {
978 checkSize(t, f, 0)
980 checkSize(t, f, 13)
982 checkSize(t, f, 10)
984 checkSize(t, f, 1024)
986 checkSize(t, f, 0)
989 checkSize(t, f, 13+9) // wrote at offset past where hello, world was.
998 checkSize(t, f, 0)
1000 checkSize(t, f, 13)
1002 checkSize(t, f, 10
    [all...]
  /prebuilts/go/linux-x86/src/os/
os_test.go 963 func checkSize(t *testing.T, f *File, size int64) {
978 checkSize(t, f, 0)
980 checkSize(t, f, 13)
982 checkSize(t, f, 10)
984 checkSize(t, f, 1024)
986 checkSize(t, f, 0)
989 checkSize(t, f, 13+9) // wrote at offset past where hello, world was.
998 checkSize(t, f, 0)
1000 checkSize(t, f, 13)
1002 checkSize(t, f, 10
    [all...]
  /external/lzma/C/
XzDec.c 763 UInt32 checkSize = XzFlags_GetCheckSize(p->streamFlags);
764 UInt32 cur = checkSize - p->pos;
779 if (XzCheck_Final(&p->check, digest) && memcmp(digest, p->buf, checkSize) != 0)
  /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...]

Completed in 965 milliseconds

1 2 3 4 5 6 7