HomeSort by relevance Sort by last modified time
    Searched refs:buf2 (Results 151 - 175 of 271) sorted by null

1 2 3 4 5 67 8 91011

  /prebuilts/go/darwin-x86/src/io/
multi_test.go 244 buf2 := bytes.NewReader([]byte("bar"))
245 mr = MultiReader(buf1, buf2)
  /prebuilts/go/linux-x86/src/io/
multi_test.go 244 buf2 := bytes.NewReader([]byte("bar"))
245 mr = MultiReader(buf1, buf2)
  /bionic/libc/dns/resolv/
res_send.c 311 * res_queriesmatch(buf1, eom1, buf2, eom2)
313 * in (buf1,eom1) and (buf2,eom2)?
323 const u_char *buf2, const u_char *eom2)
328 if (buf1 + HFIXEDSZ > eom1 || buf2 + HFIXEDSZ > eom2)
336 (((const HEADER *)(const void *)buf2)->opcode == ns_o_update))
339 if (qdcount != ntohs(((const HEADER*)(const void *)buf2)->qdcount))
353 if (!res_nameinquery(tname, ttype, tclass, buf2, eom2))
    [all...]
  /external/tcpdump/
smbutil.c 807 const u_char *buf2; local
809 buf2 = smb_fdata(ndo, buf, fmt, maxbuf, unicodestr);
811 if (buf2 == NULL)
813 if (buf2 == buf)
815 buf = buf2;
    [all...]
addrtoname.c 493 char buf2[BUFSIZE]; local
495 if (ether_ntohost(buf2, (const struct ether_addr *)ep) == 0) {
496 tp->e_name = strdup(buf2);
499 "etheraddr_string: strdup(buf2)");
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_exceptions.py 34 buf2 = str(err)
35 self.assertEqual(buf1, buf2)
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 614 SmallString<256> buf2; local
615 llvm::raw_svector_ostream os2(buf2);
730 SmallString<256> buf2; local
731 llvm::raw_svector_ostream os2(buf2);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_exceptions.py 34 buf2 = str(err)
35 self.assertEqual(buf1, buf2)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_exceptions.py 34 buf2 = str(err)
35 self.assertEqual(buf1, buf2)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 34 buf2 = str(err)
35 self.assertEqual(buf1, buf2)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 34 buf2 = str(err)
35 self.assertEqual(buf1, buf2)
  /external/e2fsprogs/misc/
e4defrag.c 1742 struct stat64 buf2; local
    [all...]
  /frameworks/av/media/libstagefright/foundation/tests/
AData_test.cpp 186 sp<ABuffer> buf = new ABuffer(16), buf2; local
190 EXPECT_TRUE(objdata.find(&buf2));
191 EXPECT_EQ(buf, buf2);
198 EXPECT_FALSE(objdata.find(&buf2)); // not stored as ABuffer(!)
    [all...]
  /external/icu/icu4c/source/common/
ustring.cpp 1145 u_memcmp(const UChar *buf1, const UChar *buf2, int32_t count) {
1151 result = (int32_t)(uint16_t)*buf1 - (int32_t)(uint16_t)*buf2;
1156 buf2++;
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
udbgutil.cpp 474 char buf2[100]; local
479 u_UCharsToChars(buf, buf2, len+1);
480 return stringToStringBuffer(target,targetCapacity, buf2,status);
  /external/mesa3d/src/mesa/swrast/
s_context.c 805 swrast->stencil_temp.buf2 = malloc(SWRAST_MAX_WIDTH * sizeof(GLubyte));
810 !swrast->stencil_temp.buf2 ||
834 free(swrast->stencil_temp.buf2);
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3Device.h 305 bool operator()(const buffer_handle_t& buf1, const buffer_handle_t& buf2) const {
306 if (buf1->numFds == buf2->numFds) {
308 if (buf1->data[i] != buf2->data[i]) {
    [all...]
  /prebuilts/go/darwin-x86/src/bytes/
bytes_test.go 494 buf2 := buf[1:1]
496 eq := Equal(buf1, buf2)
518 buf2 := bmbuf[n : 2*n]
520 buf2[n-1] = 'x'
522 eq := equal(buf1, buf2)
528 buf2[n-1] = '\x00'
    [all...]
  /prebuilts/go/linux-x86/src/bytes/
bytes_test.go 494 buf2 := buf[1:1]
496 eq := Equal(buf1, buf2)
518 buf2 := bmbuf[n : 2*n]
520 buf2[n-1] = 'x'
522 eq := equal(buf1, buf2)
528 buf2[n-1] = '\x00'
    [all...]
  /bionic/tests/
stdio_test.cpp 1089 char buf2[4 * 4096]; local
1090 memset(buf2, 0, sizeof(buf2));
1091 ASSERT_EQ(2U, fread(buf2, 4, 4096, fp));
1092 ASSERT_STREQ("0123456789", buf2);
    [all...]
  /prebuilts/go/darwin-x86/test/
escape2.go 1369 var buf2 [10]byte // ERROR "moved to heap: buf2$"
1370 F2(buf2[:]) // ERROR "buf2 escapes to heap$"
    [all...]
escape2n.go 1369 var buf2 [10]byte // ERROR "moved to heap: buf2$"
1370 F2(buf2[:]) // ERROR "buf2 escapes to heap$"
    [all...]
  /prebuilts/go/linux-x86/test/
escape2.go 1369 var buf2 [10]byte // ERROR "moved to heap: buf2$"
1370 F2(buf2[:]) // ERROR "buf2 escapes to heap$"
    [all...]
escape2n.go 1369 var buf2 [10]byte // ERROR "moved to heap: buf2$"
1370 F2(buf2[:]) // ERROR "buf2 escapes to heap$"
    [all...]
  /prebuilts/go/darwin-x86/src/compress/flate/
deflate_test.go 534 buf2 := new(bytes.Buffer)
535 w.Reset(buf2)
540 out2 := buf2.Bytes()

Completed in 709 milliseconds

1 2 3 4 5 67 8 91011