HomeSort by relevance Sort by last modified time
    Searched refs:indx (Results 1 - 25 of 218) sorted by null

1 2 3 4 5 6 7 8 9

  /external/valgrind/main/cachegrind/
cg_branchpred.c 94 UWord indx; local
105 indx = (hist_bits << N_IADD_BITS) | iadd_bits;
106 tl_assert(indx < N_COUNTERS);
107 if (0) VG_(printf)("index = %d\n", (Int)indx);
110 predicted_taken = counters[ indx ] >= 2;
120 if (counters[indx] < 3)
121 counters[indx]++;
123 if (counters[indx] > 0)
124 counters[indx]--;
127 tl_assert(counters[indx] <= 3)
145 UWord indx = (instr_addr >> N_IADDR_LO_ZERO_BITS) local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c8_31pf.h 110 Word16 indx[], /* o : 7 Word16, index of 8 pulses (signs+positions) */
c1035pf.h 113 Word16 indx[], /* (o) : index of 10 pulses (sign + position) */
c8_31pf.cpp 131 indx
442 Word16 indx; local
473 indx = ib << 3;
485 indx += ib;
487 return indx;
505 indx Array of type Word16 -- position and sign of 8 pulses
568 Word16 indx[], /* o : position and sign of 8 pulses (compressed) */
576 Word16 *p_indx = &indx[0];
587 indx[NB_TRACK] = (ia/2+(ib/2)*5 +(ic/2)*25)*8 + ia%2 + (ib%2)*2 + (ic%2)*4; */
589 indx[NB_TRACK_MR102]
    [all...]
c1035pf.cpp 268 Word16 indx[] // (o) : index of 10 pulses (sign+position)
281 indx[i] = -1;
308 if (indx[track] < 0)
310 indx[track] = index;
314 if (((index ^ indx[track]) & 8) == 0)
318 if (sub (indx[track], index) <= 0)
320 indx[track + 5] = index;
324 indx[track + 5] = indx[track];
325 indx[track] = index
    [all...]
c2_11pf.cpp 630 Word16 indx; local
644 indx = 0;
803 indx =
805 indx,
838 return indx;
c2_9pf.cpp 854 indx = codebook index (Word16)
891 Word16 i, j, k, track, first, index, _sign[NB_PULSE], indx, rsign;
906 indx = 0;
1003 Word16 indx; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
bitmap.h 173 unsigned int indx; /* regno/BITMAP_ELEMENT_ALL_BITS. */ member in struct:bitmap_element_def
181 unsigned int indx; /* Index of last element looked at. */ member in struct:bitmap_head_def
351 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
357 if (bi->elt1->indx != start_bit / BITMAP_ELEMENT_ALL_BITS)
358 start_bit = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
394 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
408 if (bi->elt2->indx >= bi->elt1->indx)
414 if (bi->elt1->indx == bi->elt2->indx)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d8_31pf.cpp 276 indx[] -- array of type Word16 -- position and sign of
343 Word16 indx[], /* i : position and sign of 8 pulses (compressed) */
359 sign_indx[i] = indx[i];
364 MSBs = indx[NB_TRACK]/8;
365 LSBs = indx[NB_TRACK]%8;
367 MSBs = indx[NB_TRACK_MR102] >> 3;
369 LSBs = indx[NB_TRACK_MR102] & 0x7;
382 MSBs = indx[NB_TRACK+1]/8;
383 LSBs = indx[NB_TRACK+1]%8;
385 MSBs = indx[NB_TRACK_MR102+1] >> 3
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo.h 186 _es_VertexAttrib1f(GLuint indx, GLfloat x);
189 _es_VertexAttrib1fv(GLuint indx, const GLfloat* values);
192 _es_VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y);
195 _es_VertexAttrib2fv(GLuint indx, const GLfloat* values);
198 _es_VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z);
201 _es_VertexAttrib3fv(GLuint indx, const GLfloat* values);
204 _es_VertexAttrib4fv(GLuint indx, const GLfloat* values);
  /external/mesa3d/src/mesa/vbo/
