/third_party/typescript/tests/baselines/reference/ |
D | externModuleClobber.types | 2 declare module EM { 3 >EM : typeof EM 11 public getPosition() : EM.Position; 12 >getPosition : () => EM.Position 13 >EM : any 17 var x:EM.Position; 18 >x : EM.Position 19 >EM : any 21 var ec:EM.EC = new EM.EC(); 22 >ec : EM.EC [all …]
|
D | externModuleClobber.symbols | 2 declare module EM { 3 >EM : Symbol(EM, Decl(externModuleClobber.ts, 0, 0)) 11 public getPosition() : EM.Position; 13 >EM : Symbol(EM, Decl(externModuleClobber.ts, 0, 0)) 18 var x:EM.Position; 20 >EM : Symbol(EM, Decl(externModuleClobber.ts, 0, 0)) 21 >Position : Symbol(EM.Position, Decl(externModuleClobber.ts, 0, 19)) 23 var ec:EM.EC = new EM.EC(); 25 >EM : Symbol(EM, Decl(externModuleClobber.ts, 0, 0)) 26 >EC : Symbol(EM.EC, Decl(externModuleClobber.ts, 1, 26)) [all …]
|
D | externModuleClobber.js | 2 declare module EM { 6 public getPosition() : EM.Position; 10 var x:EM.Position; 11 var ec:EM.EC = new EM.EC(); 18 var ec = new EM.EC();
|
/third_party/openssl/crypto/rsa/ |
D | rsa_pss.c | 26 const EVP_MD *Hash, const unsigned char *EM, in RSA_verify_PKCS1_PSS() argument 29 return RSA_verify_PKCS1_PSS_mgf1(rsa, mHash, Hash, NULL, EM, sLen); in RSA_verify_PKCS1_PSS() 34 const unsigned char *EM, int sLen) in RSA_verify_PKCS1_PSS_mgf1() argument 69 if (EM[0] & (0xFF << MSBits)) { in RSA_verify_PKCS1_PSS_mgf1() 74 EM++; in RSA_verify_PKCS1_PSS_mgf1() 87 if (EM[emLen - 1] != 0xbc) { in RSA_verify_PKCS1_PSS_mgf1() 92 H = EM + maskedDBLen; in RSA_verify_PKCS1_PSS_mgf1() 101 DB[i] ^= EM[i]; in RSA_verify_PKCS1_PSS_mgf1() 138 int RSA_padding_add_PKCS1_PSS(RSA *rsa, unsigned char *EM, in RSA_padding_add_PKCS1_PSS() argument 142 return RSA_padding_add_PKCS1_PSS_mgf1(rsa, EM, mHash, Hash, NULL, sLen); in RSA_padding_add_PKCS1_PSS() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | externModuleClobber.ts | 1 declare module EM { 5 public getPosition() : EM.Position; 9 var x:EM.Position; 10 var ec:EM.EC = new EM.EC();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | RDFCopy.cpp | 40 bool CopyPropagation::interpretAsCopy(const MachineInstr *MI, EqualityMap &EM) { in interpretAsCopy() argument 54 EM.insert(std::make_pair(DstR, SrcR)); in interpretAsCopy() 63 void CopyPropagation::recordCopy(NodeAddr<StmtNode*> SA, EqualityMap &EM) { in recordCopy() argument 64 CopyMap.insert(std::make_pair(SA.Id, EM)); in recordCopy() 75 EqualityMap EM; in scanBlock() local 76 if (interpretAsCopy(SA.Addr->getCode(), EM)) in scanBlock() 77 recordCopy(SA, EM); in scanBlock() 143 EqualityMap &EM = FS->second; in run() local 146 auto FR = EM.find(DR); in run() 147 if (FR == EM.end()) in run()
|
D | RDFCopy.h | 40 virtual bool interpretAsCopy(const MachineInstr *MI, EqualityMap &EM); 52 void recordCopy(NodeAddr<StmtNode*> SA, EqualityMap &EM);
|
D | HexagonRDFOpt.cpp | 88 bool interpretAsCopy(const MachineInstr *MI, EqualityMap &EM) override; 112 bool HexagonCP::interpretAsCopy(const MachineInstr *MI, EqualityMap &EM) { in INITIALIZE_PASS_DEPENDENCY() 113 auto mapRegs = [&EM] (RegisterRef DstR, RegisterRef SrcR) -> void { in INITIALIZE_PASS_DEPENDENCY() 114 EM.insert(std::make_pair(DstR, SrcR)); in INITIALIZE_PASS_DEPENDENCY() 146 return CopyPropagation::interpretAsCopy(MI, EM); in INITIALIZE_PASS_DEPENDENCY()
|
/third_party/boringssl/src/decrepit/rsa/ |
D | rsa_decrepit.c | 88 int RSA_padding_add_PKCS1_PSS(const RSA *rsa, uint8_t *EM, const uint8_t *mHash, in RSA_padding_add_PKCS1_PSS() argument 90 return RSA_padding_add_PKCS1_PSS_mgf1(rsa, EM, mHash, Hash, NULL, sLen); in RSA_padding_add_PKCS1_PSS() 94 const EVP_MD *Hash, const uint8_t *EM, int sLen) { in RSA_verify_PKCS1_PSS() argument 95 return RSA_verify_PKCS1_PSS_mgf1(rsa, mHash, Hash, NULL, EM, sLen); in RSA_verify_PKCS1_PSS()
|
/third_party/libsnd/src/GSM610/ |
D | rpe.c | 120 int32_t EM ; /* xxx should be L_EM? */ in RPE_grid_selection() local 125 EM = 0 ; in RPE_grid_selection() 165 EM = L_result ; in RPE_grid_selection() 175 if (L_result > EM) in RPE_grid_selection() 177 EM = L_result ; in RPE_grid_selection() 188 if (L_result > EM) in RPE_grid_selection() 190 EM = L_result ; in RPE_grid_selection() 198 if (L_result > EM) in RPE_grid_selection() 200 EM = L_result ; in RPE_grid_selection()
|
/third_party/boringssl/src/crypto/fipsmodule/rsa/ |
D | padding.c | 488 const uint8_t *EM, int sLen) { in RSA_verify_PKCS1_PSS_mgf1() argument 520 if (EM[0] & (0xFF << MSBits)) { in RSA_verify_PKCS1_PSS_mgf1() 525 EM++; in RSA_verify_PKCS1_PSS_mgf1() 533 if (EM[emLen - 1] != 0xbc) { in RSA_verify_PKCS1_PSS_mgf1() 538 H = EM + maskedDBLen; in RSA_verify_PKCS1_PSS_mgf1() 548 DB[i] ^= EM[i]; in RSA_verify_PKCS1_PSS_mgf1() 585 int RSA_padding_add_PKCS1_PSS_mgf1(const RSA *rsa, unsigned char *EM, in RSA_padding_add_PKCS1_PSS_mgf1() argument 609 *EM++ = 0; in RSA_padding_add_PKCS1_PSS_mgf1() 650 H = EM + maskedDBLen; in RSA_padding_add_PKCS1_PSS_mgf1() 665 if (!PKCS1_MGF1(EM, maskedDBLen, H, hLen, mgf1Hash)) { in RSA_padding_add_PKCS1_PSS_mgf1() [all …]
|
/third_party/icu/icu4c/source/test/testdata/ |
D | LineBreakTest.txt | 33 × 0023 ÷ 2014 ÷ # × [0.3] NUMBER SIGN (AL) ÷ [999.0] EM DASH (B2) ÷ [0.3] 34 × 0023 × 0020 ÷ 2014 ÷ # × [0.3] NUMBER SIGN (AL) × [7.01] SPACE (SP) ÷ [18.0] EM DASH (B2) ÷ [0.3] 35 …4 ÷ # × [0.3] NUMBER SIGN (AL) × [9.0] COMBINING DIAERESIS (CM1_CM) ÷ [999.0] EM DASH (B2) ÷ [0.3] 36 …ER SIGN (AL) × [9.0] COMBINING DIAERESIS (CM1_CM) × [7.01] SPACE (SP) ÷ [18.0] EM DASH (B2) ÷ [0.3] 165 × 0023 ÷ 1F3FB ÷ # × [0.3] NUMBER SIGN (AL) ÷ [999.0] EMOJI MODIFIER FITZPATRICK TYPE-1-2 (EM) ÷ [… 166 …0.3] NUMBER SIGN (AL) × [7.01] SPACE (SP) ÷ [18.0] EMOJI MODIFIER FITZPATRICK TYPE-1-2 (EM) ÷ [0.3] 167 …AL) × [9.0] COMBINING DIAERESIS (CM1_CM) ÷ [999.0] EMOJI MODIFIER FITZPATRICK TYPE-1-2 (EM) ÷ [0.3] 168 …NG DIAERESIS (CM1_CM) × [7.01] SPACE (SP) ÷ [18.0] EMOJI MODIFIER FITZPATRICK TYPE-1-2 (EM) ÷ [0.3] 201 × 2014 ÷ 0023 ÷ # × [0.3] EM DASH (B2) ÷ [999.0] NUMBER SIGN (AL) ÷ [0.3] 202 × 2014 × 0020 ÷ 0023 ÷ # × [0.3] EM DASH (B2) × [7.01] SPACE (SP) ÷ [18.0] NUMBER SIGN (AL) ÷ [0.3] [all …]
|
/third_party/uboot/u-boot-2020.01/board/synopsys/emsdp/ |
D | README | 3 ARC EM Software Development Platform (AKA EMSDP) 8 The DesignWare ARC EM Software Development Platform is FPGA-bases platform 9 for rapid software development on the ARC EM family of processors. 12 versions of ARC EM CPUs. U-Boot is built to be run on the simplest
|
D | MAINTAINERS | 1 EM DEVELOPMENT KIT BOARD
|
/third_party/boringssl/src/include/openssl/ |
D | rsa.h | 421 const uint8_t *EM, int sLen); 435 OPENSSL_EXPORT int RSA_padding_add_PKCS1_PSS_mgf1(const RSA *rsa, uint8_t *EM, 595 OPENSSL_EXPORT int RSA_padding_add_PKCS1_PSS(const RSA *rsa, uint8_t *EM, 605 const EVP_MD *Hash, const uint8_t *EM,
|
/third_party/icu/icu4c/source/test/testdata/break_rules/ |
D | line.txt | 40 EM = [:LineBreak = EM:]; 187 LB23a.1: PR CM* (ID | EB | EM); 188 LB23a.2: (ID | EB | EM) CM* PO; 218 LB30b: EB CM* EM;
|
D | line_normal.txt | 42 EM = [:LineBreak = EM:]; 189 LB23a.1: PR CM* (ID | EB | EM); 190 LB23a.2: (ID | EB | EM) CM* PO; 220 LB30b: EB CM* EM;
|
D | line_cj.txt | 33 EM = [:LineBreak = EM:]; 187 LB23a.1: PR CM* (ID | EB | EM); 188 LB23a.2: (ID | EB | EM) CM* PO; 218 LB30b: EB CM* EM;
|
D | line_loose.txt | 40 EM = [:LineBreak = EM:]; 189 LB23a.1: PR CM* (ID | EB | EM); 190 LB23a.2: (ID | EB | EM) CM* PO; 220 LB30b: EB CM* EM;
|
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/test/rbbi/break_rules/ |
D | line.txt | 33 EM = [:LineBreak = EM:]; 180 LB23a.1: PR CM* (ID | EB | EM); 181 LB23a.2: (ID | EB | EM) CM* PO; 211 LB30b: EB CM* EM;
|
D | line_loose.txt | 40 EM = [:LineBreak = EM:]; 189 LB23a.1: PR CM* (ID | EB | EM); 190 LB23a.2: (ID | EB | EM) CM* PO; 220 LB30b: EB CM* EM;
|
D | line_normal.txt | 42 EM = [:LineBreak = EM:]; 189 LB23a.1: PR CM* (ID | EB | EM); 190 LB23a.2: (ID | EB | EM) CM* PO; 220 LB30b: EB CM* EM;
|
D | line_cj.txt | 33 EM = [:LineBreak = EM:]; 187 LB23a.1: PR CM* (ID | EB | EM); 188 LB23a.2: (ID | EB | EM) CM* PO; 218 LB30b: EB CM* EM;
|
/third_party/flutter/flutter/packages/flutter_localizations/lib/src/l10n/ |
D | cupertino_sv.arb | 9 "postMeridiemAbbreviation": "EM",
|
/third_party/flutter/skia/third_party/externals/icu/source/data/brkitr/rules/ |
D | line_normal.txt | 42 $EM = [:LineBreak = EM:]; 270 ($ID | $EB | $EM) $CM* $IN; 283 $PR $CM* ($ID | $EB | $EM); 284 ($ID | $EB | $EM) $CM* $PO; 335 $EB $CM* $EM;
|