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

1 2 3 4

  /dalvik/vm/jdwp/
ExpandBuf.cpp 56 void expandBufFree(ExpandBuf* pBuf)
58 if (pBuf == NULL)
61 free(pBuf->storage);
62 free(pBuf);
68 u1* expandBufGetBuffer(ExpandBuf* pBuf)
70 return pBuf->storage;
76 size_t expandBufGetLength(ExpandBuf* pBuf)
78 return pBuf->curLen;
86 static void ensureSpace(ExpandBuf* pBuf, int newCount)
90 if (pBuf->curLen + newCount <= pBuf->maxLen
    [all...]
ExpandBuf.h 29 void expandBufFree(ExpandBuf* pBuf);
35 u1* expandBufGetBuffer(ExpandBuf* pBuf);
36 size_t expandBufGetLength(ExpandBuf* pBuf);
49 u1* expandBufAddSpace(ExpandBuf* pBuf, int gapSize);
50 void expandBufAdd1(ExpandBuf* pBuf, u1 val);
51 void expandBufAdd2BE(ExpandBuf* pBuf, u2 val);
52 void expandBufAdd4BE(ExpandBuf* pBuf, u4 val);
53 void expandBufAdd8BE(ExpandBuf* pBuf, u8 val);
54 void expandBufAddUtf8String(ExpandBuf* pBuf, const u1* str);
Jdwp.h 50 INLINE FieldId dvmReadFieldId(const u1** pBuf) { return read4BE(pBuf); }
51 INLINE MethodId dvmReadMethodId(const u1** pBuf) { return read4BE(pBuf); }
52 INLINE ObjectId dvmReadObjectId(const u1** pBuf) { return read8BE(pBuf); }
53 INLINE RefTypeId dvmReadRefTypeId(const u1** pBuf) { return read8BE(pBuf); }
54 INLINE FrameId dvmReadFrameId(const u1** pBuf) { return read8BE(pBuf); }
    [all...]
  /hardware/ti/wlan/wl1271/platforms/os/common/inc/
RxBuf.h 58 typedef void BUF, *PBUF;
67 #define RX_BUF_DATA(pBuf) ((void*)((TI_UINT8 *)pBuf + sizeof(RxIfDescriptor_t)))
72 #define RX_BUF_LEN(pBuf) ( (((RxIfDescriptor_t *)(pBuf))->length << 2) - \
73 ((RxIfDescriptor_t *)(pBuf))->extraBytes - \
80 #define RX_ETH_PKT_DATA(pBuf) *((void **)(((TI_UINT32)pBuf + sizeof(RxIfDescriptor_t) + 2) & ~3))
85 #define RX_ETH_PKT_LEN(pBuf) *((TI_UINT32 *)(((TI_UINT32)pBuf + sizeof(RxIfDescriptor_t) + 6) & ~3)
    [all...]
osApi.h 98 #define INSERT_BYTE(pBuf, dataByte) (*((TI_UINT8 *)pBuf) = (TI_UINT8 )dataByte ); pBuf++;
99 #define INSERT_2_BYTES(pBuf, dataBytes) (*((TI_UINT16 *)pBuf) = (TI_UINT16)dataBytes); pBuf+=2;
100 #define INSERT_4_BYTES(pBuf, dataBytes) (*((TI_UINT32 *)pBuf) = (TI_UINT32)dataBytes); pBuf+=4;
  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 27 size_t encode(ByteType *&pBuf, IntType pValue);
30 IntType decode(const ByteType *pBuf, size_t &pSize);
33 IntType decode(const ByteType *&pBuf);
56 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue);
59 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue);
65 size_t encode<int64_t>(ByteType *&pBuf, int64_t pValue);
68 size_t encode<int32_t>(ByteType *&pBuf, int32_t pValue);
76 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize);
83 uint64_t decode<uint64_t>(const ByteType *&pBuf);
89 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize)
    [all...]
