HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 351 - 375 of 1508) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
desc_32.h 74 #define GET_DESC_BASE(idx, gdt, base, lo_w, lo_b, hi_b) movb idx*8+4(gdt), lo_b; movb idx*8+7(gdt), hi_b; shll $16, base; movw idx*8+2(gdt), lo_w;
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
desc_32.h 74 #define GET_DESC_BASE(idx, gdt, base, lo_w, lo_b, hi_b) movb idx*8+4(gdt), lo_b; movb idx*8+7(gdt), hi_b; shll $16, base; movw idx*8+2(gdt), lo_w;
  /cts/tests/tests/graphics/src/android/graphics/cts/
SweepGradientTest.java 92 int idx; local
94 for (idx = 0; idx < positions.length; idx++) {
95 if (positions[idx] > relPos) {
99 if (idx == 0) {
102 } else if (idx == positions.length) {
107 int i1 = idx - 1; // index of next lower color and position
108 int i2 = idx; // index of next higher color and position
  /external/dropbear/libtomcrypt/src/encauth/ccm/
ccm_test.c 118 int err, idx;
121 idx = find_cipher("aes");
122 if (idx == -1) {
123 idx = find_cipher("rijndael");
124 if (idx == -1) {
131 if ((err = cipher_descriptor[idx].setup(tests[x].key, 16, 0, &skey)) != CRYPT_OK) {
135 if ((err = ccm_memory(idx,
153 if ((err = ccm_memory(idx,
170 cipher_descriptor[idx].done(&skey);
  /external/elfutils/libdwfl/
cu.c 57 dwar (Dwfl_Module *mod, unsigned int idx)
59 return &mod->dw->aranges->info[mod->aranges[idx].arange];
115 size_t idx = (l + u) / 2; local
116 Dwarf_Addr start = dwar (mod, idx)->addr;
119 u = idx;
124 if (idx + 1 < mod->naranges)
126 if (addr >= dwar (mod, idx + 1)->addr)
128 l = idx + 1;
142 *arange = &mod->aranges[idx];
  /external/openssl/crypto/x509/
x509_vpm.c 393 int idx; local
403 idx = sk_X509_VERIFY_PARAM_find(param_table, param);
404 if (idx != -1)
406 ptmp = sk_X509_VERIFY_PARAM_value(param_table, idx);
408 (void)sk_X509_VERIFY_PARAM_delete(param_table, idx);
418 int idx; local
424 idx = sk_X509_VERIFY_PARAM_find(param_table, &pm);
425 if (idx != -1)
426 return sk_X509_VERIFY_PARAM_value(param_table, idx);
  /frameworks/base/graphics/java/android/renderscript/
ProgramFragmentFixedFunction.java 56 int idx = 0; local
59 tmp[idx++] = ProgramParam.INPUT.mID;
60 tmp[idx++] = mInputs[i].getID(mRS);
63 tmp[idx++] = ProgramParam.OUTPUT.mID;
64 tmp[idx++] = mOutputs[i].getID(mRS);
67 tmp[idx++] = ProgramParam.CONSTANT.mID;
68 tmp[idx++] = mConstants[i].getID(mRS);
71 tmp[idx++] = ProgramParam.TEXTURE_TYPE.mID;
72 tmp[idx++] = mTextureTypes[i].mID;
ProgramVertexFixedFunction.java 83 int idx = 0; local
86 tmp[idx++] = ProgramParam.INPUT.mID;
87 tmp[idx++] = mInputs[i].getID(mRS);
90 tmp[idx++] = ProgramParam.OUTPUT.mID;
91 tmp[idx++] = mOutputs[i].getID(mRS);
94 tmp[idx++] = ProgramParam.CONSTANT.mID;
95 tmp[idx++] = mConstants[i].getID(mRS);
98 tmp[idx++] = ProgramParam.TEXTURE_TYPE.mID;
99 tmp[idx++] = mTextureTypes[i].mID;
  /external/icu4c/tools/gencnval/
gencnval.c 608 /* uint32_t idx; */
610 /* for (idx = 0; idx < knownAliasesCount; idx++) {
612 if (knownAliases[idx] != num
613 && uprv_strcmp(alias, GET_ALIAS_STR(knownAliases[idx])) == 0)
616 lineNum, alias, GET_ALIAS_STR(knownAliases[idx]));
620 else if (knownAliases[idx] != num
621 && ucnv_compareNames(alias, GET_ALIAS_STR(knownAliases[idx])) == 0)
625 lineNum, alias, GET_ALIAS_STR(knownAliases[idx]));
646 uint32_t idx, idx2; local
772 uint32_t idx; local
795 uint16_t idx, idx2, idx3; local
834 uint32_t idx; local
    [all...]
  /external/libcap-ng/libcap-ng-0.7/src/
cap-ng.c 361 unsigned int idx)
364 m.data.v3[idx].effective |= MASK(capability);
366 m.data.v3[idx].effective &= ~(MASK(capability));
370 unsigned int idx)
373 m.data.v3[idx].permitted |= MASK(capability);
375 m.data.v3[idx].permitted &= ~(MASK(capability));
379 unsigned int idx)
382 m.data.v3[idx].inheritable |= MASK(capability);
384 m.data.v3[idx].inheritable &= ~(MASK(capability));
388 unsigned int idx)
416 int idx; local
794 unsigned int idx; local
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 322 private String classNameFromTypeIndex(int idx) {
323 return mStrings[mTypeIds[idx].descriptorIdx];
330 private String[] argArrayFromProtoIndex(int idx) {
331 ProtoIdItem protoId = mProtoIds[idx];
345 private String returnTypeFromProtoIndex(int idx) {
346 ProtoIdItem protoId = mProtoIds[idx];
376 int idx = 0; local
379 classRefs[idx++] = sparseRefs[i];
382 assert idx == count;
507 int idx; local
    [all...]
  /external/jdiff/src/jdiff/
Comments.java 112 int idx = xsdFileName.lastIndexOf('\\'); local
114 if (idx == -1 && idx2 == -1) {
116 } else if (idx == -1 && idx2 != -1) {
118 } else if (idx != -1 && idx2 == -1) {
119 xsdFileName = xsdFileName.substring(0, idx+1);
120 } else if (idx != -1 && idx2 != -1) {
121 int max = idx2 > idx ? idx2 : idx;
199 int idx = Collections.binarySearch(comments.commentsList_, key); local
200 if (idx < 0)
448 int idx = Collections.binarySearch(newComments.commentsList_, oldComment); local
467 int idx = filename.lastIndexOf('.'); local
    [all...]
  /external/openssl/crypto/rc4/asm/
rc4-586.pl 300 $idx="edx";
307 &picmeup($idx,"OPENSSL_ia32cap_P");
315 &bt (&DWP(0,$idx),20); # check for bit#20
324 &xor ($idx,$idx);
328 &add (&LB($idx),&BP(0,$inp,$idi));
329 &add (&LB($idx),&LB("eax"));
331 &mov ("ebx",&DWP(0,$out,$idx,4));
335 &mov (&DWP(0,$out,$idx,4),"eax");
358 &xor ($idx,$idx)
    [all...]
  /external/grub/netboot/
otulip.c 82 int idx; local
83 for (idx = (300 / 33) + 1; idx > 0; idx--)
111 unsigned idx; local
119 for (idx = 0; idx <= lastidx; idx++) {
127 for (bits = idx|cmdmask, bit = bitwidth + 3; bit > 0; bit--, bits <<= 1)
147 srom[idx*2] = data & 0xFF
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp 454 return ((CvSparseVecElem32f*)a)->idx - ((CvSparseVecElem32f*)b)->idx;
461 CvMat* idx = 0; local
527 CV_CALL( idx = cvCreateMat( 1, idx_selected, CV_32SC1 ));
528 dsti = idx->data.i;
558 cvReleaseMat( &idx );
560 return idx;
618 int idx = map ? map[i] : i; local
619 assert( (unsigned)idx < (unsigned)tm_size );
620 dst[i] = (uchar)(src[idx*tm_step] != 0)
684 int idx = map ? map[i] : i; local
694 int idx = map ? map[i] : i; local
773 int idx = map ? map[i] : i; local
1280 int idx = *CV_NODE_IDX( sparse, node ); local
1296 int idx = *CV_NODE_IDX( sparse, node ); local
    [all...]
  /external/freetype/src/cff/
cffobjs.c 403 FT_Int32 idx = 0; local
412 for ( idx = 0; idx < 6; idx++ )
415 if ( !( 'A' <= name[idx] && name[idx] <= 'Z' ) )
421 for ( idx = 7; idx < length; idx++ )
422 name[idx - 7] = name[idx]
446 FT_Int idx; local
620 FT_UInt idx; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
StdConstantPool.java 131 * @param idx the bad cpi
135 private static Constant throwInvalid(int idx) {
137 Hex.u2(idx));
  /dalvik/dx/src/com/android/dx/cf/code/
Machine.java 111 * @param idx {@code >= 0;} the local variable index
113 public void localArg(Frame frame, int idx);
200 * @param idx {@code >= 0;} the local variable index
204 public void localTarget(int idx, Type type, LocalItem local);
  /dalvik/dx/src/com/android/dx/rop/cst/
StdConstantPool.java 131 * @param idx the bad cpi
135 private static Constant throwInvalid(int idx) {
137 Hex.u2(idx));
  /dalvik/vm/compiler/
CompilerUtility.h 47 size_t idx; member in struct:GrowableListIterator
64 intptr_t dvmGrowableListGetElement(const GrowableList *gList, size_t idx);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRPtrBuffer.h 85 - (void) insertObject:(id)aRule atIndex:(NSInteger)idx;
86 - (id) objectAtIndex:(NSInteger)idx;
ANTLRTreeNodeStream.h 46 - (id) getNode:(NSInteger) idx;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRPtrBuffer.h 85 - (void) insertObject:(id)aRule atIndex:(NSInteger)idx;
86 - (id) objectAtIndex:(NSInteger)idx;
ANTLRTreeNodeStream.h 46 - (id) getNode:(NSInteger) idx;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRPtrBuffer.h 85 - (void) insertObject:(id)aRule atIndex:(NSInteger)idx;
86 - (id) objectAtIndex:(NSInteger)idx;

Completed in 1079 milliseconds

<<11121314151617181920>>