/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMTargetObjectFile.cpp | 75 static bool isExecuteOnlyFunction(const GlobalObject *GO, SectionKind SK, in isExecuteOnlyFunction() argument 78 if (TM.getSubtarget<ARMSubtarget>(*F).genExecuteOnly() && SK.isText()) in isExecuteOnlyFunction() 84 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() 86 if (isExecuteOnlyFunction(GO, SK, TM)) in getExplicitSectionGlobal() 87 SK = SectionKind::getExecuteOnly(); in getExplicitSectionGlobal() 89 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal() 93 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in SelectSectionForGlobal() 95 if (isExecuteOnlyFunction(GO, SK, TM)) in SelectSectionForGlobal() 96 SK = SectionKind::getExecuteOnly(); in SelectSectionForGlobal() 98 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, SK, T in SelectSectionForGlobal() 83 getExplicitSectionGlobal( const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const getExplicitSectionGlobal() argument 92 SelectSectionForGlobal( const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const SelectSectionForGlobal() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUTargetObjectFile.cpp | 33 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() 37 SK = SectionKind::getMetadata(); in getExplicitSectionGlobal() 39 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal() 32 getExplicitSectionGlobal( const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const getExplicitSectionGlobal() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | Comdat.h | 44 SelectionKind getSelectionKind() const { return SK; } in getSelectionKind() 45 void setSelectionKind(SelectionKind Val) { SK = Val; } in setSelectionKind() 57 SelectionKind SK = Any; member in llvm::Comdat
|
/third_party/lwip/src/netif/ppp/polarssl/ |
H A D | des.c | 285 T = *SK++ ^ X; \ 291 T = *SK++ ^ ((X << 28) | (X >> 4)); \ 300 static void des_setkey( unsigned long SK[32], unsigned char key[8] ) in des_setkey() argument 343 *SK++ = ((X << 4) & 0x24000000) | ((X << 28) & 0x10000000) in des_setkey() 355 *SK++ = ((X << 15) & 0x20000000) | ((X << 17) & 0x10000000) in des_setkey() 401 unsigned long X, Y, T, *SK; in des_crypt_ecb() local 403 SK = ctx->sk; in des_crypt_ecb()
|
/third_party/mbedtls/library/ |
H A D | camellia.c | 411 uint32_t *SK; in mbedtls_camellia_setkey_dec() local 424 SK = cty.rk + 24 * 2 + 8 * idx * 2; in mbedtls_camellia_setkey_dec() 426 *RK++ = *SK++; in mbedtls_camellia_setkey_dec() 427 *RK++ = *SK++; in mbedtls_camellia_setkey_dec() 428 *RK++ = *SK++; in mbedtls_camellia_setkey_dec() 429 *RK++ = *SK++; in mbedtls_camellia_setkey_dec() 431 for (i = 22 + 8 * idx, SK -= 6; i > 0; i--, SK -= 4) { in mbedtls_camellia_setkey_dec() 432 *RK++ = *SK++; in mbedtls_camellia_setkey_dec() 433 *RK++ = *SK in mbedtls_camellia_setkey_dec() [all...] |
H A D | des.c | 258 T = *SK++ ^ (X); \ 264 T = *SK++ ^ (((X) << 28) | ((X) >> 4)); \ 407 void mbedtls_des_setkey(uint32_t SK[32], const unsigned char key[MBEDTLS_DES_KEY_SIZE]) in mbedtls_des_setkey() argument 446 *SK++ = ((X << 4) & 0x24000000) | ((X << 28) & 0x10000000) in mbedtls_des_setkey() 458 *SK++ = ((X << 15) & 0x20000000) | ((X << 17) & 0x10000000) in mbedtls_des_setkey() 611 uint32_t X, Y, T, *SK; in mbedtls_des_crypt_ecb() local 613 SK = ctx->sk; in mbedtls_des_crypt_ecb() 699 uint32_t X, Y, T, *SK; in mbedtls_des3_crypt_ecb() local 701 SK = ctx->sk; in mbedtls_des3_crypt_ecb()
|
H A D | aes.c | 691 uint32_t *SK; in mbedtls_aes_setkey_dec() local 729 SK = cty.buf + cty.rk_offset + cty.nr * 4; in mbedtls_aes_setkey_dec() 731 *RK++ = *SK++; in mbedtls_aes_setkey_dec() 732 *RK++ = *SK++; in mbedtls_aes_setkey_dec() 733 *RK++ = *SK++; in mbedtls_aes_setkey_dec() 734 *RK++ = *SK++; in mbedtls_aes_setkey_dec() 735 SK -= 8; in mbedtls_aes_setkey_dec() 736 for (int i = ctx->nr - 1; i > 0; i--, SK -= 8) { in mbedtls_aes_setkey_dec() 737 for (int j = 0; j < 4; j++, SK++) { in mbedtls_aes_setkey_dec() 738 *RK++ = AES_RT0(FSb[MBEDTLS_BYTE_0(*SK)]) in mbedtls_aes_setkey_dec() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | Comdat.cpp | 22 Comdat::Comdat(Comdat &&C) : Name(C.Name), SK(C.SK) {} in Comdat()
|
H A D | AsmWriter.cpp | 2881 static const char *getSummaryKindName(GlobalValueSummary::SummaryKind SK) { in getSummaryKindName() argument 2882 switch (SK) { in getSummaryKindName()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Linker/ |
H A D | LinkModules.cpp | 73 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK, 382 Comdat::SelectionKind SK; in linkIfNeeded() local 383 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC]; in linkIfNeeded() 465 Comdat::SelectionKind SK; in run() local 467 if (getComdatResult(&C, SK, LinkFromSrc)) in run() 469 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc); in run()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | SanitizerStats.cpp | 42 void SanitizerStatReport::create(IRBuilder<> &B, SanitizerStatKind SK) { in create() argument 53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | YAMLParser.cpp | 801 SimpleKey SK; in peekNext() local 802 SK.Tok = TokenQueue.begin(); in peekNext() 803 if (!is_contained(SimpleKeys, SK)) in peekNext() 981 SimpleKey SK; in saveSimpleKeyCandidate() local 982 SK.Tok = Tok; in saveSimpleKeyCandidate() 983 SK.Line = Line; in saveSimpleKeyCandidate() 984 SK.Column = AtColumn; in saveSimpleKeyCandidate() 985 SK.IsRequired = IsRequired; in saveSimpleKeyCandidate() 986 SK.FlowLevel = FlowLevel; in saveSimpleKeyCandidate() 987 SimpleKeys.push_back(SK); in saveSimpleKeyCandidate() 1226 SimpleKey SK = SimpleKeys.pop_back_val(); scanValue() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
H A D | SanitizerStats.h | 36 /// with the given sanitizer kind SK. 37 void create(IRBuilder<> &B, SanitizerStatKind SK);
|
/third_party/mbedtls/include/mbedtls/ |
H A D | des.h | 371 * \param SK Round keys 378 void mbedtls_des_setkey(uint32_t SK[32],
|
/third_party/NuttX/drivers/usbdev/gadget/ |
H A D | f_mass_storage.h | 128 #define SK(x) ((uint8_t) ((x) >> 16)) /* Sense Key byte, etc. */ macro
|
H A D | f_mass_storage.c | 416 buf[2] = SK(sd); in done_scsi_request_sense()
|
/third_party/eudev/src/cdrom_id/ |
H A D | cdrom_id.c | 102 #define SK(errcode) (((errcode) >> 16) & 0xF) macro 135 log_debug("%s failed with SK=%Xh/ASC=%02Xh/ACQ=%02Xh", cmd, SK(err), ASC(err), ASCQ(err)); in info_scsi_cmd_err() 550 if (SK(err) == 0x5 && (ASC(err) == 0x20 || ASC(err) == 0x24)) { in cd_profiles()
|
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
H A D | demo-compiled.js | 59 386:["SI"],387:["BA"],389:["MK"],420:["CZ"],421:["SK"],423:["LI"],500:["FK"],501:["BZ"],502:["GT"],503:["SV"],504:["HN"],505:["NI"],506:["CR"],507:["PA"],508:["PM"],509:["HT"],590:["GP","BL","MF"],591:["BO"],592:["GY"],593:["EC"],594:["GF"],595:["PY"],596:["MQ"],597:["SR"],598:["UY"],599:["CW","BQ"],670:["TL"],672:["NF"],673:["BN"],674:["NR"],675:["PG"],676:["TO"],677:["SB"],678:["VU"],679:["FJ"],680:["PW"],681:["WF"],682:["CK"],683:["NU"],685:["WS"],686:["KI"],687:["NC"],688:["TV"],689:["PF"],690:["TK"], 399 ,,,,,,[5,8]],[,,"79\\d{6}",,,,"79123456",,,[8]],[,,"(?:4[015-8]|9\\d)\\d{6}",,,,"41234567",,,[8]],[,,"80[01]\\d{5}",,,,"80012345",,,[8]],[,,"82[09]\\d{5}",,,,"82012345",,,[8]],[,,"810(?:0[0-6]|[2-8]\\d)\\d{3}",,,,"81021234",,,[8]],[,,"880\\d{5}",,,,"88012345",,,[8]],[,,"85[0-5]\\d{5}",,,,"85012345",,,[8]],"SJ",47,"00",,,,,,,,,,[,,,,,,,,,[-1]],,"79",[,,,,,,,,,[-1]],[,,"(?:0[2-9]|81(?:0(?:0[7-9]|1\\d)|5\\d\\d))\\d{3}",,,,"02000"],,,[,,"81[23]\\d{5}",,,,"81212345",,,[8]]],SK:[,[,,"[2-689]\\d{8}|[2-59]\\d{6}|[2-5]\\d{5}", 400 ,,,,,,[6,7,9]],[,,"(?:2(?:16|[2-9]\\d{3})|(?:(?:[3-5][1-8]\\d|819)\\d|601[1-5])\\d)\\d{4}|(?:2|[3-5][1-8])1[67]\\d{3}|[3-5][1-8]16\\d\\d",,,,"221234567"],[,,"909[1-9]\\d{5}|9(?:0[1-8]|1[0-24-9]|4[03-57-9]|5\\d)\\d{6}",,,,"912123456",,,[9]],[,,"800\\d{6}",,,,"800123456",,,[9]],[,,"9(?:00|[78]\\d)\\d{6}",,,,"900123456",,,[9]],[,,"8[5-9]\\d{7}",,,,"850123456",,,[9]],[,,,,,,,,,[-1]],[,,"6(?:02|5[0-4]|9[0-6])\\d{6}",,,,"690123456",,,[9]],"SK",421,"00","0",,,"0",,,,[[,"(\\d)(\\d{2})(\\d{3,4})","$1 $2 $3", 634 ,,[-1]],,,,"SJ",,,,,,,,,,,,,,,,,,[,,"11[023]",,,,"110"],,[,,"11[023]",,,,"110"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,[,,,,,,,,,[-1]]],SK:[,[,,"1\\d{2,5}",,,,,,,[3,4,5,6]],,,[,,"1(?:1(?:2|6\\d{3})|5[058])",,,,"112",,,[3,6]],[,,,,,,,,,[-1]],,,,"SK",,,,,,,,,,,,,,,,,,[,,"1(?:12|5[058])",,,,"112",,,[3]],,[,,"1(?:1(?:2|6(?:000|111)|8[0-8])|[248]\\d{3}|5[0589])",,,,"112"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,[,,,,,,,,,[-1]]],SL:[,[,,"[069]\\d\\d(?:\\d{2})?",,,,,,,[3,5]],,,[,,"(?:01|99)9",,,,"019",,,[3]],[,,,,,,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 626 Comdat::SelectionKind SK; in parseComdat() 631 SK = Comdat::Any; in parseComdat() 634 SK = Comdat::ExactMatch; in parseComdat() 637 SK = Comdat::Largest; in parseComdat() 640 SK = Comdat::NoDuplicates; in parseComdat() 643 SK = Comdat::SameSize; in parseComdat() 659 C->setSelectionKind(SK); in parseComdat()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 3064 Comdat::SelectionKind SK = getDecodedComdatSelectionKind(Record[0]); in parseComdatRecord() 3076 C->setSelectionKind(SK); in parseComdatRecord()
|