Searched defs:in_range (Results 1 - 8 of 8) sorted by relevance

/external/stlport/src/
H A Dctype.cpp283 static bool in_range(wchar_t c, size_t upperBound) { function in struct:_WCharIndexT
291 static bool in_range(wchar_t c, size_t upperBound) { function in struct:_WCharIndexT
385 { return _WCharIndex::in_range(c, ctype<char>::table_size) && (table[c] & M); }
396 return _WCharIndex::in_range(c, ctype<char>::table_size) && (m & table[c]);
406 *vec = _WCharIndex::in_range(c, ctype<char>::table_size) ? table[c] : ctype_base::mask(0);
425 return _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_upper[c]
433 *low = _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_upper[c]
440 return _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_lower[c]
448 *low = _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_lower[c]
/external/opencore/codecs_v2/video/m4v_h263/enc/src/
H A Dfindhalfpel.cpp77 Int in_range[9] = {0, 1, 1, 1, 1, 1, 1, 1, 1}; /* 3/29/01 */ local
101 in_range[1] = in_range[7] = in_range[8] = 0;
103 in_range[3] = in_range[4] = in_range[5] = 0;
105 in_range[1] = in_range[2] = in_range[
198 Int in_range[8]; /* 3/29/01 */ local
[all...]
/external/opencore/protocols/sdp/common/include/
H A Drm_media_info.h93 inline void setRMLength(const NptTimeFormat& in_range) argument
95 rm_length = in_range;
H A Dmedia_info.h379 inline void setRange(const RtspRangeType& in_range) argument
381 range = in_range;
H A Dsession_info.h355 inline void setRange(const RtspRangeType& in_range) argument
357 session_range = in_range;
/external/v8/src/
H A Dobjects-inl.h872 bool in_range = (value >= kMinValue) && (value <= kMaxValue); local
892 ASSERT(result == in_range);
/external/clearsilver/util/regex/
H A Dregex.c671 register int in_range = 0;
683 if (last + 1 == c && ! in_range)
686 in_range = 1;
689 else if (last + 1 != c && in_range)
692 in_range = 0;
695 if (! in_range)
701 if (in_range)
666 register int in_range = 0; local
/external/v8/src/ia32/
H A Dcodegen-ia32.cc8276 Label in_range; local
8284 __ j(below, &in_range, taken);
8335 __ bind(&in_range);

Completed in 212 milliseconds