HomeSort by relevance Sort by last modified time
    Searched defs:pData (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
keyTypes.h 67 char *pData; /**< Pointer to the material to derive the key from */
  /packages/apps/Nfc/jni/
com_android_nfc_list.h 28 void* pData;
40 bool listAdd(listHead* pList, void* pData);
41 bool listRemove(listHead* pList, void* pData);
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_Equaliser.c 64 LVCS_Data_t *pData = (LVCS_Data_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress;
90 (void *)&pData->EqualiserBiquadTaps, /* Destination Cast to void:\
92 (LVM_UINT16)(sizeof(pData->EqualiserBiquadTaps)/sizeof(LVM_INT16))); /* Number of words */
95 &pData->EqualiserBiquadTaps,
LVCS_ReverbGenerator.c 69 LVCS_Data_t *pData = (LVCS_Data_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress;
108 (void *)&pData->ReverbBiquadTaps, /* Destination Cast to void: no dereferencing in function*/
109 (LVM_UINT16)(sizeof(pData->ReverbBiquadTaps)/sizeof(LVM_INT16))); /* Number of words */
112 &pData->ReverbBiquadTaps,
LVCS_StereoEnhancer.c 60 LVCS_Data_t *pData = (LVCS_Data_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress;
85 (void *)&pData->SEBiquadTapsMid, /* Destination Cast to void:\
87 (LVM_UINT16)(sizeof(pData->SEBiquadTapsMid)/sizeof(LVM_UINT16))); /* Number of words */
90 &pData->SEBiquadTapsMid,
112 (void *)&pData->SEBiquadTapsSide, /* Destination Cast to void:\
114 (LVM_UINT16)(sizeof(pData->SEBiquadTapsSide)/sizeof(LVM_UINT16))); /* Number of words */
122 &pData->SEBiquadTapsSide,
129 &pData->SEBiquadTapsSide,
  /external/icu4c/samples/udata/
writer.c 61 UNewDataMemory *pData;
74 pData=udata_create(currdir, DATA_TYPE, DATA_NAME, &dataInfo,
90 udata_write16(pData, intValue);
92 udata_writeString(pData, stringValue, sizeof(stringValue));
95 dataLength=udata_finish(pData, &errorCode);
  /external/icu4c/tools/genbrk/
genbrk.cpp 174 UNewDataMemory *pData;
182 pData = udata_create(outDir, NULL, outFileName, &dummyDataInfo, NULL, &status);
183 udata_writeBlock(pData, msg, strlen(msg));
184 udata_finish(pData, &status);
312 UNewDataMemory *pData;
313 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
322 udata_writeBlock(pData, outData, outDataSize);
324 bytesWritten = udata_finish(pData, &status);
  /external/icu4c/tools/genctd/
genctd.cpp 172 UNewDataMemory *pData;
180 pData = udata_create(outDir, NULL, outFileName, &dummyDataInfo, NULL, &status);
181 udata_writeBlock(pData, msg, strlen(msg));
182 udata_finish(pData, &status);
363 UNewDataMemory *pData;
364 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
373 udata_writeBlock(pData, outData, outDataSize);
375 bytesWritten = udata_finish(pData, &status);
  /frameworks/base/media/jni/mediaeditor/
VideoEditorOsal.cpp 263 void *pData = M4OSA_NULL;
269 pData = (M4VSS3GPP_EditSettings*)M4OSA_32bitAlignedMalloc(size, 0, (M4OSA_Char*)pDescription);
270 if (M4OSA_NULL != pData)
273 memset((void *)pData, 0,size);
294 return(pData);
299 void* pData)
302 if (M4OSA_NULL != pData)
310 free(pData);
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_dcf.c 50 uint8_t *pHeader, *pData;
80 pData = tmpBuf;
84 while (pStart < pData) {
86 while ('\r' != *pEnd && pEnd < pData)
122 *ppEncryptedData = pData;
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_memory.c 121 TIMM_OSAL_PTR pData = TIMM_OSAL_NULL;
126 pData = malloc((size_t) size);
129 pData = memalign((size_t) unBlockAlignment, (size_t) size);
138 pData = malloc((size_t) size); /*size_t is long long */
140 if (TIMM_OSAL_NULL == pData)
150 return pData;
161 void TIMM_OSAL_Free(TIMM_OSAL_PTR pData)
163 if (TIMM_OSAL_NULL == pData)
169 free(pData);
170 pData = NULL
    [all...]
  /external/icu4c/tools/gencfu/
gencfu.cpp 182 UNewDataMemory *pData;
190 pData = udata_create(outDir, NULL, outFileName, &dummyDataInfo, NULL, &status);
191 udata_writeBlock(pData, msg, strlen(msg));
192 udata_finish(pData, &status);
265 UNewDataMemory *pData;
266 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
275 udata_writeBlock(pData, outData, outDataSize);
277 bytesWritten = udata_finish(pData, &status);
  /external/icu4c/tools/gentest/
gentest.c 104 UNewDataMemory *pData;
111 pData=udata_create(outputDirectory, DATA_TYPE, DATA_NAME, &dataInfo,
120 udata_write16(pData, intValue);
121 udata_writeString(pData, stringValue, sizeof(stringValue));
124 dataLength=udata_finish(pData, errorCode);
  /frameworks/av/libvideoeditor/vss/stagefrightshells/inc/
VideoEditorBuffer.h 54 M4OSA_Void* pData; /**< Pointer to the data*/
  /external/icu4c/tools/toolutil/
unewdata.c 38 UNewDataMemory *pData;
52 pData=(UNewDataMemory *)uprv_malloc(sizeof(UNewDataMemory));
53 if(pData==NULL) {
80 uprv_free(pData);
100 pData->file=T_FileStream_open(filename, "wb");
101 if(pData->file==NULL) {
102 uprv_free(pData);
117 pData->headerSize=(uint16_t)((headerSize+15)&~0xf);
118 pData->magic1=0xda;
119 pData->magic2=0x27
    [all...]
  /frameworks/av/libvideoeditor/vss/3gpwriter/src/
M4MP4W_Interface.c     [all...]
  /frameworks/av/media/libeffects/lvm/lib/Bass/src/
LVDBE_Private.h 111 LVDBE_Data_t *pData; /* Instance data */
  /hardware/ti/wlan/wl1271/utils/
GenSM.h 47 typedef void (*TGenSM_action) (void *pData);
77 void *pData; /**< Last event data */
92 void genSM_Event (TI_HANDLE hGenSM, TI_UINT32 uEvent, void *pData);
  /bootable/recovery/minui/
resources.c 115 unsigned char* pData = (unsigned char*) (surface + 1);
120 surface->data = pData;
136 unsigned char* pRow = pData + y * stride;
155 unsigned char* pRow = pData + y * stride;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Constraint.java 55 Pointer pData = (Pointer) constraintStructure.getFieldValue("data");
56 if (pData.isNotNull()) {
57 data = pData.fetchData(blenderContext.getInputStream()).get(0);
  /external/srec/audio/AudioIn/UNIX/include/
audioin.h 136 void *pData;
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/
FwdLockGlue.c 108 * @param[in] pData A reference to the buffer containing the decrypted key and padding.
113 static int FwdLockGlue_ValidatePadding(const unsigned char *pData, size_t decryptedKeyLength) {
116 pData += decryptedKeyLength;
118 if ((size_t)*pData != padding) {
121 ++pData;
178 unsigned char *pData = malloc(dataLength);
179 if (pData != NULL) {
181 memcpy(pData, pEncryptedKey, dataLength);
183 AES_cbc_encrypt(pData, pData, dataLength, &decryptionRoundKeys, initVector
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_conceal.c 265 u8 *pData;
341 pData = mbPos - width*16;
342 a[0] = *pData++; a[0] += *pData++; a[0] += *pData++; a[0] += *pData++;
343 a[1] = *pData++; a[1] += *pData++; a[1] += *pData++; a[1] += *pData++
    [all...]
  /frameworks/wilhelm/tests/examples/
slesTestSawtoothBufferQueue.cpp 75 SLint16* pData; // Current adress of local audio data storage
92 if(pCntxt->pData < (pCntxt->pDataBase + pCntxt->size))
95 res = (*queueItf)->Enqueue(queueItf, (void*) pCntxt->pData,
99 pCntxt->pData += AUDIO_DATA_BUFFER_SIZE;
194 cntxt.pData = cntxt.pDataBase;
229 res = (*bufferQueueItf)->Enqueue(bufferQueueItf, cntxt.pData,
232 cntxt.pData += AUDIO_DATA_BUFFER_SIZE;
234 res = (*bufferQueueItf)->Enqueue(bufferQueueItf, cntxt.pData,
237 cntxt.pData += AUDIO_DATA_BUFFER_SIZE;
239 res = (*bufferQueueItf)->Enqueue(bufferQueueItf, cntxt.pData,
    [all...]
  /hardware/ti/wlan/wl1271/platforms/hw/linux/
SdioAdapter.c 174 unsigned char *pData = pHostAddr;
181 *pData = (unsigned char)sdio_f0_readb(tiwlan_func, uHwAddr, &rc);
183 *pData = (unsigned char)sdio_readb(tiwlan_func, uHwAddr, &rc);
187 sdio_f0_writeb(tiwlan_func, *pData, uHwAddr, &rc);
189 sdio_writeb(tiwlan_func, *pData, uHwAddr, &rc);
195 printk(KERN_INFO "%c52: [0x%x](%u) %c 0x%x\n", (bDirection ? 'R' : 'W'), uHwAddr, uLength, (bDirection ? '=' : '<'), (unsigned)*pData);
198 pData++;

Completed in 3027 milliseconds

1 2 3 4