/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/icu4c/samples/cal/ |
uprint.c | 20 #define BUF_SIZE 128 30 char buf [BUF_SIZE]; 44 arraySize = BUF_SIZE; 67 arraySize = BUF_SIZE;
|
cal.c | 96 #define BUF_SIZE 64 381 char c [BUF_SIZE]; 388 if(count < BUF_SIZE) { 429 UChar s [BUF_SIZE]; 442 udat_format(dfmt, ucal_getMillis(c, status), s, BUF_SIZE, 0, status); 499 unum_format(nfmt, day, s, BUF_SIZE, 0, status); 546 UChar s [BUF_SIZE]; 565 udat_format(dfmt, ucal_getMillis(left_cal, status), s, BUF_SIZE, 0, status); 670 unum_format(nfmt, left_day, s, BUF_SIZE, 0, status); 718 unum_format(nfmt, right_day, s, BUF_SIZE, 0, status) [all...] |
/external/icu4c/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, true); 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...] |
/system/core/libcutils/ |
fs.c | 38 #define BUF_SIZE 64 91 char buf[BUF_SIZE]; 92 if (TEMP_FAILURE_RETRY(read(fd, buf, BUF_SIZE)) == -1) { 122 char buf[BUF_SIZE]; 123 int len = snprintf(buf, BUF_SIZE, "%d", value) + 1; 124 if (len > BUF_SIZE) {
|
/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/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/ |
Krb5LoginModuleTest.java | 166 private static final int BUF_SIZE = 1024; 180 byte[] request = new byte[BUF_SIZE]; 184 int bytesRead = BUF_SIZE; 185 while (bytesRead == BUF_SIZE) {
|
/external/icu4c/extra/uconv/ |
uwmsg.c | 31 #define BUF_SIZE 128 42 char buf [BUF_SIZE]; 54 arraySize = BUF_SIZE; 77 arraySize = BUF_SIZE;
|
/external/chromium/third_party/libjingle/source/talk/base/ |
asyncudpsocket.cc | 37 static const int BUF_SIZE = 64 * 1024; 54 size_ = BUF_SIZE;
|
asynctcpsocket.cc | 47 static const size_t BUF_SIZE = MAX_PACKET_SIZE + PKT_LEN_SIZE; 66 insize_(BUF_SIZE), 68 outsize_(BUF_SIZE),
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
asyncudpsocket.cc | 33 static const int BUF_SIZE = 64 * 1024; 58 size_ = BUF_SIZE;
|
/external/guava/guava/src/com/google/common/io/ |
ByteStreams.java | 49 private static final int BUF_SIZE = 0x1000; // 4K 190 byte[] buf = new byte[BUF_SIZE]; 214 ByteBuffer buf = ByteBuffer.allocate(BUF_SIZE); 603 byte[] buf1 = new byte[BUF_SIZE]; 604 byte[] buf2 = new byte[BUF_SIZE]; 612 int read1 = read(in1, buf1, 0, BUF_SIZE); 613 int read2 = read(in2, buf2, 0, BUF_SIZE); 617 } else if (read1 != BUF_SIZE) { 703 byte[] buf = new byte[BUF_SIZE];
|
CharStreams.java | 54 private static final int BUF_SIZE = 0x800; // 2K chars (4K bytes) 200 CharBuffer buf = CharBuffer.allocate(BUF_SIZE);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
Uploader.java | 54 private static final int BUF_SIZE = 1024 * 8; 165 final byte[] buf = new byte[BUF_SIZE];
|
/external/emma/core/java12/com/vladium/emma/rt/ |
ClassPathProcessorST.java | 52 m_readbuf = new byte [BUF_SIZE]; // don't reuse this across run() calls to reset it to the original size 54 m_baos = new ByteArrayOStream (BUF_SIZE); // don't reuse this across run() calls to reset it to the original size 355 ensureReadCapacity (BUF_SIZE); 394 private static final int BUF_SIZE = 32 * 1024;
|
/dalvik/tools/dmtracedump/ |
CreateTestTrace.c | 76 #define BUF_SIZE 1024 77 char buf[BUF_SIZE]; 139 while (fgets(buf, BUF_SIZE, inputFp)) { 171 while (fgets(buf, BUF_SIZE, inputFp)) {
|
/external/ant-glob/src/org/apache/tools/ant/util/ |
FileUtils.java | 47 static final int BUF_SIZE = 8192;
|
/external/oprofile/utils/ |
opcontrol | 324 BUF_SIZE=0 424 if test "$BUF_SIZE" != "0"; then 425 echo "BUF_SIZE=$BUF_SIZE" >> $SETUP_FILE 783 BUF_SIZE=$val 940 if test "$BUF_SIZE" != "0"; then 941 vecho "BUF_SIZE $BUF_SIZE" 943 vecho "BUF_SIZE default value" 1299 if test $BUF_SIZE != 0; the [all...] |
/frameworks/base/tests/CoreTests/android/core/ |
TestWebServer.java | 315 final static int BUF_SIZE = 2048; 356 buf = new byte[BUF_SIZE]; 425 for (int i = 0; i < BUF_SIZE; i++) {
|