HomeSort by relevance Sort by last modified time
    Searched refs:Char (Results 126 - 150 of 444) sorted by null

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
BufferImage.c 1096 change char to int value based on Hex.
1098 @param[in] Char The input char.
1106 IN CHAR16 Char
1112 if (Char >= L'0' && Char <= L'9') {
1113 return (INTN) (Char - L'0');
1116 if (Char >= L'a' && Char <= L'f') {
1117 return (INTN) (Char - L'a' + 10);
    [all...]
  /art/test/ti-agent/
scoped_primitive_array.h 91 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RO(jchar, Char);
141 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RW(jchar, Char);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/
VgaClass.c 410 Internal worker function to detect if a Unicode char is for Box Drawing text graphics.
412 @param Graphic Unicode char to test.
463 Internal worker function to check whether input value is an ASCII char.
465 @param Char Character to check.
467 @retval TRUE Input value is an ASCII char.
468 @retval FALSE Input value is not an ASCII char.
473 IN CHAR16 Char
476 if ((Char >= 0x20) && (Char <= 0x7f)) {
484 Internal worker function to check whether input value is a unicode control char.
    [all...]
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 161 void WriteLineInfo(unsigned LineNo, const char *Extra=nullptr,
164 void HandleNewlinesInToken(const char *TokStr, unsigned Len);
177 const char *Extra,
215 const char *NewLines = "\n\n\n\n\n\n\n\n";
385 for (unsigned char Char : Str) {
386 if (isPrintable(Char) && Char != '\\' && Char != '"')
387 OS << (char)Char
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 46 template<char> struct TemplateChar {};
50 Outer<int, char, int*>::
97 using T1 = take<3, int, char, double, long>::type; // expected-note {{previous}}
99 // desired-error {{'types<void, void, void, void>' vs 'types<int, char, double, (no argument)>'}}
101 using D1 = drop<3, int, char, double, long>::type;
104 using T2 = take<4, int, char, double, long>::type; // expected-note {{previous}}
105 using T2 = types<int, char, double, long>;
107 // desired-error {{'types<void, void, void, void>' vs 'types<int, char, double, long>'}}
109 using D2 = drop<4, int, char, double, long>::type;
112 using T3 = take<5, int, char, double, long>::type; // expected-note {{in instantiation of}
    [all...]
  /external/conscrypt/common/src/jni/unbundled/include/
ScopedPrimitiveArray.h 71 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RO(jchar, Char);
135 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RW(jchar, Char);
  /external/libedit/src/
read.c 38 static char sccsid[] = "@(#)read.c 8.1 (Berkeley) 6/4/93";
59 private int read_char(EditLine *, Char *);
60 private int read_getcmd(EditLine *, el_action_t *, Char *);
76 * Set the read char function to the one provided.
88 * return the current read char function, or EL_BUILTIN_GETCFN
201 char buf[EL_BUFSIZ];
220 FUN(el,push)(EditLine *el, const Char *str)
240 read_getcmd(EditLine *el, el_action_t *cmdnum, Char *ch)
269 cmd = el->el_map.current[(unsigned char) *ch];
304 return c < 0x80 || /* single byte char */
    [all...]
  /external/v8/src/
json-stringifier.h 94 template <typename Char>
95 INLINE(static bool DoNotEscape(Char c));
120 static const char* const JsonEscapeTable;
  /libnativehelper/include/nativehelper/
ScopedPrimitiveArray.h 85 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RO(jchar, Char);
135 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RW(jchar, Char);
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 36 MDHelper(VMContext), Root(nullptr), Char(nullptr) {
66 // give special powers to char and certain similar types. However,
69 if (!Char)
70 Char = createTBAAScalarType("omnipotent char", getRoot());
72 return Char;
98 // effectively in the general char alias class.
111 // In C++, this technically only includes "char" and "unsigned char",
112 // and not "signed char". In C, it includes all three. For now
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.h 47 SDValue Src, SDValue Char, SDValue Length,
  /external/valgrind/VEX/pub/
libvex_basictypes.h 44 typedef unsigned char UChar;
45 typedef signed char Char;
46 typedef char HChar; /* signfulness depends on host */
99 typedef unsigned char Bool;
  /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
typedefs.h 27 #define CHAR_BIT 8 /* number of bits in a char */
60 ********* define char type
62 typedef char Char;
67 typedef signed char Word8;
68 typedef unsigned char UWord8;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
typedefs.h 29 * Char character (none)
75 ********* define char type
77 typedef char Char;
83 typedef signed char Word8;
87 typedef unsigned char UWord8;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.h 26 Int PutCBPY(Int cbpy, Char intra, BitstreamEncVideo *bitstream);
  /external/clang/test/SemaCXX/
cxx11-user-defined-literals.cpp 5 Char, WideChar, Char16, Char32,
9 constexpr LitKind operator"" _kind(char p) { return LitKind::Char; }
13 constexpr LitKind operator"" _kind(const char *p, size_t n) { return LitKind::CharStr; }
19 constexpr LitKind operator"" _kind2(const char *p) { return LitKind::Raw; }
20 template<char ...Cs> constexpr LitKind operator"" _kind3() { return LitKind::Template; }
22 static_assert('x'_kind == LitKind::Char, "");
41 constexpr const char *fractional_digits_impl(const char *p) {
44 constexpr const char *operator"" _fractional_digits(const char *p)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
String.py 92 # @param CommentCharacter: Comment char, used to ignore comment content
112 # @param CommentCharacter: Comment char, used to ignore comment content
272 # @param CommentCharacter: Comment char, used to ignore comment content,
308 # @param CommentCharacter: Comment char, used to ignore comment content,
355 # @param CommentCharacter: Comment char, used to ignore comment content
377 # @param CommentCharacter: Comment char, used to ignore comment content
394 # @param CommentCharacter: Comment char, be used to ignore comment content
395 # @param KeySplitCharacter: Key split char, between key name and key value.
396 # Key1 = Value1, '=' is the key split char
399 # @param ValueSplitCharacter: Value split char, be used to split multiple
    [all...]
  /external/valgrind/coregrind/
m_libcbase.c 767 swaptype = ((a-(Char*)0) | es) % sizeof(Word) ? 2 \
786 pv = (Char*)&v, v = *(Word*)pm
788 static Char* bm_med3 ( Char* a, Char* b, Char* c,
795 static void bm_swapfunc ( Char* a, Char* b, SizeT n, Int swaptype )
803 Char t;
809 static void bm_qsort ( Char* a, SizeT n, SizeT es
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
Decompress.c 30 // C: Char&Len Set; P: Position Set; T: exTra Set
191 UINT16 Char;
240 for (Char = 0; Char < NumOfChar; Char++) {
242 Len = BitLen[Char];
252 Table[Index] = Char;
277 *Pointer = Char;
436 Reads code lengths for Char&Len Set.
  /device/linaro/bootloader/edk2/DuetPkg/EfiLdr/
TianoDecompress.c 32 // C: Char&Len Set; P: Position Set; T: exTra Set
194 UINT16 Char;
247 for (Char = 0; Char < NumOfChar; Char++) {
249 Len = BitLen[Char];
259 Table[Index] = Char;
284 *Pointer = Char;
438 Reads code lengths for Char&Len Set.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/
Decompress.c 144 // C: Char&Len Set; P: Position Set; T: exTra Set
309 UINT16 Char;
376 for (Char = 0; Char < NumOfChar; Char++) {
378 Len = BitLen[Char];
388 Table[Index] = Char;
419 *Pointer = Char;
589 Reads code lengths for Char&Len Set.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
Decompress.c 36 // C: Char&Len Set; P: Position Set; T: exTra Set
201 UINT16 Char;
249 for (Char = 0; Char < NumOfChar; Char++) {
251 Len = BitLen[Char];
261 Table[Index] = Char;
286 *Pointer = Char;
443 Reads code lengths for Char&Len Set.
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
BaseUefiTianoCustomDecompressLib.c 109 Creates Huffman Code mapping table for Extra Set, Char&Len Set
139 UINT16 Char;
200 for (Char = 0; Char < NumOfChar; Char++) {
202 Len = BitLen[Char];
212 Table[Index] = Char;
239 *Pointer = Char;
392 Reads code lengths for Char&Len Set.
394 Read in and decode the Char&Len Set Code Length Array, then
    [all...]
  /external/vboot_reference/utility/
efidecompress.c 49 // C: Char&Len Set; P: Position Set; T: exTra Set
214 UINT16 Char;
263 for (Char = 0; Char < NumOfChar; Char++) {
265 Len = BitLen[Char];
275 Table[Index] = Char;
300 *Pointer = Char;
457 Reads code lengths for Char&Len Set.
1012 int main(int argc, char *argv[]
    [all...]
  /external/fmtlib/test/
format-test.cc 85 template <typename Char, typename T>
86 void std_format(const T &value, std::basic_string<Char> &result) {
87 std::basic_ostringstream<Char> os;
95 char buffer[100];
106 // Checks if writing value to BasicWriter<Char> produces the same result
107 // as writing it to std::basic_ostringstream<Char>.
108 template <typename Char, typename T>
109 ::testing::AssertionResult check_write(const T &value, const char *type) {
110 std::basic_string<Char> actual =
111 (fmt::BasicMemoryWriter<Char>() << value).str()
    [all...]

Completed in 1058 milliseconds

1 2 3 4 56 7 8 91011>>