HomeSort by relevance Sort by last modified time
    Searched defs:buf1 (Results 26 - 50 of 148) sorted by null

12 3 4 5 6

  /external/bison/lib/
localcharset.c 190 char buf1[50+1]; local
211 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
213 l1 = strlen (buf1);
233 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);
  /external/e2fsprogs/e2fsck/
crc32.c 540 unsigned char buf1[SIZE + 4]; local
550 random_garbage(buf1, i);
553 buf3[j] = buf1[j] ^ buf2[j];
555 crc1 = test_step(INIT1, buf1, i);
557 /* Now check that CRC(buf1 ^ buf2) = CRC(buf1) ^ CRC(buf2) */
  /external/e2fsprogs/intl/
localcharset.c 145 char buf1[50+1]; local
169 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
171 l1 = strlen (buf1);
189 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);
  /ndk/tests/device/test-gnustl-full/unit/
deque_test.cpp 204 char buf1[1024]; local
205 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
list_test.cpp 274 char buf1[1024]; local
275 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
hash_test.cpp 380 char buf1[2048]; local
381 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
map_test.cpp 269 char buf1[1024]; local
270 StackAllocator<pair<const int, int> > stack1(buf1, buf1 + sizeof(buf1));
set_test.cpp 278 char buf1[1024]; local
279 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
vector_test.cpp 375 char buf1[1024]; local
376 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
  /ndk/tests/device/test-stlport/unit/
deque_test.cpp 204 char buf1[1024]; local
205 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
list_test.cpp 274 char buf1[1024]; local
275 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
hash_test.cpp 380 char buf1[2048]; local
381 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
map_test.cpp 269 char buf1[1024]; local
270 StackAllocator<pair<const int, int> > stack1(buf1, buf1 + sizeof(buf1));
set_test.cpp 278 char buf1[1024]; local
279 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
vector_test.cpp 375 char buf1[1024]; local
376 StackAllocator<int> stack1(buf1, buf1 + sizeof(buf1));
  /toolchain/binutils/binutils-2.25/intl/
localcharset.c 145 char buf1[50+1]; local
169 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
171 l1 = strlen (buf1);
189 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);
  /external/clang/test/Analysis/
taint-generic.c 143 int *buf1 = (int*)malloc(ts*sizeof(int)); // expected-warning {{Untrusted data is used to specify the buffer size}} local
145 bcopy(buf1, dst, ts); // expected-warning {{Untrusted data is used to specify the buffer size}}
146 __builtin_memcpy(dst, buf1, (ts + 4)*sizeof(char)); // expected-warning {{Untrusted data is used to specify the buffer size}}
  /external/liblzf/
lzf.c 180 u8 buf1[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16]; local
185 while ((us = rread (from, &buf1[MAX_HDR_SIZE], blocksize)) > 0)
187 cs = lzf_compress (&buf1[MAX_HDR_SIZE], us, &buf2[MAX_HDR_SIZE], us > 4 ? us - 4 : us);
202 header = &buf1[MAX_HDR_SIZE - TYPE0_HDR_SIZE];
222 u8 buf1[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16]; local
275 memcpy (buf1, p, l);
283 p = &buf1[l];
291 if (wwrite (to, buf1, us))
296 if (lzf_decompress (buf1, cs, buf2, us) != us)
  /external/libvncserver/libvncclient/
tls_gnutls.c 215 char buf1[500],buf2[10]; local
258 memset(buf1, 0, sizeof(buf1));
261 if (strlen(buf1)>=sizeof(buf1)-1) break;
263 strncat(buf1, buf2, sizeof(buf1)-strlen(buf1)-1);
266 buf1);
tls_openssl.c 368 char buf1[500],buf2[10]; local
411 memset(buf1, 0, sizeof(buf1));
414 if (strlen(buf1)>=sizeof(buf1)-1) break;
416 strncat(buf1, buf2, sizeof(buf1)-strlen(buf1)-1);
419 buf1);
  /external/opencv3/modules/ml/test/
test_save_load.cpp 103 uchar buf1[BUFSZ], buf2[BUFSZ]; local
106 size_t r1 = fread(buf1, 1, BUFSZ, fs1);
108 if( r1 != r2 || memcmp(buf1, buf2, r1) != 0 )
  /bionic/tests/
stdio_test.cpp 962 char buf1[4 * 4]; local
963 memset(buf1, 0, sizeof(buf1));
964 ASSERT_EQ(2U, fread(buf1, 4, 4, fp));
965 ASSERT_STREQ("0123456789", buf1);
    [all...]
  /external/icu/icu4c/source/test/cintltst/
utransts.c 251 char buf1[BUF_CAP]; local
285 utrans_getID(inverse1, buf1, BUF_CAP);
286 if(strcmp(buf1, TransID[i+1]) != 0){
287 log_err("FAIL :openInverse() for %s returned %s instead of %s\n", TransID[i], buf1, TransID[i+1]);
301 char buf1[BUF_CAP], buf2[BUF_CAP], buf3[BUF_CAP]; local
318 utrans_getID(t1, buf1, BUF_CAP);
322 if(strcmp(buf1, buf3) != 0 ||
323 strcmp(buf1, buf2) == 0) {
330 strcmp(buf1, buf3) == 0) {
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
ChannelEndPoint.java 329 Buffer buf1 = buffer==null?null:buffer.buffer(); local
333 buffer!=null && buffer.length()!=0 && buf1 instanceof NIOBuffer)
335 length = gatheringFlush(header,((NIOBuffer)buf0).getByteBuffer(),buffer,((NIOBuffer)buf1).getByteBuffer());
364 // Adjust position indexs of buf0 and buf1
  /external/libvpx/libvpx/vpx_dsp/x86/
fwd_txfm_sse2.h 22 __m128i buf0, buf1; local
26 buf1 = _mm_mul_epu32(a, b);
27 return _mm_add_epi64(buf0, buf1);
32 __m128i buf1 = _mm_shuffle_epi32(b, _MM_SHUFFLE(0, 0, 2, 0)); local
33 return _mm_unpacklo_epi64(buf0, buf1);

Completed in 2329 milliseconds

12 3 4 5 6