/third_party/typescript/tests/baselines/reference/ |
D | everyTypeWithAnnotationAndInvalidInitializer.js | 17 function F2(x: number): boolean { return x < 42; } 24 export function F2(x: number): string { return x.toString(); } 32 export function F2(x: number): string { return x.toString(); } 47 var aFunction: typeof F = F2; 48 var anOtherFunction: (x: string) => number = F2; 53 var aFunctionInModule: typeof M.F2 = F2; 69 function F2(x) { return x < 42; } class 78 function F2(x) { return x.toString(); } class 79 M.F2 = F2; 89 function F2(x) { return x.toString(); } class [all …]
|
D | unionTypeCallSignatures4.types | 7 type F2 = (a: string, b?: string, c?: string) => void; 8 >F2 : (a: string, b?: string, c?: string) => void 29 var f12: F1 | F2; 30 >f12 : F1 | F2 34 >f12 : F1 | F2 39 >f12 : F1 | F2 45 >f12 : F1 | F2 71 var f1234: F1 | F2 | F3 | F4; 72 >f1234 : F1 | F2 | F3 | F4 76 >f1234 : F1 | F2 | F3 | F4 [all …]
|
D | intersectionsAndEmptyObjects.types | 67 const intersectDictionaries = <F1 extends Dictionary, F2 extends Dictionary>( 68 >intersectDictionaries : <F1 extends Dictionary, F2 extends Dictionary>(d1: F1, d2: F2) => F1 & F2 69 …F2 extends Dictionary>( d1: F1, d2: F2,): F1 & F2 => Object.assign({}, d1, d2) : <F1 extends Dic… 74 d2: F2, 75 >d2 : F2 77 ): F1 & F2 => Object.assign({}, d1, d2); 78 >Object.assign({}, d1, d2) : {} & F1 & F2 84 >d2 : F2 103 >intersectDictionaries : <F1 extends Dictionary, F2 extends Dictionary>(d1: F1, d2: F2) => F1 & F2 129 >intersectDictionaries : <F1 extends Dictionary, F2 extends Dictionary>(d1: F1, d2: F2) => F1 & F2 [all …]
|
D | everyTypeWithAnnotationAndInvalidInitializer.symbols | 41 function F2(x: number): boolean { return x < 42; } 42 >F2 : Symbol(F2, Decl(everyTypeWithAnnotationAndInvalidInitializer.ts, 14, 44)) 56 export function F2(x: number): string { return x.toString(); } 57 >F2 : Symbol(F2, Decl(everyTypeWithAnnotationAndInvalidInitializer.ts, 20, 5)) 74 export function F2(x: number): string { return x.toString(); } 75 >F2 : Symbol(F2, Decl(everyTypeWithAnnotationAndInvalidInitializer.ts, 28, 5)) 120 var aFunction: typeof F = F2; 123 >F2 : Symbol(F2, Decl(everyTypeWithAnnotationAndInvalidInitializer.ts, 14, 44)) 125 var anOtherFunction: (x: string) => number = F2; 128 >F2 : Symbol(F2, Decl(everyTypeWithAnnotationAndInvalidInitializer.ts, 14, 44)) [all …]
|
D | everyTypeWithAnnotationAndInvalidInitializer.types | 32 function F2(x: number): boolean { return x < 42; } 33 >F2 : (x: number) => boolean 49 export function F2(x: number): string { return x.toString(); } 50 >F2 : (x: number) => string 68 export function F2(x: number): string { return x.toString(); } 69 >F2 : (x: number) => string 120 var aFunction: typeof F = F2; 123 >F2 : (x: number) => boolean 125 var anOtherFunction: (x: string) => number = F2; 128 >F2 : (x: number) => boolean [all …]
|
D | unionTypeCallSignatures4.symbols | 7 type F2 = (a: string, b?: string, c?: string) => void; 8 >F2 : Symbol(F2, Decl(unionTypeCallSignatures4.ts, 0, 42)) 29 var f12: F1 | F2; 32 >F2 : Symbol(F2, Decl(unionTypeCallSignatures4.ts, 0, 42)) 57 var f1234: F1 | F2 | F3 | F4; 60 >F2 : Symbol(F2, Decl(unionTypeCallSignatures4.ts, 0, 42)) 73 var f12345: F1 | F2 | F3 | F4 | F5; 76 >F2 : Symbol(F2, Decl(unionTypeCallSignatures4.ts, 0, 42))
|
D | ifDoWhileStatements.js | 22 function F2(x: number): boolean { return x < 42; } 29 export function F2(x: number): string { return x.toString(); } 37 export function F2(x: number): string { return x.toString(); } 199 function F2(x) { return x < 42; } class 208 function F2(x) { return x.toString(); } class 209 M.F2 = F2; 219 function F2(x) { return x.toString(); } class 220 N.F2 = F2;
|
D | inferringClassStaticMembersFromAssignments.symbols | 26 export let F2 = function () { }; 27 >F2 : Symbol(F2, Decl(a.js, 9, 10), Decl(a.js, 9, 32)) 29 F2.staticProp = 0; 30 >F2.staticProp : Symbol(F2.staticProp, Decl(a.js, 9, 32)) 31 >F2 : Symbol(F2, Decl(a.js, 9, 10), Decl(a.js, 9, 32)) 32 >staticProp : Symbol(F2.staticProp, Decl(a.js, 9, 32)) 98 var n = a.F2.staticProp; 100 >a.F2.staticProp : Symbol(a.F2.staticProp, Decl(a.js, 9, 32)) 101 >a.F2 : Symbol(a.F2, Decl(a.js, 9, 10), Decl(a.js, 9, 32)) 103 >F2 : Symbol(a.F2, Decl(a.js, 9, 10), Decl(a.js, 9, 32)) [all …]
|
D | inferringClassStaticMembersFromAssignments.types | 33 export let F2 = function () { }; 34 >F2 : { (): void; staticProp: number; } 37 F2.staticProp = 0; 38 >F2.staticProp = 0 : 0 39 >F2.staticProp : number 40 >F2 : { (): void; staticProp: number; } 118 var n = a.F2.staticProp; 120 >a.F2.staticProp : number 121 >a.F2 : { (): void; staticProp: number; } 123 >F2 : { (): void; staticProp: number; }
|
D | everyTypeWithInitializer.js | 23 export function F2(x: number): string { return x.toString(); } 45 var aFunctionInModule = M.F2; 72 function F2(x) { return x.toString(); } class 73 M.F2 = F2; 89 var aFunctionInModule = M.F2;
|
D | throwStatements.js | 25 export function F2(x: number): string { return x.toString(); } 63 var aFunctionInModule = M.F2; 109 function F2(x) { return x.toString(); } class 110 M.F2 = F2; 143 var aFunctionInModule = M.F2;
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
D | md4-internal.c | 185 #define F2(x, y, z) ((x & y) | (x & z) | (y & z)) macro 236 MD4STEP(F2, a, b, c, d, in[ 0] + 0x5a827999, 3); in MD4Transform() 237 MD4STEP(F2, d, a, b, c, in[ 4] + 0x5a827999, 5); in MD4Transform() 238 MD4STEP(F2, c, d, a, b, in[ 8] + 0x5a827999, 9); in MD4Transform() 239 MD4STEP(F2, b, c, d, a, in[12] + 0x5a827999, 13); in MD4Transform() 240 MD4STEP(F2, a, b, c, d, in[ 1] + 0x5a827999, 3); in MD4Transform() 241 MD4STEP(F2, d, a, b, c, in[ 5] + 0x5a827999, 5); in MD4Transform() 242 MD4STEP(F2, c, d, a, b, in[ 9] + 0x5a827999, 9); in MD4Transform() 243 MD4STEP(F2, b, c, d, a, in[13] + 0x5a827999, 13); in MD4Transform() 244 MD4STEP(F2, a, b, c, d, in[ 2] + 0x5a827999, 3); in MD4Transform() [all …]
|
D | md5-internal.c | 195 #define F2(x, y, z) F1(z, x, y) macro 234 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5); in MD5Transform() 235 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9); in MD5Transform() 236 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14); in MD5Transform() 237 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20); in MD5Transform() 238 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5); in MD5Transform() 239 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9); in MD5Transform() 240 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14); in MD5Transform() 241 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20); in MD5Transform() 242 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); in MD5Transform() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
D | md4-internal.c | 185 #define F2(x, y, z) ((x & y) | (x & z) | (y & z)) macro 236 MD4STEP(F2, a, b, c, d, in[ 0] + 0x5a827999, 3); in MD4Transform() 237 MD4STEP(F2, d, a, b, c, in[ 4] + 0x5a827999, 5); in MD4Transform() 238 MD4STEP(F2, c, d, a, b, in[ 8] + 0x5a827999, 9); in MD4Transform() 239 MD4STEP(F2, b, c, d, a, in[12] + 0x5a827999, 13); in MD4Transform() 240 MD4STEP(F2, a, b, c, d, in[ 1] + 0x5a827999, 3); in MD4Transform() 241 MD4STEP(F2, d, a, b, c, in[ 5] + 0x5a827999, 5); in MD4Transform() 242 MD4STEP(F2, c, d, a, b, in[ 9] + 0x5a827999, 9); in MD4Transform() 243 MD4STEP(F2, b, c, d, a, in[13] + 0x5a827999, 13); in MD4Transform() 244 MD4STEP(F2, a, b, c, d, in[ 2] + 0x5a827999, 3); in MD4Transform() [all …]
|
D | md5-internal.c | 195 #define F2(x, y, z) F1(z, x, y) macro 234 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5); in MD5Transform() 235 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9); in MD5Transform() 236 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14); in MD5Transform() 237 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20); in MD5Transform() 238 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5); in MD5Transform() 239 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9); in MD5Transform() 240 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14); in MD5Transform() 241 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20); in MD5Transform() 242 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); in MD5Transform() [all …]
|
/third_party/typescript/tests/cases/conformance/statements/VariableStatements/ |
D | everyTypeWithAnnotationAndInvalidInitializer.ts | 16 function F2(x: number): boolean { return x < 42; } function 23 export function F2(x: number): string { return x.toString(); } function 31 export function F2(x: number): string { return x.toString(); } function 46 var aFunction: typeof F = F2; 47 var anOtherFunction: (x: string) => number = F2; 52 var aFunctionInModule: typeof M.F2 = F2;
|
/third_party/typescript/tests/baselines/reference/organizeImports/ |
D | MoveToTop_WithImportsFirst.exports.ts | 3 import { F1, F2 } from "lib"; 5 export { F1, F2 } from "lib"; 11 F1(); F2(); NS.F1(); 16 import { F1, F2 } from "lib"; 19 export { F1, F2 } from "lib"; 23 F1(); F2(); NS.F1();
|
D | MoveToTop_WithExportsFirst.exports.ts | 3 export { F1, F2 } from "lib"; 5 import { F1, F2 } from "lib"; 11 F1(); F2(); NS.F1(); 16 export { F1, F2 } from "lib"; 19 import { F1, F2 } from "lib"; 23 F1(); F2(); NS.F1();
|
D | CoalesceTrivia.ts | 3 /*A*/import /*B*/ { /*C*/ F2 /*D*/ } /*E*/ from /*F*/ "lib" /*G*/;/*H*/ //I 7 F2(); 11 /*A*/import /*B*/ { /*L*/ F1 /*M*/, /*C*/ F2 /*D*/ } /*E*/ from /*F*/ "lib" /*G*/; /*H*/ //I 14 F2();
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
D | md5.c | 50 #define F2(x, y, z) F1(z, x, y) macro 91 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5); in MD5Transform() 92 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9); in MD5Transform() 93 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14); in MD5Transform() 94 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20); in MD5Transform() 95 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5); in MD5Transform() 96 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9); in MD5Transform() 97 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14); in MD5Transform() 98 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20); in MD5Transform() 99 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); in MD5Transform() [all …]
|
/third_party/skia/third_party/externals/libjpeg-turbo/md5/ |
D | md5.c | 181 #define F2(x, y, z) F1(z, x, y) macro 220 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5); in MD5Transform() 221 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9); in MD5Transform() 222 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14); in MD5Transform() 223 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20); in MD5Transform() 224 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5); in MD5Transform() 225 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9); in MD5Transform() 226 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14); in MD5Transform() 227 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20); in MD5Transform() 228 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); in MD5Transform() [all …]
|
/third_party/gn/src/base/ |
D | md5.cc | 55 #define F2(x, y, z) F1(z, x, y) macro 93 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5); in MD5Transform() 94 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9); in MD5Transform() 95 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14); in MD5Transform() 96 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20); in MD5Transform() 97 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5); in MD5Transform() 98 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9); in MD5Transform() 99 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14); in MD5Transform() 100 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20); in MD5Transform() 101 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); in MD5Transform() [all …]
|
/third_party/openssl/crypto/cast/asm/ |
D | cast-586.pl | 39 @F2=("xor","sub","add"); 96 &E_CAST( 1,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 99 &E_CAST( 4,$S,$L,$R,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 102 &E_CAST( 7,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 105 &E_CAST(10,$S,$L,$R,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 112 &E_CAST(13,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 118 &E_CAST(13,$S,$L,$R,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 122 &E_CAST(10,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 125 &E_CAST( 7,$S,$L,$R,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 128 &E_CAST( 4,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); [all …]
|
/third_party/node/deps/openssl/openssl/crypto/cast/asm/ |
D | cast-586.pl | 39 @F2=("xor","sub","add"); 96 &E_CAST( 1,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 99 &E_CAST( 4,$S,$L,$R,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 102 &E_CAST( 7,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 105 &E_CAST(10,$S,$L,$R,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 112 &E_CAST(13,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 118 &E_CAST(13,$S,$L,$R,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 122 &E_CAST(10,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 125 &E_CAST( 7,$S,$L,$R,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); 128 &E_CAST( 4,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4); [all …]
|
/third_party/node/deps/v8/src/codegen/ia32/ |
D | sse-instr.h | 44 V(pslld, 66, 0F, F2) \ 76 V(sqrtsd, F2, 0F, 51) \ 77 V(addsd, F2, 0F, 58) \ 78 V(mulsd, F2, 0F, 59) \ 79 V(cvtsd2ss, F2, 0F, 5A) \ 80 V(subsd, F2, 0F, 5C) \ 81 V(minsd, F2, 0F, 5D) \ 82 V(divsd, F2, 0F, 5E) \ 83 V(maxsd, F2, 0F, 5F)
|