Searched defs:indx (Results 1 - 25 of 36) sorted by relevance

12

/external/valgrind/cachegrind/
H A Dcg_branchpred.c96 UWord indx; local
107 indx = (hist_bits << N_IADD_BITS) | iadd_bits;
108 tl_assert(indx < N_COUNTERS);
109 if (0) VG_(printf)("index = %d\n", (Int)indx);
112 predicted_taken = counters[ indx ] >= 2;
122 if (counters[indx] < 3)
123 counters[indx]++;
125 if (counters[indx] > 0)
126 counters[indx]--;
129 tl_assert(counters[indx] <
147 UWord indx = (instr_addr >> N_IADDR_LO_ZERO_BITS) local
[all...]
/external/aac/libSBRdec/src/
H A Dsbrdec_drc.cpp203 int indx = numQmfSubSamples - (numQmfSubSamples >> 1) - 10; /* l_border */ local
225 col += indx;
/external/libdrm/tests/modetest/
H A Dcursor.c79 static uint32_t indx, count; variable
148 struct cursor_step *step = &steps[indx % ARRAY_SIZE(steps)];
161 indx++;
/external/libxml2/
H A DtestC14N.c225 int indx = out - buffer; local
228 out = &buffer[indx];
H A Dentities.c579 size_t indx = out - buffer; local
580 if (indx + 100 > buffer_size) {
583 out = &buffer[indx];
600 indx = out - buffer;
601 if (indx + 100 > buffer_size) {
603 out = &buffer[indx];
629 indx = out - buffer;
630 if (indx + 100 > buffer_size) {
632 out = &buffer[indx];
805 size_t indx local
[all...]
H A DparserInternals.c298 size_t indx; local
312 indx = in->cur - in->base;
313 if (xmlBufUse(in->buf->buffer) > (unsigned int) indx + INPUT_CHUNK) {
336 indx = in->cur - in->base;
338 in->cur = &content[indx];
357 size_t indx; local
396 indx = in->cur - in->base;
398 in->cur = &content[indx];
H A Duri.c1883 int ret, len, indx, cur, out; local
2091 indx = 0;
2097 while (ref->path[indx] != 0) {
2098 res->path[out++] = ref->path[indx++];
H A Dc14n.c2171 int indx = out - buffer; local
2174 out = &buffer[indx];
H A DdebugXML.c540 int indx; local
543 for (indx = 0; indx < 5; indx++) {
544 if (indx != 0)
1941 int indx; local
1944 for (indx = 0; indx < list->nodesetval->nodeNr;
1945 indx++) {
1947 list->nodesetval->nodeTab[indx]);
2991 int indx; local
3102 int indx; local
3184 int indx; local
3345 int indx; local
[all...]
H A Dnanoftp.c1733 int indx = 0, base; local
1802 if ((len = recv(ctxt->dataFd, &buf[indx], sizeof(buf) - (indx + 1), 0)) < 0) {
1809 write(1, &buf[indx], len);
1811 indx += len;
1812 buf[indx] = 0;
1819 memmove(&buf[0], &buf[base], indx - base);
1820 indx -= base;
H A Dxpointer.c237 * @indx: the indx within the node
244 xmlXPtrNewPoint(xmlNodePtr node, int indx) { argument
249 if (indx < 0)
260 ret->index = indx;
921 xmlXPtrGetChildNo(xmlXPathParserContextPtr ctxt, int indx) { argument
929 if ((indx <= 0) || (oldset == NULL) || (oldset->nodeNr != 1)) {
934 cur = xmlXPtrGetNthChild(oldset->nodeTab[0], indx);
2010 int indx = xmlXPtrGetIndex(node); local
2013 return(xmlXPtrNewRange(node, indx
2381 xmlXPtrAdvanceChar(xmlNodePtr *node, int *indx, int bytes) argument
2639 xmlXPtrGetLastChar(xmlNodePtr *node, int *indx) argument
2685 xmlXPtrGetStartPoint(xmlXPathObjectPtr obj, xmlNodePtr *node, int *indx) argument
2721 xmlXPtrGetEndPoint(xmlXPathObjectPtr obj, xmlNodePtr *node, int *indx) argument
[all...]
H A Druntest.c3686 int indx = out - buffer; local
3689 out = &buffer[indx];
H A DHTMLparser.c1231 int indx, i = 0; local
1235 for (indx = 0;indx < 100;indx ++) htmlStartCloseIndex[indx] = NULL;
1236 indx = 0;
1237 while ((htmlStartClose[i] != NULL) && (indx < 100 - 1)) {
1238 htmlStartCloseIndex[indx++] = (const char**) &htmlStartClose[i];
1297 int i, indx; local
1304 for (indx
2578 int indx = out - buffer; local
2588 int indx = out - buffer; local
2598 int indx = out - buffer; local
2610 int indx = out - buffer; local
2635 int indx = out - buffer; local
3732 int indx; local
[all...]
/external/flac/libFLAC/
H A Dlpc.c1335 unsigned order, indx, best_index; /* 'index' the index into lpc_error; index==order-1 since lpc_error[0] is for order==1, lpc_error[1] is for order==2, etc */ local
1346 for(indx = 0, order = 1; indx < max_order; indx++, order++) {
1347 bits = FLAC__lpc_compute_expected_bits_per_residual_sample_with_error_scale(lpc_error[indx], error_scale) * (FLAC__double)(total_samples - order) + (FLAC__double)(order * overhead_bits_per_order);
1349 best_index = indx;
1354 return best_index+1; /* +1 since indx of lpc_error[] is order-1 */
H A Dstream_encoder_framing.c165 const FLAC__StreamMetadata_CueSheet_Index *indx = track->indices + j; local
167 if(!FLAC__bitwriter_write_raw_uint64(bw, indx->offset, FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN))
169 if(!FLAC__bitwriter_write_raw_uint32(bw, indx->number, FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN))
H A Dstream_decoder.c1859 FLAC__StreamMetadata_CueSheet_Index *indx = &track->indices[j]; local
1860 if(!FLAC__bitreader_read_raw_uint64(decoder->private_->input, &indx->offset, FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN))
1865 indx->number = (FLAC__byte)x;
/external/opencv/cvaux/src/
H A Dcvbgfg_acmmm2003.cpp501 int dist, min_dist = 2147483647, indx = -1; local
536 indx = k;
541 if( indx < 0 )
543 indx = model->params.N2cc - 1;
544 PV_CC(indx) = alpha;
545 PVB_CC(indx) = alpha;
549 V_CC(indx,l) = prev_data[l];
550 V_CC(indx,l+3) = curr_data[l];
555 PV_CC(indx) += alpha;
558 PVB_CC(indx)
609 int dist, min_dist = 2147483647, indx = -1; local
[all...]
/external/lzma/C/
H A DPpmd7.c17 #define I2U(indx) (p->Indx2Units[indx])
118 static void InsertNode(CPpmd7 *p, void *node, unsigned indx) argument
120 *((CPpmd_Void_Ref *)node) = p->FreeList[indx];
121 p->FreeList[indx] = REF(node);
124 static void *RemoveNode(CPpmd7 *p, unsigned indx) argument
126 CPpmd_Void_Ref *node = (CPpmd_Void_Ref *)Ppmd7_GetPtr(p, p->FreeList[indx]);
127 p->FreeList[indx] = *node;
215 static void *AllocUnitsRare(CPpmd7 *p, unsigned indx) argument
222 if (p->FreeList[indx] !
241 AllocUnits(CPpmd7 *p, unsigned indx) argument
[all...]
/external/bzip2/
H A Dbzlib.c687 __inline__ Int32 BZ2_indexIntoF ( Int32 indx, Int32 *cftab ) argument
694 if (indx >= cftab[mid]) nb = mid; else na = mid;
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c1180 LLVMValueRef indx = lp_build_const_int32(bld->gallivm, 0); local
1181 LLVMValueRef coord = LLVMBuildExtractElement(builder, p, indx, "");
1182 LLVMValueRef tex = LLVMBuildExtractElement(builder, texel[chan], indx, "");
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec_api.c1414 _es_VertexAttrib1f(GLuint indx, GLfloat x) argument
1416 VertexAttrib4f_nopos(indx, x, 0.0f, 0.0f, 1.0f);
1421 _es_VertexAttrib1fv(GLuint indx, const GLfloat* values) argument
1423 VertexAttrib4f_nopos(indx, values[0], 0.0f, 0.0f, 1.0f);
1428 _es_VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) argument
1430 VertexAttrib4f_nopos(indx, x, y, 0.0f, 1.0f);
1435 _es_VertexAttrib2fv(GLuint indx, const GLfloat* values) argument
1437 VertexAttrib4f_nopos(indx, values[0], values[1], 0.0f, 1.0f);
1442 _es_VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z) argument
1444 VertexAttrib4f_nopos(indx,
1449 _es_VertexAttrib3fv(GLuint indx, const GLfloat* values) argument
1456 _es_VertexAttrib4fv(GLuint indx, const GLfloat* values) argument
[all...]
/external/openssh/
H A Dscp.c752 int fd = -1, haderr, indx; local
756 for (indx = 0; indx < argc; ++indx) {
757 name = argv[indx];
/external/ppp/pppd/
H A Dipxcp.c264 int indx; local
271 for (indx = 0; indx < 5; ++indx) {
272 dst[indx] <<= 4;
273 dst[indx] |= (dst[indx + 1] >> 4) & 0x0F;
442 int indx; local
443 for (indx = 0; indx < sizeo
625 int indx; local
634 int indx; local
[all...]
/external/skia/src/gpu/gl/
H A DGrGLNoOpInterface.cpp372 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib1f(GrGLuint indx, const GrGLfloat value) { argument
375 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib2fv(GrGLuint indx, const GrGLfloat* values) { argument
378 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib3fv(GrGLuint indx, const GrGLfloat* values) { argument
381 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib4fv(GrGLuint indx, const GrGLfloat* values) { argument
384 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx, argument
/external/valgrind/coregrind/m_demangle/
H A Dcplus-dem.c4338 int len, int indx)
4345 work -> btypevec[indx] = tem;
4337 remember_Btype(struct work_stuff *work, const char *start, int len, int indx) argument

Completed in 2941 milliseconds

12