HomeSort by relevance Sort by last modified time
    Searched full:ninput (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/chromium_org/third_party/sqlite/
misalignment.patch 6 nChar = nInput+1;
24 U8_NEXT(zInput, iInput, nInput, c);
30 nChar = nInput+1;
48 U8_NEXT(zInput, iInput, nInput, c);
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_icu.c 99 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);
fts2_porter.c 48 int nInput; /* size of the input */
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 && isDelim(z[c->iOffset]) )
    [all...]
fts2_tokenizer.c 149 int nInput;
165 nInput = sqlite3_value_bytes(argv[argc-1]);
190 if( SQLITE_OK!=p->xOpen(pTokenizer, zInput, nInput, &pCsr) ){
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_icu.c 99 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);
fts3_porter.c 49 int nInput; /* size of the input */
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 && isDelim(z[c->iOffset]) )
    [all...]
fts3_expr.c 203 ** 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;
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-1, ppExpr, &nConsumed)
    [all...]
fts3_tokenizer.c 255 int nInput;
271 nInput = sqlite3_value_bytes(argv[argc-1]);
296 if( SQLITE_OK!=p->xOpen(pTokenizer, zInput, nInput, &pCsr) ){
  /external/srec/audio/AudioIn/UNIX/src/
filter.c 160 * 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, typeSample *pInput
    [all...]
  /external/valgrind/main/coregrind/
m_seqmatch.c 45 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,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_shader.h 43 unsigned ninput; member in struct:r600_shader
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.h 43 unsigned ninput; member in struct:r600_shader
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_porter.c 49 int nInput; /* size of the input */
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 && isDelim(z[c->iOffset]) )
    [all...]
fts1.c     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
radeonsi_shader.h 60 unsigned ninput; member in struct:si_shader
si_state_draw.c 118 for (i = 0; i < shader->shader.ninput; i++) {
322 for (i = 0; i < ps->ninput; i++) {
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_shader.h 60 unsigned ninput; member in struct:si_shader
si_state_draw.c 118 for (i = 0; i < shader->shader.ninput; i++) {
322 for (i = 0; i < ps->ninput; i++) {
  /external/srec/audio/AudioIn/UNIX/include/
filter.h 52 extern void FIR_downsample(unsigned int nInput, typeSample *pInput,
  /external/valgrind/main/include/
pub_tool_seqmatch.h 61 Ditto for input/nInput/szbInput/ixInput.
84 const void* input, SizeT szbInput, UWord nInput, UWord ixInput,
  /external/chromium_org/third_party/sqlite/src/ext/icu/
icu.c 330 int nInput;
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/webrtc/modules/audio_coding/codecs/g711/test/
testG711.cc 112 printf("\nInput: %s\nOutput: %s\n", inname, outname);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g722/test/
testG722.cc 104 printf("\nInput:%s\nOutput bitstream:%s\nOutput:%s\n", inname, outbit, outname);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/test/
iLBC_testLib.c 105 fprintf(stderr,"\nInput file : %s\n", argv[2]);
iLBC_testprogram.c 187 fprintf(stderr,"\nInput file : %s\n", argv[2]);

Completed in 628 milliseconds

1 2 3