HomeSort by relevance Sort by last modified time
    Searched defs:index (Results 251 - 275 of 8401) sorted by null

<<11121314151617181920>>

  /external/boringssl/src/crypto/fipsmodule/bn/
rsaz_exp.c 77 int index; local
110 for (index=3; index<32; index++) {
112 rsaz_1024_scatter5_avx2(table_s,result,index);
224 index = 1014;
226 while(index > -1) { /* loop for the remaining 127 windows */
231 memcpy(&wvalue_16, &p_str[index / 8], sizeof(wvalue_16));
233 wvalue = (wvalue>> (index%8)) & 31;
234 index-=5
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
PKCS7ProcessableObject.java 48 int index = 1; local
50 while ((encoded[index] & 0xff) > 127)
52 index++;
55 index++;
57 cOut.write(encoded, index, encoded.length - index);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
X500NameTokenizer.java 12 private int index; field in class:X500NameTokenizer
27 this.index = -1;
33 return (index != value.length());
38 if (index == value.length())
43 int end = index + 1;
86 index = end;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509NameTokenizer.java 13 private int index; field in class:X509NameTokenizer
28 this.index = -1;
34 return (index != value.length());
39 if (index == value.length())
44 int end = index + 1;
100 index = end;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
TBCPadding.java 81 int index = in.length - 1; local
82 while (index > 0 && in[index - 1] == code)
84 index--;
87 return in.length - index;
  /external/capstone/bindings/ocaml/
sparc.ml 8 index: int; Record field in type:sparc_op_mem
systemz.ml 8 index: int; Record field in type:sysz_op_mem
xcore.ml 8 index: int; Record field in type:xcore_op_mem
  /external/clang/include/clang/Index/
IndexDataConsumer.h 1 //===--- IndexDataConsumer.h - Abstract index data consumer ---------------===//
13 #include "clang/Index/IndexSymbol.h"
24 namespace index { namespace in namespace:clang
61 } // namespace index
  /external/clang/lib/Index/
IndexingContext.h 14 #include "clang/Index/IndexSymbol.h"
15 #include "clang/Index/IndexingAction.h"
34 namespace index { namespace in namespace:clang
118 } // end namespace index
SimpleFormatContext.h 30 namespace index { namespace in namespace:clang
72 } // end namespace index
  /external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPITypes.h 61 static int index = 0; local
62 return &index;
  /external/clang/test/Analysis/
region-store.c 8 int index = 0; local
9 for (index = 0; index < 2; index++) {
10 int thing = (int []){0, 1}[index];
17 int index = 0; local
18 for (index = 0; index < 3; index++) {
19 int thing = (int [][3]){{0,0,0}, {1,1,1}, {2,2,2}}[index][index]
    [all...]
  /external/clang/test/Sema/
builtins-gnu-mode.c 10 int index; variable
  /external/deqp/framework/opengl/
gluProgramInterfaceQuery.cpp 33 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam)
36 gl.getProgramResourceiv(program, programInterface, index, 1, &queryParam, 1, DE_NULL, (int*)&value);
41 void getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::string& dst)
43 const int length = getProgramResourceInt(gl, program, programInterface, index, GL_NAME_LENGTH);
48 gl.getProgramResourceName(program, programInterface, index, (int)buf.size(), DE_NULL, &buf[0]);
56 msg << "Empty name returned for " << programInterface << " at index " << index; local
61 static void getProgramInterfaceActiveVariables (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::vector<int>& activeVariables)
63 const int numActiveVariables = getProgramResourceInt(gl, program, programInterface, index, GL_NUM_ACTIVE_VARIABLES);
69 gl.getProgramResourceiv(program, programInterface, index, 1, &queryParam, (int)activeVariables.size(), DE_NULL, &activeVariables[0])
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTessellationTests.cpp 113 int index = 0; local
117 result += string() + ", " + (index % wrapLength == 0 ? "\n"+deepIndentation : "");
119 index++;
169 static inline tcu::Vector<bool, Size> singleTrueMask (int index)
171 DE_ASSERT(de::inBounds(index, 0, Size));
173 result[index] = true;
600 //! An outer edge can be described by the index of a u/v/w coordinate
    [all...]
  /external/dng_sdk/source/
dng_1d_table.h 78 int32 index = (int32) y; local
80 if (index < 0 || index > kTableSize)
83 ThrowBadFormat("Index out of range.");
87 DNG_ASSERT (index >= 0 && index <= kTableSize,
90 real32 z = (real32) index;
94 return fTable [index ] * (1.0f - fract) +
95 fTable [index + 1] * ( fract);
  /external/eigen/unsupported/test/
cxx11_tensor_shuffling.cpp 193 const ptrdiff_t index = internal::random<ptrdiff_t>(i, 3); local
194 shuffles_inverse[shuffles[index]] = i;
195 std::swap(shuffles[i], shuffles[index]);
  /external/emma/core/java12/com/vladium/jcd/compiler/
CodeGen.java 26 public static void load_local_object_var (final ByteArrayOStream out, final int index)
28 if (index <= 3)
30 out.write (_aload_0 + index); // aload_n
32 else if (index <= 0xFF)
35 index); // indexbyte
41 index >>> 8, // indexbyte1
42 index); // indexbyte2
46 public static void store_local_object_var (final ByteArrayOStream out, final int index)
48 if (index <= 3)
50 out.write (_astore_0 + index); // astore_
88 final int index = cls.getConstants ().add (new CONSTANT_Integer_info (value)); local
    [all...]
  /external/fio/t/
gen-rand.c 20 unsigned long *buckets, index, pass, fail; local
35 index = 1 + end - start;
36 buckets = calloc(index, sizeof(unsigned long));
48 p = 1.0 / index;
55 for (i = 0; i < index; i++) {
memlock.c 13 unsigned long index; local
22 for (index = 0; index + 4096 < size; index += 4096)
23 memset(&buf[index+512], 0x89, 512);
  /external/google-benchmark/test/
donotoptimize_test.cc 15 int index; member in struct:BitRef
25 BitRef(int i, unsigned char& b) : index(i), byte(b) {}
  /external/google-breakpad/src/client/solaris/handler/
exception_handler_test.cc 98 int index = reinterpret_cast<int>(context); local
99 if (index == 0) {
  /external/google-breakpad/src/common/linux/
dump_symbols_unittest.cc 106 int index = elf.AddSection(".dynstr", table, SHT_STRTAB); local
111 index, // link
146 int index = elf.AddSection(".dynstr", table, SHT_STRTAB); local
151 index, // link
  /external/google-breakpad/src/processor/
map_serializers-inl.h 90 int index = 0; local
91 for (iter = m.begin(); iter != m.end(); ++iter, ++index) {
92 offsets[index] = static_cast<uint32_t>(dest - start_address);
158 int index = 0; local
159 for (iter = m.map_.begin(); iter != m.map_.end(); ++iter, ++index) {
160 offsets[index] = static_cast<uint32_t>(dest - start_address);
237 int index = 0; local
238 for (iter = m->map_->begin(); iter != m->map_->end(); ++iter, ++index) {
239 offsets[index] = static_cast<uint32_t>(dest - map_address);

Completed in 754 milliseconds

<<11121314151617181920>>