HomeSort by relevance Sort by last modified time
    Searched defs:count (Results 451 - 475 of 9532) sorted by null

<<11121314151617181920>>

  /external/apache-http/src/org/apache/commons/codec/language/
SoundexUtils.java 50 int count = 0; local
53 chars[count++] = str.charAt(i);
56 if (count == len) {
59 return new String(chars, 0, count).toUpperCase();
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIterNodeList.java 107 int count = m_cachedNodes.size(); local
109 if (count > index) {
114 && count <= index) {
116 count++;
119 m_last = count;
DTMChildIterNodeList.java 111 int count=0; local
115 ++count;
117 return count;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncLast.java 72 int count; local
75 count = cnl.getLength();
76 // System.out.println("count: "+count);
79 count = 0;
80 return count;
  /external/autotest/client/profilers/powertop/src/
powertop.h 33 int count; member in struct:line
118 void push_line(char *string, int count);
  /external/autotest/client/tests/monotonic_time/src/
cpuset.c 18 int count = 0; local
23 ++count;
25 return count;
  /external/boringssl/src/crypto/x509/
by_file.c 125 int i, count = 0; local
142 PEM_R_NO_START_LINE) && (count > 0)) {
153 count++;
157 ret = count;
184 int i, count = 0; local
201 PEM_R_NO_START_LINE) && (count > 0)) {
212 count++;
216 ret = count;
245 int count = 0; local
263 count++
    [all...]
  /external/boringssl/src/fipstools/
cavp_rsa2_keygen_test.cc 42 size_t count = strtoul(count_str.c_str(), nullptr, 0); local
43 for (size_t i = 0; i < count; i++) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
StreamUtil.java 66 int count = 1; local
80 count++;
84 return count;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
ISO10126d2Padding.java 70 int count = in[in.length - 1] & 0xff; local
72 if (count > in.length)
77 return count;
ISO7816d4Padding.java 63 int count = in.length - 1; local
65 while (count > 0 && in[count] == 0)
67 count--;
70 if (in[count] != (byte)0x80)
75 return in.length - count;
TBCPadding.java 52 int count = in.length - inOff; local
70 return count;
X923Padding.java 71 int count = in[in.length - 1] & 0xff; local
73 if (count > in.length)
78 return count;
ZeroBytePadding.java 59 int count = in.length; local
61 while (count > 0)
63 if (in[count - 1] != 0)
68 count--;
71 return in.length - count;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
BigIntegers.java 52 int count = bytes.length - start; local
54 if (count > length)
60 System.arraycopy(bytes, start, tmp, tmp.length - count, count);
  /external/bsdiff/include/bsdiff/
extents_file.h 53 bool Read(void* buf, size_t count, size_t* bytes_read) override;
54 bool Write(const void* buf, size_t count, size_t* bytes_written) override;
67 size_t count, member in class:bsdiff::ExtentsFile
  /external/chromium-trace/catapult/systrace/atrace_helper/jni/
main.cc 56 int count = -1; local
86 count = atoi(optarg);
87 CHECK(count > 0);
103 prog->set_dump_count(count);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3-0x.cpp 5 template<typename ...> struct count;
8 struct count<Head, Tail...> { struct in namespace:ParameterPacksWithFunctions
9 static const unsigned value = 1 + count<Tail...>::value;
13 struct count<> { struct in namespace:ParameterPacksWithFunctions
20 unsigned_c<count<Types...>::value> f();
  /external/clang/test/CodeGen/
2008-08-07-AlignPadding1.c 18 int count; member in struct:gc_generation
28 /* PyGC_Head, threshold, count */
union-init.c 18 int count; /* count of allocations or collections of younger member in struct:gc_generation
27 /* PyGC_Head, threshold, count */
  /external/clang/test/SemaCXX/
init-priority-attr.cpp 7 static int count; member in class:Two
8 Two( int ii, int jj ) { i = ii; j = jj; k = count++; };
9 Two( void ) { i = 0; j = 0; k = count++; };
  /external/conscrypt/libcore-stub/src/main/java/libcore/io/
Streams.java 44 int count; local
45 while ((count = in.read(buffer)) != -1) {
46 bytes.write(buffer, 0, count);
  /external/curl/tests/unit/
unit1309.c 41 int count; local
55 for(count = 0, node = t->samen; node != t; node = node->samen, count++)
59 if(count)
60 printf(" [%d more]\n", count);
  /external/dng_sdk/source/
dng_opcode_list.cpp 116 for (uint32 index = 0; index < Count (); index++)
232 uint32 count = stream.Get_uint32 (); local
239 if (count == 1)
246 printf ("%u opcodes\n", (unsigned) count);
253 for (uint32 index = 0; index < count; index++)
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
LoadThread.java 37 long count = 0; local
40 count++;
43 log("exiting CPU load thread with count = " + count);

Completed in 642 milliseconds

<<11121314151617181920>>