HomeSort by relevance Sort by last modified time
    Searched refs:buffer_ptr (Results 1 - 25 of 41) sorted by null

1 2

  /external/tpm2/
marshal_test.c 33 BYTE *buffer_ptr = buffer; \
40 BYTE *buffer_ptr = buffer; \
46 buffer_ptr = buffer; \
51 buffer_ptr = buffer; \
83 UINT16 bytes_marshalled = uint32_t_Marshal(&value, &buffer_ptr, &size);
86 CHECK_EQ(buffer_ptr, buffer+num_bytes)
89 TPM_RC rc = uint32_t_Unmarshal(&value, &buffer_ptr, &size);
92 CHECK_EQ(buffer_ptr, buffer+num_bytes);
101 UINT16 bytes_marshalled = uint32_t_Marshal(&value, &buffer_ptr, &size);
104 CHECK_EQ(buffer, buffer_ptr);
    [all...]
  /system/bt/osi/include/
buffer.h 52 void *buffer_ptr(const buffer_t *buf);
  /external/llvm/include/llvm/ADT/
Hashing.h 386 /// buffer_ptr past the copied bytes, and returns true.
388 bool store_and_advance(char *&buffer_ptr, char *buffer_end, const T& value,
391 if (buffer_ptr + store_size > buffer_end)
394 memcpy(buffer_ptr, value_data + offset, store_size);
395 buffer_ptr += store_size;
407 char buffer[64], *buffer_ptr = buffer; local
409 while (first != last && store_and_advance(buffer_ptr, buffer_end,
413 return hash_short(buffer, buffer_ptr - buffer, seed);
414 assert(buffer_ptr == buffer_end);
421 buffer_ptr = buffer
    [all...]
  /external/libjpeg-turbo/
jdcoefct.c 197 JBLOCKROW buffer_ptr; local
224 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
226 coef->MCU_buffer[blkn++] = buffer_ptr++;
268 JBLOCKROW buffer_ptr; local
305 buffer_ptr = buffer[block_row] + cinfo->master->first_MCU_col[ci];
309 (*inverse_DCT) (cinfo, compptr, (JCOEFPTR) buffer_ptr,
311 buffer_ptr++;
415 JBLOCKROW buffer_ptr, prev_block_row, next_block_row; local
494 buffer_ptr = buffer[block_row] + cinfo->master->first_MCU_col[ci];
496 prev_block_row = buffer_ptr;
    [all...]
jctrans.c 301 JBLOCKROW buffer_ptr; local
329 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
331 MCU_buffer[blkn++] = buffer_ptr++;
jccoefct.c 347 JBLOCKROW buffer_ptr; local
373 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
375 coef->MCU_buffer[blkn++] = buffer_ptr++;
  /external/opencv3/3rdparty/libjpeg/
jdcoefct.c 253 JBLOCKROW buffer_ptr; local
280 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
282 coef->MCU_buffer[blkn++] = buffer_ptr++;
324 JBLOCKROW buffer_ptr; local
361 buffer_ptr = buffer[block_row];
364 (*inverse_DCT) (cinfo, compptr, (JCOEFPTR) buffer_ptr,
366 buffer_ptr++;
470 JBLOCKROW buffer_ptr, prev_block_row, next_block_row; local
546 buffer_ptr = buffer[block_row];
548 prev_block_row = buffer_ptr;
    [all...]
jctrans.c 285 JBLOCKROW buffer_ptr; local
313 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
315 MCU_buffer[blkn++] = buffer_ptr++;
jccoefct.c 353 JBLOCKROW buffer_ptr; local
379 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
381 coef->MCU_buffer[blkn++] = buffer_ptr++;
  /external/pdfium/third_party/libjpeg/
fpdfapi_jdcoefct.c 251 JBLOCKROW buffer_ptr; local
278 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
280 coef->MCU_buffer[blkn++] = buffer_ptr++;
322 JBLOCKROW buffer_ptr; local
359 buffer_ptr = buffer[block_row];
362 (*inverse_DCT) (cinfo, compptr, (JCOEFPTR) buffer_ptr,
364 buffer_ptr++;
468 JBLOCKROW buffer_ptr, prev_block_row, next_block_row; local
544 buffer_ptr = buffer[block_row];
546 prev_block_row = buffer_ptr;
    [all...]
fpdfapi_jctrans.c 288 JBLOCKROW buffer_ptr; local
316 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
318 MCU_buffer[blkn++] = buffer_ptr++;
fpdfapi_jccoefct.c 348 JBLOCKROW buffer_ptr; local
374 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
376 coef->MCU_buffer[blkn++] = buffer_ptr++;
  /external/mesa3d/src/mesa/vbo/
vbo_exec_draw.c 274 GLsizeiptr length = (exec->vtx.buffer_ptr - exec->vtx.buffer_map) * sizeof(float);
281 exec->vtx.buffer_used += (exec->vtx.buffer_ptr -
285 assert(exec->vtx.buffer_ptr != NULL);
289 exec->vtx.buffer_ptr = NULL;
313 assert(!exec->vtx.buffer_ptr);
325 exec->vtx.buffer_ptr = exec->vtx.buffer_map;
328 exec->vtx.buffer_ptr = exec->vtx.buffer_map = NULL;
352 exec->vtx.buffer_ptr = exec->vtx.buffer_map;
439 exec->vtx.buffer_ptr = exec->vtx.buffer_map;
vbo_exec.h 96 GLfloat *buffer_ptr; /* cursor, points into buffer */ member in struct:vbo_exec_context::__anon19839
vbo_save.h 148 GLfloat *buffer_ptr; /* cursor, points into buffer */ member in struct:vbo_save_context
vbo_exec_api.c 72 exec->vtx.buffer_ptr = exec->vtx.buffer_map;
127 if (!exec->vtx.buffer_ptr) {
137 memcpy( exec->vtx.buffer_ptr, data,
139 exec->vtx.buffer_ptr += exec->vtx.vertex_size;
286 exec->vtx.buffer_ptr = exec->vtx.buffer_map;
320 GLfloat *dest = exec->vtx.buffer_ptr;
323 assert(exec->vtx.buffer_ptr == exec->vtx.buffer_map);
355 exec->vtx.buffer_ptr = dest;
429 exec->vtx.buffer_ptr[i] = exec->vtx.vertex[i]; \
431 exec->vtx.buffer_ptr += exec->vtx.vertex_size;
    [all...]
  /external/c-ares/
ares_query.c 46 void ares__rc4(rc4_key* key, unsigned char *buffer_ptr, int buffer_len)
66 buffer_ptr[counter] = (unsigned char)(buffer_ptr[counter]^state[xorIndex]);
  /system/bt/osi/src/
buffer.c 84 void *buffer_ptr(const buffer_t *buf) { function
  /external/mesa3d/src/glx/
indirect_glx.c 251 INT32 *buffer_ptr; local
275 buffer_ptr = (INT32 *) (drawable_ptr + 1);
276 num_attrib_ptr = (CARD32 *) (buffer_ptr + 1);
280 *buffer_ptr = buffer;
302 INT32 *buffer_ptr; local
317 buffer_ptr = (INT32 *) (drawable_ptr + 1);
320 *buffer_ptr = buffer;
  /external/netperf/src/
nettest_sctp.c 698 message_int_ptr = (int *)(send_ring->buffer_ptr);
716 send_ring->buffer_ptr, send_size,
799 sctp_recvmsg(send_socket, send_ring->buffer_ptr, send_size, NULL,
    [all...]
nettest_sdp.c 515 access_buffer(send_ring->buffer_ptr,
532 send_ring->buffer_ptr,
595 recv(send_socket, send_ring->buffer_ptr, send_size, 0);
    [all...]
nettest_unix.c 487 message_int_ptr = (int *)(send_ring->buffer_ptr);
499 send_ring->buffer_ptr,
945 message_int_ptr = (int *)recv_ring->buffer_ptr;
957 while ((len = recv(s_data, recv_ring->buffer_ptr, recv_size, 0)) != 0) {
970 message_int_ptr = (int *)(recv_ring->buffer_ptr);
    [all...]
  /external/webrtc/talk/app/webrtc/test/
fakeaudiocapturemodule.cc 617 Sample* buffer_ptr = reinterpret_cast<Sample*>(send_buffer_); local
621 buffer_ptr[i] = value;
630 const Sample* buffer_ptr = reinterpret_cast<const Sample*>(rec_buffer_); local
634 if (buffer_ptr[i] >= value) return true;
  /hardware/ti/omap4-aah/camera/
Decoder_libjpeg.cpp 68 libjpeg_source_mgr(unsigned char *buffer_ptr, int len);
118 libjpeg_source_mgr::libjpeg_source_mgr(unsigned char *buffer_ptr, int len) : mBufferPtr(buffer_ptr), mFilledLen(len) {
  /system/core/adb/
commandline.cpp 307 char* buffer_ptr = raw_buffer; local
314 buffer_ptr = protocol->data();
325 callback->OnStdout(buffer_ptr, length);
328 callback->OnStderr(buffer_ptr, length);
344 callback->OnStdout(buffer_ptr, length);
529 char* buffer_ptr = raw_buffer; local
532 buffer_ptr = args->protocol->data();
547 int r = unix_read_interruptible(args->stdin_fd, buffer_ptr,
570 char ch = buffer_ptr[0];
588 buffer_ptr[0] = args->escape_char
    [all...]

Completed in 498 milliseconds

1 2