HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 926 - 950 of 1388) sorted by null

<<31323334353637383940>>

  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_verify_hash.c 64 /* is the IDX valid ? */
65 if (ltc_ecc_is_valid_idx(key->idx) != 1) {
  /external/icu4c/io/
ustdio.c 293 int32_t idx = 0; local
296 U16_APPEND(buf, idx, sizeof(buf)/sizeof(*buf), uc, isError);
300 return u_file_write(buf, idx, f) == idx ? uc : U_EOF;
  /external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
ImageToAwt.java 182 private static int readPixel(ByteBuffer buf, int idx, int bpp){
183 buf.position(idx);
191 private static void writePixel(ByteBuffer buf, int idx, int pixel, int bpp){
192 buf.position(idx);
  /external/opencv/otherlibs/highgui/
bitstrm.cpp 660 int idx = code >> (code_bits -= table_bits); local
662 offset = sub_tables[idx].offset;
663 table_bits= sub_tables[idx].bits;
667 table[idx + 1]= (short)(offset << 4);
  /external/openssl/crypto/bio/
bio_lib.c 580 int BIO_set_ex_data(BIO *bio, int idx, void *data)
582 return(CRYPTO_set_ex_data(&(bio->ex_data),idx,data));
585 void *BIO_get_ex_data(BIO *bio, int idx)
587 return(CRYPTO_get_ex_data(&(bio->ex_data),idx));
  /external/openssl/crypto/evp/
pmeth_lib.c 115 int idx; local
116 idx = sk_EVP_PKEY_METHOD_find(app_pkey_methods, &tmp);
117 if (idx >= 0)
118 return sk_EVP_PKEY_METHOD_value(app_pkey_methods, idx);
  /external/openssl/crypto/ui/
ui_lib.c 583 int UI_set_ex_data(UI *r, int idx, void *arg)
585 return(CRYPTO_set_ex_data(&r->ex_data,idx,arg));
588 void *UI_get_ex_data(UI *r, int idx)
590 return(CRYPTO_get_ex_data(&r->ex_data,idx));
  /external/openssl/ssl/
ssl_lib.c 2384 int idx = -1; local
    [all...]
  /external/valgrind/main/include/
pub_tool_debuginfo.h 213 Int idx,
  /external/valgrind/main/none/tests/amd64/
pcmpstr64.c 130 UInt pol, UInt idx )
133 assert((idx >> 1) == 0);
146 if (idx) {
216 UInt idx = (imm8 >> 6) & 1; // imm8[6] 1==msb/bytemask local
247 intRes1, zmaskL, zmaskR, validL, pol, idx
286 intRes1, zmaskL, zmaskR, validL, pol, idx
327 intRes1, zmaskL, zmaskR, validL, pol, idx
368 intRes1, zmaskL, zmaskR, validL, pol, idx
1483 UInt idx = (imm8 >> 6) & 1; \/\/ imm8[6] 1==msb\/bytemask local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.cpp 364 const int idx = SkAbs32(point2.x() - point1.x()); local
368 if (setupPaintStroke(&paint, 0, !idy) && (!idx || !idy)) {
378 bounds.set(x, y - radius, x + SkIntToScalar(idx), y + radius);
382 count = idx;
  /external/wpa_supplicant_6/wpa_supplicant/
ctrl_iface_unix.c 516 int idx, res; local
535 idx = 0;
548 idx, errno, strerror(errno));
558 idx++;
  /external/wpa_supplicant_8/src/ap/
wpa_auth_glue.c 216 const u8 *addr, int idx, u8 *key,
228 return hostapd_drv_set_key(ifname, hapd, alg, addr, idx, 1, NULL, 0,
233 static int hostapd_wpa_auth_get_seqnum(void *ctx, const u8 *addr, int idx,
237 return hostapd_get_seqnum(hapd->conf->iface, hapd, addr, idx, seq);
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_unix.c 531 int idx, res; local
549 idx = 0;
562 idx, errno, strerror(errno));
574 idx++;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.cpp 1794 Int run, idx; local
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.h 165 ZipEntry* getEntryByIndex(int idx) const;
  /external/aac/libAACenc/src/
aacenc_lib.cpp 392 INT i, idx = -1; local
396 idx = i;
400 return idx;
1255 INT idx = getBufDescIdx(inBufDesc,IN_AUDIO_DATA); local
1395 INT idx = getBufDescIdx(inBufDesc,IN_ANCILLRY_DATA); local
    [all...]
  /external/icu4c/i18n/
msgfmt.cpp 400 int32_t idx = 0, rhs_idx = 0, pos = -1, rhs_pos = -1; local
401 for (; idx < count && rhs_idx < rhs_count && U_SUCCESS(ec); ++idx, ++rhs_idx) {
1208 int32_t pos, idx; local
1226 int32_t pos, idx; local
    [all...]
  /external/mesa3d/src/glsl/
ir_to_llvm.cpp 340 int idx = deref->record->type->field_index(deref->field); local
341 assert(idx >= 0);
342 return bld.CreateConstInBoundsGEP2_32(llvm_pointer(deref->record), 0, idx);
946 int idx = deref->record->type->field_index(deref->field); local
1155 unsigned idx = 0; local
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 1329 int idx = mHistory.get(i).intValue(); local
1459 int idx = -1; local
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SValBuilder.h 215 NonLoc makeArrayIndex(uint64_t idx) {
216 return nonloc::ConcreteInt(BasicVals.getValue(idx, ArrayIndexTy));
  /external/llvm/lib/VMCore/
LLVMContextImpl.h 223 /// Idx - The index into either ScopeRecordIdx or ScopeInlinedAtRecords that
227 int Idx;
229 DebugRecVH(MDNode *n, LLVMContextImpl *ctx, int idx)
230 : CallbackVH(n), Ctx(ctx), Idx(idx) {}
  /external/llvm/utils/Misc/
zkill 107 for field,idx in zip(kExpectedPSFields, indexes):
108 value = fields[idx]
  /external/openssl/crypto/bn/
bn_ctx.c 330 static int BN_STACK_push(BN_STACK *st, unsigned int idx)
347 st->indexes[(st->depth)++] = idx;
  /external/openssl/crypto/x509/
x509.h 846 int X509_set_ex_data(X509 *r, int idx, void *arg);
847 void *X509_get_ex_data(X509 *r, int idx);
    [all...]

Completed in 1860 milliseconds

<<31323334353637383940>>