Home
last modified time | relevance | path

Searched refs:negate (Results 1 - 25 of 246) sorted by relevance

12345678910

/third_party/mesa3d/src/intel/compiler/
H A Dbrw_fs_saturate_propagation.cpp89 if (inst->src[0].negate) { in opt_saturate_propagation_local()
91 scan_inst->src[0].negate = !scan_inst->src[0].negate; in opt_saturate_propagation_local()
92 inst->src[0].negate = false; in opt_saturate_propagation_local()
99 scan_inst->src[i].negate = !scan_inst->src[i].negate; in opt_saturate_propagation_local()
102 inst->src[0].negate = false; in opt_saturate_propagation_local()
110 scan_inst->src[1].negate = !scan_inst->src[1].negate; in opt_saturate_propagation_local()
112 scan_inst->src[0].negate in opt_saturate_propagation_local()
[all...]
H A Dbrw_fs_cse.cpp118 operands_match(const fs_inst *a, const fs_inst *b, bool *negate) in operands_match() argument
128 bool xs0_negate = xs[0].negate; in operands_match()
130 : xs[1].negate; in operands_match()
131 bool ys0_negate = ys[0].negate; in operands_match()
133 : ys[1].negate; in operands_match()
137 xs[0].negate = false; in operands_match()
138 xs[1].negate = false; in operands_match()
139 ys[0].negate = false; in operands_match()
140 ys[1].negate = false; in operands_match()
147 xs[0].negate in operands_match()
174 instructions_match(fs_inst *a, fs_inst *b, bool *negate) instructions_match() argument
205 create_copy_instr(const fs_builder &bld, fs_inst *inst, fs_reg src, bool negate) create_copy_instr() argument
261 bool negate = false; opt_cse_local() local
337 bool negate; /* dummy */ opt_cse_local() local
[all...]
H A Dbrw_nir_opt_peephole_ffma.c71 uint8_t swizzle[4], bool *negate, bool *abs) in get_mul_for_src()
74 assert(src->src.is_ssa && !src->abs && !src->negate); in get_mul_for_src()
95 swizzle, negate, abs); in get_mul_for_src()
100 swizzle, negate, abs); in get_mul_for_src()
101 *negate = !*negate; in get_mul_for_src()
106 swizzle, negate, abs); in get_mul_for_src()
107 *negate = false; in get_mul_for_src()
193 bool negate, abs; in brw_nir_opt_peephole_ffma_instr() local
198 negate in brw_nir_opt_peephole_ffma_instr()
70 get_mul_for_src(nir_alu_src *src, unsigned num_components, uint8_t swizzle[4], bool *negate, bool *abs) get_mul_for_src() argument
[all...]
H A Dtest_fs_saturate_propagation.cpp228 dst0.negate = true; in TEST_F()
263 dst0.negate = true; in TEST_F()
287 EXPECT_TRUE(instruction(block0, 0)->src[0].negate); in TEST_F()
288 EXPECT_TRUE(instruction(block0, 0)->src[1].negate); in TEST_F()
301 dst0.negate = true; in TEST_F()
325 EXPECT_TRUE(instruction(block0, 0)->src[0].negate); in TEST_F()
339 dst0.negate = true; in TEST_F()
363 EXPECT_TRUE(instruction(block0, 0)->src[0].negate); in TEST_F()
366 EXPECT_FALSE(instruction(block0, 1)->src[0].negate); in TEST_F()
378 dst0.negate in TEST_F()
[all...]
H A Dbrw_fs_cmod_propagation.cpp64 bool negate; in cmod_propagate_cmp_to_add() local
75 negate = false; in cmod_propagate_cmp_to_add()
80 negate = true; in cmod_propagate_cmp_to_add()
123 negate ? brw_swap_cmod(inst->conditional_mod) in cmod_propagate_cmp_to_add()
260 !inst->src[0].negate)) in opt_cmod_propagation_local()
437 if (!inst->src[0].negate && in opt_cmod_propagation_local()
502 inst->src[0].negate ? brw_swap_cmod(inst->conditional_mod) in opt_cmod_propagation_local()
H A Dbrw_vec4_cmod_propagation.cpp77 !inst->src[0].negate)) in opt_cmod_propagation_local()
91 bool negate; in opt_cmod_propagation_local() local
108 negate = false; in opt_cmod_propagation_local()
113 negate = true; in opt_cmod_propagation_local()
132 negate ? brw_swap_cmod(inst->conditional_mod) in opt_cmod_propagation_local()
280 !inst->src[0].negate && in opt_cmod_propagation_local()
326 inst->src[0].negate ? brw_swap_cmod(inst->conditional_mod) in opt_cmod_propagation_local()
H A Dbrw_vec4_copy_propagation.cpp166 if (inst->src[arg].negate) { in try_constant_propagate()
349 bool has_source_modifiers = value.negate || value.abs; in try_copy_propagate()
398 if (value.negate && in try_copy_propagate()
437 value.negate = false; in try_copy_propagate()
440 if (inst->src[arg].negate) in try_copy_propagate()
441 value.negate = !value.negate; in try_copy_propagate()
/third_party/skia/third_party/externals/sfntly/cpp/tools/
H A Dutils.py20 def GetFontList(path, exts, negate=False):
22 # negate = False: files that match one of the extensions in exts.
23 # negate = True: files that match no extension in exts.
36 if negate != result:
41 def GetLevelList(path, max_level=1, negate=False):
43 # negate = False: files that are at most |max_level|s deep.
44 # negate = True: files that are more than |max_level|s deep.
52 if (not negate and level <= max_level) or (negate and level > max_level):
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/
H A Doption.js25 this.negate = false;
27 this.negate = this.long.startsWith('--no-');
237 return !this.required && !this.optional && !this.negate;
257 if (option.negate) {
284 return option.negate === (negativeValue === value);
/third_party/node/deps/minimatch/src/dist/cjs/
H A Dbrace-expressions.js49 let negate = false;
55 negate = true;
138 !negate) {
142 const sranges = '[' + (negate ? '^' : '') + rangesToString(ranges) + ']';
143 const snegs = '[' + (negate ? '' : '^') + rangesToString(negs) + ']';
/third_party/node/deps/npm/node_modules/minimatch/dist/cjs/
H A Dbrace-expressions.js49 let negate = false;
55 negate = true;
138 !negate) {
142 const sranges = '[' + (negate ? '^' : '') + rangesToString(ranges) + ']';
143 const snegs = '[' + (negate ? '' : '^') + rangesToString(negs) + ']';
/third_party/node/deps/minimatch/src/dist/mjs/
H A Dbrace-expressions.js46 let negate = false;
52 negate = true;
135 !negate) {
139 const sranges = '[' + (negate ? '^' : '') + rangesToString(ranges) + ']';
140 const snegs = '[' + (negate ? '' : '^') + rangesToString(negs) + ']';
/third_party/node/deps/npm/node_modules/minimatch/dist/mjs/
H A Dbrace-expressions.js46 let negate = false;
52 negate = true;
135 !negate) {
139 const sranges = '[' + (negate ? '^' : '') + rangesToString(ranges) + ']';
140 const snegs = '[' + (negate ? '' : '^') + rangesToString(negs) + ']';
/third_party/node/deps/npm/node_modules/@npmcli/map-workspaces/lib/
H A Dindex.js20 const negate = excl && excl[0].length % 2 === 1
21 results.push({ pattern, negate })
125 if (item.negate) {
178 // uses a pathname-keyed map in order to negate the exact items
184 patterns.push({ pattern: '**/node_modules/**', negate: true })
198 if (item.negate) {
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
H A Dlower.c150 alu->src[1].negate = !alu->src[1].negate; in ppir_lower_ddxy()
152 alu->src[0].negate = !alu->src[0].negate; in ppir_lower_ddxy()
292 alu->src[0].negate = false; in ppir_lower_abs()
300 /* Turn it into a mov and set the negate modifier */ in ppir_lower_neg()
305 alu->src[0].negate = !alu->src[0].negate; in ppir_lower_neg()
364 if (cond->src[0].negate || cond->src[0].absolute || in ppir_lower_branch_merge_condition()
365 cond->src[1].negate || con in ppir_lower_branch_merge_condition()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/
H A DDecimalQuantity_SimpleStorage.java252 decimal = decimal.negate(); in setToBigDecimal()
378 if (isNegative()) d = d.negate(); in roundToIncrement()
380 if (isNegative()) d = d.negate(); in roundToIncrement()
398 if (isNegative()) fallback = fallback.negate(); in roundToMagnitude()
400 if (isNegative()) fallback = fallback.negate(); in roundToMagnitude()
418 if (isNegative()) temp = temp.negate(); in roundToMagnitude()
420 if (isNegative()) temp = temp.negate(); in roundToMagnitude()
453 fallback = fallback.negate(); in multiplyBy()
458 public void negate() { in negate() method in DecimalQuantity_SimpleStorage
478 fallback = fallback.negate(); in divideBy()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/impl/number/
H A DDecimalQuantity_SimpleStorage.java255 decimal = decimal.negate(); in setToBigDecimal()
371 if (isNegative()) d = d.negate(); in roundToIncrement()
373 if (isNegative()) d = d.negate(); in roundToIncrement()
391 if (isNegative()) fallback = fallback.negate(); in roundToMagnitude()
393 if (isNegative()) fallback = fallback.negate(); in roundToMagnitude()
411 if (isNegative()) temp = temp.negate(); in roundToMagnitude()
413 if (isNegative()) temp = temp.negate(); in roundToMagnitude()
446 fallback = fallback.negate(); in multiplyBy()
451 public void negate() { in negate() method in DecimalQuantity_SimpleStorage
471 fallback = fallback.negate(); in divideBy()
[all...]
/third_party/python/Python/
H A Dpystrtod.c34 int negate = 0; in _Py_parse_inf_or_nan() local
38 negate = 1; in _Py_parse_inf_or_nan()
48 retval = _Py_dg_infinity(negate); in _Py_parse_inf_or_nan()
52 retval = _Py_dg_stdnan(negate); in _Py_parse_inf_or_nan()
69 int negate = 0; in _Py_parse_inf_or_nan() local
73 negate = 1; in _Py_parse_inf_or_nan()
83 retval = negate ? -Py_HUGE_VAL : Py_HUGE_VAL; in _Py_parse_inf_or_nan()
87 retval = negate ? -Py_NAN : Py_NAN; in _Py_parse_inf_or_nan()
174 int negate = 0; in _PyOS_ascii_strtod() local
203 negate in _PyOS_ascii_strtod()
[all...]
/third_party/protobuf/js/experimental/runtime/
H A Dint64.js62 return negate(-value, -value / TWO_PWR_32_DBL);
95 return (minus ? negate : Int64.fromBits)(lowBits, highBits);
314 int64 = negate(int64.getLowBits(), int64.getHighBits());
354 return (minus ? negate : Int64.fromBits)(lowBits, highBits);
363 const negate = (lowBits, highBits) => {
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_vec_to_movs.c76 mov->src[0].negate = vec->src[start_idx].negate; in insert_mov()
84 vec->src[i].negate == vec->src[start_idx].negate && in insert_mov()
98 !mov->src[0].abs && !mov->src[0].negate) { in insert_mov()
151 if (alu_src->abs || alu_src->negate) in try_coalesce()
H A Dnir_lower_to_source_mods.c45 /* If abs is set on the source, the negate goes away */ in alu_src_consume_negate()
47 src->negate = !src->negate; in alu_src_consume_negate()
122 if (parent->src[0].negate) in nir_lower_to_source_mods_block()
172 if (child_alu->src[0].negate || child_alu->src[0].abs) { in nir_lower_to_source_mods_block()
/third_party/skia/src/core/
H A DSkStrokerPriv.cpp93 after.negate(); in BluntJoiner()
116 before.negate(); in RoundJoiner()
117 after.negate(); in RoundJoiner()
141 // negate the dot since we're using normals instead of tangents in MiterJoiner()
162 before.negate(); in MiterJoiner()
163 after.negate(); in MiterJoiner()
195 mid.negate(); in MiterJoiner()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_alu.c157 static struct rc_src_register negate(struct rc_src_register reg) in negate() function
244 emit1(c, inst->Prev, RC_OPCODE_FRC, NULL, dst, negate(inst->U.I.SrcReg[0])); in transform_CEIL()
284 inst->U.I.SrcReg[0], negate(srcreg(RC_FILE_TEMPORARY, dst.Index))); in transform_FLR()
300 negate(srcreg(RC_FILE_TEMPORARY, dst.Index))); in transform_TRUNC()
302 negate(srcreg(RC_FILE_TEMPORARY, dst.Index)), srcreg(RC_FILE_TEMPORARY, dst.Index)); in transform_TRUNC()
360 negate(srcregswz(RC_FILE_CONSTANT, constant, constant_swizzle))); in transform_LIT()
377 negate(swizzle_xxxx(srctemp)), in transform_LIT()
396 negate(inst->U.I.SrcReg[0]), inst->U.I.SrcReg[2], inst->U.I.SrcReg[2]); in transform_LRP()
452 add_src, negate(frac_src)); in transform_ROUND()
467 emit2(c, inst->Prev, RC_OPCODE_ADD, NULL, dst, inst->U.I.SrcReg[0], negate(ins in transform_SEQ()
[all...]
/third_party/mesa3d/src/imagination/vulkan/pds/
H A Dpvr_pds_printer.c139 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp32()
149 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp32()
161 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp32()
246 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp64()
256 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp64()
268 instruction->IM ? instruction->src2->negate ? ">>" : "<<" : "<<", in pvr_pds_disassemble_instruction_sftlp64()
467 bra->srcc->negate ? "! " : "", in pvr_pds_disassemble_instruction_bra()
476 bra->srcc->negate ? "! " : "", in pvr_pds_disassemble_instruction_bra()
/third_party/typescript/tests/baselines/reference/
H A DjsFunctionWithPrototypeNoErrorTruncationNoCrash.js6 negate: function () {return this;},
24 negate: function () { return this; },

Completed in 13 milliseconds

12345678910