/third_party/libphonenumber/resources/carrier/ko/ |
D | 82.txt | 15 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
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() 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/mbedtls/library/ |
D | camellia.c | 422 uint32_t *SK; in mbedtls_camellia_setkey_dec() local 435 SK = cty.rk + 24 * 2 + 8 * idx * 2; in mbedtls_camellia_setkey_dec() 437 *RK++ = *SK++; in mbedtls_camellia_setkey_dec() 438 *RK++ = *SK++; in mbedtls_camellia_setkey_dec() 439 *RK++ = *SK++; in mbedtls_camellia_setkey_dec() 440 *RK++ = *SK++; in mbedtls_camellia_setkey_dec() 442 for (i = 22 + 8 * idx, SK -= 6; i > 0; i--, SK -= 4) { in mbedtls_camellia_setkey_dec() 443 *RK++ = *SK++; in mbedtls_camellia_setkey_dec() 444 *RK++ = *SK++; in mbedtls_camellia_setkey_dec() 447 SK -= 2; in mbedtls_camellia_setkey_dec() [all …]
|
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() 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()
|
D | aes.c | 670 uint32_t *SK; in mbedtls_aes_setkey_dec() local 702 SK = cty.buf + cty.rk_offset + cty.nr * 4; in mbedtls_aes_setkey_dec() 704 *RK++ = *SK++; in mbedtls_aes_setkey_dec() 705 *RK++ = *SK++; in mbedtls_aes_setkey_dec() 706 *RK++ = *SK++; in mbedtls_aes_setkey_dec() 707 *RK++ = *SK++; in mbedtls_aes_setkey_dec() 709 for (i = ctx->nr - 1, SK -= 8; i > 0; i--, SK -= 8) { in mbedtls_aes_setkey_dec() 710 for (j = 0; j < 4; j++, SK++) { in mbedtls_aes_setkey_dec() 711 *RK++ = AES_RT0(FSb[MBEDTLS_BYTE_0(*SK)]) ^ in mbedtls_aes_setkey_dec() 712 AES_RT1(FSb[MBEDTLS_BYTE_1(*SK)]) ^ in mbedtls_aes_setkey_dec() [all …]
|
/third_party/lwip/src/netif/ppp/polarssl/ |
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() 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUTargetObjectFile.cpp | 33 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/ |
D | Comdat.h | 44 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/ |
D | Comdat.cpp | 22 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/ |
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/ |
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/ |
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() [all …]
|
/third_party/skia/site/docs/dev/chrome/ |
D | blink.md | 36 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/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | SanitizerStats.h | 37 void create(IRBuilder<> &B, SanitizerStatKind SK);
|
/third_party/skia/site/docs/dev/tools/ |
D | sk.md | 2 title: 'SK CLI Tool' 3 linkTitle: 'SK CLI Tool'
|
/third_party/skia/third_party/externals/icu/source/data/region/ |
D | fa_AF.txt | 83 SK{"سلواکیا"}
|
D | yi.txt | 190 SK{"סלאוואַקיי"}
|
D | shi.txt | 185 SK{"ⵙⵍⵓⴼⴰⴽⵢⴰ"}
|
D | zgh.txt | 187 SK{"ⵙⵍⵓⴼⴰⴽⵢⴰ"}
|
/third_party/mbedtls/include/mbedtls/ |
D | des.h | 378 void mbedtls_des_setkey(uint32_t SK[32],
|
/third_party/icu/icu4c/source/data/region/ |
D | fa_AF.txt | 83 SK{"سلواکیا"}
|
D | yi.txt | 190 SK{"סלאוואַקיי"}
|
D | shi.txt | 185 SK{"ⵙⵍⵓⴼⴰⴽⵢⴰ"}
|
D | zgh.txt | 187 SK{"ⵙⵍⵓⴼⴰⴽⵢⴰ"}
|
/third_party/NuttX/drivers/usbdev/gadget/ |
D | f_mass_storage.h | 128 #define SK(x) ((uint8_t) ((x) >> 16)) /* Sense Key byte, etc. */ macro
|