Searched refs:BUF_SIZE (Results 1 - 25 of 57) sorted by relevance

123

/external/ltrace/testsuite/ltrace.minor/
H A Dcount-record.c15 #define BUF_SIZE 100 macro
23 char buffer[BUF_SIZE];
38 getcwd (buffer, BUF_SIZE);
/external/vixl/examples/
H A Dabs.cc29 #define BUF_SIZE (4096) macro
48 byte assm_buf[BUF_SIZE];
49 MacroAssembler masm(assm_buf, BUF_SIZE);
H A Dgetting-started.cc30 #define BUF_SIZE (4096) macro
45 byte assm_buf[BUF_SIZE];
46 MacroAssembler masm(assm_buf, BUF_SIZE);
H A Dadd3-double.cc29 #define BUF_SIZE (4096) macro
49 byte assm_buf[BUF_SIZE];
50 MacroAssembler masm(assm_buf, BUF_SIZE);
H A Ddebugger.cc32 #define BUF_SIZE (4096) macro
53 byte assm_buf[BUF_SIZE];
54 MacroAssembler masm(assm_buf, BUF_SIZE);
H A Dfactorial.cc29 #define BUF_SIZE (4096) macro
58 byte assm_buf[BUF_SIZE];
59 MacroAssembler masm(assm_buf, BUF_SIZE);
H A Dadd4-double.cc29 #define BUF_SIZE (4096) macro
57 byte assm_buf[BUF_SIZE];
58 MacroAssembler masm(assm_buf, BUF_SIZE);
H A Dcheck-bounds.cc29 #define BUF_SIZE (4096) macro
77 byte assm_buf[BUF_SIZE];
78 MacroAssembler masm(assm_buf, BUF_SIZE);
H A Dfactorial-rec.cc29 #define BUF_SIZE (4096) macro
60 byte assm_buf[BUF_SIZE];
61 MacroAssembler masm(assm_buf, BUF_SIZE);
H A Dsum-array.cc30 #define BUF_SIZE (4096) macro
64 byte assm_buf[BUF_SIZE];
65 MacroAssembler masm(assm_buf, BUF_SIZE);
H A Dswap-int32.cc29 #define BUF_SIZE (4096) macro
66 byte assm_buf[BUF_SIZE];
67 MacroAssembler masm(assm_buf, BUF_SIZE);
H A Dswap4.cc29 #define BUF_SIZE (4096) macro
52 byte assm_buf[BUF_SIZE];
53 MacroAssembler masm(assm_buf, BUF_SIZE);
/external/chromium_org/third_party/icu/source/samples/cal/
H A Duprint.c20 #define BUF_SIZE 128 macro
30 char buf [BUF_SIZE];
44 arraySize = BUF_SIZE;
67 arraySize = BUF_SIZE;
H A Dcal.c96 #define BUF_SIZE 64 macro
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,
[all...]
/external/chromium_org/third_party/icu/source/samples/date/
H A Duprint.c21 #define BUF_SIZE 128 macro
31 char buf [BUF_SIZE];
45 arraySize = BUF_SIZE;
68 arraySize = BUF_SIZE;
/external/icu/icu4c/source/samples/cal/
H A Duprint.c20 #define BUF_SIZE 128 macro
30 char buf [BUF_SIZE];
44 arraySize = BUF_SIZE;
67 arraySize = BUF_SIZE;
H A Dcal.c96 #define BUF_SIZE 64 macro
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,
[all...]
/external/icu/icu4c/source/samples/date/
H A Duprint.c21 #define BUF_SIZE 128 macro
31 char buf [BUF_SIZE];
45 arraySize = BUF_SIZE;
68 arraySize = BUF_SIZE;
/external/tinyxml2/
H A Dtinyxml2.cpp1071 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/
H A Dxorg_renderer.h16 #define BUF_SIZE (100 * 4 * 3 * 4) macro
29 float buffer[BUF_SIZE];
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_renderer.h16 #define BUF_SIZE (100 * 4 * 3 * 4) macro
29 float buffer[BUF_SIZE];
/external/chromium_org/third_party/boringssl/src/crypto/rand/
H A Durandom.c55 /* BUF_SIZE is intended to be a 4K allocation with malloc overhead. struct
57 #define BUF_SIZE (4096 - 16) macro
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);
/external/chromium_org/third_party/icu/source/extra/uconv/
H A Duwmsg.c31 #define BUF_SIZE 128 macro
42 char buf [BUF_SIZE];
54 arraySize = BUF_SIZE;
77 arraySize = BUF_SIZE;
/external/icu/icu4c/source/extra/uconv/
H A Duwmsg.c31 #define BUF_SIZE 128 macro
42 char buf [BUF_SIZE];
54 arraySize = BUF_SIZE;
77 arraySize = BUF_SIZE;
/external/chromium_org/third_party/webrtc/base/
H A Dasyncudpsocket.cc16 static const int BUF_SIZE = 64 * 1024; member in namespace:rtc
41 size_ = BUF_SIZE;

Completed in 314 milliseconds

123