vbo.h 186 _es_VertexAttrib1f(GLuint indx, GLfloat x);
189 _es_VertexAttrib1fv(GLuint indx, const GLfloat* values);
192 _es_VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y);
195 _es_VertexAttrib2fv(GLuint indx, const GLfloat* values);
198 _es_VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z);
201 _es_VertexAttrib3fv(GLuint indx, const GLfloat* values);
204 _es_VertexAttrib4fv(GLuint indx, const GLfloat* values);
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalSensor.java 61 int indx = ThermalUtils.getThermalZoneIndex(mSensorName); local
65 if (indx == -1 && mSensorName.contains("battery")) {
66 indx = ThermalUtils.getThermalZoneIndexContains("battery");
69 if (indx != -1) {
70 mSensorPath = ThermalManager.sSysfsSensorBasePath + indx + "/";
73 mSensorSysfsIndx = indx;
ThermalCoolingDevice.java 120 int indx = ThermalUtils.getCoolingDeviceIndexContains(mDeviceName); local
121 if (indx != -1) {
122 mThrottlePath = ThermalManager.sCoolingDeviceBasePath + indx +
  /sdk/emulator/opengl/host/libs/GLESv2_dec/
GL2Decoder.cpp 105 void GL2Decoder::s_glVertexAttribPointerData(void *self, GLuint indx, GLint size, GLenum type,
110 ctx->m_contextData->storePointerData(indx, data, datalen);
113 ctx->glVertexAttribPointer(indx, size, type, normalized, 0, ctx->m_contextData->pointerData(indx));
117 void GL2Decoder::s_glVertexAttribPointerOffset(void *self, GLuint indx, GLint size, GLenum type,
121 ctx->glVertexAttribPointer(indx, size, type, normalized, stride, SafePointerFromUInt(data));
GL2Decoder.h 42 static void gl2_APIENTRY s_glVertexAttribPointerData(void *self, GLuint indx, GLint size, GLenum type,
44 static void gl2_APIENTRY s_glVertexAttribPointerOffset(void *self, GLuint indx, GLint size, GLenum type,
  /external/ppp/pppd/
ipxcp.c 264 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 < sizeof (ipxcp_wantoptions[0].our_node); ++indx
625 int indx; local
634 int indx; local
    [all...]
  /cts/tools/dasm/src/java_cup/
terminal.java 83 public static terminal find(int indx)
85 Integer the_indx = new Integer(indx);
terminal_set.java 86 * @param indx the index of the terminal in question.
88 public boolean contains(int indx)
90 return _elements.get(indx);
  /external/opencv/cvaux/src/
cvbgfg_acmmm2003.cpp 501 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) += alpha
609 int dist, min_dist = 2147483647, indx = -1; local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertPathValidatorExceptionTest.java 222 int[] indx = { 0, 1, 100, Integer.MAX_VALUE, Integer.MIN_VALUE }; local
223 for (int j = 0; j < indx.length; j++) {
226 new CertPathValidatorException(msgs[i], tCause, null, indx[j]);
230 + ", certPath is null and index is " + indx[j]);
284 int[] indx = { -2, -100, 0, 1, 100, Integer.MAX_VALUE, local
286 for (int j = 0; j < indx.length; j++) {
289 new CertPathValidatorException(msgs[i], tCause, cp, indx[j]);
293 + ", certPath is null and index is " + indx[j]);
  /external/chromium_org/mojo/public/c/gles2/
gles2_call_visitor_autogen.h 503 VISIT_GL_CALL(VertexAttrib1f, void, (GLuint indx, GLfloat x), (indx, x))
506 (GLuint indx, const GLfloat* values),
507 (indx, values))
510 (GLuint indx, GLfloat x, GLfloat y),
511 (indx, x, y))
514 (GLuint indx, const GLfloat* values),
515 (indx, values))
518 (GLuint indx, GLfloat x, GLfloat y, GLfloat z),
519 (indx, x, y, z)
    [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES20.spec 134 void glVertexAttrib1f ( GLuint indx, GLfloat x )
135 void glVertexAttrib1fv ( GLuint indx, const GLfloat *values )
136 void glVertexAttrib2f ( GLuint indx, GLfloat x, GLfloat y )
137 void glVertexAttrib2fv ( GLuint indx, const GLfloat *values )
138 void glVertexAttrib3f ( GLuint indx, GLfloat x, GLfloat y, GLfloat z )
139 void glVertexAttrib3fv ( GLuint indx, const GLfloat *values )
140 void glVertexAttrib4f ( GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w )
141 void glVertexAttrib4fv ( GLuint indx, const GLfloat *values )
142 void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLint offset )
143 void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *ptr
    [all...]
  /external/lzma/C/
Ppmd7.c 17 #define I2U(indx) (p->Indx2Units[indx])
118 static void InsertNode(CPpmd7 *p, void *node, unsigned indx)
120 *((CPpmd_Void_Ref *)node) = p->FreeList[indx];
121 p->FreeList[indx] = REF(node);
124 static void *RemoveNode(CPpmd7 *p, unsigned indx)
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)
222 if (p->FreeList[indx] != 0)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
vlc_decode.cpp 374 int indx; local
376 indx = ((mbnum_col << 1) + (block & 1)) + ((mbnum_row << 1) + (block >> 1)) * nMVPerRow - 1; /* left block */
380 p1x = motxdata[indx];
381 p1y = motydata[indx];
388 p1x = motxdata[indx];
389 p1y = motydata[indx];
394 indx = indx + 1 - nMVPerRow; /* upper_block */
397 indx -= (block & 1);
398 p2x = motxdata[indx];
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertPathValidatorExceptionTest.java 213 int[] indx = { 0, 1, 100, Integer.MAX_VALUE, Integer.MIN_VALUE }; local
214 for (int j = 0; j < indx.length; j++) {
217 new CertPathValidatorException(msgs[i], tCause, null, indx[j]);
221 + ", certPath is null and index is " + indx[j]);
275 int[] indx = { -2, -100, 0, 1, 100, Integer.MAX_VALUE, local
277 for (int j = 0; j < indx.length; j++) {
280 new CertPathValidatorException(msgs[i], tCause, cp, indx[j]);
284 + ", certPath is null and index is " + indx[j]);

Completed in 511 milliseconds

1 2 3 4 5 6 7 8 9