HomeSort by relevance Sort by last modified time
    Searched full:count (Results 1 - 25 of 8059) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/SunSpider/tests/ubench/
loop-sum.js 1 var count = 6000000; variable
3 for (var i = 0; i < count; i++) {
4 sum = i + count;
  /external/kernel-headers/original/linux/netfilter/
xt_connbytes.h 19 aligned_u64 from; /* count to be matched */
20 aligned_u64 to; /* count to be matched */
21 } count; member in struct:xt_connbytes_info
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_connbytes.h 19 aligned_u64 from; /* count to be matched */
20 aligned_u64 to; /* count to be matched */
21 } count; member in struct:xt_connbytes_info
  /system/core/toolbox/
watchprops.c 44 unsigned count = pa->count; local
47 if(count >= 1024) exit(1);
49 for(n = 0; n < count; n++) {
59 while(count < pa->count){
60 watchlist[count].pi = __system_property_find_nth(count);
61 watchlist[count].serial = watchlist[n].pi->serial;
62 announce(watchlist[count].pi)
    [all...]
  /external/clearsilver/cs/
test_name.cs 5 <?cs each:count = Foo.Bar.Baz ?>
6 <?cs var:name(count) ?>
test_iter.cs 6 <?cs set:count = #0 ?>
10 <?cs if:#count > #Query.start && #count < #next ?>
13 <?cs set:count = #count + #1 ?>
  /external/qemu/
gen-icount.h 8 TCGv_i32 count; local
14 count = tcg_temp_local_new_i32();
15 tcg_gen_ld_i32(count, cpu_env, offsetof(CPUState, icount_decr.u32));
18 tcg_gen_subi_i32(count, count, 0xdeadbeef);
20 tcg_gen_brcondi_i32(TCG_COND_LT, count, 0, icount_label);
21 tcg_gen_st16_i32(count, cpu_env, offsetof(CPUState, icount_decr.u16.low));
22 tcg_temp_free_i32(count);
  /external/webkit/WebCore/manual-tests/inspector/resources/
mutate-frame.html 2 var count = 1;
5 div.textContent = "Testing " + (count++);
mutate-frame-2.html 2 var count = 1;
5 div.textContent = "Testing " + (count++);
7 if (count > 10)
  /external/e2fsprogs/tests/progs/test_data/
expect.icount 22 Count is 0
25 Count is 1
28 Count is 2
31 Count is 3
34 Count is 1
37 Count is 0
39 Count is 0
42 Count is 0
45 Count is 3
48 Count is
    [all...]
  /external/icu4c/samples/layout/
arraymem.h 14 #define ARRAY_COPY(dst, src, count) memcpy((void *) (dst), (void *) (src), (count) * sizeof (src)[0])
16 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
  /external/stlport/test/unit/
rndshf_test.cpp 46 CPPUNIT_ASSERT(count(numbers, numbers+6, 1)==1);
47 CPPUNIT_ASSERT(count(numbers, numbers+6, 2)==1);
48 CPPUNIT_ASSERT(count(numbers, numbers+6, 3)==1);
49 CPPUNIT_ASSERT(count(numbers, numbers+6, 4)==1);
50 CPPUNIT_ASSERT(count(numbers, numbers+6, 5)==1);
51 CPPUNIT_ASSERT(count(numbers, numbers+6, 6)==1);
62 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 0)==1);
63 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 1)==1);
64 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 2)==1);
65 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 3)==1)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
rndshf_test.cpp 46 CPPUNIT_ASSERT(count(numbers, numbers+6, 1)==1);
47 CPPUNIT_ASSERT(count(numbers, numbers+6, 2)==1);
48 CPPUNIT_ASSERT(count(numbers, numbers+6, 3)==1);
49 CPPUNIT_ASSERT(count(numbers, numbers+6, 4)==1);
50 CPPUNIT_ASSERT(count(numbers, numbers+6, 5)==1);
51 CPPUNIT_ASSERT(count(numbers, numbers+6, 6)==1);
62 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 0)==1);
63 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 1)==1);
64 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 2)==1);
65 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 3)==1)
    [all...]
  /ndk/tests/device/test-stlport/unit/
rndshf_test.cpp 46 CPPUNIT_ASSERT(count(numbers, numbers+6, 1)==1);
47 CPPUNIT_ASSERT(count(numbers, numbers+6, 2)==1);
48 CPPUNIT_ASSERT(count(numbers, numbers+6, 3)==1);
49 CPPUNIT_ASSERT(count(numbers, numbers+6, 4)==1);
50 CPPUNIT_ASSERT(count(numbers, numbers+6, 5)==1);
51 CPPUNIT_ASSERT(count(numbers, numbers+6, 6)==1);
62 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 0)==1);
63 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 1)==1);
64 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 2)==1);
65 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 3)==1)
    [all...]
  /external/icu4c/layoutex/
LXUtilities.h 20 static le_int32 search(le_int32 value, const le_int32 array[], le_int32 count);
21 static void reverse(le_int32 array[], le_int32 count);
22 static void reverse(float array[], le_int32 count);
  /external/kernel-headers/original/linux/
