Home
last modified time | relevance | path

Searched refs:SK (Results 1 – 25 of 684) sorted by relevance

12345678910>>...28

/third_party/libphonenumber/resources/carrier/ko/
D82.txt15 821020|SK 텔링크
16 821021|SK 텔링크
26 821031|SK 텔링크
30 821035|SK 텔링크
31 821036|SK 텔링크
32 821037|SK 텔링크
33 821038|SK 텔링크
35 82104|SK 텔링크
39 821050|SK 텔링크
41 821052|SK 텔링크
[all …]
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/intrinsics/sse/
DWinogradTrans.c26 const float *SK = SW; in WinogradTransLeft() local
39 for (int len_tmp = length; len_tmp > 0; --len_tmp, M += 4, SK += 4) { in WinogradTransLeft()
41 __m128 s0 = _mm_loadu_ps(SK); in WinogradTransLeft()
43 __m128 s1 = _mm_loadu_ps(SK + S_step); in WinogradTransLeft()
45 __m128 s3 = _mm_loadu_ps(SK + 2 * S_step); in WinogradTransLeft()
47 __m128 s4 = _mm_loadu_ps(SK + 3 * S_step); in WinogradTransLeft()
49 __m128 s5 = _mm_loadu_ps(SK + 4 * S_step); in WinogradTransLeft()
51 __m128 s6 = _mm_loadu_ps(SK + 5 * S_step); in WinogradTransLeft()
53 __m128 s7 = _mm_loadu_ps(SK + 6 * S_step); in WinogradTransLeft()
59 SK += 7 * S_step - len_c4; in WinogradTransLeft()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMTargetObjectFile.cpp75 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() argument
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() argument
95 if (isExecuteOnlyFunction(GO, SK, TM)) in SelectSectionForGlobal()
96 SK = SectionKind::getExecuteOnly(); in SelectSectionForGlobal()
98 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, SK, TM); in SelectSectionForGlobal()
/third_party/lwip/src/netif/ppp/polarssl/
Ddes.c285 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()
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/
Dcamellia.c433 uint32_t *SK; in mbedtls_camellia_setkey_dec() local
447 SK = cty.rk + 24 * 2 + 8 * idx * 2; in mbedtls_camellia_setkey_dec()
449 *RK++ = *SK++; in mbedtls_camellia_setkey_dec()
450 *RK++ = *SK++; in mbedtls_camellia_setkey_dec()
451 *RK++ = *SK++; in mbedtls_camellia_setkey_dec()
452 *RK++ = *SK++; in mbedtls_camellia_setkey_dec()
454 for( i = 22 + 8 * idx, SK -= 6; i > 0; i--, SK -= 4 ) in mbedtls_camellia_setkey_dec()
456 *RK++ = *SK++; in mbedtls_camellia_setkey_dec()
457 *RK++ = *SK++; in mbedtls_camellia_setkey_dec()
460 SK -= 2; in mbedtls_camellia_setkey_dec()
[all …]
Ddes.c265 T = *SK++ ^ (X); \
271 T = *SK++ ^ (((X) << 28) | ((X) >> 4)); \
399 void mbedtls_des_setkey( uint32_t SK[32], const unsigned char key[MBEDTLS_DES_KEY_SIZE] ) in mbedtls_des_setkey()
442 *SK++ = ((X << 4) & 0x24000000) | ((X << 28) & 0x10000000) in mbedtls_des_setkey()
454 *SK++ = ((X << 15) & 0x20000000) | ((X << 17) & 0x10000000) in mbedtls_des_setkey()
610 uint32_t X, Y, T, *SK; in mbedtls_des_crypt_ecb() local
612 SK = ctx->sk; in mbedtls_des_crypt_ecb()
704 uint32_t X, Y, T, *SK; in mbedtls_des3_crypt_ecb() local
706 SK = ctx->sk; in mbedtls_des3_crypt_ecb()
Daes.c650 uint32_t *SK; in mbedtls_aes_setkey_dec() local
682 SK = cty.rk + cty.nr * 4; in mbedtls_aes_setkey_dec()
684 *RK++ = *SK++; in mbedtls_aes_setkey_dec()
685 *RK++ = *SK++; in mbedtls_aes_setkey_dec()
686 *RK++ = *SK++; in mbedtls_aes_setkey_dec()
687 *RK++ = *SK++; in mbedtls_aes_setkey_dec()
689 for( i = ctx->nr - 1, SK -= 8; i > 0; i--, SK -= 8 ) in mbedtls_aes_setkey_dec()
691 for( j = 0; j < 4; j++, SK++ ) in mbedtls_aes_setkey_dec()
693 *RK++ = AES_RT0( FSb[ MBEDTLS_BYTE_0( *SK ) ] ) ^ in mbedtls_aes_setkey_dec()
694 AES_RT1( FSb[ MBEDTLS_BYTE_1( *SK ) ] ) ^ in mbedtls_aes_setkey_dec()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUTargetObjectFile.cpp33 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
37 SK = SectionKind::getMetadata(); in getExplicitSectionGlobal()
39 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DComdat.h44 SelectionKind getSelectionKind() const { return SK; } in getSelectionKind()
45 void setSelectionKind(SelectionKind Val) { SK = Val; } in setSelectionKind()
57 SelectionKind SK = Any; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DComdat.cpp22 Comdat::Comdat(Comdat &&C) : Name(C.Name), SK(C.SK) {} in Comdat()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Linker/
DLinkModules.cpp73 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/
DSanitizerStats.cpp42 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/
DYAMLParser.cpp801 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()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DSanitizerStats.h37 void create(IRBuilder<> &B, SanitizerStatKind SK);
/third_party/flutter/skia/site/dev/chrome/
Dblink.md31 Such code suppressions should be given a name with the form SK\_IGNORE\_xxx\_FIX.
78 Title: "Remove code suppression SK\_IGNORE\_xxx\_FIX\."
79 Comment: "Code suppression SK\_IGNORE\_xxx\_FIX rebaselined with Blink revision
/third_party/skia/site/docs/dev/chrome/
Dblink.md36 Such code suppressions should be given a name with the form SK\_IGNORE\_xxx\_FIX.
83 Title: "Remove code suppression SK\_IGNORE\_xxx\_FIX\."
84 Comment: "Code suppression SK\_IGNORE\_xxx\_FIX rebaselined with Blink revision
/third_party/skia/site/docs/dev/tools/
Dsk.md2 title: 'SK CLI Tool'
3 linkTitle: 'SK CLI Tool'
/third_party/flutter/skia/third_party/externals/icu/source/data/region/
Dfa_AF.txt83 SK{"سلواکیا"}
Dyi.txt190 SK{"סלאוואַקיי"}
Dzgh.txt187 SK{"ⵙⵍⵓⴼⴰⴽⵢⴰ"}
/third_party/skia/third_party/externals/icu/source/data/region/
Dfa_AF.txt83 SK{"سلواکیا"}
/third_party/mbedtls/include/mbedtls/
Ddes.h344 void mbedtls_des_setkey( uint32_t SK[32],
/third_party/icu/icu4c/source/data/region/
Dfa_AF.txt83 SK{"سلواکیا"}
/third_party/NuttX/drivers/usbdev/gadget/
Df_mass_storage.h128 #define SK(x) ((uint8_t) ((x) >> 16)) /* Sense Key byte, etc. */ macro
/third_party/eudev/src/cdrom_id/
Dcdrom_id.c102 #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()

12345678910>>...28