HomeSort by relevance Sort by last modified time
    Searched full:usize (Results 26 - 50 of 64) sorted by null

12 3

  /hardware/ti/omap4xxx/domx/mm_osal/inc/
timm_osal_memory.h 88 TIMM_OSAL_U8 uValue, TIMM_OSAL_U32 uSize);
91 TIMM_OSAL_PTR pBuffer2, TIMM_OSAL_U32 uSize);
94 TIMM_OSAL_PTR pBufSrc, TIMM_OSAL_U32 uSize);
  /toolchain/binutils/binutils-2.25/bfd/hosts/
delta68.h 31 #define UPAGES USIZE
dpx2.h 25 #define UPAGES (USIZE * NBPP)
m68kaux.h 32 #define UPAGES USIZE
i386sco.h 24 #define UPAGES USIZE
  /hardware/ti/omap3/dspbridge/inc/
DSPStream.h 69 * uSize: Size of the buffer
71 * uNumBufs: The number of buffers to allocate of size uSize.
83 UINT uSize, OUT BYTE ** apBuffer,
223 * uSize: Size of the allocated buffer(GPP bytes)
231 extern DBAPI DSPStream_PrepareBuffer(DSP_HSTREAM hStream, UINT uSize,
312 * uSize: Size of the allocated buffer(GPP bytes)
320 extern DBAPI DSPStream_UnprepareBuffer(DSP_HSTREAM hStream, UINT uSize,
csl.h 75 * uSize: size of wpstrDest buffer.
82 * uSize is the number of CHARACTERS in wpstrDest, NOT the number of BYTES
86 IN PSTR pstrSource, ULONG uSize);
323 * uSize: number of chars to convert.
334 IN WCHAR * pwszSource, IN ULONG uSize);
wcdioctl.h 231 UINT uSize;
312 UINT uSize;
384 UINT uSize;
cmm.h 87 * uSize: Number of bytes to allocate.
103 UINT uSize, struct CMM_ATTRS * pAttrs,
  /hardware/ti/omap3/dspbridge/libbridge/inc/
DSPStream.h 71 * uSize: Size of the buffer
73 * uNumBufs: The number of buffers to allocate of size uSize.
85 UINT uSize, OUT BYTE ** apBuffer,
225 * uSize: Size of the allocated buffer(GPP bytes)
233 extern DBAPI DSPStream_PrepareBuffer(DSP_HSTREAM hStream, UINT uSize,
314 * uSize: Size of the allocated buffer(GPP bytes)
322 extern DBAPI DSPStream_UnprepareBuffer(DSP_HSTREAM hStream, UINT uSize,
csl.h 76 * uSize: size of wpstrDest buffer.
83 * uSize is the number of CHARACTERS in wpstrDest, NOT the number of BYTES
87 IN PSTR pstrSource, ULONG uSize);
324 * uSize: number of chars to convert.
335 IN WCHAR * pwszSource, IN ULONG uSize);
wcdioctl.h 231 UINT uSize;
312 UINT uSize;
384 UINT uSize;
cmm.h 87 * uSize: Number of bytes to allocate.
103 UINT uSize, struct CMM_ATTRS * pAttrs,
  /external/jemalloc/test/unit/
