Searched defs:buffer (Results 101 - 125 of 3822) sorted by relevance

1234567891011>>

/external/chromium_org/ui/ozone/platform/dri/
H A Dgbm_buffer.h40 GbmPixmap(scoped_refptr<GbmBuffer> buffer);
46 scoped_refptr<GbmBuffer> buffer() { return buffer_; } function in class:ui::GbmPixmap
/external/chromium_org/v8/test/cctest/
H A Dtest-fuzz-arm64.cc43 Instruction buffer[kInstructionSize]; local
47 buffer->SetInstructionBits(instr);
48 decoder.Decode(buffer);
63 Instruction buffer[kInstructionSize]; local
68 buffer->SetInstructionBits(instr);
69 decoder.Decode(buffer);
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
H A Dp7.cpp4 alignas(T) alignas(A) T buffer[N]; member in struct:X
12 alignas(A) T buffer[N]; // expected-error {{requested alignment is less than minimum alignment of 4 for type 'int [1]'}} member in struct:Y
/external/clang/test/CodeGen/
H A D2003-10-02-UnionLValueError.c9 void format_message(char *buffer, union U *u) { argument
10 sprintf(buffer, u->s);
/external/clang/test/PCH/
H A Dva_arg.cpp14 void f(char *buffer, unsigned count, const char* format, va_list argptr) { argument
15 vsnprintf(buffer, count, format, argptr);
/external/clang/test/Sema/
H A Dwarn-overlap.c62 int buffer[4]; local
63 x = (-7 > 0) ? (buffer[-7]) : 0;
/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddll_operator_array_new_with_dtor_left_oob.cc12 C *buffer = new C[42]; local
13 buffer[-2].x = 42;
14 // CHECK: AddressSanitizer: heap-buffer-overflow on address [[ADDR:0x[0-9a-f]+]]
31 delete [] buffer;
H A Doperator_array_new_with_dtor_left_oob.cc10 C *buffer = new C[42]; local
11 buffer[-2].x = 42;
12 // CHECK: AddressSanitizer: heap-buffer-overflow on address [[ADDR:0x[0-9a-f]+]]
23 delete [] buffer;
/external/e2fsprogs/lib/ext2fs/
H A Dcrc16.c52 * Compute the CRC-16 for the data buffer
55 * @param buffer data pointer
56 * @param len number of bytes in the buffer
59 crc16_t ext2fs_crc16(crc16_t crc, const void *buffer, unsigned int len) argument
61 const unsigned char *cp = buffer;
/external/easymock/src/org/easymock/
H A DIArgumentMatcher.java40 * Appends a string representation of this matcher to the given buffer. In case
44 * @param buffer the buffer to which the string representation is appended.
46 void appendTo(StringBuffer buffer); argument
/external/easymock/src/org/easymock/internal/
H A DArgumentToString.java27 public static void appendArgument(Object value, StringBuffer buffer) { argument
29 buffer.append("null");
31 buffer.append("\"");
32 buffer.append(value);
33 buffer.append("\"");
35 buffer.append("'");
36 buffer.append(value);
37 buffer.append("'");
39 buffer.append("[");
42 buffer
[all...]
/external/elfutils/0.153/libelf/
H A Delf_getdata_rawchunk.c132 void *buffer; local
137 buffer = rawchunk;
143 buffer = malloc (size);
144 if (unlikely (buffer == NULL))
149 memcpy (buffer, rawchunk, size);
155 buffer = rawchunk;
158 buffer = malloc (size);
159 if (unlikely (buffer == NULL))
166 (buffer, rawchunk, size, 0);
169 /* Allocate the dummy container to point at this buffer
[all...]
/external/fio/crc/
H A Dcrc16.c46 unsigned short fio_crc16(const void *buffer, unsigned int len) argument
48 const unsigned char *cp = (const unsigned char *) buffer;
H A Dcrc32.c76 uint32_t fio_crc32(const void *buffer, unsigned long length) argument
78 const unsigned char *cp = (const unsigned char *) buffer;
/external/fio/t/
H A Dlog.c7 char buffer[1024]; local
12 len = vsnprintf(buffer, sizeof(buffer), format, args);
14 len = min(len, sizeof(buffer) - 1);
16 return fwrite(buffer, len, 1, stderr);
21 char buffer[1024]; local
26 len = vsnprintf(buffer, sizeof(buffer), format, args);
28 len = min(len, sizeof(buffer) - 1);
30 return fwrite(buffer, le
[all...]
/external/harfbuzz_ng/src/
H A Dsample.py12 buffer = hb.buffer_create () variable
/external/libcxxabi/src/
H A Dabort_message.cpp44 char* buffer; local
47 vasprintf(&buffer, format, list2);
49 CRSetCrashLogMessage(buffer);
51 char* buffer; local
54 vasprintf(&buffer, format, list2);
58 android_set_abort_message(buffer);
62 syslog(LOG_CRIT, "%s", buffer);
/external/libpng/contrib/examples/
H A Dpngtopng.c38 png_bytep buffer; local
45 buffer = malloc(PNG_IMAGE_SIZE(image));
47 if (buffer != NULL)
49 if (png_image_finish_read(&image, NULL/*background*/, buffer,
53 0/*convert_to_8bit*/, buffer, 0/*row_stride*/,
61 free(buffer);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dlexer.ml11 let buffer = Buffer.create 1 in var
12 Buffer.add_char buffer c;
13 lex_ident buffer stream
17 let buffer = Buffer.create 1 in var
18 Buffer.add_char buffer c;
19 lex_number buffer stream
32 and lex_number buffer = parser
34 Buffer.add_char buffer c;
35 lex_number buffer stream
37 [< 'Token.Number (float_of_string (Buffer.contents buffer)); strea
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dlexer.ml11 let buffer = Buffer.create 1 in var
12 Buffer.add_char buffer c;
13 lex_ident buffer stream
17 let buffer = Buffer.create 1 in var
18 Buffer.add_char buffer c;
19 lex_number buffer stream
32 and lex_number buffer = parser
34 Buffer.add_char buffer c;
35 lex_number buffer stream
37 [< 'Token.Number (float_of_string (Buffer.contents buffer)); strea
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dlexer.ml11 let buffer = Buffer.create 1 in var
12 Buffer.add_char buffer c;
13 lex_ident buffer stream
17 let buffer = Buffer.create 1 in var
18 Buffer.add_char buffer c;
19 lex_number buffer stream
32 and lex_number buffer = parser
34 Buffer.add_char buffer c;
35 lex_number buffer stream
37 [< 'Token.Number (float_of_string (Buffer.contents buffer)); strea
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dlexer.ml11 let buffer = Buffer.create 1 in var
12 Buffer.add_char buffer c;
13 lex_ident buffer stream
17 let buffer = Buffer.create 1 in var
18 Buffer.add_char buffer c;
19 lex_number buffer stream
32 and lex_number buffer = parser
34 Buffer.add_char buffer c;
35 lex_number buffer stream
37 [< 'Token.Number (float_of_string (Buffer.contents buffer)); strea
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dlexer.ml11 let buffer = Buffer.create 1 in var
12 Buffer.add_char buffer c;
13 lex_ident buffer stream
17 let buffer = Buffer.create 1 in var
18 Buffer.add_char buffer c;
19 lex_number buffer stream
32 and lex_number buffer = parser
34 Buffer.add_char buffer c;
35 lex_number buffer stream
37 [< 'Token.Number (float_of_string (Buffer.contents buffer)); strea
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dlexer.ml11 let buffer = Buffer.create 1 in var
12 Buffer.add_char buffer c;
13 lex_ident buffer stream
17 let buffer = Buffer.create 1 in var
18 Buffer.add_char buffer c;
19 lex_number buffer stream
32 and lex_number buffer = parser
34 Buffer.add_char buffer c;
35 lex_number buffer stream
37 [< 'Token.Number (float_of_string (Buffer.contents buffer)); strea
[all...]
/external/llvm/lib/Support/
H A DErrno.cpp39 char buffer[MaxErrStrLen]; local
40 buffer[0] = '\0';
49 // which may not use the buffer supplied.
50 str = strerror_r(errnum, buffer, MaxErrStrLen - 1);
52 strerror_r(errnum, buffer, MaxErrStrLen - 1);
53 str = buffer;
56 strerror_s(buffer, MaxErrStrLen - 1, errnum);
57 str = buffer;
60 // the buffer as fast as possible to minimize impact

Completed in 3894 milliseconds

1234567891011>>