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

1 2 3 4

  /frameworks/rs/java/tests/MathErr/src/com/example/android/rs/matherr/
MathErr.java 31 private final int BUF_SIZE = 4096;
32 float mSrc[] = new float[BUF_SIZE];
33 float mRef[] = new float[BUF_SIZE];
34 float mRes[] = new float[BUF_SIZE];
40 mAllocationSrc = Allocation.createSized(rs, Element.F32(rs), BUF_SIZE);
41 mAllocationRes = Allocation.createSized(rs, Element.F32(rs), BUF_SIZE);
48 for (int i=0; i < BUF_SIZE; i++) {
57 for (int i=0; i < BUF_SIZE; i++) {
70 for (int i=0; i < BUF_SIZE; i++) {
80 for (int i=0; i < BUF_SIZE; i++)
    [all...]
  /external/ltrace/testsuite/ltrace.minor/
count-record.c 15 #define BUF_SIZE 100
23 char buffer[BUF_SIZE];
38 getcwd (buffer, BUF_SIZE);
  /external/vixl/examples/
abs.cc 29 #define BUF_SIZE (4096)
48 byte assm_buf[BUF_SIZE];
49 MacroAssembler masm(assm_buf, BUF_SIZE);
getting-started.cc 30 #define BUF_SIZE (4096)
45 byte assm_buf[BUF_SIZE];
46 MacroAssembler masm(assm_buf, BUF_SIZE);
add3-double.cc 29 #define BUF_SIZE (4096)
49 byte assm_buf[BUF_SIZE];
50 MacroAssembler masm(assm_buf, BUF_SIZE);
debugger.cc 32 #define BUF_SIZE (4096)
53 byte assm_buf[BUF_SIZE];
54 MacroAssembler masm(assm_buf, BUF_SIZE);
factorial.cc 29 #define BUF_SIZE (4096)
58 byte assm_buf[BUF_SIZE];
59 MacroAssembler masm(assm_buf, BUF_SIZE);
add4-double.cc 29 #define BUF_SIZE (4096)
57 byte assm_buf[BUF_SIZE];
58 MacroAssembler masm(assm_buf, BUF_SIZE);
check-bounds.cc 29 #define BUF_SIZE (4096)
77 byte assm_buf[BUF_SIZE];
78 MacroAssembler masm(assm_buf, BUF_SIZE);
factorial-rec.cc 29 #define BUF_SIZE (4096)
60 byte assm_buf[BUF_SIZE];
61 MacroAssembler masm(assm_buf, BUF_SIZE);
sum-array.cc 30 #define BUF_SIZE (4096)
64 byte assm_buf[BUF_SIZE];
65 MacroAssembler masm(assm_buf, BUF_SIZE);
swap-int32.cc 29 #define BUF_SIZE (4096)
66 byte assm_buf[BUF_SIZE];
67 MacroAssembler masm(assm_buf, BUF_SIZE);
swap4.cc 29 #define BUF_SIZE (4096)
52 byte assm_buf[BUF_SIZE];
53 MacroAssembler masm(assm_buf, BUF_SIZE);
  /external/chromium_org/third_party/icu/source/samples/cal/
uprint.c 20 #define BUF_SIZE 128
30 char buf [BUF_SIZE];
44 arraySize = BUF_SIZE;
67 arraySize = BUF_SIZE;
  /external/chromium_org/third_party/icu/source/samples/date/
uprint.c 21 #define BUF_SIZE 128
31 char buf [BUF_SIZE];
45 arraySize = BUF_SIZE;
68 arraySize = BUF_SIZE;
  /external/icu/icu4c/source/samples/cal/
uprint.c 20 #define BUF_SIZE 128
30 char buf [BUF_SIZE];
44 arraySize = BUF_SIZE;
67 arraySize = BUF_SIZE;
  /external/icu/icu4c/source/samples/date/
uprint.c 21 #define BUF_SIZE 128
31 char buf [BUF_SIZE];
45 arraySize = BUF_SIZE;
68 arraySize = BUF_SIZE;
  /frameworks/base/media/jni/
android_media_ResampleInputStream.cpp 73 static const int BUF_SIZE = 2048;
82 if (nFir21 + jNpoints * 2 > BUF_SIZE) {
89 short in[BUF_SIZE];
93 short out[BUF_SIZE];
  /libcore/luni/src/main/java/java/util/zip/
DeflaterOutputStream.java 34 static final int BUF_SIZE = 512;
54 this(os, new Deflater(), BUF_SIZE, false);
61 this(os, def, BUF_SIZE, false);
76 this(os, new Deflater(), BUF_SIZE, syncFlush);
85 this(os, def, BUF_SIZE, syncFlush);
GZIPOutputStream.java 54 this(os, BUF_SIZE, false);
63 this(os, BUF_SIZE, syncFlush);
InflaterInputStream.java 63 static final int BUF_SIZE = 512;
77 this(is, new Inflater(), BUF_SIZE);
90 this(is, inflater, BUF_SIZE);
  /external/tinyxml2/
tinyxml2.cpp 1071 char buf[BUF_SIZE];
1072 XMLUtil::ToStr( v, buf, BUF_SIZE );
1079 char buf[BUF_SIZE];
1080 XMLUtil::ToStr( v, buf, BUF_SIZE );
1087 char buf[BUF_SIZE];
1088 XMLUtil::ToStr( v, buf, BUF_SIZE );
1094 char buf[BUF_SIZE];
1095 XMLUtil::ToStr( v, buf, BUF_SIZE );
1101 char buf[BUF_SIZE];
1102 XMLUtil::ToStr( v, buf, BUF_SIZE );
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_renderer.h 16 #define BUF_SIZE (100 * 4 * 3 * 4)
29 float buffer[BUF_SIZE];
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_renderer.h 16 #define BUF_SIZE (100 * 4 * 3 * 4)
29 float buffer[BUF_SIZE];
  /external/chromium_org/third_party/boringssl/src/crypto/rand/
urandom.c 55 /* BUF_SIZE is intended to be a 4K allocation with malloc overhead. struct
57 #define BUF_SIZE (4096 - 16)
74 static const size_t rand_bytes_per_buf = BUF_SIZE - sizeof(struct rand_buffer);
159 if (!urandom_buffering || requested > BUF_SIZE / 2) {
190 buf = (struct rand_buffer *)OPENSSL_malloc(BUF_SIZE);

Completed in 1960 milliseconds

1 2 3 4