/third_party/libwebsockets/lib/misc/ |
D | ieeehalfprecision.c | 91 uint16_t hs, he, hm; in lws_singles2halfp() local 138 hm = (uint16_t) 0u; // Set mantissa to zero in lws_singles2halfp() 141 hm = (uint16_t) (xm >> (14 - hes)); // Mantissa in lws_singles2halfp() 145 hm = (uint16_t)(hm + 1u); in lws_singles2halfp() 148 *hp = hs | hm; in lws_singles2halfp() 154 hm = (uint16_t)(xm >> 13); // Mantissa in lws_singles2halfp() 158 *hp = (uint16_t)((hs | he | hm) + (uint16_t)1u); in lws_singles2halfp() 160 *hp = hs | he | hm; // No rounding in lws_singles2halfp() 166 uint16_t hs, he, hm; in lws_halfp2singles() local 179 hm = h & 0x03FFu; // Pick off mantissa bits in lws_halfp2singles() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | objectTypeHidingMembersOfExtendedObject.types | 54 var r1c = r1b['hm']; // should be 'Object' 56 >r1b['hm'] : any 58 >'hm' : "hm" 60 var r1d = c['hm']; // should be 'any' 62 >c['hm'] : any 64 >'hm' : "hm" 93 var r2c = r2b['hm']; // should be 'Object' 95 >r2b['hm'] : any 97 >'hm' : "hm" 99 var r2d = i['hm']; // should be 'any' [all …]
|
D | extendNumberInterface.types | 22 var b: string = x.doOtherStuff('hm'); 24 >x.doOtherStuff('hm') : "hm" 28 >'hm' : "hm" 37 var d: string = x['doOtherStuff']('hm'); 39 >x['doOtherStuff']('hm') : "hm" 43 >'hm' : "hm"
|
D | extendStringInterface.types | 22 var b: string = x.doOtherStuff('hm'); 24 >x.doOtherStuff('hm') : "hm" 28 >'hm' : "hm" 37 var d: string = x['doOtherStuff']('hm'); 39 >x['doOtherStuff']('hm') : "hm" 43 >'hm' : "hm"
|
D | extendBooleanInterface.types | 22 var b: string = x.doOtherStuff('hm'); 24 >x.doOtherStuff('hm') : "hm" 28 >'hm' : "hm" 37 var d: string = x['doOtherStuff']('hm'); 39 >x['doOtherStuff']('hm') : "hm" 43 >'hm' : "hm"
|
D | primitiveConstraints1.types | 7 foo1<string, number>('hm', 1); // no error 8 >foo1<string, number>('hm', 1) : void 10 >'hm' : "hm" 18 foo2<number, string>(1, 'hm'); // error 19 >foo2<number, string>(1, 'hm') : void 22 >'hm' : "hm"
|
D | overloadOnConstInCallback1.types | 27 var hm = "hm"; 28 >hm : string 29 >"hm" : "hm" 31 callback(hm); 32 >callback(hm) : number 34 >hm : string
|
D | genericCallWithObjectTypeArgsAndStringIndexer.types | 51 var d: Date = r2['hm']; // ok 53 >r2['hm'] : T 55 >'hm' : "hm" 72 var d: Date = r2['hm']; // ok 74 >r2['hm'] : T 76 >'hm' : "hm" 79 //var u: U = r2['hm']; // ok 85 // var d: Date = r2['hm']; // ok 87 // //var u: U = r2['hm']; // ok
|
D | overloadOnConstInCallback1.symbols | 23 var hm = "hm"; 24 >hm : Symbol(hm, Decl(overloadOnConstInCallback1.ts, 5, 11)) 26 callback(hm); 28 >hm : Symbol(hm, Decl(overloadOnConstInCallback1.ts, 5, 11))
|
D | typeParameterAsTypeParameterConstraintTransitively.types | 65 foo(a, b, { foo: 1, bar: '', hm: true }); 66 >foo(a, b, { foo: 1, bar: '', hm: true }) : { foo: number; bar: string; hm: boolean; } 70 >{ foo: 1, bar: '', hm: true } : { foo: number; bar: string; hm: true; } 75 >hm : true 110 foo(b, b, { foo: 1, bar: '', hm: '' }); 111 >foo(b, b, { foo: 1, bar: '', hm: '' }) : { foo: number; bar: string; hm: string; } 115 >{ foo: 1, bar: '', hm: '' } : { foo: number; bar: string; hm: string; } 120 >hm : string
|
D | overloadOnConstNoAnyImplementation.types | 30 var hm = 'hm'; 31 >hm : string 32 >'hm' : "hm" 34 cb(hm); 35 >cb(hm) : number 37 >hm : string
|
D | overloadOnConstNoStringImplementation.types | 30 var hm = 'hm'; 31 >hm : string 32 >'hm' : "hm" 34 cb(hm); // should this work without a string definition? 35 >cb(hm) : number 37 >hm : string
|
D | overloadOnConstNoStringImplementation2.types | 35 var hm = "hm"; 36 >hm : string 37 >"hm" : "hm" 39 callback(hm); 40 >callback(hm) : number 42 >hm : string
|
D | overloadOnConstNoAnyImplementation2.types | 35 var hm = "hm"; 36 >hm : string 37 >"hm" : "hm" 39 callback(hm); 40 >callback(hm) : number 42 >hm : string
|
D | overloadOnConstNoAnyImplementation.symbols | 26 var hm = 'hm'; 27 >hm : Symbol(hm, Decl(overloadOnConstNoAnyImplementation.ts, 5, 7)) 29 cb(hm); 31 >hm : Symbol(hm, Decl(overloadOnConstNoAnyImplementation.ts, 5, 7))
|
D | overloadOnConstInCallback1.js | 7 var hm = "hm"; 8 callback(hm); 19 var hm = "hm"; 20 callback(hm);
|
D | overloadOnConstNoStringImplementation.symbols | 26 var hm = 'hm'; 27 >hm : Symbol(hm, Decl(overloadOnConstNoStringImplementation.ts, 5, 7)) 29 cb(hm); // should this work without a string definition? 31 >hm : Symbol(hm, Decl(overloadOnConstNoStringImplementation.ts, 5, 7))
|
D | objectTypeWithConstructSignatureHidingMembersOfExtendedFunction.types | 54 var r1e = i['hm']; // should be Object 56 >i['hm'] : error 58 >'hm' : "hm" 103 var r2e = x['hm']; // should be Object 105 >x['hm'] : error 107 >'hm' : "hm"
|
D | objectTypeWithCallSignatureHidingMembersOfExtendedFunction.types | 57 var r1e = i['hm']; // should be Object 59 >i['hm'] : error 61 >'hm' : "hm" 106 var r2e = x['hm']; // should be Object 108 >x['hm'] : error 110 >'hm' : "hm"
|
D | overloadOnConstNoStringImplementation.js | 7 var hm = 'hm'; 8 cb(hm); // should this work without a string definition? 22 var hm = 'hm'; 23 cb(hm); // should this work without a string definition?
|
D | overloadOnConstNoAnyImplementation.js | 7 var hm = 'hm'; 8 cb(hm); 22 var hm = 'hm'; 23 cb(hm);
|
D | overloadOnConstNoAnyImplementation2.symbols | 33 var hm = "hm"; 34 >hm : Symbol(hm, Decl(overloadOnConstNoAnyImplementation2.ts, 9, 11)) 36 callback(hm); 38 >hm : Symbol(hm, Decl(overloadOnConstNoAnyImplementation2.ts, 9, 11))
|
D | overloadOnConstNoStringImplementation2.js | 11 var hm = "hm"; 12 callback(hm); 30 var hm = "hm"; 31 callback(hm);
|
D | overloadOnConstNoAnyImplementation2.js | 11 var hm = "hm"; 12 callback(hm); 31 var hm = "hm"; 32 callback(hm);
|
/third_party/node/deps/npm/tap-snapshots/test/lib/commands/ |
D | view.js.test.cjs | 20 .tarball:,[36mhttp://hm.green.com/1.0.0.tgz[39m 49 .tarball:,[36mhttp://hm.green.com/1.0.0.tgz[39m 78 .tarball:,[36mhttp://hm.green.com/1.0.0.tgz[39m 100 .tarball:,[36mhttp://hm.blue.com/1.0.0.tgz[39m 116 .tarball:,[36mhttp://hm.blue.com/1.0.0.tgz[39m 132 .tarball:,[36mhttp://hm.blue.com/1.0.0.tgz[39m 158 "tarball": "http://hm.cyan.com/1.0.0.tgz", 181 [36mhttp://hm.orange.com[39m 184 .tarball:,[36mhttp://hm.orange.com/1.0.0.tgz[39m 198 .tarball:,[36mhttp://hm.pink.com/1.0.0.tgz[39m [all …]
|