quarantine.c 62 arena_redzone_corruption_replacement(void *ptr, size_t usize, bool after,
  /hardware/ti/omap3/dspbridge/libbridge/
DSPStrm.c 109 DBAPI DSPStream_AllocateBuffers(DSP_HSTREAM hStream, UINT uSize,
153 tempStruct.ARGS_STRM_ALLOCATEBUFFER.uSize = uSize;
162 pBuf = MEM_Alloc(uSize, MEM_NONPAGED);
613 DBAPI DSPStream_PrepareBuffer(DSP_HSTREAM hStream, UINT uSize, BYTE *pBuffer)
621 UINT cPages = ADDRESS_AND_SIZE_TO_SPAN_PAGES(NULL, uSize);
633 if (uSize <= 0)
642 if (!LockPages((LPVOID)pBuffer, uSize, aPageTab,
788 DBAPI DSPStream_UnprepareBuffer(DSP_HSTREAM hStream, UINT uSize,
804 if ((uSize <= 0)
    [all...]
DSPNode.c 267 DBAPI DSPNode_AllocMsgBuf(DSP_HNODE hNode, UINT uSize,
275 if (uSize == 0) {
284 tempStruct.ARGS_NODE_ALLOCMSGBUF.uSize = uSize;
  /hardware/ti/omap4-aah/domx/mm_osal/src/
timm_osal_memory.c 185 TIMM_OSAL_U8 uValue, TIMM_OSAL_U32 uSize)
189 memset((void *)pBuffer, (int)uValue, (size_t) uSize);
204 TIMM_OSAL_U32 uSize)
206 TIMM_OSAL_S32 result = memcmp(pBuffer1, pBuffer2, uSize);
228 TIMM_OSAL_PTR pBufSrc, TIMM_OSAL_U32 uSize)
232 memcpy(pBufDst, pBufSrc, uSize);
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_memory.c 185 TIMM_OSAL_U8 uValue, TIMM_OSAL_U32 uSize)
189 memset((void *)pBuffer, (int)uValue, (size_t) uSize);
204 TIMM_OSAL_U32 uSize)
206 TIMM_OSAL_S32 result = memcmp(pBuffer1, pBuffer2, uSize);
228 TIMM_OSAL_PTR pBufSrc, TIMM_OSAL_U32 uSize)
232 memcpy(pBufDst, pBufSrc, uSize);
  /toolchain/binutils/binutils-2.25/bfd/
hppabsd-core.c 159 NBPG * (USIZE + KSTAKSIZE)
169 NBPG * (USIZE + KSTAKSIZE), 2);
177 NBPG * USIZE, 2);
  /external/jemalloc/include/jemalloc/internal/
arena.h 515 void *arena_chunk_alloc_huge(arena_t *arena, size_t usize, size_t alignment,
517 void arena_chunk_dalloc_huge(arena_t *arena, void *chunk, size_t usize);
519 size_t oldsize, size_t usize);
521 size_t oldsize, size_t usize);
523 size_t oldsize, size_t usize, bool *zero);
543 void arena_quarantine_junk_small(void *ptr, size_t usize);
547 void *arena_palloc(tsd_t *tsd, arena_t *arena, size_t usize,
560 void arena_dalloc_junk_large(void *ptr, size_t usize);
648 void arena_prof_tctx_set(const void *ptr, size_t usize, prof_tctx_t *tctx);
649 void arena_prof_tctx_reset(const void *ptr, size_t usize,
    [all...]
  /external/tpm2/
TpmFail.c 116 UINT32 usize; local
119 || UINT32_Unmarshal(&usize, buffer, size) != TPM_RC_SUCCESS
123 header->size = usize;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wdspxe.h 88 PVOID PXEAPI PxePacketAllocate(HANDLE hProvider,HANDLE hClientRequest,ULONG uSize);
  /external/jemalloc/src/
prof.c 226 prof_malloc_sample_object(const void *ptr, size_t usize, prof_tctx_t *tctx)
229 prof_tctx_set(ptr, usize, tctx);
233 tctx->cnts.curbytes += usize;
236 tctx->cnts.accumbytes += usize;
243 prof_free_sampled_object(tsd_t *tsd, size_t usize, prof_tctx_t *tctx)
248 assert(tctx->cnts.curbytes >= usize);
250 tctx->cnts.curbytes -= usize;
    [all...]
  /external/liblzf/
lzf.c 165 * "ZV\0" 2-byte-usize <uncompressed data>
166 * "ZV\1" 2-byte-csize 2-byte-usize <compressed data>
  /external/v8/src/runtime/
runtime-atomics.cc 662 uint32_t usize = NumberToUint32(*size); local
663 return isolate->heap()->ToBoolean(AtomicIsLockFree(usize));

Completed in 492 milliseconds

12 3