vt_buffer.h 31 static inline void scr_memsetw(u16 *s, u16 c, unsigned int count)
33 count /= 2;
34 while (count--)
40 static inline void scr_memcpyw(u16 *d, const u16 *s, unsigned int count)
42 count /= 2;
43 while (count--)
49 static inline void scr_memmovew(u16 *d, const u16 *s, unsigned int count)
52 scr_memcpyw(d, s, count);
54 count /= 2;
55 d += count;
    [all...]
  /external/skia/tests/
GeometryTest.cpp 11 int count = SkChopQuadAtMaxCurvature(pts, dst); local
12 REPORTER_ASSERT(reporter, count == 1 || count == 2);
  /external/dhcpcd/dhcpcd-hooks/
20-dns.conf 10 count=1
15 count=1
17 setprop dhcp.${interface}.dns${count} ${dnsaddr}
18 count=$(($count + 1))
  /external/e2fsprogs/tests/f_preen/
expect.2 6 Free blocks count wrong for group #0 (8042, counted=7614).
9 Free blocks count wrong for group #1 (170, counted=169).
12 Free blocks count wrong (8212, counted=7783).
15 Free inodes count wrong for group #0 (1053, counted=1052).
18 Free inodes count wrong for group #1 (1064, counted=1063).
21 Directories count wrong for group #1 (0, counted=1).
24 Free inodes count wrong (2117, counted=2115).
  /external/expat/tests/
chardata.c 38 storage->count = -1;
49 if (storage->count < 0)
50 storage->count = 0;
51 if ((len + storage->count) > maxchars) {
52 len = (maxchars - storage->count);
54 if (len + storage->count < sizeof(storage->data)) {
55 memcpy(storage->data + storage->count, s, len);
56 storage->count += len;
68 if (storage->count < 0)
69 storage->count = 0
87 int count; local
116 int count; local
    [all...]
  /external/skia/src/core/
SkColorTable.cpp 22 SkColorTable::SkColorTable(int count)
25 if (count < 0)
26 count = 0;
27 else if (count > 256)
28 count = 256;
30 fCount = SkToU16(count);
31 fColors = (SkPMColor*)sk_malloc_throw(count * sizeof(SkPMColor));
32 memset(fColors, 0, count * sizeof(SkPMColor));
42 int count = src.count(); local
160 int count = this->count(); local
    [all...]
SkPtrRecorder.cpp 23 int count = fList.count(); local
27 int index = SkTSearch<Pair>(fList.begin(), count, pair, sizeof(pair), &Cmp);
31 pair.fIndex = count + 1;
33 return count + 1;
40 int count = fList.count(); local
41 if (count > 0) {
45 for (int i = 0; i < count; i++) {
47 SkASSERT((unsigned)index < (unsigned)count);
    [all...]
  /external/libxml2/
xmlwriter.c 518 int count; local
558 count = xmlOutputBufferWriteString(writer->out, "<?xml version=");
559 if (count < 0)
561 sum += count;
562 count = xmlOutputBufferWrite(writer->out, 1, &writer->qchar);
563 if (count < 0)
565 sum += count;
567 count = xmlOutputBufferWriteString(writer->out, version);
569 count = xmlOutputBufferWriteString(writer->out, "1.0");
570 if (count < 0
637 int count; local
723 int count; local
807 int count; local
922 int count; local
954 int count; local
1053 int count; local
1116 int count; local
1208 int count; local
1350 int count; local
1476 int count; local
1548 int count; local
1621 int count; local
1670 int count; local
1714 int count; local
1759 int count; local
1827 int count; local
1914 int count; local
2023 int count; local
2130 int count; local
2226 int count; local
2333 int count; local
2369 int count; local
2465 int count; local
2577 int count; local
2610 int count; local
2689 int count; local
2788 int count; local
2826 int count; local
2962 int count; local
3112 int count; local
3146 int count; local
3233 int count; local
3346 int count; local
3383 int count; local
3470 int count; local
3583 int count; local
3622 int count; local
3721 int count; local
3884 int count; local
3930 int count; local
3976 int count; local
4107 int count; local
4225 int count; local
4307 int count; local
4463 int count; local
4646 int count; local
    [all...]
  /external/e2fsprogs/tests/f_imagic_fs/
expect.1 7 Inode 2 ref count is 4, should be 3. Fix? yes
13 Free blocks count wrong for group #0 (75, counted=87).
16 Free blocks count wrong (75, counted=87).
19 Free inodes count wrong for group #0 (1, counted=2).
22 Directories count wrong for group #0 (3, counted=2).
25 Free inodes count wrong (1, counted=2).
  /external/chromium/base/
pe_image_unittest.cc 19 int* count = reinterpret_cast<int*>(cookie); local
20 (*count)++;
32 int* count = reinterpret_cast<int*>(cookie); local
33 (*count)++;
43 int* count = reinterpret_cast<int*>(cookie); local
44 (*count)++;
53 int* count = reinterpret_cast<int*>(cookie); local
54 (*count)++;
64 int* count = reinterpret_cast<int*>(cookie); local
65 (*count)++
78 int* count = reinterpret_cast<int*>(cookie); local
156 int count = 0; local
163 EXPECT_EQ(GetExpectedValue(sections, os), count); local
167 EXPECT_EQ(GetExpectedValue(imports_dlls, os), count); local
171 EXPECT_EQ(GetExpectedValue(delay_dlls, os), count); local
    [all...]

Completed in 2624 milliseconds

1 2 3 4 5 6 7 8 91011>>