Searched defs:limit (Results 151 - 175 of 934) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/leveldatabase/src/util/
H A Dcoding.cc113 const char* limit,
116 for (uint32_t shift = 0; shift <= 28 && p < limit; shift += 7) {
133 const char* limit = p + input->size(); local
134 const char* q = GetVarint32Ptr(p, limit, value);
138 *input = Slice(q, limit - q);
143 const char* GetVarint64Ptr(const char* p, const char* limit, uint64_t* value) { argument
145 for (uint32_t shift = 0; shift <= 63 && p < limit; shift += 7) {
162 const char* limit = p + input->size(); local
163 const char* q = GetVarint64Ptr(p, limit, value);
167 *input = Slice(q, limit
112 GetVarint32PtrFallback(const char* p, const char* limit, uint32_t* value) argument
172 GetLengthPrefixedSlice(const char* p, const char* limit, Slice* result) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Di420_video_source.h27 unsigned int start, int limit)
32 limit_(limit),
81 virtual unsigned int limit() const { return limit_; } function in class:libvpx_test::I420VideoSource
24 I420VideoSource(const std::string &file_name, unsigned int width, unsigned int height, int rate_numerator, int rate_denominator, unsigned int start, int limit) argument
H A Dy4m_test.cc82 virtual void Init(const std::string &file_name, int limit) { argument
85 limit_ = limit;
177 virtual void Init(const std::string &file_name, int limit) { argument
178 Y4mVideoSourceTest::Init(file_name, limit);
H A Dy4m_video_source.h24 unsigned int start, int limit)
29 limit_(limit),
86 virtual unsigned int limit() const { return limit_; } function in class:libvpx_test::Y4mVideoSource
23 Y4mVideoSource(const std::string &file_name, unsigned int start, int limit) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
H A Dvp9_loopfilter_masks_dspr2.h27 static INLINE void vp9_filter_hev_mask_dspr2(uint32_t limit, uint32_t flimit, argument
40 /* mask |= (abs(p3 - p2) > limit) */
44 "cmpgu.lt.qb %[c], %[limit], %[r_k] \n\t"
47 /* mask |= (abs(p2 - p1) > limit) */
51 "cmpgu.lt.qb %[c], %[limit], %[r_k] \n\t"
54 /* mask |= (abs(p1 - p0) > limit)
62 "cmpgu.lt.qb %[c], %[limit], %[r_k] \n\t"
65 /* mask |= (abs(q1 - q0) > limit)
73 "cmpgu.lt.qb %[c], %[limit], %[r_k] \n\t"
76 /* mask |= (abs(q2 - q1) > limit) */
132 vp9_filter_hev_mask_flatmask4_dspr2(uint32_t limit, uint32_t flimit, uint32_t thresh, uint32_t p1, uint32_t p0, uint32_t p3, uint32_t p2, uint32_t q0, uint32_t q1, uint32_t q2, uint32_t q3, uint32_t *hev, uint32_t *mask, uint32_t *flat) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxenc.h44 int limit; member in struct:VpxEncoderConfig
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dloop_controls.cpp213 * 'counter < limit' or 'limit < counter'. Figure out which is
217 ir_constant *limit = cond->operands[1]->as_constant(); local
220 if (limit == NULL) {
222 limit = cond->operands[0]->as_constant();
233 if ((counter == NULL) || (limit == NULL))
244 const int iterations = calculate_iterations(init, limit,
253 ir->to = limit->clone(ir, NULL);
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_split_inplace.c54 GLuint limit; member in struct:split_context
136 prim->start - split->min_index >= split->limit) ||
138 split->max_index - prim->start >= split->limit))
142 return MIN2(split->min_index, prim->start) + split->limit - prim->start;
290 split.limit = ib ? limits->max_indices : limits->max_verts;
/external/chromium_org/third_party/re2/re2/testing/
H A Ddfa_test.cc100 int limit = 1<<i; local
105 Prog* prog = re->CompileToProg(limit);
117 // limit, progusage, dfamem, usage);
118 CHECK_GT(usage, limit*9/10);
119 CHECK_LT(usage, limit + (16<<10)); // 16kB of slop okay
174 // 2^n byte limit, it must be handling out-of-memory conditions
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuarticRoot_Test.cpp18 static void quadraticTest(bool limit) { argument
26 if (limit) {
33 const int rootCount = limit ? quadraticRootsValidT(A, b, c, roots)
36 if (limit) {
58 static void testOneCubic(bool limit, size_t aIndex, size_t bIndex, size_t cIndex, size_t dIndex) { argument
63 if (limit) {
72 const int rootCount = limit ? cubicRootsValidT(A, b, c, d, roots)
75 if (limit) {
106 static void cubicTest(bool limit) { argument
112 testOneCubic(limit, aInde
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dnack.cc205 uint16_t limit = sequence_num_last_received_rtp_ - local
207 nack_list_.erase(nack_list_.begin(), nack_list_.upper_bound(limit));
/external/chromium_org/v8/src/base/platform/
H A Dcondition-variable-unittest.cc223 LoopIncrementThread(int rem, int* counter, int limit, int thread_count, argument
228 limit_(limit),
233 EXPECT_EQ(0, limit % thread_count);
274 int limit = thread_count * 10; local
280 threads[n] = new LoopIncrementThread(n, &counter, limit, thread_count,
296 EXPECT_EQ(limit, counter);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix_libcdep.cc60 void SetStackSizeLimitInBytes(uptr limit) { argument
62 rlim.rlim_cur = limit;
63 rlim.rlim_max = limit;
/external/deqp/modules/gles2/functional/
H A Des2fImplementationLimitTests.cpp21 * \brief Implementation-defined limit tests.
149 LimitQueryCase (Context& context, const char* name, const char* description, deUint32 limit, const T& minRequiredValue) argument
151 , m_limit (limit)
/external/freetype/include/
H A Dftsystem.h316 * limit ::
334 unsigned char* limit; member in struct:FT_StreamRec_
/external/freetype/src/cff/
H A Dcffparse.h41 FT_Byte* limit; member in struct:CFF_ParserRec_
62 FT_Byte* limit );
/external/freetype/src/truetype/
H A Dttpload.c125 TT_Table limit = entry + face->num_tables; local
132 for ( ; entry < limit; entry++ )
141 if ( entry == limit )
314 FT_Short* limit = cur + face->cvt_size; local
317 for ( ; cur < limit; cur++ )
492 FT_Byte* limit; local
504 limit = p + table_size;
524 /* The limit for `num_records' is a heuristic value. */
537 if ( p + record_size > limit )
/external/guava/guava/src/com/google/common/base/
H A DSplitter.java102 private final int limit; field in class:Splitter
109 CharMatcher trimmer, int limit) {
113 this.limit = limit;
302 return new Splitter(strategy, true, trimmer, limit);
307 * stops splitting after it reaches the limit.
308 * The limit defines the maximum number of items returned by the iterator.
311 * {@code Splitter.on(',').limit(3).split("a,b,c,d")} returns an iterable
314 * {@code Splitter.on(',').limit(3).omitEmptyStrings().split("a,,,b,,,c,d")}
317 * {@code Splitter.on(',').limit(
108 Splitter(Strategy strategy, boolean omitEmptyStrings, CharMatcher trimmer, int limit) argument
325 limit(int limit) argument
486 int limit; field in class:Splitter.SplittingIterator
[all...]
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DSplitter.java99 private final int limit; field in class:Splitter
106 CharMatcher trimmer, int limit) {
110 this.limit = limit;
244 return new Splitter(strategy, true, trimmer, limit);
249 * stops splitting after it reaches the limit.
250 * The limit defines the maximum number of items returned by the iterator.
253 * {@code Splitter.on(',').limit(3).split("a,b,c,d")} returns an iterable
256 * {@code Splitter.on(',').limit(3).omitEmptyStrings().split("a,,,b,,,c,d")}
259 * {@code Splitter.on(',').limit(
105 Splitter(Strategy strategy, boolean omitEmptyStrings, CharMatcher trimmer, int limit) argument
267 limit(int limit) argument
428 int limit; field in class:Splitter.SplittingIterator
[all...]
/external/icu/icu4c/source/common/
H A Duarrsort.c64 uprv_stableBinarySearch(char *array, int32_t limit, void *item, int32_t itemSize, argument
70 while((limit-start)>=MIN_QSORT) {
71 int32_t i=(start+limit)/2;
88 limit=i;
95 while(start<limit) {
168 subQuickSort(char *array, int32_t start, int32_t limit, int32_t itemSize, argument
173 /* start and left are inclusive, limit and right are exclusive */
175 if((start+MIN_QSORT)>=limit) {
176 doInsertionSort(array+start*itemSize, limit-start, itemSize, cmp, context, px);
181 right=limit;
[all...]
/external/icu/icu4c/source/common/unicode/
H A Duiter.h58 * This can occur when moving relative to limit or length, or
63 * just to get the current/limit/length index after moving relative to it.
89 * Gets the current position, or the start or limit of the
97 * @param origin get the 0, start, limit, length, or current index
112 * Moves the current position relative to the start or limit of the
116 * Out of bounds movement will be pinned to the start or limit.
122 * When moving relative to the limit or length, or
132 * @param origin move relative to the 0, start, limit, length, or current index
177 * or U_SENTINEL if there is none (index is at the limit).
193 * or return U_SENTINEL if there is none (index is at the limit)
373 int32_t limit; member in struct:UCharIterator
[all...]
H A Duniset.h907 * Same as <code>spanBack(s.getBuffer(), limit, spanCondition)</code>
908 * after pinning limit to 0<=end<=s.length().
910 * @param limit the exclusive-end index in the string for the span operation
914 * the substring s.tempSubStringBetween(start, limit) fulfills the spanCondition
918 inline int32_t spanBack(const UnicodeString &s, int32_t limit, USetSpanCondition spanCondition) const;
965 int32_t limit,
971 * If limit > start then match forward from start+1 to limit
972 * matching all characters except s.charAt(0). If limit < start,
982 * @param limit th
1679 spanBack(const UnicodeString &s, int32_t limit, USetSpanCondition spanCondition) const argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationdatawriter.cpp110 // For any data item, we need to write the start and limit offsets,
137 indexesLength = CollationDataReader::IX_OPTIONS + 1; // no limit offset here
321 int32_t limit = indexes[startIndex + 1]; local
322 if(start < limit) {
323 uprv_memcpy(dest + start, src, limit - start);
H A Desctrn.cpp136 int32_t limit = pos.limit; local
142 while (start < limit) {
167 limit += buf.length() - charLen;
170 pos.contextLimit += limit - pos.limit;
171 pos.limit = limit;
H A Dname2uni.cpp116 offsets.start = offsets.limit;
124 offsets.start = offsets.limit;
132 int32_t limit = offsets.limit; local
141 while (cursor < limit) {
149 ICU_Utility::parsePattern(openPat, text, cursor, limit);
150 if (i >= 0 && i < limit) {
163 // loop. If the limit is reached, exit the loop.
210 limit -= delta;
245 offsets.contextLimit += limit
[all...]

Completed in 1972 milliseconds

1234567891011>>