Searched defs:count (Results 151 - 175 of 5154) sorted by relevance

1234567891011>>

/external/chromium_org/mojo/system/
H A Dmemory.cc43 CheckUserPointerWithCount(const void* pointer, size_t count) { argument
44 CHECK_LE(count, std::numeric_limits<size_t>::max() / size);
45 CHECK(count == 0 || (pointer && IsAligned<alignment>(pointer)));
/external/chromium_org/net/spdy/
H A Dspdy_prefixed_buffer_reader.cc25 bool SpdyPrefixedBufferReader::ReadN(size_t count, char* out) { argument
26 if (Available() < count)
29 if (prefix_length_ >= count) {
31 std::copy(prefix_, prefix_ + count, out);
32 prefix_ += count;
33 prefix_length_ -= count;
38 count -= prefix_length_;
42 DCHECK(suffix_length_ >= count);
44 std::copy(suffix_, suffix_ + count, out);
45 suffix_ += count;
50 ReadN(size_t count, SpdyPinnableBufferPiece* out) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DDeleteFromTextNodeCommand.cpp35 DeleteFromTextNodeCommand::DeleteFromTextNodeCommand(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, unsigned count) argument
39 , m_count(count)
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepad.cpp39 void Gamepad::setButtons(unsigned count, const WebGamepadButton* data) argument
41 if (m_buttons.size() != count) {
42 m_buttons.resize(count);
43 for (unsigned i = 0; i < count; ++i)
46 for (unsigned i = 0; i < count; ++i) {
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
H A Dinput_test.cpp32 EXPECT_EQ(0u, input.count());
70 int count = 1; local
75 pp::Input input1(count, str, NULL);
85 pp::Input input2(count, str, NULL);
93 pp::Input input3(count, str, NULL);
99 pp::Input input4(count, str, NULL);
107 int count = 3; local
112 pp::Input input1(count, str, NULL);
122 pp::Input input2(count, str, NULL);
130 pp::Input input3(count, st
144 int count = 2; local
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dcpputils.h26 inline void uprv_arrayCopy(const double* src, double* dst, int32_t count) argument
27 { uprv_memcpy(dst, src, (size_t)(count * sizeof(*src))); }
31 double* dst, int32_t dstStart, int32_t count)
32 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
35 inline void uprv_arrayCopy(const int8_t* src, int8_t* dst, int32_t count) argument
36 { uprv_memcpy(dst, src, (size_t)(count * sizeof(*src))); }
40 int8_t* dst, int32_t dstStart, int32_t count)
41 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
44 inline void uprv_arrayCopy(const int16_t* src, int16_t* dst, int32_t count) argument
45 { uprv_memcpy(dst, src, (size_t)(count * sizeo
30 uprv_arrayCopy(const double* src, int32_t srcStart, double* dst, int32_t dstStart, int32_t count) argument
39 uprv_arrayCopy(const int8_t* src, int32_t srcStart, int8_t* dst, int32_t dstStart, int32_t count) argument
48 uprv_arrayCopy(const int16_t* src, int32_t srcStart, int16_t* dst, int32_t dstStart, int32_t count) argument
53 uprv_arrayCopy(const int32_t* src, int32_t* dst, int32_t count) argument
57 uprv_arrayCopy(const int32_t* src, int32_t srcStart, int32_t* dst, int32_t dstStart, int32_t count) argument
63 uprv_arrayCopy(const UChar *src, int32_t srcStart, UChar *dst, int32_t dstStart, int32_t count) argument
72 uprv_arrayCopy(const icu::UnicodeString *src, icu::UnicodeString *dst, int32_t count) argument
80 uprv_arrayCopy(const icu::UnicodeString *src, int32_t srcStart, icu::UnicodeString *dst, int32_t dstStart, int32_t count) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_wgt.h28 int32_t length, count; member in struct:WeightRange
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditercoll.h95 int32_t count; member in struct:CollationIteratorTest::ExpansionRecord
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/armv6/
H A Dloopfilter_v6.asm52 count RN r5 label
59 ;stack int count
67 ldr count, [sp, #40] ; count for 8-in-parallel
79 mov count, count, lsl #1 ; 4-in-parallel
255 subs count, count, #1
274 ldr count, [sp, #40] ; count fo
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_render_translate.c32 unsigned *start, unsigned count)
40 u_upload_alloc(r300->uploader, 0, count * 2,
45 *start, count, ptr);
54 u_upload_alloc(r300->uploader, 0, count * 2,
59 count, ptr);
68 u_upload_alloc(r300->uploader, 0, count * 4,
73 count, ptr);
28 r300_translate_index_buffer(struct r300_context *r300, struct pipe_index_buffer *ib, struct pipe_resource **out_buffer, unsigned *index_size, unsigned index_offset, unsigned *start, unsigned count) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr700_asm.c28 unsigned count = (cf->ndw / 4) - 1; local
32 S_SQ_CF_WORD1_COUNT(count) |
33 S_SQ_CF_WORD1_COUNT_3(count >> 3);
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapProcState_utils.h14 * 2. [fx, fx+dx, fx+2dx, fx+3dx, ... fx+(count-1)dx] are all <= maxX
23 int count, unsigned max) {
37 (unsigned)SkFixedFloorToInt(fx + dx * (count - 1)) < max;
21 can_truncate_to_fixed_for_decal(SkFractionalInt frX, SkFractionalInt frDx, int count, unsigned max) argument
/external/chromium_org/third_party/skia/src/gpu/
H A DGrTBSearch.h14 int GrTBSearch(const ELEM array[], int count, KEY target) { argument
15 SkASSERT(count >= 0);
16 if (0 == count) {
21 int high = count - 1;
/external/chromium_org/third_party/skia/tests/
H A DGrRedBlackTreeTest.cpp22 int count[100] = {0}; local
28 ++count[x];
32 ++count[0];
34 ++count[99];
39 REPORTER_ASSERT(reporter, tree.count() == 10002);
50 REPORTER_ASSERT(reporter, c == tree.count());
58 REPORTER_ASSERT(reporter, c == count[i]);
65 REPORTER_ASSERT(reporter, count[i] == c);
82 REPORTER_ASSERT(reporter, c == count[i]);
88 --count[
[all...]
/external/chromium_org/tools/gyp/test/win/rc-build/
H A Dhello.cpp22 int count = 0; local
24 if (szTitle[0] != 0) ++count;
26 if (szWindowClass[0] != 0) ++count;
27 if (LoadIcon(hInstance, MAKEINTRESOURCE(IDI_SMALL)) != NULL) ++count;
28 if (LoadIcon(hInstance, MAKEINTRESOURCE(IDI_HELLO)) != NULL) ++count;
29 return count;
/external/chromium_org/ui/base/win/
H A Dtouch_input.cc10 UINT count,
19 return get_touch_input_info_func(handle, count, pointer, size);
9 GetTouchInputInfoWrapper(HTOUCHINPUT handle, UINT count, PTOUCHINPUT pointer, int size) argument
/external/chromium_org/v8/src/
H A Ddata-flow.cc45 int count = 0; local
48 if (data != 0) count += base::bits::CountPopulation32(data);
50 return count;
/external/chromium_org/v8/test/mjsunit/
H A Darray-iteration.js63 var count = 0; variable
67 var a = a.filter(function(n) { count++; return n == 2; });
68 assertEquals(3, count);
80 var count = 0; variable
81 a.forEach(function(n) { count++; });
82 assertEquals(2, count);
92 count = 0;
93 a.forEach(function(n, index, array) { array[index] = n + 1; count++; });
94 assertEquals(2, count);
100 count
146 var count = 0; variable
220 var count = 0; variable
[all...]
/external/clang/test/CodeGenCXX/
H A D2007-04-05-PackedBitFieldsOverlap-2.cpp14 unsigned long count : 21; member in struct:M_Packed
22 return (x.count != 0);
H A Darray-construction.cpp8 static int count; variable
13 xpto() : i(count++), f(fcount++) {
/external/clang/test/SemaCXX/
H A Dconstexpr-duffs-device.cpp4 constexpr void copy(const char *from, unsigned long count, char *to) { argument
5 unsigned long n = (count + 7) / 8;
6 switch(count % 8) {
H A Dgoto2.cpp11 int count = 0; local
24 count = subfun(end);
37 ++count;
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_mutexset_test.cc19 int count) {
24 EXPECT_EQ(count, d.count);
18 Expect(const MutexSet &mset, uptr i, u64 id, bool write, u64 epoch, int count) argument
/external/conscrypt/src/main/java/org/conscrypt/util/
H A DArrays.java27 * Checks that the range described by {@code offset} and {@code count}
32 public static final void checkOffsetAndCount(int arrayLength, int offset, int count) { argument
33 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
35 + offset + "; regionLength=" + count);
/external/deqp/framework/delibs/depool/
H A DdePoolMultiSet.c93 int count = 0; local
97 count += deInBounds32(i, 0, 1000) ? 1 : 0;
98 count += deInBounds32(i, 0, 500) ? 1 : 0;
99 count += deInBounds32(i, 0, 250) ? 1 : 0;
101 DE_TEST_ASSERT(found == (count > 0));
102 DE_TEST_ASSERT(count == gotCount);
113 int count = 0; local
117 count += deInBounds32(i, 0, 500) ? 1 : 0;
118 count += deInBounds32(i, 0, 250) ? 1 : 0;
120 DE_TEST_ASSERT(found == (count >
134 int count = 0; local
[all...]

Completed in 1001 milliseconds

1234567891011>>