Searched defs:init_value (Results 1 - 25 of 43) sorted by relevance

12

/external/pcre/dist2/src/sljit/
H A DsljitNativeMIPS_32.c344 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value) argument
346 FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 16), DR(dst)));
347 return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst));
H A DsljitNativePPC_32.c247 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value) argument
249 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 16)));
250 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value));
H A DsljitNativeSPARC_32.c142 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value) argument
144 FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((init_value >> 10) & 0x3fffff), DR(dst)));
145 return push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (init_value & 0x3ff), DR(dst));
H A DsljitNativeMIPS_64.c439 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value) argument
441 FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 48), DR(dst)));
442 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 32), DR(dst)));
444 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 16), DR(dst)));
446 return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst));
H A DsljitNativePPC_64.c392 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value) argument
394 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 48)));
395 FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value >> 32)));
397 FAIL_IF(push_inst(compiler, ORIS | S(reg) | A(reg) | IMM(init_value >> 16)));
398 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value));
H A DsljitLir.c1481 static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) argument
1483 SLJIT_UNUSED_ARG(init_value);
1492 fprintf(compiler->verbose, ", #%" SLJIT_PRINT_D "d\n", init_value);
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dcall_inliner_test.cc101 HloInstruction* init_value = outer.AddInstruction( local
104 HloInstruction::CreateWhile(pred, call_false, call_false, init_value));
H A Dwhile_loop_invariant_code_motion_test.cc82 auto* init_value = builder.AddInstruction( local
83 HloInstruction::CreateParameter(0, while_shape, "init_value"));
86 while_body, init_value));
141 auto* init_value = builder.AddInstruction( local
142 HloInstruction::CreateParameter(0, while_shape, "init_value"));
145 while_body, init_value));
195 auto* init_value = builder.AddInstruction( local
196 HloInstruction::CreateParameter(0, while_shape, "init_value"));
199 while_body, init_value));
234 auto* init_value local
268 auto* init_value = builder.AddInstruction( local
309 auto* init_value = builder.AddInstruction( local
354 auto* init_value = builder.AddInstruction( local
403 auto* init_value = builder.AddInstruction( local
430 auto* init_value = builder.AddInstruction( local
[all...]
H A Dwhile_loop_simplifier_test.cc437 auto* init_value = builder.AddInstruction( local
438 HloInstruction::CreateParameter(0, while_shape, "init_value"));
441 while_body, init_value));
H A Dhlo_evaluator_test.cc1223 auto init_value = b.AddInstruction( local
1238 HloInstruction::CreateReduce(shape, arg_instruction, init_value,
1265 auto init_value = b.AddInstruction( local
1291 shape, arg_instruction, init_value, window, max_func));
1316 auto init_value = b.AddInstruction( local
1348 shape, arg_instruction, init_value, window, add_func));
1369 auto init_value = b.AddInstruction( local
1409 shape, arg_instruction, init_value, window, add_func));
H A Dhlo_instruction_test.cc97 auto init_value = reduce->operand(1); variable
100 EXPECT_GT(count_.count(init_value), 0);
/external/adhd/cras/src/server/
H A Dcras_dsp_ini.h40 float init_value; member in struct:port
H A Dcras_dsp_ini.c124 p->init_value = 0;
127 float init_value = strtof(str, &endptr); local
135 p->init_value = init_value;
206 p->init_value = 0;
430 port->init_value);
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dpooling_ops.cc343 xla::ComputationDataHandle init_value = variable
348 input, select, ksize_, stride_, xla_padding, out_backprop, init_value,
/external/tensorflow/tensorflow/compiler/tf2xla/
H A Dxla_helpers.cc39 xla::ComputationDataHandle init_value; local
42 init_value = XlaHelpers::MaxValue(builder, input_type);
45 init_value = XlaHelpers::MinValue(builder, input_type);
53 input, init_value, *reducer, /*dimensions_to_reduce=*/{axis});
/external/tensorflow/tensorflow/compiler/xla/
H A Dshape_tree.h114 // Create ShapeTree with the given shape, and init_value for all nodes.
115 ShapeTree(Shape shape, const T& init_value);
116 ShapeTree(const Shape* shape, const T& init_value);
288 // the given 'init_value'.
289 void InitChildren(const Shape& shape, const T& init_value, Node* node);
471 void ShapeTree<T>::InitChildren(const Shape& shape, const T& init_value, argument
475 node->children.emplace_back(new Node(init_value));
476 InitChildren(shape.tuple_shapes(i), init_value,
509 ShapeTree<T>::ShapeTree(Shape shape, const T& init_value) argument
510 : root_(init_value),
520 ShapeTree(const Shape* shape, const T& init_value) argument
[all...]
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dparams_test.cc220 std::vector<float> init_value = {{0, 1}}; local
221 init_value.resize(size);
222 ComputationDataHandle sum_handle = builder.ConstantR1<float>(init_value);
H A Dconvolution_test.cc475 // std::iota doesn't work when init_value has a type Eigen::half in some build
478 void iota_int_init_value(std::vector<T>& values, int init_value) { argument
480 [&](T& value) { value = static_cast<T>(init_value++); });
H A Dreduce_test.cc119 ComputationDataHandle init_value; local
122 init_value = builder.ConstantR0<bool>(true);
125 init_value = builder.ConstantR0<bool>(false);
128 builder.Reduce(pred_values, init_value, reduce,
157 ComputationDataHandle init_value; local
160 init_value = builder.ConstantR0<bool>(true);
163 init_value = builder.ConstantR0<bool>(false);
167 builder.Reduce(input_pred, init_value, reduce_op,
H A Dreduce_window_test.cc106 const auto init_value = local
109 builder_.ReduceWindow(input, init_value,
591 auto init_value = local
599 /*init_value=*/init_value,
937 auto init_value = local
940 /*init_value=*/init_value,
1042 auto init_value = local
1045 /*init_value
1233 auto init_value = local
[all...]
/external/v8/src/compiler/
H A Dloop-variable-optimizer.h23 Node* init_value() const { return init_value_; } function in class:v8::internal::compiler::InductionVariable
42 InductionVariable(Node* phi, Node* arith, Node* increment, Node* init_value, argument
47 init_value_(init_value),
/external/tensorflow/tensorflow/cc/training/
H A Dqueue_runner_test.cc71 auto init_value = Const(root, 0); local
74 auto assign = Assign(root.WithOpName(kAssignOpName), var, init_value);
/external/python/cpython2/Lib/bsddb/
H A Ddbobj.py247 def init_value(self, *args, **kwargs): member in class:DBSequence
248 return self._cobj.init_value(*args, **kwargs)
/external/tensorflow/tensorflow/compiler/xla/python/
H A Dlocal_computation_builder.cc397 const ComputationDataHandle& init_value, const LocalComputation& scatter) {
400 source, init_value, scatter.computation());
470 const ComputationDataHandle& init_value,
473 return builder_.Reduce(operand, init_value, local_computation.computation(),
479 const ComputationDataHandle& init_value,
485 operand, init_value, local_computation.computation(), window_dimensions,
391 SelectAndScatterWithGeneralPadding( const ComputationDataHandle& operand, const LocalComputation& select, tensorflow::gtl::ArraySlice<int64> window_dimensions, tensorflow::gtl::ArraySlice<int64> window_strides, tensorflow::gtl::ArraySlice<std::pair<int64, int64>> padding, const ComputationDataHandle& source, const ComputationDataHandle& init_value, const LocalComputation& scatter) argument
468 Reduce( const ComputationDataHandle& operand, const ComputationDataHandle& init_value, const LocalComputation& local_computation, tensorflow::gtl::ArraySlice<int64> dimensions_to_reduce) argument
477 ReduceWindowWithGeneralPadding( const ComputationDataHandle& operand, const ComputationDataHandle& init_value, const LocalComputation& local_computation, tensorflow::gtl::ArraySlice<int64> window_dimensions, tensorflow::gtl::ArraySlice<int64> window_strides, tensorflow::gtl::ArraySlice<std::pair<int64, int64>> padding) argument
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dir_emitter.cc629 auto init_value = reduce->operand(1); local
635 // Initialize an accumulator with init_value.
640 ir_builder_.CreateLoad(GetBasePointer(*init_value)),

Completed in 448 milliseconds

12