HomeSort by: relevance | last modified time | path
    Searched defs:buffer (Results 1 - 25 of 1805) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_internal_interface_test.cc 18 std::vector<char> buffer(17, 0xff);
20 __asan_set_shadow_00((uptr)buffer.data(), buffer.size());
21 EXPECT_EQ(std::vector<char>(buffer.size(), 0x00), buffer); local
23 __asan_set_shadow_f1((uptr)buffer.data(), buffer.size());
24 EXPECT_EQ(std::vector<char>(buffer.size(), 0xf1), buffer); local
26 __asan_set_shadow_f2((uptr)buffer.data(), buffer.size())
27 EXPECT_EQ(std::vector<char>(buffer.size(), 0xf2), buffer); local
30 EXPECT_EQ(std::vector<char>(buffer.size(), 0xf3), buffer); local
33 EXPECT_EQ(std::vector<char>(buffer.size(), 0xf5), buffer); local
36 EXPECT_EQ(std::vector<char>(buffer.size(), 0xf8), buffer); local
    [all...]
  /src/regress/sys/kern/kqueue/vnode/
write.c 46 char buffer[128]; local
56 memset(buffer, 'a', sizeof(buffer));
58 n = write(fd, buffer, sizeof(buffer));
61 else if (n != sizeof(buffer))
  /src/sys/arch/hpc/stand/libsa/
winprintf.c 45 wchar_t buffer[2048]; local
48 count = wvsprintf(buffer, lpszFmt, ap);
51 OutputDebugStringW(buffer);
  /src/crypto/external/apache2/openssl/dist/providers/implementations/rands/seeding/
rand_cpu_arm64.c 35 unsigned char *buffer; local
39 buffer = ossl_rand_pool_add_begin(pool, bytes_needed);
41 if (buffer != NULL) {
42 if (get_hardware_random_value(buffer, bytes_needed) == bytes_needed)
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
AlignOf.h 29 alignas(alignof(AlignedUnion)) char buffer[sizeof(AlignedUnion)]; member in struct:llvm::AlignedCharArrayUnion
  /src/external/apache2/llvm/dist/llvm/utils/
DSAclean.py 24 buffer = input.readline() variable
25 while buffer != '':
26 if re.compile("label(\s*)=(\s*)\"\s%tmp(.\w*)*(\s*)\"").search(buffer):
28 buffer = input.readline() variable
31 output.write(buffer)
33 buffer = input.readline() variable
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
ada-valprint-error.c 16 int buffer[] = {0, 0}; variable
17 void *fd__global = &buffer;
variant.c 16 unsigned char buffer[8]; variable
27 /* Write the expected values into the buffer. */
32 buffer[0] = 23;
33 buffer[4] = 23;
39 buffer[3] = 23;
40 buffer[7] = 23;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
pointer-to-pointer.f90 21 type(l_buffer), pointer :: buffer variable in program:allocate_array
23 allocate (buffer)
24 allocate (buffer%alpha (5))
26 buffer%alpha (1) = 1.5
27 buffer%alpha (2) = 2.5
28 buffer%alpha (3) = 3.5
29 buffer%alpha (4) = 4.5
30 buffer%alpha (5) = 5.5
32 print *, buffer%alpha ! Break Here.
  /src/external/mpl/dhcp/bind/dist/lib/isc/
bufferlist.c 20 #include <isc/buffer.h>
26 isc_buffer_t *buffer; local
32 buffer = ISC_LIST_HEAD(*bl);
33 while (buffer != NULL) {
34 REQUIRE(ISC_BUFFER_VALID(buffer));
35 length += isc_buffer_usedlength(buffer);
36 buffer = ISC_LIST_NEXT(buffer, link);
44 isc_buffer_t *buffer; local
50 buffer = ISC_LIST_HEAD(*bl)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
ada-valprint-error.c 16 int buffer[] = {0, 0}; variable
17 void *fd__global = &buffer;
variant.c 16 unsigned char buffer[8]; variable
27 /* Write the expected values into the buffer. */
32 buffer[0] = 23;
33 buffer[4] = 23;
39 buffer[3] = 23;
40 buffer[7] = 23;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
pointer-to-pointer.f90 21 type(l_buffer), pointer :: buffer variable in program:allocate_array
23 allocate (buffer)
24 allocate (buffer%alpha (5))
26 buffer%alpha (1) = 1.5
27 buffer%alpha (2) = 2.5
28 buffer%alpha (3) = 3.5
29 buffer%alpha (4) = 4.5
30 buffer%alpha (5) = 5.5
32 print *, buffer%alpha ! Break Here.
  /src/sys/arch/hpcmips/stand/libsa/
winprintf.c 46 wchar_t buffer[2048]; local
49 count = wvsprintf(buffer, lpszFmt, ap);
52 OutputDebugStringW(buffer);
  /src/sys/miscfs/procfs/
procfs_auxv.c 46 void *buffer; local
52 if ((error = proc_getauxv(p, &buffer, &bufsize)) != 0)
56 error = uiomove((char *)buffer + uio->uio_offset,
61 kmem_free(buffer, bufsize);
  /src/external/bsd/elftosb/dist/common/
Logging.cpp 37 //! Allocates a temporary 1KB buffer which is used to hold the
41 smart_array_ptr<char> buffer = new char[1024]; local
42 vsprintf(buffer, fmt, args);
45 _log(buffer);
  /src/external/bsd/kyua-testers/dist/
result.c 69 char buffer[1024]; local
72 (void)vsnprintf(buffer, sizeof(buffer), reason, ap);
74 fprintf(file, "%s: %s\n", type_to_name[type], buffer);
  /src/external/bsd/wpa/dist/src/crypto/
sha1_i.h 15 unsigned char buffer[64]; member in struct:SHA1Context
21 void SHA1Transform(u32 state[5], const unsigned char buffer[64]);
  /src/external/gpl3/gdb.old/dist/gdb/unittests/
unpack-selftests.c 32 gdb_byte buffer[8]; local
41 memset (buffer, 0, sizeof (buffer));
42 buffer[0] = 255;
44 buffer[7] = 23;
46 buffer[4] = 23;
48 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 0) == -1);
49 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 1) == 23);
  /src/external/ibm-public/postfix/dist/src/util/
