Searched refs:high (Results 1 - 25 of 531) 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/include/
H A Dantlr3lexer.h158 ANTLR3_BOOLEAN (*matchRange) (struct ANTLR3_LEXER_struct * lexer, ANTLR3_UCHAR low, ANTLR3_UCHAR high);
/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/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/
H A DRuntime.pm45 form "An object of this class represents...", to give the reader a high-level
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBitSet.pm311 form "An object of this class represents...", to give the reader a high-level
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb72 Trees (ASTs), tree structures that reflect the high-level syntactic and semantic
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DCodeGenTreeWalker.g740 String high = generator.target.getTargetCharLiteralFromANTLRCharLiteral(generator,$b.text);
742 $code.add("b", high);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DActionScriptTarget.java68 * If the int is above 0x7fff, we use a unicode literal of 0x80hh, where hh is the high-order
91 buf.append(Integer.toHexString((v >> 8) | 0x100).substring(1, 3)); // high - order bits
102 * Note that the low order bits are first, followed by the high order bits.
/external/apache-http/src/org/apache/http/impl/auth/
H A DDigestScheme.java464 int high = ((binaryData[i] & 0xf0) >> 4);
465 buffer[i * 2] = HEXADECIMAL[high];
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java355 int high = start + (len - 1);
356 int end = high;
358 while (low <= high)
360 int mid = (low + high) / 2;
364 high = mid - 1;
889 * has been used (multiple DTM IDs), we need to map the high bits of the
914 * has been used (multiple DTM IDs), we need to map the high bits of the
/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...]
H A DToHTMLStream.java1210 // Clear low 6 bits before rotate, put high 4 bits in low byte,
1211 // and set two high bits.
1212 int high = (ch >> 6) | 0xC0;
1214 // First 6 bits, + high bit
1216 writer.write(makeHHString(high));
1220 else if (Encodings.isHighUTF16Surrogate(ch)) // high surrogate
1229 // Clear high 6 bits.
1233 // "Note that the value of wwww from the high surrogate bit pattern
1248 // Clear high 6 bits.
1274 int high
[all...]
H A DToStream.java73 * single chars or surrogate pairs of high/low chars form
964 * represented by the high/low surrogate pair.
970 * @param c the first (high) part of the surrogate, which
995 final char high = c;
1009 // If we make it to here we have a valid high, low surrogate pair
1017 // not in the encoding and not a high char in
1024 codePoint = Encodings.toCodePoint(high, low);
1803 // Unicode code point formed from the high/low pair.
H A DWriterToUTF8Buffered.java123 * the 16 low-order bits of the given integer value; the 16 high-order bits
214 // Adjust the end of the chunk if it ends on a high char
231 * and it is the high char of a high/low pair with
234 * The char array incorrectly ends in a high char
235 * of a high/low surrogate pair, but there is
236 * no corresponding low as the high is the last char
281 * Unicode: [1101 10ww] [wwzz zzyy] (high surrogate)
287 char high, low;
288 high
[all...]
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring.h78 #define constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt)))
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/build-aux/
H A Dtexinfo.tex5758 % being visible, for instance under high magnification.
/external/bison/
H A Dmaint.mk1401 # This rule has a high enough utility/cost ratio that it should be a
/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 Doutput.c288 MUSCLE_INSERT_INT ("last", high);
458 table[0], 1, high + 1);
462 check[0], 1, high + 1);
474 conflict_table[0], 1, high + 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);
H A Dtables.h54 YYLAST ( = high) the number of the last element of YYTABLE, i.e.,
136 extern int high;
/external/blktrace/btreplay/doc/
H A Dbtreplay.tex507 this factor. Note that if this number is too high, the results will
/external/blktrace/btt/doc/
H A Dbtt.tex491 (low) and on (high). For example, here is a snippet of a file showing
547 When the black line (system Q activity) is \emph{high}, then the system

Completed in 624 milliseconds

1234567891011>>