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

1 2 3 4 5 6 7 8 91011>>

  /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.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/gcc.old/dist/libphobos/testsuite/libphobos.allocations/
overflow_from_existing.d 5 void[] buffer;
6 buffer.length = 1;
7 buffer.length = size_t.max;
overflow_from_zero.d 5 void[] buffer;
6 buffer.length = 0;
7 buffer.length = size_t.max;
  /src/external/gpl2/xcvs/dist/src/
kerberos4-client.h 18 struct buffer **to_server_p,
19 struct buffer **from_server_p);
21 extern void initialize_kerberos4_encryption_buffers (struct buffer **to_server_p,
22 struct buffer **from_server_p);
ms-buffer.h 1 /* CVS client logging buffer.
18 struct buffer *
19 ms_buffer_initialize (void (*memory) (struct buffer *),
20 struct buffer *buf, struct buffer *buf2);
log-buffer.h 1 /* CVS client logging buffer.
17 void setup_logfiles (char *var, struct buffer** to_server_p,
18 struct buffer** from_server_p);
20 struct buffer *
21 log_buffer_initialize (struct buffer *buf, FILE *fp,
27 void (*memory) (struct buffer *));
30 struct buffer *log_buffer_rewind (struct buffer *buf);
31 void log_buffer_closelog (struct buffer *buf);
rsh-client.h 17 void start_rsh_server (cvsroot_t *, struct buffer **, struct buffer **);
buffer.h 15 /* Declarations concerning the buffer data structure. */
24 * store the data from the child process in memory. A BUFFER
29 struct buffer;
36 typedef int (*type_buf_shutdown) (struct buffer *);
37 typedef void (*type_buf_memory_error) (struct buffer *);
39 struct buffer struct
44 /* Last buffer on data chain. */
47 /* Nonzero if the buffer is in nonblocking mode. */
51 buffer. Either the input or output field must be set, but not
54 /* Read data into the buffer DATA. There is room for up to SIZ
    [all...]
  /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/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/bsd/nsd/dist/
buffer.c 2 * buffer.c -- generic memory buffer .
14 #include "buffer.h"
19 buffer_type *buffer = (buffer_type *) arg; local
20 assert(!buffer->_fixed);
21 free(buffer->_data);
27 buffer_type *buffer local
29 if (!buffer)
32 buffer->_data = (uint8_t *) xalloc(capacity);
33 buffer->_position = 0
    [all...]
buffer.h 2 * buffer.h -- generic memory buffer.
9 * The buffer module implements a generic buffer. The API is based on
10 * the java.nio.Buffer interface.
23 typedef struct buffer buffer_type;
25 struct buffer struct
38 * The amount of data the buffer can contain.
43 * The data contained in the buffer.
48 * If the buffer is fixed it cannot be resized
    [all...]
  /src/external/apache2/llvm/dist/libcxx/src/
charconv.cpp 35 append1(char* buffer, T i) noexcept
37 *buffer = '0' + static_cast<char>(i);
38 return buffer + 1;
43 append2(char* buffer, T i) noexcept
45 memcpy(buffer, &cDigitsLut[(i)*2], 2);
46 return buffer + 2;
51 append3(char* buffer, T i) noexcept
53 return append2(append1(buffer, (i) / 100), (i) % 100);
58 append4(char* buffer, T i) noexcept
60 return append2(append2(buffer, (i) / 100), (i) % 100)
    [all...]
  /src/external/bsd/unbound/dist/sldns/
sbuffer.c 2 * buffer.c -- generic memory buffer .
21 sldns_buffer *buffer = (sldns_buffer*)malloc(sizeof(sldns_buffer)); local
23 if (!buffer) {
27 buffer->_data = (uint8_t *) malloc(capacity);
28 if (!buffer->_data) {
29 free(buffer);
33 buffer->_position = 0;
34 buffer->_limit = buffer->_capacity = capacity
    [all...]
  /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/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/
release_buffer.c 40 gss_buffer_t buffer
44 free (buffer->value);
45 buffer->value = NULL;
46 buffer->length = 0;
  /src/crypto/external/bsd/heimdal/dist/lib/gssapi/mech/
gss_release_buffer.c 35 gss_buffer_t buffer)
39 if (buffer->value)
40 free(buffer->value);
41 _mg_buffer_zero(buffer);
  /src/external/mit/libcbor/dist/src/cbor/internal/
encoders.c 11 size_t _cbor_encode_uint8(uint8_t value, unsigned char *buffer,
15 buffer[0] = value + offset;
20 buffer[0] = 0x18 + offset;
21 buffer[1] = value;
28 size_t _cbor_encode_uint16(uint16_t value, unsigned char *buffer,
31 buffer[0] = 0x19 + offset;
34 memcpy(buffer + 1, &value, 2);
36 buffer[1] = value >> 8;
37 buffer[2] = value;
45 size_t _cbor_encode_uint32(uint32_t value, unsigned char *buffer,
    [all...]
  /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/mit/libcbor/dist/test/
type_7_encoders_test.c 17 unsigned char buffer[512]; variable
20 assert_int_equal(1, cbor_encode_bool(false, buffer, 512));
21 assert_memory_equal(buffer, ((unsigned char[]){0xF4}), 1);
22 assert_int_equal(1, cbor_encode_bool(true, buffer, 512));
23 assert_memory_equal(buffer, ((unsigned char[]){0xF5}), 1);
27 assert_int_equal(1, cbor_encode_null(buffer, 512));
28 assert_memory_equal(buffer, ((unsigned char[]){0xF6}), 1);
32 assert_int_equal(1, cbor_encode_undef(buffer, 512));
33 assert_memory_equal(buffer, ((unsigned char[]){0xF7}), 1);
37 assert_int_equal(1, cbor_encode_break(buffer, 512))
    [all...]
  /src/external/gpl3/gdb/dist/gnulib/import/malloc/
scratch_buffer.h 1 /* Variable-sized buffer with on-stack default allocation.
39 above does not have a memory leak. The buffer still remains in a
53 to grow the buffer by at least 512 bytes. This means that when
54 using the scratch buffer as a backing store for a non-character
56 buffer only has to grow once to make room for at least one more
64 /* Scratch buffer. Must be initialized with scratch_buffer_init
72 /* Initializes *BUFFER so that BUFFER->data points to BUFFER->__space
73 and BUFFER->length reflects the available space. *
    [all...]
  /src/external/gpl3/gdb/lib/libgnulib/arch/aarch64/gnulib/import/malloc/
scratch_buffer.gl.h 6 /* Variable-sized buffer with on-stack default allocation.
44 above does not have a memory leak. The buffer still remains in a
58 to grow the buffer by at least 512 bytes. This means that when
59 using the scratch buffer as a backing store for a non-character
61 buffer only has to grow once to make room for at least one more
69 /* Scratch buffer. Must be initialized with scratch_buffer_init
77 /* Initializes *BUFFER so that BUFFER->data points to BUFFER->__space
78 and BUFFER->length reflects the available space. *
    [all...]

Completed in 37 milliseconds

1 2 3 4 5 6 7 8 91011>>