Home
last modified time | relevance | path

Searched refs:arith (Results 1 – 25 of 184) sorted by relevance

12345678

/third_party/protobuf/js/binary/
Darith.js53 jspb.arith.UInt64 = function(lo, hi) {
73 jspb.arith.UInt64.prototype.cmp = function(other) {
88 jspb.arith.UInt64.prototype.rightShift = function() {
91 return new jspb.arith.UInt64(lo >>> 0, hi >>> 0);
99 jspb.arith.UInt64.prototype.leftShift = function() {
102 return new jspb.arith.UInt64(lo >>> 0, hi >>> 0);
110 jspb.arith.UInt64.prototype.msb = function() {
119 jspb.arith.UInt64.prototype.lsb = function() {
128 jspb.arith.UInt64.prototype.zero = function() {
138 jspb.arith.UInt64.prototype.add = function(other) {
[all …]
Darith_test.js48 var a = new jspb.arith.UInt64(1234, 5678);
49 var b = new jspb.arith.UInt64(1234, 5678);
81 var a = new jspb.arith.UInt64(1, 0);
118 var a = new jspb.arith.UInt64(/* lo = */ 0x89abcdef,
120 var b = new jspb.arith.UInt64(/* lo = */ 0xff52ab91,
169 var a = new jspb.arith.UInt64(loValues[i], hiValues[j]);
170 var b = new jspb.arith.UInt64(loValues[j], hiValues[i]);
202 var c = jspb.arith.UInt64.mul32x32(a, b);
231 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
272 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
[all …]
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnvfx_fragprog.c231 #define arith(s,o,d,m,s0,s1,s2) \ macro
244 struct nvfx_insn insn = arith(0, MOV, none.reg, NVFX_FP_MASK_X, src, none, none); in nv40_fp_if()
489 … nvfx_fp_emit(fpc, arith(0, ADD, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), addend, none)); in nvfx_fragprog_parse_instruction()
495 … nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none)); in nvfx_fragprog_parse_instruction()
505 … nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none)); in nvfx_fragprog_parse_instruction()
515 … nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none)); in nvfx_fragprog_parse_instruction()
538 nvfx_fp_emit(fpc, arith(sat, ADD, dst, mask, src[0], src[1], none)); in nvfx_fragprog_parse_instruction()
542 nvfx_fp_emit(fpc, arith(0, FLR, tmp.reg, mask, neg(src[0]), none, none)); in nvfx_fragprog_parse_instruction()
543 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, neg(tmp), none, none)); in nvfx_fragprog_parse_instruction()
546 insn = arith(0, MOV, none.reg, mask, src[0], none, none); in nvfx_fragprog_parse_instruction()
[all …]
Dnvfx_vertprog.c117 #define arith(s,t,o,d,m,s0,s1,s2) \ macro
498 nvfx_vp_emit(vpc, arith(0, VEC, MOV, src[i].reg, NVFX_VP_MASK_ALL, in nvfx_vertprog_parse_instruction()
509 nvfx_vp_emit(vpc, arith(0, VEC, MOV, src[i].reg, NVFX_VP_MASK_ALL, in nvfx_vertprog_parse_instruction()
520 nvfx_vp_emit(vpc, arith(0, VEC, MOV, src[i].reg, NVFX_VP_MASK_ALL, in nvfx_vertprog_parse_instruction()
555 nvfx_vp_emit(vpc, arith(sat, VEC, ADD, dst, mask, src[0], none, src[1])); in nvfx_vertprog_parse_instruction()
558 nvfx_vp_emit(vpc, arith(0, VEC, ARL, dst, mask, src[0], none, none)); in nvfx_vertprog_parse_instruction()
562 nvfx_vp_emit(vpc, arith(0, VEC, FLR, tmp.reg, mask, neg(src[0]), none, none)); in nvfx_vertprog_parse_instruction()
563 nvfx_vp_emit(vpc, arith(sat, VEC, MOV, dst, mask, neg(tmp), none, none)); in nvfx_vertprog_parse_instruction()
566 insn = arith(0, VEC, MOV, none.reg, mask, src[0], none, none); in nvfx_vertprog_parse_instruction()
570 insn = arith(sat, VEC, MOV, dst, mask, src[2], none, none); in nvfx_vertprog_parse_instruction()
[all …]
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Darith_test.js49 var a = new jspb.arith.UInt64(1234, 5678);
50 var b = new jspb.arith.UInt64(1234, 5678);
82 var a = new jspb.arith.UInt64(1, 0);
119 var a = new jspb.arith.UInt64(/* lo = */ 0x89abcdef,
121 var b = new jspb.arith.UInt64(/* lo = */ 0xff52ab91,
170 var a = new jspb.arith.UInt64(loValues[i], hiValues[j]);
171 var b = new jspb.arith.UInt64(loValues[j], hiValues[i]);
203 var c = jspb.arith.UInt64.mul32x32(a, b);
232 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
273 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
[all …]
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Darith_test.js49 var a = new jspb.arith.UInt64(1234, 5678);
50 var b = new jspb.arith.UInt64(1234, 5678);
82 var a = new jspb.arith.UInt64(1, 0);
119 var a = new jspb.arith.UInt64(/* lo = */ 0x89abcdef,
121 var b = new jspb.arith.UInt64(/* lo = */ 0xff52ab91,
170 var a = new jspb.arith.UInt64(loValues[i], hiValues[j]);
171 var b = new jspb.arith.UInt64(loValues[j], hiValues[i]);
203 var c = jspb.arith.UInt64.mul32x32(a, b);
232 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
273 var a = new jspb.arith.UInt64(testData[i][0], testData[i][1]);
[all …]
/third_party/glslang/Test/
Dglsl.450.subgroup.vert42 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
43 subgroupMul(f4); // ERROR, extension not enabled (arith)
44 subgroupMin(f4); // ERROR, extension not enabled (arith)
45 subgroupMax(f4); // ERROR, extension not enabled (arith)
46 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
47 subgroupOr(ballot); // ERROR, extension not enabled (arith)
48 subgroupXor(ballot); // ERROR, extension not enabled (arith)
49 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
50 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.460.subgroup.rgen43 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
44 subgroupMul(f4); // ERROR, extension not enabled (arith)
45 subgroupMin(f4); // ERROR, extension not enabled (arith)
46 subgroupMax(f4); // ERROR, extension not enabled (arith)
47 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
48 subgroupOr(ballot); // ERROR, extension not enabled (arith)
49 subgroupXor(ballot); // ERROR, extension not enabled (arith)
50 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
52 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.460.subgroup.rahit43 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
44 subgroupMul(f4); // ERROR, extension not enabled (arith)
45 subgroupMin(f4); // ERROR, extension not enabled (arith)
46 subgroupMax(f4); // ERROR, extension not enabled (arith)
47 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
48 subgroupOr(ballot); // ERROR, extension not enabled (arith)
49 subgroupXor(ballot); // ERROR, extension not enabled (arith)
50 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
52 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.450.subgroup.tesc42 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
43 subgroupMul(f4); // ERROR, extension not enabled (arith)
44 subgroupMin(f4); // ERROR, extension not enabled (arith)
45 subgroupMax(f4); // ERROR, extension not enabled (arith)
46 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
47 subgroupOr(ballot); // ERROR, extension not enabled (arith)
48 subgroupXor(ballot); // ERROR, extension not enabled (arith)
49 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
50 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.450.subgroup.geom42 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
43 subgroupMul(f4); // ERROR, extension not enabled (arith)
44 subgroupMin(f4); // ERROR, extension not enabled (arith)
45 subgroupMax(f4); // ERROR, extension not enabled (arith)
46 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
47 subgroupOr(ballot); // ERROR, extension not enabled (arith)
48 subgroupXor(ballot); // ERROR, extension not enabled (arith)
49 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
50 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.460.subgroup.rmiss44 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
45 subgroupMul(f4); // ERROR, extension not enabled (arith)
46 subgroupMin(f4); // ERROR, extension not enabled (arith)
47 subgroupMax(f4); // ERROR, extension not enabled (arith)
48 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
49 subgroupOr(ballot); // ERROR, extension not enabled (arith)
50 subgroupXor(ballot); // ERROR, extension not enabled (arith)
51 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
52 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
53 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.450.subgroupBasic.comp42 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
43 subgroupMul(f4); // ERROR, extension not enabled (arith)
44 subgroupMin(f4); // ERROR, extension not enabled (arith)
45 subgroupMax(f4); // ERROR, extension not enabled (arith)
46 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
47 subgroupOr(ballot); // ERROR, extension not enabled (arith)
48 subgroupXor(ballot); // ERROR, extension not enabled (arith)
49 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
50 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.450.subgroup.frag42 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
43 subgroupMul(f4); // ERROR, extension not enabled (arith)
44 subgroupMin(f4); // ERROR, extension not enabled (arith)
45 subgroupMax(f4); // ERROR, extension not enabled (arith)
46 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
47 subgroupOr(ballot); // ERROR, extension not enabled (arith)
48 subgroupXor(ballot); // ERROR, extension not enabled (arith)
49 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
50 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.460.subgroup.rcall43 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
44 subgroupMul(f4); // ERROR, extension not enabled (arith)
45 subgroupMin(f4); // ERROR, extension not enabled (arith)
46 subgroupMax(f4); // ERROR, extension not enabled (arith)
47 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
48 subgroupOr(ballot); // ERROR, extension not enabled (arith)
49 subgroupXor(ballot); // ERROR, extension not enabled (arith)
50 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
52 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.450.subgroup.tese42 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
43 subgroupMul(f4); // ERROR, extension not enabled (arith)
44 subgroupMin(f4); // ERROR, extension not enabled (arith)
45 subgroupMax(f4); // ERROR, extension not enabled (arith)
46 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
47 subgroupOr(ballot); // ERROR, extension not enabled (arith)
48 subgroupXor(ballot); // ERROR, extension not enabled (arith)
49 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
50 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.460.subgroup.rint44 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
45 subgroupMul(f4); // ERROR, extension not enabled (arith)
46 subgroupMin(f4); // ERROR, extension not enabled (arith)
47 subgroupMax(f4); // ERROR, extension not enabled (arith)
48 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
49 subgroupOr(ballot); // ERROR, extension not enabled (arith)
50 subgroupXor(ballot); // ERROR, extension not enabled (arith)
51 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
52 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
53 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.460.subgroup.task42 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
43 subgroupMul(f4); // ERROR, extension not enabled (arith)
44 subgroupMin(f4); // ERROR, extension not enabled (arith)
45 subgroupMax(f4); // ERROR, extension not enabled (arith)
46 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
47 subgroupOr(ballot); // ERROR, extension not enabled (arith)
48 subgroupXor(ballot); // ERROR, extension not enabled (arith)
49 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
50 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.460.subgroup.rchit43 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
44 subgroupMul(f4); // ERROR, extension not enabled (arith)
45 subgroupMin(f4); // ERROR, extension not enabled (arith)
46 subgroupMax(f4); // ERROR, extension not enabled (arith)
47 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
48 subgroupOr(ballot); // ERROR, extension not enabled (arith)
49 subgroupXor(ballot); // ERROR, extension not enabled (arith)
50 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
52 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
Dglsl.460.subgroup.mesh42 result = subgroupAdd(f4); // ERROR, extension not enabled (arith)
43 subgroupMul(f4); // ERROR, extension not enabled (arith)
44 subgroupMin(f4); // ERROR, extension not enabled (arith)
45 subgroupMax(f4); // ERROR, extension not enabled (arith)
46 subgroupAnd(ballot); // ERROR, extension not enabled (arith)
47 subgroupOr(ballot); // ERROR, extension not enabled (arith)
48 subgroupXor(ballot); // ERROR, extension not enabled (arith)
49 subgroupInclusiveAdd(f4); // ERROR, extension not enabled (arith)
50 subgroupInclusiveMul(f4); // ERROR, extension not enabled (arith)
51 subgroupInclusiveMin(f4); // ERROR, extension not enabled (arith)
[all …]
/third_party/mksh/
Dexpr.c83 bool arith; member
105 evaluate(const char *expr, mksh_ari_t *rval, int error_ok, bool arith) in evaluate() argument
112 ret = v_evaluate(&v, expr, error_ok, arith); in evaluate()
122 bool arith) in v_evaluate() argument
133 curstate.arith = arith; in v_evaluate()
160 if (es->arith && es->natural) in v_evaluate()
163 setint_v(vp, v, es->arith); in v_evaluate()
179 es->arith = false; in evalerr()
249 setint_v(vasn, vl, es->arith); in do_ppmm()
541 setint_v(vasn, vr, es->arith); in evalexpr()
[all …]
/third_party/icu/icu4c/source/
DBUILD.gn245 "-Wpointer-arith",
246 "-Wpointer-arith",
322 "-Wpointer-arith",
383 "-Wpointer-arith",
417 "-Wpointer-arith",
438 "-Wpointer-arith",
459 "-Wpointer-arith",
480 "-Wpointer-arith",
501 "-Wpointer-arith",
529 "-Wpointer-arith",
[all …]
/third_party/musl/libc-test/src/common/
DBUILD.gn35 "-Werror=pointer-arith",
71 "-Werror=pointer-arith",
/third_party/iptables/libiptc/
DBUILD.gn33 "-Wno-pointer-arith",
63 "-Wno-pointer-arith",
/third_party/libdrm/
DAndroid.common.mk15 -Wno-pointer-arith \

12345678