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

<<11121314151617181920>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
SHA1Digest.java 208 int idx = 0; local
212 // E = rotateLeft(A, 5) + f(B, C, D) + E + X[idx++] + Y1
214 E += (A << 5 | A >>> 27) + f(B, C, D) + X[idx++] + Y1;
217 D += (E << 5 | E >>> 27) + f(A, B, C) + X[idx++] + Y1;
220 C += (D << 5 | D >>> 27) + f(E, A, B) + X[idx++] + Y1;
223 B += (C << 5 | C >>> 27) + f(D, E, A) + X[idx++] + Y1;
226 A += (B << 5 | B >>> 27) + f(C, D, E) + X[idx++] + Y1;
235 // E = rotateLeft(A, 5) + h(B, C, D) + E + X[idx++] + Y2
237 E += (A << 5 | A >>> 27) + h(B, C, D) + X[idx++] + Y2;
240 D += (E << 5 | E >>> 27) + h(A, B, C) + X[idx++] + Y2
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
encode_lpc_swb.c 242 * -idx : pointer to quantization indices.
251 int32_t idx; local
283 idx = (int32_t)floor((*data - leftRecPoint[cntr]) /
285 if(idx < 0)
287 idx = 0;
289 else if(idx >= numQuantCell[cntr])
291 idx = numQuantCell[cntr] - 1;
294 *data++ = leftRecPoint[cntr] + idx * quantizationStepSize;
295 *recIdx++ = idx;
307 * -idx : pointer to quantiztion indices
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-dlx.c 167 int idx; local
169 for (ptr = name,idx = 0; *ptr != '\0'; ptr++)
170 low_name[idx++] = TOLOWER (*ptr);
172 low_name[idx] = '\0';
173 idx = 0;
175 while (idx < MAX_REG_NO && strcmp (soft_reg[idx], & low_name [0]))
176 idx += 1;
178 return idx < MAX_REG_NO;
319 int idx = 0 local
437 int idx = 0; local
578 int idx, count = 1; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
CRLReason.java 142 Integer idx = Integers.valueOf(value); local
144 if (!table.containsKey(idx))
146 table.put(idx, new CRLReason(value));
149 return (CRLReason)table.get(idx);
  /external/brotli/c/enc/
static_dict_lut.h 22 uint16_t idx; member in struct:DictWord
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
WorkList.h 36 const CFGBlock *B, unsigned idx)
40 blockIdx(idx) {}
69 void enqueue(ExplodedNode *N, const CFGBlock *B, unsigned idx) {
70 enqueue(WorkListUnit(N, CurrentCounter, B, idx));
  /external/clang/lib/Headers/
ammintrin.h 33 /// integer vector operand at the index idx and of the length len.
38 /// __m128i _mm_extracti_si64(__m128i x, const int len, const int idx);
48 /// \param idx
56 #define _mm_extracti_si64(x, len, idx) \
58 (char)(len), (char)(idx)))
86 /// idx and of the length len.
92 /// const int idx);
99 /// are defined by the length len and by the index idx specifying the least
107 /// \param idx
118 #define _mm_inserti_si64(x, y, len, idx) \
    [all...]
  /external/elfutils/libdwfl/
dwfl_dwarf_line.c 39 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx];
  /external/elfutils/libelf/
