Searched defs:high (Results 1 - 25 of 260) sorted by path

1234567891011

/external/aac/libFDK/src/
H A Dfixpoint_math.cpp224 LONG high = u * ((v>>FRACT_BITS)<<1); local
226 prod = (LONG)(high+low);
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3lexer.c51 static ANTLR3_BOOLEAN matchRange (pANTLR3_LEXER lexer, ANTLR3_UCHAR low, ANTLR3_UCHAR high);
810 matchRange(pANTLR3_LEXER lexer, ANTLR3_UCHAR low, ANTLR3_UCHAR high) argument
817 if ( c >= low && c <= high)
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DEncodingInfo.java32 * which can be called if the character is not the high one in
35 * isInEncoding(char high, char low);
37 * which can be called if the two characters from a high/low surrogate pair.
118 * character formed by the high/low pair is in the encoding.
119 * @param high a char that the a high char of a high/low surrogate pair.
120 * @param low a char that is the low char of a high/low surrogate pair.
125 public boolean isInEncoding(char high, char low) { argument
134 return m_encoding.isInEncoding(high, lo
177 isInEncoding(char high, char low) argument
234 isInEncoding(char high, char low) argument
464 inEncoding(char high, char low, String encoding) argument
[all...]
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring_analog.c42 uint8_t low, high; local
52 // 0 to 7 (MUX5 low) or 8 to 15 (MUX5 high).
56 // set the analog reference (high two bits of ADMUX) and select the
78 high = ADCH;
82 high = 0;
86 return (high << 8) | low;
/external/bison/src/
H A Dlalr.c135 goto_number high; local
141 high = goto_map[sym - ntokens + 1] - 1;
145 aver (low <= high);
146 middle = (low + high) / 2;
153 high = middle - 1;
H A Dtables.c133 int high; variable
723 if (loc > high)
724 high = loc;
772 high = 0;
798 table_ninf = table_ninf_remap (table, high + 1, ACTION_NUMBER_MINIMUM);
/external/checkpolicy/
H A Dpolicy_define.c3493 newcat->high = range_end;
3748 /* extract high sensitivity */
3934 int define_iomem_context(unsigned long low, unsigned long high) argument
3959 newc->u.iomem.high_iomem = high;
3961 if (low > high) {
3962 yyerror2("low memory 0x%x exceeds high memory 0x%x", low, high);
3978 if (low <= high2 && low2 <= high) {
3980 "earlier entry 0x%x-0x%x", low, high,
3998 int define_ioport_context(unsigned long low, unsigned long high) argument
4117 define_port_context(unsigned int low, unsigned int high) argument
[all...]
/external/chromium_org/chrome/browser/safe_browsing/
H A Dchunk_range.cc99 int high = ranges.size() - 1; local
101 while (low <= high) {
103 int mid = ((unsigned int)low + (unsigned int)high) >> 1;
112 high = mid - 1;
/external/chromium_org/chrome/installer/test/
H A Dalternate_version_generator.cc107 static ChromeVersion FromHighLow(DWORD high, DWORD low) { argument
108 return ChromeVersion(static_cast<ULONGLONG>(high) << 32 |
127 DWORD high() const { return static_cast<DWORD>(version_ >> 32); } function in class:__anon5736::ChromeVersion
335 DWORD high; member in struct:__anon5736::VersionPair
339 ctx.current_version.high(), ctx.current_version.low()
342 ctx.new_version.high(), ctx.new_version.low()
/external/chromium_org/content/browser/android/
H A Dedge_effect.cc61 T Clamp(T value, T low, T high) { argument
62 return value < low ? low : (value > high ? high : value);
H A Dedge_effect_l.cc52 T Clamp(T value, T low, T high) { argument
53 return value < low ? low : (value > high ? high : value);
/external/chromium_org/content/common/android/
H A Daddress_parser_internal.cc433 signed char high; member in struct:content::address_parser::internal::__anon7561
505 zip_prefix <= zip_range[state_index].high) ||
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DPopupZoomer.java161 private static float constrain(float amount, float low, float high) { argument
162 return amount < low ? low : (amount > high ? high : amount);
165 private static int constrain(int amount, int low, int high) { argument
166 return amount < low ? low : (amount > high ? high : amount);
/external/chromium_org/google_apis/gaia/
H A Doauth_request_signer.cc312 int high = first - kHexDigits; local
313 DCHECK(high >= 0 && high < kHexBase);
324 char decoded = static_cast<char>(high * kHexBase + low);
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3con.c632 PRInt32 high; member in struct:tooLongStr
634 PRInt32 high;
646 PR_ATOMIC_INCREMENT(&tl->high);
1330 num->high++;
1838 out[0] = (unsigned char)(seq_num.high >> 24);
1839 out[1] = (unsigned char)(seq_num.high >> 16);
1840 out[2] = (unsigned char)(seq_num.high >> 8);
1841 out[3] = (unsigned char)(seq_num.high >> 0);
2332 pwSpec->read_seq_num.high = pwSpec->write_seq_num.high
[all...]
H A Dsslimpl.h502 PRUint32 high; member in struct:__anon9708
968 PRInt32 recvdHighWater; /* The high water mark for fragments
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMeterElement.cpp116 double HTMLMeterElement::high() const function in class:blink::HTMLMeterElement
118 double high = getFloatingPointAttribute(highAttr, max()); local
119 return std::min(std::max(high, low()), max());
122 void HTMLMeterElement::setHigh(double high) argument
124 setFloatingPointAttribute(highAttr, high);
141 double highValue = high();
155 // The optimum range stays over high
163 // The optimum range stays between high and low.
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimal.cpp128 UInt128(uint64_t low, uint64_t high) argument
129 : m_high(high), m_low(low)
135 uint64_t high() const { return m_high; } function in class:blink::DecimalPrivate::UInt128
143 static uint64_t makeUInt64(uint32_t low, uint32_t high) { return low | (static_cast<uint64_t>(high) << 32); } argument
178 // Returns high 64bit of 128bit product.
428 while (work.high()) {
H A DLayoutUnit.h400 int32_t high = static_cast<int32_t>(result >> 32); local
404 if (high != low >> 31)
H A DPODInterval.h84 PODInterval(const T& low, const T& high) argument
86 , m_high(high)
88 , m_maxHigh(high)
93 PODInterval(const T& low, const T& high, const UserData data) argument
95 , m_high(high)
97 , m_maxHigh(high)
102 const T& high() const { return m_high; } function in class:blink::PODInterval
105 bool overlaps(const T& low, const T& high) const
107 if (this->high() < low)
109 if (high < thi
[all...]
H A DPODIntervalTree.h116 IntervalSearchAdapterType adapter(result, interval.low(), interval.high());
129 static IntervalType createInterval(const T& low, const T& high, const UserData data = 0) argument
131 return IntervalType(low, high, data);
188 const T* curMax = &node->data().high();
226 *currentMaxValue = node->data().high();
227 return (node->data().high() == node->data().maxHigh());
238 if (localMaxValue < node->data().high())
239 localMaxValue = node->data().high();
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBox.h101 void expandTo(const FloatPoint3D& low, const FloatPoint3D& high) argument
103 ASSERT(low.x() <= high.x());
104 ASSERT(low.y() <= high.y());
105 ASSERT(low.z() <= high.z());
111 float maxX = std::max(right(), high.x());
112 float maxY = std::max(bottom(), high.y());
113 float maxZ = std::max(front(), high.z());
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DBidiResolver.h632 // If this not the high part of the surrogate pair, then drop it and move to the next.
635 UChar high = static_cast<UChar>(current); local
642 current = U16_GET_SUPPLEMENTARY(high, low);

Completed in 9360 milliseconds

1234567891011