/third_party/glslang/Test/ |
D | hlsl.gatherRGBA.offsetarray.dx10.frag | 28 uniform int2 o2; 40 float4 txval001 = g_tTex2df4a . GatherRed(g_sSamp, c3, o2); 41 int4 txval011 = g_tTex2di4a . GatherRed(g_sSamp, c3, o2); 42 uint4 txval021 = g_tTex2du4a . GatherRed(g_sSamp, c3, o2); 44 float4 txval004 = g_tTex2df4a . GatherRed(g_sSamp, c3, o2, o2, o2, o2); 45 int4 txval014 = g_tTex2di4a . GatherRed(g_sSamp, c3, o2, o2, o2, o2); 46 uint4 txval024 = g_tTex2du4a . GatherRed(g_sSamp, c3, o2, o2, o2, o2); 48 // float4 txval00s = g_tTex2df4a . GatherRed(g_sSamp, c3, o2, status); 49 // int4 txval01s = g_tTex2di4a . GatherRed(g_sSamp, c3, o2, status); 50 // uint4 txval02s = g_tTex2du4a . GatherRed(g_sSamp, c3, o2, status); [all …]
|
D | hlsl.gatherRGBA.offset.dx10.frag | 34 uniform int2 o2; 46 float4 txval001 = g_tTex2df4 . GatherRed(g_sSamp, c2, o2); 47 int4 txval011 = g_tTex2di4 . GatherRed(g_sSamp, c2, o2); 48 uint4 txval021 = g_tTex2du4 . GatherRed(g_sSamp, c2, o2); 50 float4 txval004 = g_tTex2df4 . GatherRed(g_sSamp, c2, o2, o2, o2, o2); 51 int4 txval014 = g_tTex2di4 . GatherRed(g_sSamp, c2, o2, o2, o2, o2); 52 uint4 txval024 = g_tTex2du4 . GatherRed(g_sSamp, c2, o2, o2, o2, o2); 54 // float4 txval00s = g_tTex2df4 . GatherRed(g_sSamp, c2, o2, status); 55 // int4 txval01s = g_tTex2di4 . GatherRed(g_sSamp, c2, o2, status); 56 // uint4 txval02s = g_tTex2du4 . GatherRed(g_sSamp, c2, o2, status); [all …]
|
D | hlsl.gathercmpRGBA.offsetarray.dx10.frag | 27 uniform int2 o2; 39 float4 txval401 = g_tTex2df4a . GatherCmp(g_sSampCmp, c3, 0.75, o2); 40 int4 txval411 = g_tTex2di4a . GatherCmp(g_sSampCmp, c3, 0.75, o2); 41 uint4 txval421 = g_tTex2du4a . GatherCmp(g_sSampCmp, c3, 0.75, o2); 43 float4 txval001 = g_tTex2df4a . GatherCmpRed(g_sSampCmp, c3, 0.75, o2); 44 int4 txval011 = g_tTex2di4a . GatherCmpRed(g_sSampCmp, c3, 0.75, o2); 45 uint4 txval021 = g_tTex2du4a . GatherCmpRed(g_sSampCmp, c3, 0.75, o2); 47 float4 txval004 = g_tTex2df4a . GatherCmpRed(g_sSampCmp, c3, 0.75, o2, o2, o2, o2); 48 int4 txval014 = g_tTex2di4a . GatherCmpRed(g_sSampCmp, c3, 0.75, o2, o2, o2, o2); 49 uint4 txval024 = g_tTex2du4a . GatherCmpRed(g_sSampCmp, c3, 0.75, o2, o2, o2, o2); [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | callChain.js | 8 declare const o2: undefined | { b: (...args: any[]) => number }; 9 o2?.b(); 10 o2?.b(1); 11 o2?.b(...[1, 2]); 12 o2?.b(1, ...[2, 3], 4); 13 o2?.["b"](); 14 o2?.["b"](1); 15 o2?.["b"](...[1, 2]); 16 o2?.["b"](1, ...[2, 3], 4); 41 o2?.b()!.toString; [all …]
|
D | elementAccessChain.js | 5 declare const o2: undefined | { b: { c: string } }; 6 o2?.["b"].c; 7 o2?.b["c"]; 28 o2?.["b"]!.c; 29 o2?.["b"]!["c"]; 30 o2?.["b"]!.c!; 31 o2?.["b"]!["c"]!; 37 o2 === null || o2 === void 0 ? void 0 : o2["b"].c; 38 o2 === null || o2 === void 0 ? void 0 : o2.b["c"]; 49 o2 === null || o2 === void 0 ? void 0 : o2["b"].c; [all …]
|
D | callChain.types | 33 declare const o2: undefined | { b: (...args: any[]) => number }; 34 >o2 : { b: (...args: any[]) => number; } | undefined 38 o2?.b(); 39 >o2?.b() : number | undefined 40 >o2?.b : ((...args: any[]) => number) | undefined 41 >o2 : { b: (...args: any[]) => number; } | undefined 44 o2?.b(1); 45 >o2?.b(1) : number | undefined 46 >o2?.b : ((...args: any[]) => number) | undefined 47 >o2 : { b: (...args: any[]) => number; } | undefined [all …]
|
D | callChain.symbols | 18 declare const o2: undefined | { b: (...args: any[]) => number }; 19 >o2 : Symbol(o2, Decl(callChain.ts, 6, 13)) 23 o2?.b(); 24 >o2?.b : Symbol(b, Decl(callChain.ts, 6, 31)) 25 >o2 : Symbol(o2, Decl(callChain.ts, 6, 13)) 28 o2?.b(1); 29 >o2?.b : Symbol(b, Decl(callChain.ts, 6, 31)) 30 >o2 : Symbol(o2, Decl(callChain.ts, 6, 13)) 33 o2?.b(...[1, 2]); 34 >o2?.b : Symbol(b, Decl(callChain.ts, 6, 31)) [all …]
|
D | implicitIndexSignatures.js | 20 let o2: { a: number, b: number }; 22 const v2 = getStringIndexValue(o2); 27 let o2: { a: string, b: string }; 29 const v2 = getStringIndexValue(o2); 34 let o2: { a: number, b: string }; 36 const v2 = getStringIndexValue(o2); 41 let o2: { 0: string, 1: string, count: number }; 43 const v2 = getStringIndexValue(o2); 45 const v4 = getNumberIndexValue(o2); 74 var o2; [all …]
|
D | elementAccessChain.types | 11 declare const o2: undefined | { b: { c: string } }; 12 >o2 : { b: { c: string;}; } | undefined 16 o2?.["b"].c; 17 >o2?.["b"].c : string | undefined 18 >o2?.["b"] : { c: string; } | undefined 19 >o2 : { b: { c: string; }; } | undefined 23 o2?.b["c"]; 24 >o2?.b["c"] : string | undefined 25 >o2?.b : { c: string; } | undefined 26 >o2 : { b: { c: string; }; } | undefined [all …]
|
D | propertyAccessChain.js | 5 declare const o2: undefined | { b: { c: string } }; 6 o2?.b.c; 25 o2?.b!.c; 26 o2?.b!.c!; 32 o2 === null || o2 === void 0 ? void 0 : o2.b.c; 40 o2 === null || o2 === void 0 ? void 0 : o2.b.c; 41 o2 === null || o2 === void 0 ? void 0 : o2.b.c;
|
D | elementAccessChain.symbols | 9 declare const o2: undefined | { b: { c: string } }; 10 >o2 : Symbol(o2, Decl(elementAccessChain.ts, 3, 13)) 14 o2?.["b"].c; 15 >o2?.["b"].c : Symbol(c, Decl(elementAccessChain.ts, 3, 36)) 16 >o2 : Symbol(o2, Decl(elementAccessChain.ts, 3, 13)) 19 o2?.b["c"]; 20 >o2?.b : Symbol(b, Decl(elementAccessChain.ts, 3, 31)) 21 >o2 : Symbol(o2, Decl(elementAccessChain.ts, 3, 13)) 110 o2?.["b"]!.c; 111 >o2?.["b"]!.c : Symbol(c, Decl(elementAccessChain.ts, 3, 36)) [all …]
|
D | elementAccessChain.2.js | 5 declare const o2: undefined | { b: { c: string } }; 6 o2?.["b"].c; 7 o2?.b["c"]; 17 o2 === null || o2 === void 0 ? void 0 : o2["b"].c; 18 o2 === null || o2 === void 0 ? void 0 : o2.b["c"];
|
D | implicitIndexSignatures.types | 79 let o2: { a: number, b: number }; 80 >o2 : { a: number; b: number; } 90 const v2 = getStringIndexValue(o2); 92 >getStringIndexValue(o2) : number 94 >o2 : { a: number; b: number; } 108 let o2: { a: string, b: string }; 109 >o2 : { a: string; b: string; } 119 const v2 = getStringIndexValue(o2); 121 >getStringIndexValue(o2) : string 123 >o2 : { a: string; b: string; } [all …]
|
D | propertyAccessChain.types | 11 declare const o2: undefined | { b: { c: string } }; 12 >o2 : { b: { c: string;}; } | undefined 16 o2?.b.c; 17 >o2?.b.c : string | undefined 18 >o2?.b : { c: string; } | undefined 19 >o2 : { b: { c: string; }; } | undefined 93 o2?.b!.c; 94 >o2?.b!.c : string | undefined 95 >o2?.b! : { c: string; } | undefined 96 >o2?.b : { c: string; } | undefined [all …]
|
D | elementAccessChain.2.types | 11 declare const o2: undefined | { b: { c: string } }; 12 >o2 : { b: { c: string;}; } 16 o2?.["b"].c; 17 >o2?.["b"].c : string 18 >o2?.["b"] : { c: string; } 19 >o2 : { b: { c: string; }; } 23 o2?.b["c"]; 24 >o2?.b["c"] : string 25 >o2?.b : { c: string; } 26 >o2 : { b: { c: string; }; }
|
D | propertyAccessChain.symbols | 11 declare const o2: undefined | { b: { c: string } }; 12 >o2 : Symbol(o2, Decl(propertyAccessChain.ts, 3, 13)) 16 o2?.b.c; 17 >o2?.b.c : Symbol(c, Decl(propertyAccessChain.ts, 3, 36)) 18 >o2?.b : Symbol(b, Decl(propertyAccessChain.ts, 3, 31)) 19 >o2 : Symbol(o2, Decl(propertyAccessChain.ts, 3, 13)) 89 o2?.b!.c; 90 >o2?.b!.c : Symbol(c, Decl(propertyAccessChain.ts, 3, 36)) 91 >o2?.b : Symbol(b, Decl(propertyAccessChain.ts, 3, 31)) 92 >o2 : Symbol(o2, Decl(propertyAccessChain.ts, 3, 13)) [all …]
|
D | implicitIndexSignatures.symbols | 71 let o2: { a: number, b: number }; 72 >o2 : Symbol(o2, Decl(implicitIndexSignatures.ts, 18, 7)) 81 const v2 = getStringIndexValue(o2); 84 >o2 : Symbol(o2, Decl(implicitIndexSignatures.ts, 18, 7)) 95 let o2: { a: string, b: string }; 96 >o2 : Symbol(o2, Decl(implicitIndexSignatures.ts, 25, 7)) 105 const v2 = getStringIndexValue(o2); 108 >o2 : Symbol(o2, Decl(implicitIndexSignatures.ts, 25, 7)) 119 let o2: { a: number, b: string }; 120 >o2 : Symbol(o2, Decl(implicitIndexSignatures.ts, 32, 7)) [all …]
|
/third_party/libexif/libexif/olympus/ |
D | exif-mnote-data-olympus.c | 103 size_t i, o, s, doff, base = 0, o2 = 6 + 2; in exif_mnote_data_olympus_save() local 146 o2 += 4; in exif_mnote_data_olympus_save() 180 o2 += 2 + 8; in exif_mnote_data_olympus_save() 184 exif_set_long (*buf + o2 + 2 + n->count * 12, n->order, 0); in exif_mnote_data_olympus_save() 191 exif_set_short (*buf + o2, n->order, (ExifShort) n->count); in exif_mnote_data_olympus_save() 192 o2 += 2; in exif_mnote_data_olympus_save() 196 o = o2 + i * 12; in exif_mnote_data_olympus_save() 243 size_t i, tcount, o, o2, datao = 6, base = 0; in exif_mnote_data_olympus_load() local 250 o2 = 6 + n->offset; /* Start of interesting data */ in exif_mnote_data_olympus_load() 251 if (CHECKOVERFLOW(o2,buf_size,10)) { in exif_mnote_data_olympus_load() [all …]
|
/third_party/python/Doc/c-api/ |
D | number.rst | 18 .. c:function:: PyObject* PyNumber_Add(PyObject *o1, PyObject *o2) 20 Returns the result of adding *o1* and *o2*, or ``NULL`` on failure. This is the 21 equivalent of the Python expression ``o1 + o2``. 24 .. c:function:: PyObject* PyNumber_Subtract(PyObject *o1, PyObject *o2) 26 Returns the result of subtracting *o2* from *o1*, or ``NULL`` on failure. This is 27 the equivalent of the Python expression ``o1 - o2``. 30 .. c:function:: PyObject* PyNumber_Multiply(PyObject *o1, PyObject *o2) 32 Returns the result of multiplying *o1* and *o2*, or ``NULL`` on failure. This is 33 the equivalent of the Python expression ``o1 * o2``. 36 .. c:function:: PyObject* PyNumber_MatrixMultiply(PyObject *o1, PyObject *o2) [all …]
|
/third_party/node/deps/openssl/openssl/crypto/bn/asm/ |
D | sparcv9a-mont.pl | 301 ldx [%sp+$bias+$frame+16],%o2 316 add %o7,%o2,%o2 320 srlx %o2,16,%o7 322 add %o7,%o3,%o3 ! %o3.%o2[0..15].%o1[0..15].%o0[0..15] 327 !and %o2,$mask,%o2 329 !sllx %o2,32,%o2 332 !or %o2,%o0,%o0 388 ldx [%sp+$bias+$frame+16],%o2 403 add %o7,%o2,%o2 407 srlx %o2,16,%o7 [all …]
|
/third_party/openssl/crypto/bn/asm/ |
D | sparcv9a-mont.pl | 301 ldx [%sp+$bias+$frame+16],%o2 316 add %o7,%o2,%o2 320 srlx %o2,16,%o7 322 add %o7,%o3,%o3 ! %o3.%o2[0..15].%o1[0..15].%o0[0..15] 327 !and %o2,$mask,%o2 329 !sllx %o2,32,%o2 332 !or %o2,%o0,%o0 388 ldx [%sp+$bias+$frame+16],%o2 403 add %o7,%o2,%o2 407 srlx %o2,16,%o7 [all …]
|
/third_party/python/Include/ |
D | abstract.h | 422 PyAPI_FUNC(PyObject *) PyNumber_Add(PyObject *o1, PyObject *o2); 427 PyAPI_FUNC(PyObject *) PyNumber_Subtract(PyObject *o1, PyObject *o2); 432 PyAPI_FUNC(PyObject *) PyNumber_Multiply(PyObject *o1, PyObject *o2); 436 PyAPI_FUNC(PyObject *) PyNumber_MatrixMultiply(PyObject *o1, PyObject *o2); 443 PyAPI_FUNC(PyObject *) PyNumber_FloorDivide(PyObject *o1, PyObject *o2); 449 PyAPI_FUNC(PyObject *) PyNumber_TrueDivide(PyObject *o1, PyObject *o2); 454 PyAPI_FUNC(PyObject *) PyNumber_Remainder(PyObject *o1, PyObject *o2); 461 PyAPI_FUNC(PyObject *) PyNumber_Divmod(PyObject *o1, PyObject *o2); 467 PyAPI_FUNC(PyObject *) PyNumber_Power(PyObject *o1, PyObject *o2, 493 PyAPI_FUNC(PyObject *) PyNumber_Lshift(PyObject *o1, PyObject *o2); [all …]
|
/third_party/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/ |
D | callChain.ts | 9 declare const o2: undefined | { b: (...args: any[]) => number }; constant 10 o2?.b(); 11 o2?.b(1); 12 o2?.b(...[1, 2]); 13 o2?.b(1, ...[2, 3], 4); 14 o2?.["b"](); 15 o2?.["b"](1); 16 o2?.["b"](...[1, 2]); 17 o2?.["b"](1, ...[2, 3], 4); 42 o2?.b()!.toString; [all …]
|
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
D | sparcv9_modes.pl | 98 ldx [$inp + 16], %o2 103 srlx %o2, $iright, %o2 104 or %o2, %o1, %o1 208 ldx [$inp + 16], %o2 213 srlx %o2, $iright, %o2 214 or %o2, %o1, %o1 317 ldx [$inp + 16], %o2 322 srlx %o2, $iright, %o2 323 or %o2, %o1, %o1 325 xor %g4, %o0, %o2 ! ^= rk[0] [all …]
|
/third_party/openssl/crypto/perlasm/ |
D | sparcv9_modes.pl | 98 ldx [$inp + 16], %o2 103 srlx %o2, $iright, %o2 104 or %o2, %o1, %o1 208 ldx [$inp + 16], %o2 213 srlx %o2, $iright, %o2 214 or %o2, %o1, %o1 317 ldx [$inp + 16], %o2 322 srlx %o2, $iright, %o2 323 or %o2, %o1, %o1 325 xor %g4, %o0, %o2 ! ^= rk[0] [all …]
|