FileSystem.h 109 size_t pread(int pFD, Address pBuf, size_t pCount, off_t pOffset);
110 size_t pwrite(int pFD, const Address pBuf, size_t pCount, off_t pOffset);
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 17 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue) {
24 *pBuf++ = byte;
36 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue) {
38 *pBuf++ = static_cast<ByteType>(pValue);
41 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
42 *pBuf++ = static_cast<ByteType>((pValue >> 7) & 0x7f);
45 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
46 *pBuf++ = static_cast<ByteType>(((pValue >> 7) & 0x7f) | 0x80);
47 *pBuf++ = static_cast<ByteType>((pValue >> 14) & 0x7f);
50 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80)
    [all...]
  /dalvik/tools/hprof-conv/
HprofConv.c 124 static void ebFree(ExpandBuf* pBuf)
126 if (pBuf != NULL) {
127 free(pBuf->storage);
128 free(pBuf);
138 static inline unsigned char* ebGetBuffer(ExpandBuf* pBuf)
140 return pBuf->storage;
146 static inline size_t ebGetLength(ExpandBuf* pBuf)
148 return pBuf->curLen;
154 static void ebClear(ExpandBuf* pBuf)
156 pBuf->curLen = 0
    [all...]
  /hardware/ti/wlan/wl1271/utils/
stack.c 63 * \param pBuf - pointer to the stack buffer; if NULL a memory for the stack buffer will be dynamically allocated\n
73 void *pBuf,
82 if (pBuf)
84 pStack->pBuf = pBuf;
90 pStack->pBuf = _os_memoryAlloc (hOs, pStack->uDep);
114 _os_memoryFree (pStack->hOs, pStack->pBuf, pStack->uDep);
133 pStack->fCpy (pStack->hOs, (unsigned char*)pStack->pBuf + pStack->uPtr, pVal, pStack->uElemSize);
157 pStack->fCpy (pStack->hOs, pVal, (unsigned char*)pStack->pBuf + pStack->uPtr, pStack->uElemSize);
stack.h 55 void *pBuf;
67 unsigned stackInit (Stack_t *pStack, TI_HANDLE hOs, unsigned uElemSize, unsigned uDep, void *pBuf, void (*fCpy) (TI_HANDLE, void*, void*, unsigned));
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
RxBuf.c 74 inline void RxBufFree(TI_HANDLE hOs, void *pBuf)
76 unsigned char *pdata = (unsigned char *)((TI_UINT32)pBuf & ~(TI_UINT32)0x3);
81 if ((TI_UINT32)pBuf & 0x3)
83 if ((TI_UINT32)pBuf - (TI_UINT32)skb->data != 2)
85 printk("RxBufFree() address error skb=0x%x skb->data=0x%x pPacket=0x%x !!!\n",(int)skb, (int)skb->data, (int)pBuf);
90 if ((TI_UINT32)skb->data != (TI_UINT32)pBuf)
92 printk("RxBufFree() address error skb=0x%x skb->data=0x%x pPacket=0x%x !!!\n",(int)skb, (int)skb->data, (int)pBuf);
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_rel.c 235 uint8_t *pBuf, *pValue;
325 pBuf =
332 pBuf = XML_DOM_getNodeValue(buffer, sProperty, &pValue, &valueLen);
334 CHECK_VALIDITY(pBuf);
335 if (pBuf) { /* If interval element exit then get the value */
419 pBuf =
426 pBuf = XML_DOM_getNodeValue(buffer, sProperty, &pValue, &valueLen);
428 CHECK_VALIDITY(pBuf);
429 if (pBuf) { /* If count element exit the get the value */
461 pBuf
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
templates.c 224 char *pBuf;
261 pBuf = (char *)&(pBuffer->infoElements);
276 ((dot11_SSID_t *)(pBuf))->hdr[0] = DOT11_SSID_ELE_ID;
277 ((dot11_SSID_t *)(pBuf))->hdr[1] = pSsid->len;
278 os_memoryCopy(pSiteMgr->hOs, pBuf + sizeof(dot11_eleHdr_t), (void *)pSsid->str, pSsid->len);
280 pBuf += sizeof(dot11_eleHdr_t) + pSsid->len;
283 pDot11Rates = (dot11_RATES_t *) pBuf;
333 pBuf += pDot11Rates->hdr[1] + sizeof(dot11_eleHdr_t);
341 pDot11Rates = (dot11_RATES_t *) (pBuf + suppRatesLen);
347 pBuf += suppRatesLen + extSuppRatesLen;
    [all...]
  /external/chromium/chrome/browser/debugger/
devtools_remote_listen_socket.cc 31 pBuf++;\
111 const char* pBuf,
115 if (cr_received_ && *pBuf == '\n') {
119 while (*pBuf != '\r' && len > 0) {
120 protocol_field_.push_back(*pBuf);
123 if (*pBuf == '\r') {
140 protocol_field_.push_back(*pBuf);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.s 25 ;// Implements re-arrangement of data from temporary buffer to a buffer pointed by pBuf.
57 pBuf RN 7
94 STRD ValueA0, [pBuf], #8
97 SUB pSrc0, pBuf, #32
136 STR Temp1, [pBuf], #8
138 STR Temp2, [pBuf], #-4
164 STR Temp1, [pBuf], #8
166 STR Temp2, [pBuf], #4
170 SUB pSrc0, pBuf, #32-8
omxVCM4P10_InterpolateLuma_s.s 122 pBuf RN 8
149 M_ADR pBuf, pBuffer
231 M_ADR pBuf, pBuffer
249 M_ADR pBuf, pInterBuf
269 M_ADR pBuf, pBuffer
296 M_ADR pBuf, pInterBuf
311 M_ADR pBuf, pInterBuf
322 M_ADR pBuf, pInterBuf
352 M_ADR pBuf, pBuffer
368 M_ADR pBuf, pInterBu
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.s 25 ;// Implements re-arrangement of data from temporary buffer to a buffer pointed by pBuf.
57 pBuf RN 7
94 STRD ValueA0, [pBuf], #8
97 SUB pSrc0, pBuf, #32
136 STR Temp1, [pBuf], #8
138 STR Temp2, [pBuf], #-4
164 STR Temp1, [pBuf], #8
166 STR Temp2, [pBuf], #4
170 SUB pSrc0, pBuf, #32-8
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
EASLib.c 136 static S_BUFFER_INFO *pBuf = NULL;
355 memset(ptrOutL, 0, pBuf->uOutFrames);
356 memset(ptrOutR, 0, pBuf->uOutFrames);
359 if (pBuf->ix == 0 )
368 short* pData = pBuf->pData[--(pBuf->ix)];
372 for (i = 0; i < pBuf->uOutFrames; i+=2 )
388 memcpy(pBuf->pData[(pBuf->ix)++], pAudioBuffer, 2048);
412 while(pBuf->ix == MAX_BUFFERS - 1
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
DSPManager.h 201 * pBuf: Pointer to information buffer.
207 extern DBAPI DSPManager_GetProcResourceInfo(UINT *pBuf, UINT *pSize);
  /hardware/ti/omap3/dspbridge/libbridge/inc/
DSPManager.h 201 * pBuf: Pointer to information buffer.
207 extern DBAPI DSPManager_GetProcResourceInfo(UINT *pBuf, UINT *pSize);
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/tests/
G726DecTest.c 135 int fill_data (OMX_BUFFERHEADERTYPE *pBuf, FILE *fIn);
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/tests/
VPPTest.c 72 int fill_data (OMX_BUFFERHEADERTYPE *pBuf, HANDLE fIn);
74 int fill_data (OMX_BUFFERHEADERTYPE *pBuf, FILE *fIn);
513 OMX_BUFFERHEADERTYPE* pBuf = NULL; /*To Hold Output Buffers*/
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/tests/
WmaDecTest.c 230 int fill_data (OMX_BUFFERHEADERTYPE *pBuf, FILE *fIn);
231 int fill_data_tc7 (OMX_BUFFERHEADERTYPE *pBuf, FILE *fIn);
    [all...]
  /device/samsung/crespo/libcamera/
SecCameraHWInterface.h 145 bool CheckVideoStartMarker(unsigned char *pBuf);
146 bool CheckEOIMarker(unsigned char *pBuf);
147 bool FindEOIMarkerInJPEG(unsigned char *pBuf,

Completed in 1282 milliseconds

1 2 3 4