Searched refs:limit (Results 176 - 200 of 4587) sorted by relevance

1234567891011>>

/external/e2fsprogs/lib/ext2fs/
H A Dblock.c63 int i, flags, limit, offset; local
67 limit = ctx->fs->blocksize >> 2;
78 ctx->bcount += limit;
97 for (i = 0; i < limit; i++, ctx->bcount++, block_nr++) {
111 for (i = 0; i < limit; i++, ctx->bcount++, block_nr++) {
152 int i, flags, limit, offset; local
156 limit = ctx->fs->blocksize >> 2;
167 ctx->bcount += limit*limit;
186 for (i = 0; i < limit;
238 int i, flags, limit, offset; local
337 int limit; local
[all...]
/external/qemu/target-i386/
H A Dsmm_helper.c63 stl_phys(sm_state + offset + 4, dt->limit);
68 stl_phys(sm_state + 0x7e64, env->gdt.limit);
72 stl_phys(sm_state + 0x7e74, env->ldt.limit);
76 stl_phys(sm_state + 0x7e84, env->idt.limit);
80 stl_phys(sm_state + 0x7e94, env->tr.limit);
124 stl_phys(sm_state + 0x7f60, env->tr.limit);
129 stl_phys(sm_state + 0x7f7c, env->ldt.limit);
133 stl_phys(sm_state + 0x7f70, env->gdt.limit);
136 stl_phys(sm_state + 0x7f54, env->idt.limit);
146 stl_phys(sm_state + offset + 4, dt->limit);
[all...]
/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/v8/src/
H A Dhandles-inl.h89 prev_limit_ = current->limit;
106 if (current->limit != prev_limit) {
107 current->limit = prev_limit;
131 prev_limit_ = current->limit;
143 if (cur == current->limit) cur = Extend(isolate);
146 DCHECK(cur < current->limit);
162 limit_ = current->limit;
163 current->limit = current->next;
175 DCHECK_EQ(current->next, current->limit);
176 current->limit
[all...]
/external/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/e2fsprogs/debugfs/
H A Dhtree.c120 struct ext2_dx_countlimit limit; local
125 limit = *((struct ext2_dx_countlimit *) ent);
126 limit.count = ext2fs_le16_to_cpu(limit.count);
127 limit.limit = ext2fs_le16_to_cpu(limit.limit);
129 fprintf(pager, "Number of entries (count): %d\n", limit.count);
130 fprintf(pager, "Number of entries (limit)
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dtranslit.cpp114 index.limit < index.start ||
115 index.contextLimit < index.limit ||
184 * <= limit</code>.
185 * @param limit the ending index, exclusive; <code>start <= limit
187 * @return the new limit index, or -1
190 int32_t start, int32_t limit) const {
192 limit < start ||
193 text.length() < limit) {
199 offsets.contextLimit = limit;
644 int32_t limit = index.limit; local
1093 int32_t limit = parser.idBlockVector.size(); local
[all...]
/external/icu/icu4c/source/i18n/
H A Dtranslit.cpp114 index.limit < index.start ||
115 index.contextLimit < index.limit ||
184 * <= limit</code>.
185 * @param limit the ending index, exclusive; <code>start <= limit
187 * @return the new limit index, or -1
190 int32_t start, int32_t limit) const {
192 limit < start ||
193 text.length() < limit) {
199 offsets.contextLimit = limit;
644 int32_t limit = index.limit; local
1093 int32_t limit = parser.idBlockVector.size(); local
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dutrie2.h408 * @param limit (const UChar *, in) the limit pointer for the text, or NULL if NUL-terminated
412 #define UTRIE2_U16_NEXT16(trie, src, limit, c, result) _UTRIE2_U16_NEXT(trie, index, src, limit, c, result)
420 * @param limit (const UChar *, in) the limit pointer for the text, or NULL if NUL-terminated
424 #define UTRIE2_U16_NEXT32(trie, src, limit, c, result) _UTRIE2_U16_NEXT(trie, data32, src, limit, c, result)
455 * @param limit (const char *, in) the limit pointe
659 const UChar *limit; member in class:ForwardUTrie2StringIterator
[all...]
H A Duvectr64.cpp155 void UVector64::setMaxCapacity(int32_t limit) { argument
156 U_ASSERT(limit >= 0);
157 if (limit < 0) {
158 limit = 0;
160 if (limit > (int32_t)(INT32_MAX / sizeof(int64_t))) { // integer overflow check for realloc
164 maxCapacity = limit;
166 // Current capacity is within the new limit.
/external/icu/icu4c/source/common/
H A Dutrie2.h408 * @param limit (const UChar *, in) the limit pointer for the text, or NULL if NUL-terminated
412 #define UTRIE2_U16_NEXT16(trie, src, limit, c, result) _UTRIE2_U16_NEXT(trie, index, src, limit, c, result)
420 * @param limit (const UChar *, in) the limit pointer for the text, or NULL if NUL-terminated
424 #define UTRIE2_U16_NEXT32(trie, src, limit, c, result) _UTRIE2_U16_NEXT(trie, data32, src, limit, c, result)
455 * @param limit (const char *, in) the limit pointe
659 const UChar *limit; member in class:ForwardUTrie2StringIterator
[all...]
H A Duvectr64.cpp155 void UVector64::setMaxCapacity(int32_t limit) { argument
156 U_ASSERT(limit >= 0);
157 if (limit < 0) {
158 limit = 0;
160 if (limit > (int32_t)(INT32_MAX / sizeof(int64_t))) { // integer overflow check for realloc
164 maxCapacity = limit;
166 // Current capacity is within the new limit.
/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/lzma_sdk/
H A DBcj2.c65 SizeT limit = size0 - inPos; local
66 if (outSize - outPos < limit)
67 limit = outSize - outPos;
68 while (limit != 0)
76 limit--;
79 if (limit == 0 || outPos == outSize)
H A DBra86.c23 Byte *limit = data + size - 4; local
24 for (; p < limit; p++)
28 if (p >= limit)
/external/chromium_org/third_party/webrtc/modules/video_coding/utility/
H A Dframe_dropper.cc240 // limit is the number of frames we should drop between each kept frame
241 // to keep our drop ratio. limit is positive in this case.
247 int32_t limit = static_cast<int32_t>(1.0f / denom - 1.0f + 0.5f);
252 if (limit > max_limit) {
253 limit = max_limit;
267 if (_dropCount < limit)
269 // As long we are below the limit we should drop frames.
283 // limit is the number of frames we should keep between each drop
284 // in order to keep the drop ratio. limit is negative in this case,
291 int32_t limit
[all...]
/external/libvpx/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/lzma/C/
H A DBcj2.c65 SizeT limit = size0 - inPos; local
66 if (outSize - outPos < limit)
67 limit = outSize - outPos;
68 while (limit != 0)
76 limit--;
79 if (limit == 0 || outPos == outSize)
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
H A DPlayReadyHeader.java70 size += record.getValue().rewind().limit();
78 IsoTypeWriter.writeUInt16BE(byteBuffer, record.getValue().limit());
133 record.parse((ByteBuffer) byteBuffer.slice().limit(length));
148 sb.append(", length=").append(getValue().limit());
166 byte[] str = new byte[bytes.slice().limit()];
197 sb.append("{length=").append(getValue().limit());
225 sb.append("{length=").append(getValue().limit());
/external/chromium_org/sdch/open-vcdiff/src/
H A Dvarint_bigendian.cc32 // past limit. Returns RESULT_ERROR if the value parsed
33 // does not fit in a non-negative signed integer, or if limit is NULL.
38 SignedIntegerType VarintBE<SignedIntegerType>::Parse(const char* limit, argument
40 if (!limit) {
44 for (const char* parse_ptr = *varint_ptr; parse_ptr < limit; ++parse_ptr) {
/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_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/skia/third_party/lua/src/
H A Dlmem.h40 #define luaM_growvector(L,v,nelems,size,t,limit,e) \
42 ((v)=cast(t *, luaM_growaux_(L,v,&(size),sizeof(t),limit,e)))
53 size_t size_elem, int limit,
/external/libvpx/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_video_source.h24 unsigned int start, int limit)
29 limit_(limit),
80 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

Completed in 653 milliseconds

1234567891011>>