HomeSort by relevance Sort by last modified time
    Searched refs:Ch (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
strfunc.h 24 /*! \tparam Ch Character type (e.g. char, wchar_t, short)
29 template <typename Ch>
30 inline SizeType StrLen(const Ch* s) {
31 const Ch* p = s;
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
memorystream.h 35 typedef char Ch; // byte
37 MemoryStream(const Ch *src, size_t size) : src_(src), begin_(src), end_(src + size), size_(size) {}
39 Ch Peek() const { return (src_ == end_) ? '\0' : *src_; }
40 Ch Take() { return (src_ == end_) ? '\0' : *src_++; }
43 Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; }
44 void Put(Ch) { RAPIDJSON_ASSERT(false); }
46 size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; }
49 const Ch* Peek4() const {
53 const Ch* src_; //!< Current read position.
54 const Ch* begin_; //!< Original head of the string
    [all...]
stringbuffer.h 37 typedef typename Encoding::Ch Ch;
50 void Put(Ch c) { *stack_.template Push<Ch>() = c; }
56 *stack_.template Push<Ch>() = '\0';
58 stack_.template Pop<Ch>(1);
60 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); }
61 void Pop(size_t count) { stack_.template Pop<Ch>(count); }
63 const Ch* GetString() const {
    [all...]
memorybuffer.h 38 typedef char Ch; // byte
42 void Put(Ch c) { *stack_.template Push<Ch>() = c; }
47 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); }
48 void Pop(size_t count) { stack_.template Pop<Ch>(count); }
50 const Ch* GetBuffer() const {
51 return stack_.template Bottom<Ch>();
encodedstream.h 34 RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1);
36 typedef typename Encoding::Ch Ch;
42 Ch Peek() const { return current_; }
43 Ch Take() { Ch c = current_; current_ = Encoding::Take(is_); return c; }
47 void Put(Ch) { RAPIDJSON_ASSERT(false); }
49 Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; }
50 size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; }
57 Ch current_;
    [all...]
filereadstream.h 29 typedef char Ch; //!< Character type (byte).
43 Ch Peek() const { return *current_; }
44 Ch Take() { Ch c = *current_; Read(); return c; }
48 void Put(Ch) { RAPIDJSON_ASSERT(false); }
50 Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; }
51 size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; }
54 const Ch* Peek4() const {
77 Ch *buffer_;
79 Ch *bufferLast_;
    [all...]
encodings.h 40 typename Ch; //! Type of character. A "character" is actually a code unit in unicode's definition.
73 static Ch Take(InputByteStream& is);
81 static void Put(OutputByteStream& os, Ch c);
97 typedef CharType Ch;
104 os.Put(static_cast<Ch>(codepoint & 0xFF));
106 os.Put(static_cast<Ch>(0xC0 | ((codepoint >> 6) & 0xFF)));
107 os.Put(static_cast<Ch>(0x80 | ((codepoint & 0x3F))));
110 os.Put(static_cast<Ch>(0xE0 | ((codepoint >> 12) & 0xFF)));
111 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 6) & 0x3F)));
112 os.Put(static_cast<Ch>(0x80 | (codepoint & 0x3F)));
    [all...]
rapidjson.h 511 typename Ch; //!< Character type of the stream.
514 Ch Peek() const;
517 Ch Take();
525 Ch* PutBegin();
528 void Put(Ch c);
536 size_t PutEnd(Ch* begin);
558 template<typename Stream, typename Ch>
559 inline void PutN(Stream& stream, Ch c, size_t n) {
572 typedef typename Encoding::Ch Ch;
    [all...]
pointer.h 74 typedef typename EncodingType::Ch Ch; //!< Character type from Value
90 const Ch* name; //!< Name of the token. It has null character at the end but it can contain null character.
106 explicit GenericPointer(const Ch* source, Allocator* allocator = 0) : allocator_(allocator), ownAllocator_(), nameBuffer_(), tokens_(), tokenCount_(), parseErrorOffset_(), parseErrorCode_(kPointerParseErrorNone) {
117 explicit GenericPointer(const std::basic_string<Ch>& source, Allocator* allocator = 0) : allocator_(allocator), ownAllocator_(), nameBuffer_(), tokens_(), tokenCount_(), parseErrorOffset_(), parseErrorCode_(kPointerParseErrorNone) {
129 GenericPointer(const Ch* source, size_t length, Allocator* allocator = 0) : allocator_(allocator), ownAllocator_(), nameBuffer_(), tokens_(), tokenCount_(), parseErrorOffset_(), parseErrorCode_(kPointerParseErrorNone) {
204 Ch *p = r.CopyFromRaw(*this, 1, token.length + 1);
205 std::memcpy(p, token.name, (token.length + 1) * sizeof(Ch));
219 GenericPointer Append(const Ch* name, SizeType length, Allocator* allocator = 0) const {
226 \param name Name (const Ch*) to be appended
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/
DxeHttpLib.h 35 #define NET_IS_HEX_CHAR(Ch) \
36 ((('0' <= (Ch)) && ((Ch) <= '9')) || \
37 (('A' <= (Ch)) && ((Ch) <= 'F')) || \
38 (('a' <= (Ch)) && ((Ch) <= 'f')))
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
unittest.h 44 template <typename Ch>
45 inline unsigned StrLen(const Ch* s) {
46 const Ch* p = s;
51 template<typename Ch>
52 inline int StrCmp(const Ch* s1, const Ch* s2) {
57 template <typename Ch>
58 inline Ch* StrDup(const Ch* str) {
59 size_t bufferSize = sizeof(Ch) * (StrLen(str) + 1);
    [all...]
prettywritertest.cpp 102 typedef char Ch;
106 Ch Peek() const { assert(false); return '\0'; }
107 Ch Take() { assert(false); return '\0'; }
110 Ch* PutBegin() { assert(false); return 0; }
111 void Put(Ch c) { os_.put(c); }
113 size_t PutEnd(Ch*) { assert(false); return 0; }
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/Smbios/MemorySubClassDxe/
MemorySubClass.c 50 IN UINT8 Ch,
59 if (pGblData->Channel[Skt][Ch].Dimm[Dimm].DramType == SPD_TYPE_DDR3)
63 UnicodeSPrint (StringBuffer2, SMBIOS_STRING_MAX_LENGTH - 1, L"%c", pGblData->Channel[Skt][Ch].Dimm[Dimm].SpdModPart[Index2]);
71 UnicodeSPrint (StringBuffer2, SMBIOS_STRING_MAX_LENGTH - 1, L"%c", pGblData->Channel[Skt][Ch].Dimm[Dimm].SpdModPartDDR4[Index2]);
83 IN UINT8 Ch,
90 Temp = SwapBytes32 (pGblData->Channel[Skt][Ch].Dimm[Dimm].SpdSerialNum);
101 IN UINT8 Ch,
105 if (pGblData->Channel[Skt][Ch].Status == FALSE ||
106 pGblData->Channel[Skt][Ch].Dimm[Dimm].Status == FALSE)
120 IN UINT8 Ch,
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceMangling.cpp 54 char Ch = OldName[Last];
55 if (Ch == '_') {
58 } else if (std::isdigit(Ch) || std::isupper(Ch, CLocale)) {
59 if (Ch != 'Z')
85 char Ch = OldName[OldPos + Offset];
88 switch (Ch) {
90 Ch = 'A';
93 Ch = '0';
97 ++Ch;
    [all...]
  /external/fio/crc/
sha256.c 28 static inline uint32_t Ch(uint32_t x, uint32_t y, uint32_t z)
86 t1 = h + e1(e) + Ch(e,f,g) + 0x428a2f98 + W[ 0];
88 t1 = g + e1(d) + Ch(d,e,f) + 0x71374491 + W[ 1];
90 t1 = f + e1(c) + Ch(c,d,e) + 0xb5c0fbcf + W[ 2];
92 t1 = e + e1(b) + Ch(b,c,d) + 0xe9b5dba5 + W[ 3];
94 t1 = d + e1(a) + Ch(a,b,c) + 0x3956c25b + W[ 4];
96 t1 = c + e1(h) + Ch(h,a,b) + 0x59f111f1 + W[ 5];
98 t1 = b + e1(g) + Ch(g,h,a) + 0x923f82a4 + W[ 6];
100 t1 = a + e1(f) + Ch(f,g,h) + 0xab1c5ed5 + W[ 7];
103 t1 = h + e1(e) + Ch(e,f,g) + 0xd807aa98 + W[ 8]
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
AmlString.c 40 @param[in] Ch Char.
47 IN CHAR8 Ch
50 if ((Ch == '_') || (Ch >= 'A' && Ch <= 'Z')) {
60 @param[in] Ch Char.
67 IN CHAR8 Ch
70 if (AmlIsLeadName (Ch) || (Ch >= '0' && Ch <= '9')) {
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVStream.cpp 60 char Ch = ' ';
62 while (IS >> Ch && Ch != '"')
66 while (IS >> Ch) {
67 if (Ch == '"') {
73 PreCh = Ch;
76 PreCh = Ch;
157 char Ch;
158 while (I.IS.get(Ch) && Ch != '\0')
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/WindowsResource/
ResourceScriptToken.h 34 #define SHORT_TOKEN(Name, Ch) Name,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/WindowsResource/
ResourceScriptToken.h 34 #define SHORT_TOKEN(Name, Ch) Name,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/WindowsResource/
ResourceScriptToken.h 34 #define SHORT_TOKEN(Name, Ch) Name,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/WindowsResource/
ResourceScriptToken.h 34 #define SHORT_TOKEN(Name, Ch) Name,
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/WindowsResource/
ResourceScriptToken.h 34 #define SHORT_TOKEN(Name, Ch) Name,
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/WindowsResource/
ResourceScriptToken.h 34 #define SHORT_TOKEN(Name, Ch) Name,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/WindowsResource/
ResourceScriptToken.h 34 #define SHORT_TOKEN(Name, Ch) Name,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/WindowsResource/
ResourceScriptToken.h 34 #define SHORT_TOKEN(Name, Ch) Name,

Completed in 1453 milliseconds

1 2 3 4 5 6 7