HomeSort by relevance Sort by last modified time
    Searched refs:pInput (Results 1 - 17 of 17) sorted by null

  /development/tools/etc1tool/
etc1tool.cpp 136 int read_PNG_File(const char* pInput, etc1_byte** ppImageData,
149 if ((pIn = fopen(pInput, "rb")) == NULL) {
151 pInput, errno);
158 fprintf(stderr, "Could not read PNG header from %s: %d\n", pInput,
164 fprintf(stderr, "%s is not a PNG file.\n", pInput);
234 int readPKMFile(const char* pInput, etc1_byte** ppImageData,
247 if ((pIn = fopen(pInput, "rb")) == NULL) {
249 pInput, errno);
255 pInput, errno);
260 fprintf(stderr, "Bad header PKM header for input file %s\n", pInput);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
simple_tokenizer.c 38 const char *pInput; /* input we are tokenizing */
40 const char *pCurrent; /* current position in pInput */
92 const char *pInput, int nBytes,
98 c->pInput = pInput;
99 c->nBytes = nBytes<0 ? (int) strlen(pInput) : nBytes;
100 c->pCurrent = c->pInput; /* start tokenizing at the beginning */
130 while( c->pCurrent-c->pInput<c->nBytes ){
146 *piStartOffset = (int) (c->pCurrent-c->pInput);
fts1_tokenizer1.c 35 const char *pInput; /* input we are tokenizing */
37 int iOffset; /* current position in pInput */
101 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
107 const char *pInput, int nBytes, /* String to be tokenized */
115 c->pInput = pInput;
116 if( pInput==0 ){
119 c->nBytes = (int)strlen(pInput);
157 unsigned char *p = (unsigned char *)c->pInput;
fts1_tokenizer.h 50 ** xClose() to free any internal state. The pInput passed to
55 /* TODO(shess) current implementation requires pInput to be
56 ** nul-terminated. This should either be fixed, or pInput/nBytes
60 const char *pInput, int nBytes,
tokenizer.h 50 ** xClose() to free any internal state. The pInput passed to
55 /* TODO(shess) current implementation requires pInput to be
56 ** nul-terminated. This should either be fixed, or pInput/nBytes
60 const char *pInput, int nBytes,
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer1.c 42 const char *pInput; /* input we are tokenizing */
44 int iOffset; /* current position in pInput */
110 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
116 const char *pInput, int nBytes, /* String to be tokenized */
124 c->pInput = pInput;
125 if( pInput==0 ){
128 c->nBytes = (int)strlen(pInput);
166 unsigned char *p = (unsigned char *)c->pInput;
fts2_tokenizer.h 95 const char *pInput, int nBytes, /* Input buffer */
122 /* TODO(shess) current implementation requires pInput to be
123 ** nul-terminated. This should either be fixed, or pInput/nBytes
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_tokenizer1.c 43 const char *pInput; /* input we are tokenizing */
45 int iOffset; /* current position in pInput */
110 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
116 const char *pInput, int nBytes, /* String to be tokenized */
126 c->pInput = pInput;
127 if( pInput==0 ){
130 c->nBytes = (int)strlen(pInput);
168 unsigned char *p = (unsigned char *)c->pInput;
fts3_tokenizer.h 95 const char *pInput, int nBytes, /* Input buffer */
125 /* TODO(shess) current implementation requires pInput to be
126 ** nul-terminated. This should either be fixed, or pInput/nBytes
  /external/aac/libFDK/src/
fft.cpp 204 static inline void fft15(FIXP_DBL *pInput)
217 const FIXP_DBL *pSrc = pInput;
294 FIXP_DBL *RESTRICT pDst = pInput;
1086 #define fftN2(pInput, length, dim1, dim2, fft_func1, fft_func2, RotVectorReal, RotVectorImag) \
1100 const FIXP_DBL* pSrc = pInput; \
    [all...]
  /external/chromium_org/net/http/
http_auth_sspi_win.h 53 PSecBufferDesc pInput,
96 PSecBufferDesc pInput,
104 pInput, Reserved2, phNewContext, pOutput,
mock_sspi_library_win.h 40 PSecBufferDesc pInput,
mock_sspi_library_win.cc 41 PSecBufferDesc pInput,
  /external/aac/libAACenc/src/
psy_main.h 166 INT_PCM *pInput,
psy_main.cpp 445 INT_PCM *pInput,
515 &pInput[chIdx[ch]],
551 &pInput[chIdx[ch]],
652 &pInput[ (2*psyConf->granuleLength-blockSwitchingOffset)*totalChannels + chIdx[ch] ],
    [all...]
  /external/aac/libFDK/include/
fft.h 100 * \param pInput Input/Output data buffer. The input data must have at least 1 bit scale headroom.
105 void fft(int length, FIXP_DBL *pInput, INT *scalefactor);
111 * \param pInput Input/Output data buffer. The input data must have at least 1 bit scale headroom.
116 void ifft(int length, FIXP_DBL *pInput, INT *scalefactor);
  /external/aac/libSBRenc/src/
resampler.cpp 355 INT_PCM *pInput, /*!< input of filter */
382 input = ((FIXP_DBL)pInput[n*inStride]) << (DFRACT_BITS-SAMPLE_BITS-BIQUAD_SCALE);
384 input = pInput[n*inStride] >> BIQUAD_SCALE;

Completed in 271 milliseconds