elf_getshdrnum.c 46 int idx; local
57 idx = elf->state.elf.scns_last->cnt;
58 if (idx != 0
65 *dst = 1 + elf->state.elf.scns_last->data[idx - 1].index;
  /external/freetype/src/sfnt/
ttpost.h 34 FT_UInt idx,
  /external/libevent/
poll.c 70 static int poll_add(struct event_base *, int, short old, short events, void *idx);
71 static int poll_del(struct event_base *, int, short old, short events, void *idx);
106 int i, idx; local
110 idx = pop->idxplus1_by_fd[i]-1;
111 if (idx < 0)
113 EVUTIL_ASSERT(pop->event_set[idx].fd == i);
221 struct pollidx *idx = idx_; local
251 i = idx->idxplus1 - 1;
260 idx->idxplus1 = i + 1;
282 struct pollidx *idx = idx_ local
    [all...]
  /external/ltp/testcases/kernel/fs/ftest/
libftest.h 53 void ft_mkname(char *name, char *dirname, int me, int idx);
  /external/mesa3d/src/mesa/state_tracker/
st_manager.h 48 gl_buffer_index idx);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLayerDrawable.java 30 public Drawable getDrawable( int idx ) {
32 if( idx < drawables.length && idx >= 0 ) {
33 d = drawables[ idx ];
  /external/syslinux/core/lwip/src/api/
netdb.c 119 u8_t idx; local
120 for ( idx=0; s_hostent.h_aliases[idx]; idx++) {
121 LWIP_DEBUGF(DNS_DEBUG, ("hostent.h_aliases[%i]-> == %p\n", idx, s_hostent.h_aliases[idx]));
122 LWIP_DEBUGF(DNS_DEBUG, ("hostent.h_aliases[%i]-> == %s\n", idx, s_hostent.h_aliases[idx]));
129 u8_t idx; local
130 for ( idx=0; s_hostent.h_addr_list[idx]; idx++)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
ol_ltp.h 113 Word16 idx, /* i : index */
pitch_ol.h 110 Word16 idx, /* i : frame index */
  /frameworks/base/apct-tests/perftests/multiuser/src/android/multiuser/
BenchmarkResults.java 64 final int idx = size / 2; local
66 ? (double) (mResults.get(idx) + mResults.get(idx - 1)) / 2
67 : mResults.get(idx);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
hndrte_cons.h 32 uint idx; member in struct:__anon46945
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
NullWriter.java 44 * @param idx The character to write
46 public void write(int idx) {
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoDreamSettingsReceiver.java 64 for (int idx = 0; idx < settings.length; idx++) {
65 settings[idx].setAlbumEnabled(albumId, shown);
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
ammintrin.h 33 /// integer vector operand at the index idx and of the length len.
38 /// __m128i _mm_extracti_si64(__m128i x, const int len, const int idx);
48 /// \param idx
56 #define _mm_extracti_si64(x, len, idx) \
58 (char)(len), (char)(idx)))
86 /// idx and of the length len.
92 /// const int idx);
99 /// are defined by the length len and by the index idx specifying the least
107 /// \param idx
118 #define _mm_inserti_si64(x, y, len, idx) \
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
ammintrin.h 33 /// integer vector operand at the index idx and of the length len.
38 /// __m128i _mm_extracti_si64(__m128i x, const int len, const int idx);
48 /// \param idx
56 #define _mm_extracti_si64(x, len, idx) \
58 (char)(len), (char)(idx)))
86 /// idx and of the length len.
92 /// const int idx);
99 /// are defined by the length len and by the index idx specifying the least
107 /// \param idx
118 #define _mm_inserti_si64(x, y, len, idx) \
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
ammintrin.h 33 /// integer vector operand at the index \a idx and of the length \a len.
38 /// __m128i _mm_extracti_si64(__m128i x, const int len, const int idx);
48 /// \param idx
56 #define _mm_extracti_si64(x, len, idx) \
58 (char)(len), (char)(idx)))
87 /// the index \a idx and of the length \a len.
93 /// const int idx);
100 /// are defined by the length \a len and by the index \a idx specifying the
108 /// \param idx
118 #define _mm_inserti_si64(x, y, len, idx) \
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
WorkList.h 36 const CFGBlock *B, unsigned idx)
40 blockIdx(idx) {}
69 void enqueue(ExplodedNode *N, const CFGBlock *B, unsigned idx) {
70 enqueue(WorkListUnit(N, CurrentCounter, B, idx));

Completed in 663 milliseconds

<<11121314151617181920>>