HomeSort by relevance Sort by last modified time
    Searched defs:buf1 (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/stlport/test/unit/
cstring_test.cpp 45 char buf1[1], buf2[1]; local
46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL );
47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL );
48 CPPUNIT_CHECK( std::memset(buf1, 0, 1) != NULL );
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-gnustl-full/unit/
cstring_test.cpp 45 char buf1[1], buf2[1]; local
46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL );
47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL );
48 CPPUNIT_CHECK( std::memset(buf1, 0, 1) != NULL );
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/
cstring_test.cpp 45 char buf1[1], buf2[1]; local
46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL );
47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL );
48 CPPUNIT_CHECK( std::memset(buf1, 0, 1) != NULL );
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));
  /system/core/toolbox/
cmp.c 13 char buf1[4096], buf2[4096]; local
62 res1 = read(fd1, &buf1, sizeof(buf1));
69 if(buf1[i] != buf2[i]) {
72 printf(" 0x%02x 0x%02x", buf1[i], buf2[i]);
  /external/iproute2/tc/
m_nat.c 172 char buf1[256]; local
193 format_host(AF_INET, 4, &sel->old_addr, buf1, sizeof(buf1)),
  /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);
  /external/bluetooth/glib/tests/
mainloop-test.c 105 char buf1[32]; local
112 if (!read_all (source, buf1, 32) ||
119 sprintf (result, "%d", atoi(buf1) + atoi(buf2));
216 char buf1[32]; local
219 sprintf (buf1, "%d", a);
222 write_all (in, buf1, 32);
  /external/chromium/net/disk_cache/
entry_unittest.cc 1221 scoped_refptr<net::IOBuffer> buf1 = new net::IOBuffer(kSize); local
1305 scoped_refptr<net::IOBuffer> buf1 = new net::IOBuffer(kSize); local
    [all...]
  /external/openssl/crypto/asn1/
asn1_lib.c 465 char buf1[DECIMAL_SIZE(address)+1],buf2[DECIMAL_SIZE(offset)+1]; local
467 BIO_snprintf(buf1,sizeof buf1,"%lu",(unsigned long)address);
469 ERR_add_error_data(4,"address=",buf1," offset=",buf2);

Completed in 376 milliseconds

1 2 3