Searched defs:nInput (Results 1 - 16 of 16) sorted by relevance

/external/srec/audio/AudioIn/UNIX/src/
H A Dfilter.c160 * FIR_type FIR_downsample(unsigned int nInput, typeSample *pInput,
165 * Apply FIR filter to input data. If nInput > 1, this will also
166 * decimate by a factor of nInput. That is, the filter will only be
167 * evaluated every nInput samples, not at each of the nInput samples.
176 * nInput = 1
194 * Since nInput == 1, state for newest sample is still 2
195 * (otherwise, update state -= nInput-1; wrap by adding nTaps if < 0)
219 * nInput - number of new input samples; evaluate FIR at this point
228 void FIR_downsample(unsigned int nInput, typeSampl argument
[all...]
/external/valgrind/main/coregrind/
H A Dm_seqmatch.c45 const void* input, SizeT szbInput, UWord nInput, UWord ixInput,
71 vg_assert(nInput >= 0 && nInput < 1000000); /* arbitrary */
73 vg_assert(ixInput >= 0 && ixInput <= nInput);
76 haveInput = ixInput < nInput;
105 input,szbInput,nInput, ixInput+0,
42 generic_match( Bool matchAll, const void* patt, SizeT szbPatt, UWord nPatt, UWord ixPatt, const void* input, SizeT szbInput, UWord nInput, UWord ixInput, Bool (*pIsStar)(const void*), Bool (*pIsQuery)(const void*), Bool (*pattEQinp)(const void*,const void*,void*,UWord), void* inputCompleter ) argument
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_tokenizer.c149 int nInput; local
165 nInput = sqlite3_value_bytes(argv[argc-1]);
190 if( SQLITE_OK!=p->xOpen(pTokenizer, zInput, nInput, &pCsr) ){
H A Dfts2_icu.c99 int nInput, /* Length of zInput in bytes */
115 if( nInput<0 ){
116 nInput = strlen(zInput);
118 nChar = nInput+1;
132 U8_NEXT(zInput, iInput, nInput, c);
143 if( iInput<nInput ){
144 U8_NEXT(zInput, iInput, nInput, c);
96 icuOpen( sqlite3_tokenizer *pTokenizer, const char *zInput, int nInput, sqlite3_tokenizer_cursor **ppCursor ) argument
H A Dfts2_porter.c48 int nInput; /* size of the input */ member in struct:porter_tokenizer_cursor
85 ** string to be tokenized is zInput[0..nInput-1]. A cursor
91 const char *zInput, int nInput, /* String to be tokenized */
101 c->nInput = 0;
102 }else if( nInput<0 ){
103 c->nInput = (int)strlen(zInput);
105 c->nInput = nInput;
587 while( c->iOffset<c->nInput ){
591 while( c->iOffset<c->nInput
89 porterOpen( sqlite3_tokenizer *pTokenizer, const char *zInput, int nInput, sqlite3_tokenizer_cursor **ppCursor ) argument
[all...]
H A Dfts2.c3797 int nInput, /* Size of the input text */
3803 if( zInput==0 ) nInput = 0;
3804 if( nInput<0 ) nInput = strlen(zInput);
3812 for(iInput=0; iInput<nInput; ++iInput){
3814 for(i=iInput; i<nInput && zInput[i]!='"'; ++i){}
3820 if( i<nInput ){
3838 ** zInput[0..nInput-1]. Return a list of matching documents
3848 int nInput, /* Number of bytes in zInput[] */
3872 rc = parseQuery(v, zInput, nInput, iColum
3794 parseQuery( fulltext_vtab *v, const char *zInput, int nInput, int dfltColumn, Query *pQuery ) argument
3844 fulltextQuery( fulltext_vtab *v, int iColumn, const char *zInput, int nInput, DataBuffer *pResult, Query *pQuery ) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1_porter.c49 int nInput; /* size of the input */ member in struct:porter_tokenizer_cursor
86 ** string to be tokenized is zInput[0..nInput-1]. A cursor
92 const char *zInput, int nInput, /* String to be tokenized */
102 c->nInput = 0;
103 }else if( nInput<0 ){
104 c->nInput = (int)strlen(zInput);
106 c->nInput = nInput;
589 while( c->iOffset<c->nInput ){
593 while( c->iOffset<c->nInput
90 porterOpen( sqlite3_tokenizer *pTokenizer, const char *zInput, int nInput, sqlite3_tokenizer_cursor **ppCursor ) argument
[all...]
H A Dfts1.c2731 int nInput, /* Size of the input text */
2737 if( zInput==0 ) nInput = 0;
2738 if( nInput<0 ) nInput = strlen(zInput);
2746 for(iInput=0; iInput<nInput; ++iInput){
2748 for(i=iInput; i<nInput && zInput[i]!='"'; ++i){}
2754 if( i<nInput ){
2769 ** zInput[0..nInput-1]. Return a list of matching documents
2779 int nInput, /* Number of bytes in zInput[] */
2789 rc = parseQuery(v, zInput, nInput, iColum
2728 parseQuery( fulltext_vtab *v, const char *zInput, int nInput, int dfltColumn, Query *pQuery ) argument
2775 fulltextQuery( fulltext_vtab *v, int iColumn, const char *zInput, int nInput, DocList **pResult, Query *pQuery ) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_icu.c99 int nInput, /* Length of zInput in bytes */
115 if( nInput<0 ){
116 nInput = strlen(zInput);
118 nChar = nInput+1;
132 U8_NEXT(zInput, iInput, nInput, c);
143 if( iInput<nInput ){
144 U8_NEXT(zInput, iInput, nInput, c);
96 icuOpen( sqlite3_tokenizer *pTokenizer, const char *zInput, int nInput, sqlite3_tokenizer_cursor **ppCursor ) argument
H A Dfts3_porter.c49 int nInput; /* size of the input */ member in struct:porter_tokenizer_cursor
86 ** string to be tokenized is zInput[0..nInput-1]. A cursor
92 const char *zInput, int nInput, /* String to be tokenized */
104 c->nInput = 0;
105 }else if( nInput<0 ){
106 c->nInput = (int)strlen(zInput);
108 c->nInput = nInput;
590 while( c->iOffset<c->nInput ){
594 while( c->iOffset<c->nInput
90 porterOpen( sqlite3_tokenizer *pTokenizer, const char *zInput, int nInput, sqlite3_tokenizer_cursor **ppCursor ) argument
[all...]
H A Dfts3_tokenizer.c255 int nInput; local
271 nInput = sqlite3_value_bytes(argv[argc-1]);
296 if( SQLITE_OK!=p->xOpen(pTokenizer, zInput, nInput, &pCsr) ){
H A Dfts3_expr.c203 ** Buffer zInput, length nInput, contains the contents of a quoted string
216 const char *zInput, int nInput, /* Input string */
227 rc = pModule->xOpen(pTokenizer, zInput, nInput, &pCursor);
252 if( iEnd<nInput && zInput[iEnd]=='*' ){
342 int nInput = n; local
347 while( nInput>0 && fts3isspace(*zInput) ){
348 nInput--;
351 if( nInput==0 ){
363 if( nInput>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){
409 rc = fts3ExprParse(pParse, &zInput[1], nInput
214 getNextString( ParseContext *pParse, const char *zInput, int nInput, Fts3Expr **ppExpr ) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/icu/
H A Dicu.c330 int nInput; local
345 nInput = sqlite3_value_bytes16(apArg[0]);
347 nOutput = nInput * 2 + 2;
354 u_strToUpper(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status);
356 u_strToLower(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c117450 getNextString( ParseContext *pParse, const char *zInput, int nInput, Fts3Expr **ppExpr ) argument
117578 int nInput = n; local
118599 int nInput; /* size of the input */ member in struct:porter_tokenizer_cursor
118640 porterOpen( sqlite3_tokenizer *pTokenizer, const char *zInput, int nInput, sqlite3_tokenizer_cursor **ppCursor ) argument
119448 int nInput; local
127836 int nInput; local
128101 icuOpen( sqlite3_tokenizer *pTokenizer, const char *zInput, int nInput, sqlite3_tokenizer_cursor **ppCursor ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c133461 getNextString( ParseContext *pParse, const char *zInput, int nInput, Fts3Expr **ppExpr ) argument
133603 int nInput = n; local
134902 int nInput; /* size of the input */ member in struct:porter_tokenizer_cursor
134943 porterOpen( sqlite3_tokenizer *pTokenizer, const char *zInput, int nInput, sqlite3_tokenizer_cursor **ppCursor ) argument
135767 int nInput; local
141443 fts3IncrmergeHintPush( Blob *pHint, i64 iAbsLevel, int nInput, int *pRc ) argument
143976 int nInput; /* Size of aInput[] in bytes */ member in struct:unicode_cursor
144151 unicodeOpen( sqlite3_tokenizer *p, const char *aInput, int nInput, sqlite3_tokenizer_cursor **pp ) argument
148444 int nInput; local
148713 icuOpen( sqlite3_tokenizer *pTokenizer, const char *zInput, int nInput, sqlite3_tokenizer_cursor **ppCursor ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c133493 getNextString( ParseContext *pParse, const char *zInput, int nInput, Fts3Expr **ppExpr ) argument
133635 int nInput = n; local
134934 int nInput; /* size of the input */ member in struct:porter_tokenizer_cursor
134975 porterOpen( sqlite3_tokenizer *pTokenizer, const char *zInput, int nInput, sqlite3_tokenizer_cursor **ppCursor ) argument
135799 int nInput; local
141475 fts3IncrmergeHintPush( Blob *pHint, i64 iAbsLevel, int nInput, int *pRc ) argument
144008 int nInput; /* Size of aInput[] in bytes */ member in struct:unicode_cursor
144183 unicodeOpen( sqlite3_tokenizer *p, const char *aInput, int nInput, sqlite3_tokenizer_cursor **pp ) argument
148476 int nInput; local
148745 icuOpen( sqlite3_tokenizer *pTokenizer, const char *zInput, int nInput, sqlite3_tokenizer_cursor **ppCursor ) argument
[all...]

Completed in 963 milliseconds