HomeSort by relevance Sort by last modified time
    Searched defs:rhs (Results 151 - 175 of 1146) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/compiler/glsl/
loop_analysis.cpp 68 /* This catches the case where the variable is used in the RHS of an
323 * - All operands on the RHS of the assignment are also loop constants.
337 /* Process the RHS of the assignment. If all of the variables
340 ir_rvalue *const rhs = lv->first_assignment->rhs; local
341 if (all_expression_operands_are_loop_constant(rhs, ls->var_hash)) {
556 /* The RHS must be a binary expression.
558 ir_expression *const rhs = ir->rhs->as_expression(); local
559 if ((rhs == NULL
    [all...]
opt_copy_propagation_elements.cpp 58 * when making removals based on rhs.
76 acp_entry(ir_variable *lhs, ir_variable *rhs, int write_mask, int swizzle[4])
80 this->rhs = rhs;
86 ir_variable *rhs; member in class:__anon29235::acp_entry
141 void populate_acp(hash_table *lhs, hash_table *rhs)
149 hash_table_foreach(rhs, entry) {
256 * Replaces dereferences of ACP RHS variables with ACP LHS variables.
312 source[c] = entry->rhs;
514 /* removal of rhs entries *
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
strided_slice_op.cc 286 xla::ComputationDataHandle rhs = ctx->Input(4); variable
308 rhs = ctx->builder()->Rev(rhs, dimensions_to_reverse);
310 rhs = ctx->builder()->Reshape(rhs, slice_dims);
315 lhs = rhs;
318 lhs, rhs, ctx->builder()->ConstantR1<int64>(slice_begin));
  /external/tensorflow/tensorflow/compiler/xla/service/
dot_decomposer.cc 36 HloInstruction* rhs = dot->mutable_operand(1); local
38 const Shape& rhs_shape = rhs->shape();
41 // ShapeInference should guarantee that lhs/rhs batch dimensions match.
74 // Compute R3 and R3 shapes for rhs.
94 // Reshape lhs/rhs into R3.
98 HloInstruction::CreateReshape(rhs_shape_r3, rhs));
100 // Loop through batch size, slicing out required lhs/rhs to compute each Dot.
110 // Slice R3 shape from 'rhs' and reshape to R2.
117 // Transpose lhs/rhs (if needed).
133 // Compute Dot of lhs/rhs R2 slices
    [all...]
hlo_cost_analysis_test.cc 150 auto rhs = builder.Parameter(1, ShapeUtil::MakeShape(F32, {5, 30}), "rhs"); local
151 auto result = builder.Dot(lhs, rhs);
309 auto rhs = builder.Parameter(1, ShapeUtil::MakeShape(F32, {64, 64, 1, 1}), local
311 builder.Conv(lhs, rhs, {1, 1}, Padding::kSame);
322 auto rhs = local
324 builder.Dot(lhs, rhs);
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
elemental_ir_emitter.cc 200 const HloInstruction* rhs = op->operand(1); local
201 if (IsFPLiteralWithValue(rhs, .5)) {
207 IsFPLiteralWithValue(rhs, -.5)) {
247 llvm::Value* rhs) const {
248 return EmitLibdeviceMathCall("__nv_pow", {lhs, rhs}, {prim_type, prim_type},
253 PrimitiveType prim_type, llvm::Value* lhs, llvm::Value* rhs) const {
254 return EmitLibdeviceMathCall("__nv_atan2", {lhs, rhs}, {prim_type, prim_type},
  /external/tensorflow/tensorflow/compiler/xla/tests/
convolution_test.cc 108 auto rhs = builder.ConstantR4FromArray4D<T>(*arhs); local
109 auto conv = builder.Conv(lhs, rhs, {1, 1}, Padding::kValid);
params_test.cc 446 auto rhs = builder.GetTupleElement(input, 1); local
447 builder.Add(lhs, rhs);
  /external/toybox/toys/pending/
expr.c 154 void eval_op(struct op_def *o, struct value *ret, struct value *rhs)
164 case OR: if (is_false(ret)) *ret = *rhs; break;
165 case AND: if (is_false(ret) || is_false(rhs)) assign_int(ret, 0); break;
170 if (get_int(ret, &a) && get_int(rhs, &b)) { // both are ints
173 cmp = strcmp(s = get_str(ret), t = get_str(rhs));
175 if (rhs->s != t) free(t);
189 if (!get_int(ret, &a) || !get_int(rhs, &b))
204 re(s, t = get_str(rhs), ret);
206 if (rhs->s!=t) free(t);
228 // Evaluate RHS and apply operator until precedence is too low
229 struct value rhs; local
    [all...]
  /external/turbine/java/com/google/turbine/parse/
ConstExpressionParser.java 526 Tree.Expression rhs = expression(op.prec()); local
527 return new Tree.Assign(term1.position(), name, rhs);
551 Tree.Expression rhs = primary(false); local
552 if (rhs == null) {
555 return new Tree.TypeCast(position, new Tree.PrimTy(position, ImmutableList.of(), ty), rhs);
  /external/v8/src/ast/
ast-value-factory.cc 134 const AstRawString* rhs = static_cast<AstRawString*>(b); local
135 DCHECK_EQ(lhs->hash(), rhs->hash());
136 if (lhs->length() != rhs->length()) return false;
138 const unsigned char* r = rhs->raw_data();
139 size_t length = rhs->length();
141 if (rhs->is_one_byte()) {
151 if (rhs->is_one_byte()) {
  /external/v8/src/compiler/
typed-optimization.cc 201 Node* const rhs = NodeProperties::GetValueInput(input, 1); local
202 Type* const rhs_type = NodeProperties::GetType(rhs);
207 // rhs: unsigned32)): plain-number
211 // NumberToUint32(NumberDivide(lhs, rhs))
215 // {lhs} since {rhs} cannot be less than 1 (due to the
266 Node* const rhs = NodeProperties::GetValueInput(node, 1); local
268 Type* const rhs_type = NodeProperties::GetType(rhs);
  /external/v8/src/regexp/mips/
regexp-macro-assembler-mips.cc 441 Operand rhs = (c == 0) ? Operand(zero_reg) : Operand(c); local
442 BranchOrBacktrack(on_equal, eq, a0, rhs);
450 Operand rhs = (c == 0) ? Operand(zero_reg) : Operand(c); local
451 BranchOrBacktrack(on_not_equal, ne, a0, rhs);
    [all...]
  /external/v8/src/regexp/mips64/
regexp-macro-assembler-mips64.cc 471 Operand rhs = (c == 0) ? Operand(zero_reg) : Operand(c); local
472 BranchOrBacktrack(on_equal, eq, a0, rhs);
480 Operand rhs = (c == 0) ? Operand(zero_reg) : Operand(c); local
481 BranchOrBacktrack(on_not_equal, ne, a0, rhs);
    [all...]
  /external/v8/tools/clang/value_cleanup/
ListValueRewriter.cpp 120 const clang::Expr* rhs = op->getRHS()->IgnoreParenImpCasts(); local
121 const clang::CXXNewExpr* new_expr = clang::dyn_cast<clang::CXXNewExpr>(rhs);
  /external/wycheproof/java/com/google/security/wycheproof/
EcUtil.java 321 BigInteger rhs = x.multiply(x).add(ec.getA()).multiply(x).add(ec.getB()).mod(p); local
322 if (!lhs.equals(rhs)) {
355 // Compute rhs == x^3 + a x + b (mod p)
356 BigInteger rhs = x.multiply(x).add(ec.getA()).multiply(x).add(ec.getB()).mod(p); local
357 BigInteger y = modSqrt(rhs, p);
399 // Compute rhs == x^3 + a x + b (mod p)
400 BigInteger rhs = x.multiply(x).add(ec.getA()).multiply(x).add(ec.getB()).mod(p); local
401 BigInteger y = modSqrt(rhs, p);
  /frameworks/base/libs/hwui/
LayerBuilder.cpp 130 const BakedOpState* rhs = mOps[0]; local
132 if (!MathUtils::areEqual(lhs->alpha, rhs->alpha)) return false;
136 if (lhs->roundRectClipState != rhs->roundRectClipState) return false;
140 rhs->computedState.localProjectionPathMask)
  /frameworks/base/lowpan/java/android/net/lowpan/
LowpanBeaconInfo.java 182 LowpanBeaconInfo rhs = (LowpanBeaconInfo) obj; local
183 return mIdentity.equals(rhs.mIdentity)
184 && Arrays.equals(mBeaconAddress, rhs.mBeaconAddress)
185 && mRssi == rhs.mRssi
186 && mLqi == rhs.mLqi
187 && mFlags.equals(rhs.mFlags);
LowpanIdentity.java 205 LowpanIdentity rhs = (LowpanIdentity) obj; local
206 return Arrays.equals(mRawName, rhs.mRawName)
207 && Arrays.equals(mXpanid, rhs.mXpanid)
208 && mType.equals(rhs.mType)
209 && mPanid == rhs.mPanid
210 && mChannel == rhs.mChannel;
  /frameworks/base/services/core/java/com/android/server/display/
DisplayTransformManager.java 158 float[] rhs = mColorMatrix.valueAt(i); local
159 Matrix.multiplyMM(result[(i + 1) % 2], 0, result[i % 2], 0, rhs, 0);
  /frameworks/native/include/private/ui/
RegionHelper.h 44 static const uint32_t RHS = 0x6; // 0b110
46 op_nand = LHS & ~RHS,
47 op_and = LHS & RHS,
48 op_or = LHS | RHS,
49 op_xor = LHS ^ RHS
57 inline region(const region& rhs)
58 : rects(rhs.rects), count(rhs.count), dx(rhs.dx), dy(rhs.dy) {
164 region rhs; member in class:android::region_operator::Spanner
225 region rhs; member in class:android::region_operator::SpannerInner
    [all...]
  /frameworks/native/opengl/libs/EGL/
egl_object.h 66 LocalRef(const LocalRef* rhs) = delete; member in class:android::egl_object_t::LocalRef
69 explicit LocalRef(egl_object_t* rhs);
88 egl_object_t::LocalRef<N, T>::LocalRef(egl_object_t* rhs) : ref(rhs) {
  /frameworks/native/services/surfaceflinger/
BufferLayerConsumer.h 228 Image(const Image& rhs) = delete; member in class:android::BufferLayerConsumer::Image
229 Image& operator=(const Image& rhs) = delete; member in class:android::BufferLayerConsumer::Image
  /packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
SortingCursorWrapper.java 212 final String rhs = sortKey[mid]; local
215 compare = Shared.compareToIgnoreCaseNullable(lhs, rhs);
218 compare = -Shared.compareToIgnoreCaseNullable(lhs, rhs);
293 final long rhs = sortKey[mid]; local
296 compare = Long.compare(lhs, rhs);
299 compare = -Long.compare(lhs, rhs);
  /system/extras/tests/icachetest/
Profiler.h 68 Profiler(const Profiler& rhs) = delete; member in class:utils::Profiler
69 Profiler(Profiler&& rhs) = delete; member in class:utils::Profiler
70 Profiler& operator=(const Profiler& rhs) = delete; member in class:utils::Profiler
71 Profiler& operator=(Profiler&& rhs) = delete; member in class:utils::Profiler
92 friend Counters operator-(Counters lhs, const Counters& rhs) noexcept {
93 lhs.nr -= rhs.nr;
94 lhs.time_enabled -= rhs.time_enabled;
95 lhs.time_running -= rhs.time_running;
97 lhs.counters[i].value -= rhs.counters[i].value;

Completed in 664 milliseconds

1 2 3 4 5 67 8 91011>>