Searched refs:_ch (Results 1 – 12 of 12) sorted by relevance
/external/llvm-project/compiler-rt/test/asan/TestCases/ |
D | speculative_load.cpp | 17 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/ |
D | speculative_load.cc | 17 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/ |
D | stmt-parser.h | 34 "\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))};
|
D | token-parsers.h | 57 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)};
|
D | expr-parsers.h | 43 "'"_ch >> CharLiteral<'\''>{} || "\""_ch >> CharLiteral<'"'>{}};
|
D | Fortran-parsers.cpp | 259 ("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))};
|
D | expr-parsers.cpp | 401 letter || extension<LanguageFeature::PunctuationInNames>("$@"_ch)}; 403 space >> construct<DefinedOpName>(sourced("."_ch >> 404 some(definedOpNameChar) >> construct<Name>() / "."_ch)))
|
D | program-parsers.cpp | 440 maybe(keyword / "=" / !"="_ch), Parser<ActualArg>{}))
|
D | io-parsers.cpp | 253 TYPE_PARSER(construct<Format>(label / !"_."_ch) ||
|
/external/arm-trusted-firmware/include/lib/ |
D | smccc.h | 124 #define DEFINE_SVC_UUID2(_name, _tl, _tm, _th, _cl, _ch, \ argument 137 (_cl), (_ch), \
|
/external/aac/libAACdec/src/ |
D | aacdecoder.cpp | 2166 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/ |
D | parse.rs | 397 _ch => {} in cooked_string()
|