Home
last modified time | relevance | path

Searched refs:_ch (Results 1 – 12 of 12) sorted by relevance

/external/llvm-project/compiler-rt/test/asan/TestCases/
Dspeculative_load.cpp17 char _ch[23]; member
27 __asan_poison_memory_region(_data._s._ch, 23); in S()
31 __asan_unpoison_memory_region(_data._s._ch, 23); in ~S()
39 return is_long() ? _data._l._ptr : _data._s._ch; in get_pointer()
/external/compiler-rt/test/asan/TestCases/
Dspeculative_load.cc17 char _ch[23]; member
27 __asan_poison_memory_region(_data._s._ch, 23); in S()
35 return is_long() ? _data._l._ptr : _data._s._ch; in get_pointer()
/external/llvm-project/flang/lib/Parser/
Dstmt-parser.h34 "\n"_ch >> ok || fail("expected end of line"_err_en_US)};
36 constexpr auto semicolons{";"_ch >> skipMany(";"_tok) / space / maybe("\n"_ch)};
90 withMessage("expected end of statement"_err_en_US, lookAhead(";\n"_ch))};
Dtoken-parsers.h57 constexpr AnyOfChars operator""_ch(const char str[], std::size_t n) {
61 constexpr auto letter{"abcdefghijklmnopqrstuvwxyz"_ch};
62 constexpr auto digit{"0123456789"_ch};
375 static constexpr auto sign{maybe("+-"_ch / space)}; in Parse()
497 static constexpr auto getSign{space >> attempt("+-"_ch)}; in Parse()
519 static constexpr auto letterH{"h"_ch}; in Parse()
649 constexpr auto underscore{"_"_ch};
657 constexpr auto otherIdChar{underscore / !"'\""_ch ||
658 extension<LanguageFeature::PunctuationInNames>("$@"_ch)};
Dexpr-parsers.h43 "'"_ch >> CharLiteral<'\''>{} || "\""_ch >> CharLiteral<'"'>{}};
DFortran-parsers.cpp259 ("ed"_ch || extension<LanguageFeature::QuadPrecision>("q"_ch)) >>
265 sourced((digitString >> "."_ch >>
267 "."_ch /* don't misinterpret 1.AND. */) >>
269 "."_ch >> digitString >> maybe(exponentPart) >> ok ||
1173 constexpr auto beginDirective{skipStuffBeforeStatement >> "!"_ch};
1177 defaulted(parenthesized(some("tkr"_ch))), name))};
Dexpr-parsers.cpp401 letter || extension<LanguageFeature::PunctuationInNames>("$@"_ch)};
403 space >> construct<DefinedOpName>(sourced("."_ch >>
404 some(definedOpNameChar) >> construct<Name>() / "."_ch)))
Dprogram-parsers.cpp440 maybe(keyword / "=" / !"="_ch), Parser<ActualArg>{}))
Dio-parsers.cpp253 TYPE_PARSER(construct<Format>(label / !"_."_ch) ||
/external/arm-trusted-firmware/include/lib/
Dsmccc.h124 #define DEFINE_SVC_UUID2(_name, _tl, _tm, _th, _cl, _ch, \ argument
137 (_cl), (_ch), \
/external/aac/libAACdec/src/
Daacdecoder.cpp2166 for (int _ch = 0; _ch < ascChannels; _ch++) { in CAacDecoder_Init() local
2277 for (int _ch = 0; _ch < ascChannels; _ch++) { in CAacDecoder_Init() local
2309 for (int _ch = 0; _ch < flushChannels; _ch++) { in CAacDecoder_Init() local
2310 ch = aacChannelsOffset + _ch; in CAacDecoder_Init()
2432 for (int _ch = 0; _ch < self->ascChannels[streamIndex]; _ch++) { in CAacDecoder_Init() local
/external/rust/crates/proc-macro2/src/
Dparse.rs397 _ch => {} in cooked_string()