/third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
H A D | aest4-sparcv9.pl | 134 movxtod %o5, %f2 142 aes_eround01 %f12, %f0, %f2, %f4 143 aes_eround23 %f14, %f0, %f2, %f2 147 aes_eround01 %f16, %f4, %f2, %f0 148 aes_eround23 %f18, %f4, %f2, %f2 155 aes_eround01 %f12, %f0, %f2, %f4 156 aes_eround23 %f14, %f0, %f2, %f2 [all...] |
H A D | aesfx-sparcv9.pl | 67 ldd [$inp + 8], %f2 71 fshiftorx %f0, %f2, %f14, %f0 72 fshiftorx %f2, %f4, %f14, %f2 79 fxor %f2, %f8, %f2 87 faesencx %f2, %f10, %f0 88 faesencx %f4, %f12, %f2 94 faesencx %f2, %f6, %f0 95 faesencx %f4, %f8, %f2 [all...] |
/third_party/openssl/crypto/aes/asm/ |
H A D | aest4-sparcv9.pl | 134 movxtod %o5, %f2 142 aes_eround01 %f12, %f0, %f2, %f4 143 aes_eround23 %f14, %f0, %f2, %f2 147 aes_eround01 %f16, %f4, %f2, %f0 148 aes_eround23 %f18, %f4, %f2, %f2 155 aes_eround01 %f12, %f0, %f2, %f4 156 aes_eround23 %f14, %f0, %f2, %f2 [all...] |
H A D | aesfx-sparcv9.pl | 67 ldd [$inp + 8], %f2 71 fshiftorx %f0, %f2, %f14, %f0 72 fshiftorx %f2, %f4, %f14, %f2 79 fxor %f2, %f8, %f2 87 faesencx %f2, %f10, %f0 88 faesencx %f4, %f12, %f2 94 faesencx %f2, %f6, %f0 95 faesencx %f4, %f8, %f2 [all...] |
/third_party/node/deps/openssl/openssl/crypto/camellia/asm/ |
H A D | cmllt4-sparcv9.pl | 106 movxtod %o5, %f2 115 camellia_f %f12, %f2, %f0, %f2 118 camellia_f %f14, %f0, %f2, %f0 120 camellia_f %f16, %f2, %f0, %f2 122 camellia_f %f18, %f0, %f2, %f0 124 camellia_f %f20, %f2, %f0, %f2 126 camellia_f %f22, %f0, %f2, [all...] |
/third_party/openssl/crypto/camellia/asm/ |
H A D | cmllt4-sparcv9.pl | 106 movxtod %o5, %f2 115 camellia_f %f12, %f2, %f0, %f2 118 camellia_f %f14, %f0, %f2, %f0 120 camellia_f %f16, %f2, %f0, %f2 122 camellia_f %f18, %f0, %f2, %f0 124 camellia_f %f20, %f2, %f0, %f2 126 camellia_f %f22, %f0, %f2, [all...] |
/third_party/pulseaudio/src/tests/ |
H A D | format-test.c | 36 pa_format_info *f1 = NULL, *f2 = NULL; in START_TEST() local 42 INIT(f1); INIT(f2); in START_TEST() 45 f2->encoding = PA_ENCODING_AC3_IEC61937; in START_TEST() 46 pa_format_info_set_prop_int(f2, PA_PROP_FORMAT_RATE, 44100); in START_TEST() 47 fail_unless(!pa_format_info_is_compatible(f1, f2)); in START_TEST() 50 REINIT(f1); REINIT(f2); in START_TEST() 53 f2->encoding = PA_ENCODING_AC3_IEC61937; in START_TEST() 54 pa_format_info_set_prop_int(f2, PA_PROP_FORMAT_RATE, 44100); in START_TEST() 55 fail_unless(pa_format_info_is_compatible(f1, f2)); in START_TEST() 56 fail_unless(pa_format_info_is_compatible(f2, f in START_TEST() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | objectLiteralFunctionArgContextualTyping.js | 7 function f2(args: I) { } function 9 f2({ hello: 1 }) // error 10 f2({ value: '' }) // missing toString satisfied by Object's member 11 f2({ value: '', what: 1 }) // missing toString satisfied by Object's member 12 f2({ toString: (s) => s }) // error, missing property value from ArgsString 13 f2({ toString: (s: string) => s }) // error, missing property value from ArgsString 14 f2({ value: '', toString: (s) => s.uhhh }) // error
17 function f2(args) { }
18 f2({ hello: 1 }); // error
19 f2({ valu [all...] |
H A D | objectLiteralFunctionArgContextualTyping2.js | 7 function f2(args: I2) { } function 9 f2({ hello: 1 }) 10 f2({ value: '' }) 11 f2({ value: '', what: 1 }) 12 f2({ toString: (s) => s }) 13 f2({ toString: (s: string) => s }) 14 f2({ value: '', toString: (s) => s.uhhh })
17 function f2(args) { }
18 f2({ hello: 1 });
19 f2({ valu [all...] |
H A D | strictFunctionTypesErrors.js | 6 declare let f2: (x: Object) => string; 10 f1 = f2; // Ok 14 f2 = f1; // Error 15 f2 = f3; // Error 16 f2 = f4; // Error 19 f3 = f2; // Ok 23 f4 = f2; // Ok 143 static f2(x: Dog): Animal { throw "wat"; }; 146 declare let f2: (cb: typeof Foo.f2) [all...] |
H A D | unionAndIntersectionInference2.js | 15 declare function f2<T>(x: T & { name: string }): T; 21 f2(a2); // string 22 f2(b2); // string[] 23 f2(c2); // never 24 f2(d2); // never 42 f2(a2); // string
43 f2(b2); // string[]
44 f2(c2); // never
45 f2(d2); // never
|
H A D | requiredInitializedParameter1.js | 3 function f2(a, b = 0, c = 0) { } function 8 f2(0, 1, 2); 13 f2(0, 1); 18 f2(0); 26 function f2(a, b, c) {
41 f2(0, 1, 2);
45 f2(0, 1);
49 f2(0);
|
H A D | nonNullableReduction.js | 7 function test<T>(f1: Transform1<T>, f2: Transform2<T>) { 9 f2?.("hello"); 16 function f2<T, U extends null | undefined>(x: T | U) { 24 function test(f1, f2) {
26 f2 === null || f2 === void 0 ? void 0 : f2("hello");
31 function f2(x) {
function
|
H A D | nonNullableReductionNonStrict.js | 7 function test<T>(f1: Transform1<T>, f2: Transform2<T>) { 9 f2?.("hello"); 16 function f2<T, U extends null | undefined>(x: T | U) { 23 function test(f1, f2) {
25 f2 === null || f2 === void 0 ? void 0 : f2("hello");
30 function f2(x) {
function
|
H A D | readonlyRestParameters.js | 5 f2(a, b); 15 function f2(...args: readonly [string, string]) { function 20 f2('abc', 'def'); 21 f2('abc', ...args); // Error 22 f2(...args); 44 f2(a, b);
56 function f2() {
65 f2('abc', 'def');
66 f2.apply(void 0, __spreadArray(['abc'], args, false)); // Error
67 f2 [all...] |
H A D | unionTypeCallSignatures2.js | 27 var f2: C | B | A; variable 28 var n2 = f2(42); // number 29 var s2 = f2("abc"); // number | string | boolean 30 var a2 = f2([true, false]); // boolean[] 44 var f2;
variable 45 var n2 = f2(42); // number
46 var s2 = f2("abc"); // number | string | boolean
47 var a2 = f2([true, false]); // boolean[]
|
H A D | strictFunctionTypes1.js | 2 declare function f1<T>(f1: (x: T) => void, f2: (x: T) => void): (x: T) => void; 3 declare function f2<T>(obj: T, f1: (x: T) => void, f2: (x: T) => void): T; 4 declare function f3<T>(obj: T, f1: (x: T) => void, f2: (f: (x: T) => void) => void): T; 8 declare function f4<T>(f1: Func<T>, f2: Func<T>): Func<T>; 15 const x2 = f2("abc", fo, fs); // "abc" 21 const x10 = f2(never, fo, fs); // string 56 var x2 = f2("abc", fo, fs); // "abc"
59 var x10 = f2(never, fo, fs); // string
71 declare function f1<T>(f1: (x: T) => void, f2 [all...] |
H A D | numberToString.js | 6 function f2(s:string):void { 10 f2(3); // error no coercion to string 11 f2(3+""); // ok + operator promotes 18 function f2(s) {
function 21 f2(3); // error no coercion to string
22 f2(3 + ""); // ok + operator promotes
|
H A D | genericsWithDuplicateTypeParameters1.js | 3 function f2<X, X>(a: X, b: X): X { return null; } 6 public f2<X, X>(a: X, b: X): X { return null; } 11 f2<X, X>(a: X, b: X): X; 16 b: function f2<X, X>(a: X, b: X): X { return null; } 21 function f2(a, b) { return null; }
function 26 C.prototype.f2 = function (a, b) { return null; };
31 b: function f2(a, b) { return null; }
|
/third_party/musl/porting/linux/user/src/stdio/ |
H A D | freopen.c | 17 FILE *f2; in freopen() local 31 f2 = fopen(filename, mode); in freopen() 32 if (!f2) goto fail; in freopen() 33 if (f2->fd == f->fd) { in freopen() 34 f2->fd = -1; /* avoid closing in fclose */ in freopen() 36 else if (__dup3(f2->fd, f->fd, fl&O_CLOEXEC)<0) { in freopen() 40 f->flags = (f->flags & F_PERM) | f2->flags; in freopen() 41 f->read = f2->read; in freopen() 42 f->readx = f2->readx; in freopen() 43 f->write = f2 in freopen() [all...] |
/third_party/musl/src/stdio/ |
H A D | freopen.c | 17 FILE *f2; in freopen() local 30 f2 = fopen(filename, mode); in freopen() 31 if (!f2) goto fail; in freopen() 32 if (f2->fd == f->fd) f2->fd = -1; /* avoid closing in fclose */ in freopen() 33 else if (__dup3(f2->fd, f->fd, fl&O_CLOEXEC)<0) goto fail2; in freopen() 35 f->flags = (f->flags & F_PERM) | f2->flags; in freopen() 36 f->read = f2->read; in freopen() 37 f->readx = f2->readx; in freopen() 38 f->write = f2 in freopen() [all...] |
/third_party/lame/libmp3lame/ |
H A D | fft.c | 84 FLOAT f0, f1, f2, f3; in fht() local 88 f2 = fi[k2] + fi[k3]; in fht() 89 fi[k2] = f0 - f2; in fht() 90 fi[0] = f0 + f2; in fht() 96 f2 = SQRT2 * gi[k2]; in fht() 97 gi[k2] = f0 - f2; in fht() 98 gi[0] = f0 + f2; in fht() 113 FLOAT a, b, g0, f0, f1, g1, f2, g2, f3, g3; in fht() local 123 f2 = fi[k2] + a; in fht() 126 b = s1 * f2 in fht() 207 FLOAT f0, f1, f2, f3, w; fft_short() local 261 FLOAT f0, f1, f2, f3, w; fft_long() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
H A D | sparcv9_modes.pl | 60 ldd [$ivec + 8], %f2 62 faligndata %f0, %f2, %f0 63 faligndata %f2, %f4, %f2 69 ld [$ivec + 8], %f2 112 fxor %f14, %f2, %f2 122 std %f2, [$out + 8] 129 st %f2, [$ivec + 8] 137 std %f2, [ [all...] |
/third_party/openssl/crypto/perlasm/ |
H A D | sparcv9_modes.pl | 60 ldd [$ivec + 8], %f2 62 faligndata %f0, %f2, %f0 63 faligndata %f2, %f4, %f2 69 ld [$ivec + 8], %f2 112 fxor %f14, %f2, %f2 122 std %f2, [$out + 8] 129 st %f2, [$ivec + 8] 137 std %f2, [ [all...] |
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_geometry_managers.py | 288 f2 = tkinter.Frame(t, width=30, height=60, bd=2, relief='raised') 290 return t, f, f2 293 t, f, f2 = self.create2() 294 self.assertEqual(f2.winfo_manager(), '') 298 % re.escape(str(f2))): 299 f2.place_configure(in_=f2) 300 self.assertEqual(f2.winfo_manager(), '') 302 f2.place_configure(in_='spam') 303 f2 [all...] |