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

<<11121314151617181920>>

  /external/libnfc-nci/src/nfc/llcp/
llcp_util.c 165 UINT8 idx, rx_congest_start; local
171 for (idx = 0; idx < LLCP_MAX_DATA_LINK; idx++)
173 if (llcp_cb.dlcb[idx].state == LLCP_DLC_STATE_CONNECTED)
175 if (rx_congest_start > llcp_cb.dlcb[idx].local_rw)
181 if (llcp_cb.dlcb[idx].local_rw + 1 > LLCP_DL_MIN_RX_CONGEST)
182 llcp_cb.dlcb[idx].rx_congest_threshold = llcp_cb.dlcb[idx].local_rw + 1;
184 llcp_cb.dlcb[idx].rx_congest_threshold = LLCP_DL_MIN_RX_CONGEST
212 UINT8 idx; local
344 int idx; local
    [all...]
  /external/freetype/src/cff/
cffload.h 43 cff_index_access_element( CFF_Index idx,
49 cff_index_forget_element( CFF_Index idx,
  /external/openssl/crypto/ecdh/
ecdh.h 99 int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg);
100 void *ECDH_get_ex_data(EC_KEY *d, int idx);
  /external/openssl/include/openssl/
ecdh.h 99 int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg);
100 void *ECDH_get_ex_data(EC_KEY *d, int idx);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtMaemoWebPopup.h 39 void itemClicked(int idx);
63 void itemClicked(int idx);
  /packages/apps/Email/src/org/apache/commons/io/input/
ProxyInputStream.java 107 * @param idx read ahead limit
109 public synchronized void mark(int idx) {
110 in.mark(idx);
ProxyReader.java 107 * @param idx read ahead limit
110 public synchronized void mark(int idx) throws IOException {
111 in.mark(idx);
  /packages/apps/Email/src/org/apache/commons/io/output/
ProxyWriter.java 48 * @param idx the character to write
51 public void write(int idx) throws IOException {
52 out.write(idx);
  /external/compiler-rt/lib/tsan/benchmarks/
vts_many_threads_bench.cc 55 long idx = (long)arg; local
61 printf("Thread %ld go!\n", idx);
62 int offset = idx * kNumMutexes / n_threads;
67 printf("Thread %ld done\n", idx);
  /external/iproute2/ip/
tunnel.h 30 char * tnl_ioctl_get_ifname(int idx);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
subscribe.h 54 typedef void (*pa_context_subscribe_cb_t)(pa_context *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
subscribe.h 54 typedef void (*pa_context_subscribe_cb_t)(pa_context *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
subscribe.h 54 typedef void (*pa_context_subscribe_cb_t)(pa_context *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata);
  /dalvik/vm/analysis/
Liveness.cpp 48 for (u4 idx = 0; idx < vdata->insnsSize; ) {
49 widths[idx] = insnWidth;
50 insnWidth = dvmInsnGetWidth(vdata->insnFlags, idx);
51 idx += insnWidth;
121 for (u4 idx = 0; idx < vdata->insnsSize; idx++) {
122 VfyBasicBlock* block = vdata->basicBlocks[idx];
423 unsigned int idx; local
438 unsigned int idx; local
755 unsigned int idx; local
807 unsigned int idx; local
    [all...]
  /external/openssl/crypto/x509/
x509_lu.c 434 int idx; local
454 idx = sk_X509_OBJECT_find(h,&stmp);
455 if (idx >= 0 && pnmatch)
461 for (tidx = idx + 1; tidx < sk_X509_OBJECT_num(h); tidx++)
469 return idx;
482 int idx; local
483 idx = X509_OBJECT_idx_by_subject(h, type, name);
484 if (idx==-1) return NULL;
485 return sk_X509_OBJECT_value(h, idx);
490 int i, idx, cnt local
539 int i, idx, cnt; local
585 int idx, i; local
628 int i, ok, idx, ret; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
TypeIdItem.java 63 int idx = file.getStringIds().indexOf(descriptor); local
67 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
70 out.writeInt(idx);
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstInteger.java 64 int idx = (value & 0x7fffffff) % cache.length; local
65 CstInteger obj = cache[idx];
72 cache[idx] = obj;
  /dalvik/dx/src/com/android/dx/dex/file/
MemberIdsSection.java 46 int idx = 0; local
53 ((MemberIdItem) i).setIndex(idx);
54 idx++;
TypeIdItem.java 61 int idx = file.getStringIds().indexOf(descriptor); local
65 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
68 out.writeInt(idx);
  /dalvik/dx/src/com/android/dx/rop/cst/
CstInteger.java 64 int idx = (value & 0x7fffffff) % cache.length; local
65 CstInteger obj = cache[idx];
72 cache[idx] = obj;
  /dalvik/vm/mterp/c/
header.cpp 148 static inline s8 getLongFromArray(const u4* ptr, int idx)
153 ptr += idx;
159 memcpy(&val, &ptr[idx], 8);
165 static inline void putLongToArray(u4* ptr, int idx, s8 val)
170 ptr += idx;
175 memcpy(&ptr[idx], &val, 8);
180 static inline double getDoubleFromArray(const u4* ptr, int idx)
185 ptr += idx;
191 memcpy(&dval, &ptr[idx], 8);
197 static inline void putDoubleToArray(u4* ptr, int idx, double dval
    [all...]
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk.h 91 int idx);
99 int idx);
106 int idx);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
TypeIdItem.java 61 int idx = file.getStringIds().indexOf(descriptor); local
65 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
68 out.writeInt(idx);
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstInteger.java 64 int idx = (value & 0x7fffffff) % cache.length; local
65 CstInteger obj = cache[idx];
72 cache[idx] = obj;
  /external/elfutils/libebl/
eblsectionname.c 87 int idx = section != SHN_XINDEX ? section : xsection; local
90 res = scnnames[idx];
93 snprintf (buf, len, "%d", idx);

Completed in 675 milliseconds

<<11121314151617181920>>