HomeSort by relevance Sort by last modified time
    Searched defs:buf2 (Results 51 - 75 of 118) sorted by null

1 23 4 5

  /ndk/tests/device/test-gnustl-full/unit/
map_test.cpp 272 char buf2[1024]; local
273 StackAllocator<pair<const int, int> > stack2(buf2, buf2 + sizeof(buf2));
set_test.cpp 281 char buf2[1024]; local
282 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2));
vector_test.cpp 378 char buf2[1024]; local
379 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2));
string_test.cpp 1307 char buf2[1024]; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
hash_test.cpp 383 char buf2[2048]; local
384 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2));
map_test.cpp 272 char buf2[1024]; local
273 StackAllocator<pair<const int, int> > stack2(buf2, buf2 + sizeof(buf2));
set_test.cpp 281 char buf2[1024]; local
282 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2));
vector_test.cpp 378 char buf2[1024]; local
379 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2));
string_test.cpp 1307 char buf2[1024]; local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
StringBuffer2Test.java 84 char[] buf2 = { 'W', 'o', 'r', 'l', 'd' }; local
87 sb.append(buf2, 0, buf2.length);
101 char buf2 = 'W'; local
104 sb.append(buf2);
191 String buf2 = "World"; local
194 sb.append(buf2);
311 StringBuffer buf2 = new StringBuffer(""); local
312 buf2.getChars(0, 0, new char[5], 2);
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 616 SmallString<256> buf2; local
617 llvm::raw_svector_ostream os2(buf2);
736 SmallString<256> buf2; local
737 llvm::raw_svector_ostream os2(buf2);
  /external/icu4c/test/cintltst/
utransts.c 138 char buf[BUF_CAP], buf2[BUF_CAP]; local
169 utrans_getID(trans, buf2, BUF_CAP);
170 if (0 != strcmp(buf, buf2)) {
172 buf, buf2);
298 char buf1[BUF_CAP], buf2[BUF_CAP], buf3[BUF_CAP]; local
316 utrans_getID(t2, buf2, BUF_CAP);
320 strcmp(buf1, buf2) == 0) {
326 if(strcmp(buf2, buf3) != 0 ||
bocu1tst.c 791 char buf1[80], buf2[80]; local
842 printBytes(level, buf2);
843 log_verbose("ok: strcmp(wD(%8ld), wD(%8ld))=%2d %s%s\n", i-1, i, cmp, buf1, buf2);
848 printBytes(level, buf2);
849 log_verbose("wrong: strcmp(wD(%8ld), wD(%8ld))=%2d %s%s\n", i-1, i, cmp, buf1, buf2);
857 printBytes(prev, buf2);
858 log_verbose(" wD(%8ld) %s%s\n", i-1, buf1, buf2);
  /external/icu4c/tools/toolutil/
udbgutil.cpp 460 char buf2[100]; local
465 u_UCharsToChars(buf, buf2, len+1);
466 return stringToStringBuffer(target,targetCapacity, buf2,status);
  /external/libselinux/src/
label_file.c 282 char buf1[BUFSIZ], buf2[BUFSIZ], buf3[BUFSIZ]; local
283 char *buf_p, *regex = buf1, *type = buf2, *context = buf3;
  /external/tcpdump/
smbutil.c 803 const u_char *buf2; local
805 buf2 = smb_fdata(buf, fmt, maxbuf, unicodestr);
807 if (buf2 == NULL)
809 if (buf2 == buf)
811 buf = buf2;
    [all...]
addrtoname.c 478 char buf2[BUFSIZE]; local
486 if (ether_ntohost(buf2, (struct ether_addr *)ep) == 0) {
487 tp->e_name = strdup(buf2);
  /external/valgrind/main/memcheck/tests/
str_tester.c 84 char buf1[0x40], buf2[0x40]; local
93 buf2[k] = '4' ^ (k & 4);
96 buf2[j] = buf2[0x3f] = 0;
100 check (strcmp (buf1+i,buf2+j) == 0, cnum);
103 check (strcmp (buf1+i,buf2+j) > 0, cnum+1);
104 check (strcmp (buf2+j,buf1+i) < 0, cnum+2);
105 buf2[j+k] = 'B' + i + k;
106 buf2[j+k+1] = 0;
107 check (strcmp (buf1+i,buf2+j) < 0, cnum+3)
    [all...]
  /external/webkit/Source/WebCore/loader/
TextResourceDecoder.cpp 402 const unsigned char* buf2 = reinterpret_cast<const unsigned char*>(data); local
403 unsigned char c1 = buf1Len ? (--buf1Len, *buf1++) : buf2Len ? (--buf2Len, *buf2++) : 0;
404 unsigned char c2 = buf1Len ? (--buf1Len, *buf1++) : buf2Len ? (--buf2Len, *buf2++) : 0;
405 unsigned char c3 = buf1Len ? (--buf1Len, *buf1++) : buf2Len ? (--buf2Len, *buf2++) : 0;
406 unsigned char c4 = buf2Len ? (--buf2Len, *buf2++) : 0;
  /external/webrtc/src/modules/audio_processing/agc/
digital_agc.c 672 WebRtc_Word16 buf2[4]; local
692 WebRtcSpl_DownsampleBy2(buf1, 8, buf2, state->downState);
695 WebRtcSpl_DownsampleBy2(in, 8, buf2, state->downState);
702 out = buf2[k] + HPstate;
704 HPstate = (WebRtc_Word16)(WEBRTC_SPL_RSHIFT_W32(tmp32, 10) - buf2[k]);
  /external/openssl/ssl/
t1_enc.c 899 unsigned char *q,buf2[12]; local
937 out,buf2,sizeof buf2))
944 return sizeof buf2;
    [all...]
  /external/stlport/test/unit/
string_test.cpp 1307 char buf2[1024]; local
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
remote-utils.c 695 char *buf2; local
699 buf2 = malloc (PBUFSIZ);
701 /* Copy the packet into buffer BUF2, encapsulating it
704 p = buf2;
726 if (VG_(write) (write_remote_desc, buf2, p - buf2) != p - buf2) {
732 dlog(1, "putpkt (\"%s\"); [no ack]\n", buf2);
734 dlog(1,"putpkt (\"%s\"); [looking for ack]\n", buf2);
749 free (buf2);
    [all...]
  /external/icu4c/i18n/
ucol_elm.cpp 72 UChar buf2[256]; local
74 key2.pointer = buf2;
75 uprv_memcpy(buf2, element2->cPoints, element2->cSize*sizeof(UChar));
76 buf2[element2->cSize] = 0;
    [all...]
  /external/icu4c/test/intltest/
tmsgfmt.cpp 1714 char buf2[BUF2_LEN]; local
    [all...]

Completed in 1301 milliseconds

1 23 4 5