HomeSort by relevance Sort by last modified time
    Searched refs:buffer (Results 1276 - 1300 of 9401) sorted by null

<<51525354555657585960>>

  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
malloc_extension_c_test.c 101 char buffer[200]; local
107 MallocExtension_GetStats(buffer, sizeof(buffer));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
malloc_extension_c_test.c 101 char buffer[200]; local
107 MallocExtension_GetStats(buffer, sizeof(buffer));
  /external/chromium_org/third_party/webrtc/base/
ssladapter_unittest.cc 90 char buffer[4096] = ""; local
92 // Read data received from the server and store it in our internal buffer.
93 int read = socket->Recv(buffer, sizeof(buffer) - 1);
95 buffer[read] = '\0';
97 LOG(LS_INFO) << "Client received '" << buffer << "'";
99 data_ += buffer;
209 char buffer[4096] = ""; local
215 // buffer.
216 rtc::StreamResult r = stream->Read(buffer,
    [all...]
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
MediaCodecVideoDecoder.java 55 public ByteBuffer buffer; field in class:MediaCodecVideoDecoder.Frame
58 Frame(ByteBuffer buffer, long timestampUs) {
59 this.buffer = buffer;
208 // Entry point from the native layer. It pushes the raw buffer to this class.
209 private void pushBuffer(ByteBuffer buffer, long renderTimeMs) {
214 frameQueue.add(new Frame(buffer, renderTimeUs));
251 int timeoutUs = 0; // Don't block on dequeuing input buffer.
282 ByteBuffer buffer = frame.buffer; local
    [all...]
  /external/chromium_org/v8/src/compiler/
graph-builder.cc 53 Node** buffer = zone()->NewArray<Node*>(input_count_with_deps); local
54 memcpy(buffer, value_inputs, kPointerSize * value_input_count);
55 Node** current_input = buffer + value_input_count;
71 result = graph()->NewNode(op, input_count_with_deps, buffer);
166 Node** buffer = zone()->NewArray<Node*>(count + 1); local
167 MemsetPointer(buffer, input, count);
168 buffer[count] = control;
169 return graph()->NewNode(phi_op, count + 1, buffer);
177 Node** buffer = zone()->NewArray<Node*>(count + 1); local
178 MemsetPointer(buffer, input, count)
    [all...]
graph-builder.h 34 Node* buffer[] = {n1, n2}; local
35 return MakeNode(op, arraysize(buffer), buffer);
39 Node* buffer[] = {n1, n2, n3}; local
40 return MakeNode(op, arraysize(buffer), buffer);
44 Node* buffer[] = {n1, n2, n3, n4}; local
45 return MakeNode(op, arraysize(buffer), buffer);
50 Node* buffer[] = {n1, n2, n3, n4, n5} local
    [all...]
  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 21 std::cout << "reallocate buffer" << std::endl;
23 if(buffer) delete[]buffer;
24 buffer = new unsigned char[4*size];
39 unsigned char *const buffer = widget->buffer; local
98 buffer[4*(pix+i)] = 255*pix_iter[i]/max_iter;
99 buffer[4*(pix+i)+1] = 0;
100 buffer[4*(pix+i)+2] = 0;
106 buffer[4*pix] = buffer[4*pix+1] = buffer[4*pix+2] = 0
    [all...]
  /external/elfutils/0.153/libdwfl/
gzip.c 103 void *buffer = NULL; local
108 char *b = realloc (buffer, more);
110 b = realloc (buffer, more -= 1024);
113 buffer = b;
119 buffer = realloc (buffer, end) ?: end == 0 ? NULL : buffer;
135 free (buffer);
218 ptrdiff_t pos = (void *) z.next_out - buffer;
224 z.next_out = buffer + pos
    [all...]
  /external/hamcrest/library/src/org/hamcrest/collection/
IsIn.java 26 public void describeTo(Description buffer) {
27 buffer.appendText("one of ");
28 buffer.appendValueList("{", ", ", "}", collection);
  /external/harfbuzz_ng/util/
main-font-text.hh 60 hb_buffer_t *buffer = hb_buffer_create (); local
64 consumer.consume_line (buffer, text, text_len, input.text_before, input.text_after);
65 hb_buffer_destroy (buffer);
  /external/icu/icu4c/source/io/unicode/
ustdio.h 47 and make sure that a character that is contained across buffer boundries
63 internal conversion buffer. For example, read the buffer size # of
65 at the end of the last buffer.
70 order to prevent buffer overruns. (e.g. %256.256d).
76 better testing. This prevents buffer overflows.
757 * @param buffer The Unicode String to which to write.
760 * @return The number of Unicode code units written to <TT>buffer</TT>. This
765 u_sprintf(UChar *buffer,
772 * units of data are stored in <TT>buffer</TT> and a negative value i
    [all...]
  /external/icu/icu4c/source/samples/csdet/
csdet.c 18 static char buffer[BUFFER_SIZE]; local
47 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file);
52 ucsdet_setText(csd, buffer, inputLength, &status);
  /external/javassist/src/main/javassist/bytecode/
InstructionPrinter.java 224 StringBuffer buffer = new StringBuffer("lookupswitch {\n"); local
227 buffer.append("\t\tdefault: ").append(pos + iter.s32bitAt(index)).append("\n");
234 buffer.append("\t\t").append(match).append(": ").append(target).append("\n");
237 buffer.setCharAt(buffer.length() - 1, '}');
238 return buffer.toString();
243 StringBuffer buffer = new StringBuffer("tableswitch {\n"); local
246 buffer.append("\t\tdefault: ").append(pos + iter.s32bitAt(index)).append("\n");
254 buffer.append("\t\t").append(key).append(": ").append(target).append("\n");
257 buffer.setCharAt(buffer.length() - 1, '}')
    [all...]
  /external/jpeg/
jdpostct.c 24 /* Private buffer controller object */
29 /* Color quantization source buffer: this holds output data from
31 * For two-pass color quantization, we need a full-image buffer;
32 * for one-pass operation, a strip buffer is sufficient.
35 JSAMPARRAY buffer; /* strip buffer, or current strip of virtual */ member in struct:__anon2266
36 JDIMENSION strip_height; /* buffer size in rows */
84 * allocate a strip buffer. Use the virtual-array buffer as workspace.
86 if (post->buffer == NULL)
    [all...]
  /external/libedit/src/
hist.c 94 * Get a history line and update it in the buffer.
104 (void) Strncpy(el->el_line.buffer, el->el_history.buf,
106 el->el_line.lastchar = el->el_line.buffer +
111 el->el_line.cursor = el->el_line.buffer;
131 (void) Strncpy(el->el_line.buffer, hp,
132 (size_t)(el->el_line.limit - el->el_line.buffer));
133 el->el_line.buffer[el->el_line.limit - el->el_line.buffer - 1] = '\0';
134 el->el_line.lastchar = el->el_line.buffer + Strlen(el->el_line.buffer);
    [all...]
  /external/libpng/contrib/arm-neon/
linux-auxv.c 42 char *buffer = png_voidcast(char*, buffer_in); local
59 iread = read(fd, buffer, nread);
84 buffer += iread;
  /external/libvpx/libvpx/third_party/libwebm/
mkvwriter.cpp 29 int32 MkvWriter::Write(const void* buffer, uint32 length) {
36 if (buffer == NULL)
39 const size_t bytes_written = fwrite(buffer, 1, length, file_);
  /external/mesa3d/docs/
MESA_copy_sub_buffer.spec 33 of the back color buffer to the front color buffer. This can be
35 when the back color buffer cannot be damaged by other windows.
63 may be used to copy a rectangular region of the back color buffer to
64 the front color buffer. This can be used to quickly repaint 3D windows
65 in response to expose events when the back color buffer cannot be
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_bufmgr_pool.c 31 * Batch buffer pool management.
69 struct pb_buffer *buffer; member in struct:pool_pb_manager
150 return pb_validate(pool->buffer, vl, flags);
160 pb_fence(pool->buffer, fence);
171 pb_get_base_buffer(pool->buffer, base_buf, offset);
203 debug_printf("warning: out of fixed size buffer objects\n");
211 debug_printf("error: fixed size buffer pool corruption\n");
245 pb_unmap(pool->buffer);
246 pb_reference(&pool->buffer, NULL);
284 pool->buffer = provider->create_buffer(provider, numBufs*bufSize, desc);
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_draw_arrays.c 82 buf = softpipe_resource(sp->vertex_buffer[i].buffer)->data;
86 /* Map index buffer, if present */
90 mapped_indices = softpipe_resource(sp->index_buffer.buffer)->data;
99 void *buf = softpipe_resource(sp->so_targets[i]->target.buffer)->data;
120 * TODO: Flush only when a user vertex/index buffer is present
  /external/nist-sip/java/gov/nist/javax/sip/header/
CallID.java 85 protected StringBuffer encodeBody(StringBuffer buffer) {
87 callIdentifier.encode(buffer);
89 return buffer;
Protocol.java 70 public StringBuffer encode(StringBuffer buffer) {
71 buffer.append(protocolName.toUpperCase())
77 return buffer;
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/guide/
GetExample.java 33 byte[] buffer = new byte[1024];
34 for (int count; (count = in.read(buffer)) != -1; ) {
35 out.write(buffer, 0, count);
  /external/opencv/cv/src/
cvemd.cpp 112 char *buffer; member in struct:CvEMDState
323 if( state.buffer && state.buffer != local_buffer_ptr )
324 cvFree( &state.buffer );
347 char *buffer, *buffer_end; local
353 /* calculate buffer size */
373 buffer = local_buffer;
377 buffer = (char*)cvAlloc( buffer_size );
378 if( !buffer )
382 state->buffer = buffer
    [all...]
  /external/chromium_org/mojo/system/
local_data_pipe_unittest.cc 292 void* buffer = nullptr; local
296 MakeUserPointer(&buffer), MakeUserPointer(&num_bytes), false));
297 EXPECT_TRUE(buffer);
300 static_cast<int32_t*>(buffer)[0] = 789;
516 void* buffer = nullptr; local
521 MakeUserPointer(&buffer), MakeUserPointer(&num_bytes), true));
522 EXPECT_TRUE(buffer);
524 elements = static_cast<int32_t*>(buffer);
894 int32_t buffer[100] = {0}; local
1099 int32_t buffer[100]; local
1265 int32_t buffer[100]; local
1439 int32_t buffer[100]; local
1757 char buffer[1000]; local
    [all...]

Completed in 1407 milliseconds

<<51525354555657585960>>