Searched refs:pIn (Results 1 - 25 of 30) sorted by relevance

12

/external/libnfc-nxp/src/
H A DphFriNfc_LlcpUtils.c198 pUtilFifo->pIn = (uint8_t *)pBuffStart;
208 pUtilFifo->pIn = pUtilFifo->pBuffStart;
225 pNext = (uint8_t*)pUtilFifo->pIn+1;
247 pUtilFifo->pIn = pNext;
265 if((pUtilFifo->pOut == pUtilFifo->pIn) && (pUtilFifo->bFull == FALSE))
301 uint8_t * pIn = (uint8_t *)pUtilFifo->pIn; local
310 if(pIn >= pOut)
312 dataLength = pIn - pOut;
317 dataLength += (pIn
332 uint8_t * pIn = (uint8_t *)pUtilFifo->pIn; local
[all...]
H A DphFriNfc_LlcpUtils.h44 * If pIn == pOut the buffer is empty.
50 volatile uint8_t *pIn; /* Points to 1 before where the next TU1 will enter buffer */ member in struct:UTIL_FIFO_BUFFER
/external/bluetooth/bluedroid/bta/dm/
H A Dbta_dm_sco.c246 SRC_TYPE *pIn, *pInEnd; local
257 pIn = (SRC_TYPE *)(pSrc + BTA_DM_PCM_OVERLAP_SIZE);
264 CONVERT_44100_TO_BLUETOOTH(pIn, pInEnd);
269 CONVERT_22050_TO_BLUETOOTH(pIn, pInEnd);
274 CONVERT_11025_TO_BLUETOOTH(pIn, pInEnd);
332 SRC_TYPE *pIn, *pInEnd; local
341 pIn = (SRC_TYPE *)(pSrc + BTA_DM_PCM_OVERLAP_SIZE);
347 CONVERT_44100_TO_BLUETOOTH(pIn, pInEnd);
352 CONVERT_22050_TO_BLUETOOTH(pIn, pInEnd);
357 CONVERT_11025_TO_BLUETOOTH(pIn, pInEn
409 SRC_TYPE *pIn, *pInEnd; local
506 SRC_TYPE *pIn, *pInEnd; local
[all...]
/external/chromium_org/third_party/icu/source/test/perf/utfperf/
H A Dutfperf.cpp165 const UChar *pIn, *pInLimit; local
174 pIn=input;
186 /* convert a block of [pIn..pInLimit[ to the encoding in intermediate[] */
188 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode);
196 } else if(pIn==pInLimit) {
232 const UChar *pIn, *pInLimit; local
238 pIn=input;
247 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode);
285 const char *pIn, *pInLimit; local
293 pIn
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Drowset.c269 ** The input, pIn, is a binary tree (or subtree) of RowSetEntry objects.
274 struct RowSetEntry *pIn, /* Root of the input tree */
278 assert( pIn!=0 );
279 if( pIn->pLeft ){
281 rowSetTreeToList(pIn->pLeft, ppFirst, &p);
282 p->pRight = pIn;
284 *ppFirst = pIn;
286 if( pIn->pRight ){
287 rowSetTreeToList(pIn->pRight, &pIn
273 rowSetTreeToList( struct RowSetEntry *pIn, struct RowSetEntry **ppFirst, struct RowSetEntry **ppLast ) argument
[all...]
H A Dpcache.c489 static PgHdr *pcacheSortDirtyList(PgHdr *pIn){ argument
493 while( pIn ){
494 p = pIn;
495 pIn = p->pDirty;
H A Dselect.c1884 ** The data to be output is contained in pIn->iMem. There are
1885 ** pIn->nMem columns to be output. pDest is where the output should
1903 SelectDest *pIn, /* Coroutine supplying data */
1923 j2 = sqlite3VdbeAddOp4(v, OP_Compare, pIn->iMem, regPrev+1, pIn->nMem,
1927 sqlite3ExprCodeCopy(pParse, pIn->iMem, regPrev+1, pIn->nMem);
1945 sqlite3VdbeAddOp3(v, OP_MakeRecord, pIn->iMem, pIn->nMem, r1);
1961 assert( pIn
1900 generateOutputSubroutine( Parse *pParse, Select *p, SelectDest *pIn, SelectDest *pDest, int regReturn, int regPrev, KeyInfo *pKeyInfo, int p4type, int iBreak ) argument
[all...]
H A Dwhere.c3284 struct InLoop *pIn; local
3299 pIn = pLevel->u.in.aInLoop;
3300 if( pIn ){
3301 pIn += pLevel->u.in.nIn - 1;
3302 pIn->iCur = iTab;
3304 pIn->addrInTop = sqlite3VdbeAddOp2(v, OP_Rowid, iTab, iReg);
3306 pIn->addrInTop = sqlite3VdbeAddOp3(v, OP_Column, iTab, 0, iReg);
4883 struct InLoop *pIn; local
4886 for(j=pLevel->u.in.nIn, pIn=&pLevel->u.in.aInLoop[j-1]; j>0; j--, pIn
[all...]
H A Dvdbeaux.c487 VdbeOpList const *pIn = aOp; local
488 for(i=0; i<nOp; i++, pIn++){
489 int p2 = pIn->p2;
491 pOut->opcode = pIn->opcode;
492 pOut->p1 = pIn->p1;
498 pOut->p3 = pIn->p3;
H A Dtclsqlite.c751 sqlite3_value *pIn = argv[i]; local
755 switch( sqlite3_value_type(pIn) ){
757 int bytes = sqlite3_value_bytes(pIn);
758 pVal = Tcl_NewByteArrayObj(sqlite3_value_blob(pIn), bytes);
762 sqlite_int64 v = sqlite3_value_int64(pIn);
771 double r = sqlite3_value_double(pIn);
780 int bytes = sqlite3_value_bytes(pIn);
781 pVal = Tcl_NewStringObj((char *)sqlite3_value_text(pIn), bytes);
/external/icu4c/test/perf/utfperf/
H A Dutfperf.cpp165 const UChar *pIn, *pInLimit; local
174 pIn=input;
186 /* convert a block of [pIn..pInLimit[ to the encoding in intermediate[] */
188 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode);
196 } else if(pIn==pInLimit) {
232 const UChar *pIn, *pInLimit; local
238 pIn=input;
247 ucnv_fromUnicode(cnv, &pInter, pInterLimit, &pIn, pInLimit, NULL, TRUE, pErrorCode);
285 const char *pIn, *pInLimit; local
293 pIn
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_chorus.c265 EAS_PCM *pIn; local
288 pIn = pSrc + nChannelNumber;
295 nInputSample = *pIn;
296 pIn += NUM_OUTPUT_CHANNELS;
341 nInputSample = *pIn;
342 pIn += NUM_OUTPUT_CHANNELS;
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_chorus.c265 EAS_PCM *pIn; local
288 pIn = pSrc + nChannelNumber;
295 nInputSample = *pIn;
296 pIn += NUM_OUTPUT_CHANNELS;
341 nInputSample = *pIn;
342 pIn += NUM_OUTPUT_CHANNELS;
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_chorus.c265 EAS_PCM *pIn; local
288 pIn = pSrc + nChannelNumber;
295 nInputSample = *pIn;
296 pIn += NUM_OUTPUT_CHANNELS;
341 nInputSample = *pIn;
342 pIn += NUM_OUTPUT_CHANNELS;
/external/clang/test/Analysis/
H A Dtaint-tester.c116 void stdinTest2(FILE *pIn) { argument
130 p = pIn;
/external/aac/libAACdec/src/
H A Daacdecoder_lib.cpp570 HANDLE_TRANSPORTDEC pIn; local
574 pIn = transportDec_Open(transportFmt, TP_FLAG_MPEG4);
575 if (pIn == NULL) {
579 transportDec_SetParam(pIn, TPDEC_PARAM_IGNORE_BUFFERFULLNESS, 1);
585 transportDec_Close(&pIn);
588 aacDec->hInput = pIn;
595 transportDec_RegisterAscCallback(pIn, aacDecoder_ConfigCallback, (void*)aacDec);
/external/chromium_org/third_party/opus/src/silk/
H A DVAD.c82 const opus_int16 pIn[] /* I PCM input */
128 silk_ana_filt_bank_1( pIn, &psSilk_VAD->AnaState[ 0 ],
H A Dmain.h276 const opus_int16 pIn[] /* I PCM input */
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c381 DocList *pIn, int iOffset, DocList *pOut){
382 readerInit(&m->in, pIn);
387 assert( pIn==NULL || pIn->iType <= DL_POSITIONS );
435 if( peekDocid(&m->in)>iDocid ){ /* [pIn] has no match with iDocid */
1069 DocList *pIn, int iOffset, DocList *out){
1073 if( pIn!=NULL && !pIn->nData ){
1074 /* If [pIn] is already empty, there's no point in reading the
1082 mergeInit(&merge, pIn, iOffse
380 mergeInit(DocListMerge *m, DocList *pIn, int iOffset, DocList *pOut) argument
1067 query_merge(fulltext_vtab *v, sqlite3_stmt **pSelect, const char *zTerm, DocList *pIn, int iOffset, DocList *out) argument
[all...]
H A Dfts1.c662 ** Read the next docid off of pIn. Return 0 if we reach the end.
667 static sqlite_int64 nextDocid(DocListReader *pIn){ argument
668 skipPositionList(pIn);
669 return atEnd(pIn) ? 0 : readDocid(pIn);
/external/chromium_org/net/third_party/nss/ssl/
H A Ddtlscon.c453 const SSL3Opaque *pIn, PRInt32 nIn)
461 msg = dtls_AllocQueuedMessage(ss->ssl3.cwSpec->epoch, type, pIn, nIn);
772 const SSL3Opaque * pIn,
804 PR_FALSE, type, pIn, contentLen,
452 dtls_QueueMessage(sslSocket *ss, SSL3ContentType type, const SSL3Opaque *pIn, PRInt32 nIn) argument
768 dtls_CompressMACEncryptRecord(sslSocket * ss, DTLSEpoch epoch, PRBool use_epoch, SSL3ContentType type, const SSL3Opaque * pIn, PRUint32 contentLen, sslBuffer * wrBuf) argument
H A Dsslimpl.h1487 const SSL3Opaque * pIn,
1492 const SSL3Opaque* pIn, PRInt32 nIn,
1937 const SSL3Opaque *pIn, PRInt32 nIn);
1943 const SSL3Opaque *pIn,
/external/chromium_org/third_party/libXNVCtrl/
H A DNVCtrlLib.h630 char *pIn,
H A DNVCtrl.c1046 char *pIn,
1066 if (pIn) {
1067 inSize = strlen(pIn) + 1;
1085 if (pIn) {
1086 Data(dpy, pIn, inSize);
1040 XNVCTRLStringOperation( Display *dpy, int target_type, int target_id, unsigned int display_mask, unsigned int attribute, char *pIn, char **ppOut ) argument
/external/aac/libAACenc/src/
H A Daacenc_lib.cpp1473 INT_PCM *pIn = hAacEncoder->inputBuffer+hAacEncoder->inputBufferOffset+hAacEncoder->nSamplesRead; local
1477 FDKmemcpy(pIn, (INT_PCM*)inBufDesc->bufs[idx], newSamples*sizeof(INT_PCM)); /* Fast copy. */
1481 pIn[i] = (INT_PCM)(((LONG*)inBufDesc->bufs[idx])[i]>>16); /* Convert 32 to 16 bit. */
1486 pIn[i] = ((INT_PCM)(((SHORT*)inBufDesc->bufs[idx])[i]))<<16; /* Convert 16 to 32 bit. */

Completed in 1854 milliseconds

12