HomeSort by relevance Sort by last modified time
    Searched refs:p_size (Results 1 - 17 of 17) sorted by null

  /hardware/intel/img/psb_video/src/mrst/
lnc_H264ES.h 42 unsigned int *p_size);
lnc_H264ES.c 812 static inline void lnc_H264_append_EOSEQ(unsigned char *p_buf, unsigned int *p_size)
817 sizeof(EOSEQ), *p_size);
819 p_buf += *p_size;
822 *p_size += sizeof(EOSEQ);
825 static inline void lnc_H264_append_EOSTREAM(unsigned char *p_buf, unsigned int *p_size)
831 p_buf += *p_size;
833 *p_size += sizeof(EOSTREAM);
839 unsigned int *p_size)
853 ASSERT(p_size);
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
cio.c 266 OPJ_SIZE_T opj_stream_read_data (opj_stream_private_t * p_stream,OPJ_BYTE * p_buffer, OPJ_SIZE_T p_size, opj_event_mgr_t * p_event_mgr)
269 if (p_stream->m_bytes_in_buffer >= p_size) {
270 memcpy(p_buffer,p_stream->m_current_data,p_size);
271 p_stream->m_current_data += p_size;
272 p_stream->m_bytes_in_buffer -= p_size;
273 l_read_nb_bytes += p_size;
274 p_stream->m_byte_offset += (OPJ_OFF_T)p_size;
294 p_size -= p_stream->m_bytes_in_buffer;
307 if (p_size < p_stream->m_buffer_size) {
320 else if (p_stream->m_bytes_in_buffer < p_size) {
    [all...]
cio.h 270 * @param p_size number of bytes to read.
274 OPJ_SIZE_T opj_stream_read_data (opj_stream_private_t * p_stream,OPJ_BYTE * p_buffer, OPJ_SIZE_T p_size, struct opj_event_mgr * p_event_mgr);
280 * @param p_size number of bytes to write.
284 OPJ_SIZE_T opj_stream_write_data (opj_stream_private_t * p_stream,const OPJ_BYTE * p_buffer, OPJ_SIZE_T p_size, struct opj_event_mgr * p_event_mgr);
297 * @param p_size the number of bytes to skip.
301 OPJ_OFF_T opj_stream_skip (opj_stream_private_t * p_stream,OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
325 * @param p_size the number of bytes to skip.
329 OPJ_OFF_T opj_stream_write_skip (opj_stream_private_t * p_stream, OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
334 * @param p_size the number of bytes to skip.
338 OPJ_OFF_T opj_stream_read_skip (opj_stream_private_t * p_stream, OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr)
    [all...]
openjpeg.c 927 OPJ_SIZE_T p_size,
946 l_stream = opj_stream_create(p_size,p_is_read_stream);
  /external/e2fsprogs/lib/blkid/
getsize.c 157 if (pp->p_size)
158 return pp->p_size << 9;
  /system/nfc/src/nfc/nci/
nci_hmsgs.c 358 uint8_t *pp, *p_size, *p_start; local
373 p_size = pp;
381 *p_size = (uint8_t)(pp - p_start);
382 p->len = NCI_MSG_HDR_SIZE + *p_size;
469 uint8_t *pp, *p_size, *p_start; local
485 p_size = pp;
494 *p_size = (uint8_t)(pp - p_start);
495 p->len = NCI_MSG_HDR_SIZE + *p_size;
  /external/e2fsprogs/lib/ext2fs/
getsize.c 232 if (pp->p_size) {
233 *retblocks = pp->p_size / (blocksize / 512);
  /prebuilts/go/darwin-x86/src/runtime/
malloc.go 393 p_size := round(n+_PageSize, 256<<20)
394 new_end := h.arena_end + p_size // Careful: can overflow
399 p := uintptr(sysReserve(unsafe.Pointer(h.arena_end), p_size, &reserved))
406 } else if h.arena_start <= p && p+p_size-h.arena_start-1 <= _MaxArena32 {
409 h.arena_end = p + p_size
419 stat := uint64(p_size)
420 sysFree(unsafe.Pointer(p), p_size, &stat)
449 p_size := round(n, _PageSize) + _PageSize
450 p := uintptr(sysAlloc(p_size, &memstats.heap_sys))
455 if p < h.arena_start || p+p_size-h.arena_start > _MaxArena32
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
malloc.go 393 p_size := round(n+_PageSize, 256<<20)
394 new_end := h.arena_end + p_size // Careful: can overflow
399 p := uintptr(sysReserve(unsafe.Pointer(h.arena_end), p_size, &reserved))
406 } else if h.arena_start <= p && p+p_size-h.arena_start-1 <= _MaxArena32 {
409 h.arena_end = p + p_size
419 stat := uint64(p_size)
420 sysFree(unsafe.Pointer(p), p_size, &stat)
449 p_size := round(n, _PageSize) + _PageSize
450 p := uintptr(sysAlloc(p_size, &memstats.heap_sys))
455 if p < h.arena_start || p+p_size-h.arena_start > _MaxArena32
    [all...]
  /toolchain/binutils/binutils-2.25/include/elf/
internal.h 267 bfd_vma p_size; member in struct:elf_segment_map
279 /* Whether the p_size field is valid; if not, the size are based
  /external/fio/
client.c 719 size_t p_size; local
724 p_size = sizeof(*pdu) + strlen(filename) + 1;
725 pdu = malloc(p_size);
726 memset(pdu, 0, p_size);
732 ret = fio_net_send_cmd(client->fd, FIO_NET_CMD_LOAD_FILE, pdu, p_size,NULL, NULL);
745 size_t p_size; local
768 p_size = sb.st_size + sizeof(*pdu);
769 pdu = malloc(p_size);
785 ret = fio_net_send_cmd(client->fd, FIO_NET_CMD_JOB, pdu, p_size, NULL, NULL);
    [all...]
  /external/libxml2/os400/iconv/bldcsndfa/
bldcsndfa.c 79 unsigned int p_size; /* Current allocated size. */ member in struct:__anon24947
597 s->p_size = GRANULE;
609 if (s->p_card >= s->p_size) {
610 s->p_size += GRANULE;
612 sizeof *s + s->p_size * sizeof s->p_set);
614 s->p_set[s->p_size] = (t_state *) NULL;
    [all...]
  /external/pdfium/core/fxcodec/codec/
fx_codec_jpx_opj.cpp 122 OPJ_SIZE_T p_size,
128 l_stream = opj_stream_create(p_size, p_is_read_stream);
  /build/make/tools/ijar/
classfile.cc 1362 u1* p_size = p; local
    [all...]
  /external/jemalloc/src/
arena.c     [all...]
  /toolchain/binutils/binutils-2.25/bfd/
elf.c     [all...]

Completed in 2760 milliseconds