argv_attr_scan.c 78 VSTRING *buffer = vstring_alloc(100); local
83 RECV_ATTR_STR(ARGV_ATTR_VALUE, buffer),
85 argv_add(argv, vstring_str(buffer), ARGV_END);
88 vstring_free(buffer);
  /src/external/mit/libcbor/dist/test/
type_6_encoders_test.c 16 unsigned char buffer[512]; variable
19 assert_int_equal(1, cbor_encode_tag(1, buffer, 512));
20 assert_memory_equal(buffer, ((unsigned char[]){0xC1}), 1);
24 assert_int_equal(5, cbor_encode_tag(1000000, buffer, 512));
25 assert_memory_equal(buffer, ((unsigned char[]){0xDA, 0x00, 0x0F, 0x42, 0x40}),
  /src/external/mit/libuv/dist/test/
test-uname.c 37 uv_utsname_t buffer; local
45 r = uv_os_uname(&buffer);
50 ASSERT_OK(strcmp(buffer.sysname, buf.sysname));
51 ASSERT_OK(strcmp(buffer.version, buf.version));
55 ASSERT_OK(strcmp(buffer.release, temp));
57 ASSERT_OK(strcmp(buffer.release, buf.release));
61 ASSERT_OK(strcmp(buffer.machine, "ppc64"));
63 ASSERT_OK(strcmp(buffer.machine, buf.machine));
  /src/external/mpl/bind/dist/lib/dns/include/dns/
fixedname.h 27 * table, and a dedicated buffer big enough for the longest possible
54 #include <isc/buffer.h>
66 isc_buffer_t buffer; member in struct:dns_fixedname
  /src/external/gpl3/gdb/dist/gdb/unittests/
unpack-selftests.c 32 gdb_byte buffer[8]; local
41 memset (buffer, 0, sizeof (buffer));
42 buffer[0] = 255;
44 buffer[7] = 23;
46 buffer[4] = 23;
48 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 0) == -1);
49 SELF_CHECK (unpack_field_as_long (struct_type, buffer, 1) == 23);
  /src/usr.bin/mkdep/
findcc.c 56 char buffer[MAXPATHLEN]; local
76 if ((size_t)snprintf(buffer, sizeof(buffer), "%.*s/%.*s",
78 < sizeof(buffer)
79 && access(buffer, X_OK) == 0)
80 return strdup(buffer);

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 91011>>