Searched defs:buffer (Results 176 - 200 of 3822) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/src/core/
H A DSkDrawLooper.cpp18 void* buffer = allocator.reserveT<SkDrawLooper::Context>(this->contextSize()); local
20 SkDrawLooper::Context* context = this->createContext(&canvas, buffer);
39 void* buffer = allocator.reserveT<SkDrawLooper::Context>(this->contextSize()); local
42 SkDrawLooper::Context* context = this->createContext(&canvas, buffer);
/external/chromium_org/third_party/skia/src/effects/
H A DSkPixelXorXfermode.cpp34 SkFlattenable* SkPixelXorXfermode::CreateProc(SkReadBuffer& buffer) { argument
35 return Create(buffer.readColor());
/external/chromium_org/third_party/skia/src/utils/
H A DSkMD5.h25 * Note that this treats the buffer as a series of uint8_t values.
27 virtual bool write(const void* buffer, size_t size) SK_OVERRIDE {
28 this->update(reinterpret_cast<const uint8_t*>(buffer), size);
51 // input buffer
52 uint8_t buffer[64]; member in class:SkMD5
H A DSkSHA1.h25 * Note that this treats the buffer as a series of uint8_t values.
27 virtual bool write(const void* buffer, size_t size) SK_OVERRIDE {
28 update(reinterpret_cast<const uint8_t*>(buffer), size);
51 // input buffer
52 uint8_t buffer[64]; member in class:SkSHA1
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dcomp_corr.c29 int16_t *buffer, /* (i) signal buffer */
31 int16_t bLen, /* (i) length of buffer */
37 w16ptr=&buffer[bLen-sRange-lag];
40 (*corr)=WebRtcSpl_DotProductWithScale(&buffer[bLen-sRange], w16ptr, sRange, scale);
26 WebRtcIlbcfix_CompCorr( int32_t *corr, int32_t *ener, int16_t *buffer, int16_t lag, int16_t bLen, int16_t sRange, int16_t scale ) argument
/external/chromium_org/third_party/webrtc/modules/audio_device/mac/portaudio/
H A Dpa_ringbuffer.h53 @brief Single-reader single-writer lock-free ring buffer
55 PaUtilRingBuffer is a ring buffer used to transport samples between
59 to the ring buffer, another thread or callback reads from it).
61 The PaUtilRingBuffer structure manages a ring buffer containing N
65 The memory area used to store the buffer elements must be allocated by
67 the use of the ring buffer.
96 ring_buffer_size_t smallMask; /**< Used for fitting indices to buffer. */
98 char *buffer; /**< Pointer to the buffer containing the actual data. */ member in struct:PaUtilRingBuffer
103 @param rbuf The ring buffer
[all...]
/external/chromium_org/tools/android/common/
H A Dnet.cc26 std::string DumpBinary(const char* buffer, size_t length) { argument
30 static_cast<unsigned char>(buffer[i]));
/external/chromium_org/tools/gn/
H A Dc_include_iterator_unittest.cc23 std::string buffer; local
24 buffer.append("// Some comment\n");
25 buffer.append("\n");
26 buffer.append("#include \"foo/bar.h\"\n");
27 buffer.append("\n");
28 buffer.append("#include <stdio.h>\n");
29 buffer.append("\n");
30 buffer.append(" #include \"foo/baz.h\"\n"); // Leading whitespace
31 buffer.append("#include \"la/deda.h\"\n");
32 buffer
64 std::string buffer; local
82 std::string buffer; local
111 std::string buffer; local
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-run-variables.cc53 EmbeddedVector<char, 512> buffer; local
56 SNPrintF(buffer, source, tests[i]);
57 PrintF("#%d: %s\n", i / 3, buffer.start());
58 FunctionTester T(buffer.start());
/external/clang/test/Misc/
H A Dbackend-stack-frame-diagnostics.cpp30 char buffer[80]; local
31 doIt(buffer);
41 char buffer[80]; local
42 doIt(buffer);
56 char buffer[80]; local
57 doIt(buffer);
66 char buffer[80];
67 doIt(buffer);
75 char buffer[80];
76 doIt(buffer);
[all...]
/external/clang/test/SemaCXX/
H A Darray-bounds-ptr-arith.cpp27 char buffer[5]; // expected-note 2 {{declared here}} local
29 swallow(buffer + sizeof("Hello")-1); // expected-warning {{refers past the end of the array}}
30 swallow(buffer + (sizeof("Hello")-1)); // no-warning
31 if (n > 0 && n <= 6) swallow(buffer + 6 - n); // expected-warning {{refers past the end of the array}}
32 if (n > 0 && n <= 6) swallow(buffer + (6 - n)); // no-warning
/external/clang/test/SemaTemplate/
H A Dalignas.cpp15 alignas(T...) char buffer[max(sizeof(T)...)]; member in struct:my_union
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLBIOInputStream.java49 public int gets(byte[] buffer) throws IOException { argument
50 if (buffer == null || buffer.length == 0) {
56 while (offset < buffer.length) {
71 buffer[offset++] = (byte) inputByte;
/external/e2fsprogs/ext2ed/
H A Dext2_com.c35 char buffer [80]; local
38 sprintf (buffer,"setoffset %ld",file_system_info.super_block_offset);dispatch (buffer);
39 sprintf (buffer,"settype ext2_super_block");dispatch (buffer);
53 char temp [80],buffer [80],*ptr; local
55 ptr=parse_word (command_line,buffer);
59 ptr=parse_word (ptr,buffer);
61 if (buffer [0] != '/') {
68 if (buffer [
85 char *ptr,buffer [80]; local
[all...]
H A Dsuper_com.c123 char *ptr,buffer [80]; local
125 ptr=parse_word (command_line,buffer);
129 ptr=parse_word (ptr,buffer);
131 copy_num=atol (buffer);
142 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer);
143 strcpy (buffer,"show");dispatch (buffer);
/external/fio/
H A Dfifo.c36 fifo->buffer = malloc(size);
45 free(fifo->buffer);
49 unsigned int fifo_put(struct fifo *fifo, void *buffer, unsigned int len) argument
55 /* first put the data starting from fifo->in to buffer end */
57 memcpy(fifo->buffer + (fifo->in & (fifo->size - 1)), buffer, l);
59 /* then put the rest (if any) at the beginning of the buffer */
60 memcpy(fifo->buffer, buffer + l, len - l);
80 * first get the data from fifo->out until the end of the buffer
[all...]
H A Dfifo.h22 unsigned char *buffer; /* the buffer holding the data */ member in struct:fifo
23 unsigned int size; /* the size of the allocated buffer */
/external/icu/icu4c/source/common/
H A Dustrfmt.c17 * @param buffer UChar buffer to receive result
18 * @param capacity capacity of buffer
28 uprv_itou (UChar * buffer, int32_t capacity, argument
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
43 buffer[length++] = (UChar) 0x0030;/*zero padding */
45 /* null terminate the buffer */
47 buffer[length] = (UChar) 0x0000;
52 temp = buffer[(length-1) - j];
53 buffer[(lengt
[all...]
/external/icu/icu4c/source/samples/props/
H A Dprops.cpp27 char buffer[100]; local
32 u_charName(codePoint, U_UNICODE_CHAR_NAME, buffer, sizeof(buffer), &errorCode);
35 printf("U+%04lx\t%s\n", codePoint, buffer);
/external/icu/icu4c/source/test/intltest/
H A Dtextfile.h63 char* buffer; member in class:TextFile
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DInstanceOutputBufferProvider.java36 public void release(Appendable buffer) { argument
H A DOutputBufferProvider.java20 * Simple Provider interface for the output buffer.
25 * Returns a clean Appendable buffer ready to use while rendering.
30 * Tells the provider that this buffer is free to be reused.
32 * @param buffer the Appendable object handed out by {@link #get}
34 void release(Appendable buffer); argument
/external/libunwind/src/mi/
H A Dbacktrace.c36 slow_backtrace (void **buffer, int size, unw_context_t *uc) argument
52 buffer[n++] = (void *) (uintptr_t) ip;
58 unw_backtrace (void **buffer, int size) argument
69 if (unlikely (tdep_trace (&cursor, buffer, &n) < 0))
72 return slow_backtrace (buffer, size, &uc);
78 extern int backtrace (void **buffer, int size)
/external/libunwind/tests/
H A Dtest-flush-cache.c39 void *buffer[300]; local
44 n = unw_backtrace (buffer, 300);
47 printf ("[%d] ip=%p\n", i, buffer[i]);
53 n = unw_backtrace (buffer, 300);
56 printf ("[%d] ip=%p\n", i, buffer[i]);
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
H A DHttpChunkedResponseTest.java51 public synchronized int read(byte[] buffer) throws IOException { argument
54 buffer[i] = (byte) chunks[chunk].charAt(i);

Completed in 470 milliseconds

1234567891011>>