| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
| H A D | instruction.cpp | 826 std::ostream& operator<<(std::ostream& str, const Instruction& inst) { in operator <<() argument
|
| /third_party/skia/third_party/externals/icu/source/extra/uconv/ |
| H A D | uconv.cpp | 811 UnicodeString str; convertFile() local 991 UnicodeString str; convertFile() local [all...] |
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| H A D | collationbuilder.cpp | 294 CollationBuilder::addReset(int32_t strength, const UnicodeString &str, in addReset() argument 482 CollationBuilder::getSpecialResetPosition(const UnicodeString &str, in getSpecialResetPosition() argument 647 addRelation(int32_t strength, const UnicodeString &prefix, const UnicodeString &str, const UnicodeString &extension, const char *&parserErrorReason, UErrorCode &errorCode) addRelation() argument 1122 UnicodeString str = stringIter.next(); addOnlyClosure() local 1138 UnicodeString str = stringIter.next(); addOnlyClosure() local 1345 addIfDifferent(const UnicodeString &prefix, const UnicodeString &str, const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32, UErrorCode &errorCode) addIfDifferent() argument [all...] |
| H A D | collationdatabuilder.cpp | 171 DataBuilderCollationIterator::fetchCEs(const UnicodeString &str, int32_t start, in fetchCEs() argument
|
| H A D | number_patternstring.cpp | 724 UnicodeString str = incrementQuantity.toPlainString(); in propertiesToPatternString() local
|
| H A D | rbt_pars.cpp | 925 UnicodeString str; // scratch in parseRules() local
|
| /third_party/skia/third_party/externals/icu/source/tools/ctestfw/ |
| H A D | ctest.c | 296 void T_CTEST_EXPORT2 str_timeDelta(char *str, UDate deltaTime) { in str_timeDelta() argument 312 char str[256]; in print_timeDelta() local [all...] |
| /third_party/skia/src/ports/ |
| H A D | SkFontMgr_android_parser.cpp | 141 char* str = s->writable_str(); in trim_string() local
|
| /third_party/skia/src/ports/skia_ohos/ |
| H A D | FontConfig_ohos.cpp | 462 SkString str; in dumpFont() local 831 const char* str = root[key].asCString(); in parseVariation() local
|
| /third_party/skia/third_party/externals/angle2/src/third_party/trace_event/ |
| H A D | trace_event.h | 610 explicit TraceStringWithCopy(const char *str) : m_str(str) {} in TraceStringWithCopy() argument
|
| /third_party/skia/third_party/externals/angle2/src/tests/test_expectations/ |
| H A D | GPUTestExpectationsParser.cpp | 216 inline bool StartsWithASCII(const std::string &str, const std::string &search, bool caseSensitive) in StartsWithASCII() argument
|
| /third_party/openssl/test/helpers/ |
| H A D | ssltestlib.c | 244 static int tls_dump_puts(BIO *bio, const char *str) in tls_dump_puts() argument 708 static int mempacket_test_puts(BIO *bio, const char *str) in mempacket_test_puts() argument 801 static int always_retry_puts(BIO *bio, const char *str) in always_retry_puts() argument [all...] |
| /third_party/skia/third_party/externals/freetype/src/psaux/ |
| H A D | afmparse.c | 133 char* str; in afm_stream_read_one() local 174 char* str; in afm_stream_read_string() local 386 char* str; in FT_LOCAL_DEF() local [all...] |
| /third_party/skia/third_party/externals/harfbuzz/src/ |
| H A D | hb-ot-cff1-table.hh | 1313 const char *str; in get_glyph_name() local
|
| H A D | hb-subset-cff-common.hh | 256 const byte_str_t str = (*acc.charStrings)[glyph]; in flatten() local 630 const byte_str_t str = (*acc.charStrings)[glyph]; subset() local [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
| H A D | APInt.cpp | 560 assert(bitPosition < BitWidth && �); if ((*this)[bitPosition]) clearBit(bitPosition); else setBit(bitPosition); } unsigned APInt::getBitsNeeded(StringRef str, uint8_t radix) { assert(!str.empty() && �); assert((radix == 10 || radix == 8 || radix == 16 || radix == 2 || radix == 36) && �); size_t slen = str.size(); StringRef::iterator p = str.begin(); unsigned isNegative = *p == �; if (*p == � || *p == �) { p++; slen--; assert(slen && �); } if (radix == 2) return slen + isNegative; if (radix == 8) return slen * 3 + isNegative; if (radix == 16) return slen * 4 + isNegative; unsigned sufficient = radix == 10? (slen == 1 ? 4 : slen * 64/18) : (slen == 1 ? 7 : slen * 16/3); APInt tmp(sufficient, StringRef(p, slen), radix); unsigned log = tmp.logBase2(); if (log == (unsigned)-1) { return isNegative + 1; } else { return isNegative + log + 1; } } hash_code llvm::hash_value(const APInt &Arg) { if (Arg.isSingleWord()) return hash_combine(Arg.VAL); return hash_combine_range(Arg.pVal, Arg.pVal + Arg.getNumWords()); } bool APInt::isSplat(unsigned SplatSizeInBits) const { assert(getBitWidth() % SplatSizeInBits == 0 && �); return *this == rotl(SplatSizeInBits); } APInt APInt::getHiBits(unsigned numBits) const { return APIntOps::lshr(*this, BitWidth - numBits); } APInt APInt::getLoBits(unsigned numBits) const { return APIntOps::lshr(APIntOps::shl(*this, BitWidth - numBits), BitWidth - numBits); } unsigned APInt::countLeadingZerosSlowCase() const { unsigned Count = 0; for (int i = getNumWords()-1; i >= 0; --i) flipBit() argument [all...] |
| /third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
| H A D | parser_impl.cc | 73 ast::Builtin ident_to_builtin(const std::string& str) { in ident_to_builtin() argument [all...] |
| /third_party/spirv-headers/tools/buildHeaders/ |
| H A D | jsonToSpirv.cpp | 447 bool IsTypeOrResultId(const std::string& str, bool* isType, bool* isResult) in IsTypeOrResultId() argument 458 unsigned int NumberStringToBit(const std::string& str) in NumberStringToBit() argument
|
| /third_party/skia/third_party/externals/icu/source/common/ |
| H A D | locdspnm.cpp | 39 char *str; in ncat() local
|
| H A D | ustring.cpp | 1525 ustr_hashUCharsN(const UChar *str, int32_t length) { in ustr_hashUCharsN() argument 1530 ustr_hashCharsN(const char *str, int32_t length) { in ustr_hashCharsN() argument 1535 ustr_hashICharsN(const char *str, int32_t length) { in ustr_hashICharsN() argument
|
| /third_party/toybox/lib/ |
| H A D | xwrap.c | 956 time_t xvali_date(struct tm *tm, char *str) in xvali_date() argument 968 void xparsedate(char *str, time_ argument [all...] |
| /third_party/toybox/toys/pending/ |
| H A D | vi.c | 121 static char* utf8_last(char* str, int size) in utf8_last() argument 483 static size_t text_strstr(size_t offset, char *str) in text_strstr() argument 647 char *str; in vi_yank() local 936 i_insert(char *str, int len) i_insert() argument 1312 crunch_nstr(char **str, int width, int n, FILE *out, char *escmore, int (*escout)(FILE *out, int cols, int wc)) crunch_nstr() argument [all...] |
| /third_party/tzdata/ |
| H A D | zdump.c | 155 xstrsize(char const *str) in xstrsize() argument
|
| /third_party/protobuf/src/google/protobuf/ |
| H A D | descriptor_database.cc | 431 StringPiece DecodeString(const String& str, int) const { return str; } in DecodeString() argument
|
| /third_party/protobuf/ruby/ext/google/protobuf_c/ |
| H A D | storage.c | 861 const char *str = upb_fielddef_defaultstr(field, &size); in layout_get_default() local 1176 VALUE str = rb_str_new2(""); in layout_inspect() local [all...] |