Searched refs:op (Results 151 - 175 of 3466) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/vp8/common/
H A Didctllm.c37 short *op = output; local
53 op[shortpitch * 0] = a1 + d1;
54 op[shortpitch * 3] = a1 - d1;
56 op[shortpitch * 1] = b1 + c1;
57 op[shortpitch * 2] = b1 - c1;
60 op++;
64 op = output;
78 op[0] = (a1 + d1 + 4) >> 3;
79 op[3] = (a1 - d1 + 4) >> 3;
81 op[
133 short *op = output; local
[all...]
/external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
H A Dresolve_transpose_attributes.cc31 auto* op = static_cast<TransposeOperator*>(op_it->get());
32 if (!op->perm.empty()) return false;
34 CHECK_EQ(op->inputs.size(), 2);
35 if (!IsConstantParameterArray(*model, op->inputs[1])) return false;
38 const auto& perm_array = model->GetArray(op->inputs[1]);
47 op->perm.push_back(perm_buffer[i]);
H A Dremove_tensorflow_assert.cc35 for (const auto& op : model->operators) {
36 auto it = op->inputs.begin();
37 while (it != op->inputs.end()) {
39 op->inputs.erase(it);
50 "Prepared for the removal of %s by removing any other op's dependency "
H A Dremove_trivial_quantized_activation_func.cc31 auto* op = it->get(); local
32 if (op->fused_activation_function != FusedActivationFunctionType::kRelu &&
33 op->fused_activation_function != FusedActivationFunctionType::kRelu6) {
36 const auto& output_array = model->GetArray(op->outputs[0]);
48 if (op->fused_activation_function == FusedActivationFunctionType::kRelu ||
49 op->fused_activation_function == FusedActivationFunctionType::kRelu6) {
61 if (op->fused_activation_function == FusedActivationFunctionType::kRelu6) {
78 op->fused_activation_function = FusedActivationFunctionType::kNone;
83 LogName(*op));
H A Dremove_trivial_reshape.cc31 bool IsReshapeTrivial(const Model& model, const Operator& op, argument
33 CHECK(op.type == OperatorType::kTensorFlowReshape);
37 const auto& input_array = model.GetArray(op.inputs[0]);
38 const auto& output_array = model.GetArray(op.outputs[0]);
46 LogName(op));
52 LogName(op));
59 if (CountOpsWithInput(model, op.outputs[0]) == 1) {
60 const auto* next_op = GetOpWithInput(model, op.outputs[0]);
64 "Reshape op",
65 LogName(op));
[all...]
/external/tensorflow/tensorflow/core/framework/
H A Dop_segment_test.cc41 TF_CHECK_OK(NodeDefBuilder(strings::StrCat("op", i), "Mul")
46 TF_CHECK_OK(NodeDefBuilder(strings::StrCat("op", i), "Mul")
54 void ValidateOpAndTypes(OpKernel* op, const NodeDef& expected, DataType dt) { argument
55 ASSERT_NE(op, nullptr);
56 EXPECT_EQ(expected.DebugString(), op->def().DebugString());
57 EXPECT_EQ(2, op->num_inputs());
58 EXPECT_EQ(dt, op->input_type(0));
59 EXPECT_EQ(dt, op->input_type(1));
60 EXPECT_EQ(1, op->num_outputs());
61 EXPECT_EQ(dt, op
79 OpKernel* op; local
116 OpKernel* op; local
124 OpKernel* op; local
135 OpKernel* op; local
[all...]
/external/libevent/test/
H A Dtinytest_macros.h72 #define tt_abort_perror(op) TT_DIE(("%s: %s [%d]",(op),strerror(errno), errno))
78 #define tt_fail_perror(op) TT_FAIL(("%s: %s [%d]",(op),strerror(errno), errno))
151 /* Helper: assert that a op b, when cast to type. Format the values with
153 #define tt_assert_op_type(a,op,b,type,fmt) \
154 tt_assert_test_type(a,b,#a" "#op" "#b,type,(val1_ op val2_),fmt, \
157 #define tt_int_op(a,op,b) \
158 tt_assert_test_type(a,b,#a" "#op" "#
[all...]
/external/tensorflow/tensorflow/core/api_def/
H A Dupdate_api_def.cc24 #include "tensorflow/core/framework/op.h"
40 // Updates api_def based on the given op.
41 void FillBaseApiDef(ApiDef* api_def, const OpDef& op) { argument
42 api_def->set_graph_op_name(op.name());
44 for (auto& input_arg : op.input_arg()) {
51 for (auto& output_arg : op.output_arg()) {
59 for (auto& attr : op.attr()) {
67 api_def->set_summary(op.summary());
68 api_def->set_description(op.description());
71 // Returns true if op ha
72 OpHasDocs(const OpDef& op) argument
125 ValidateOpDocs(const OpDef& op, const string& doc) argument
147 RemoveDoc(const OpDef& op, const string& file_contents, size_t start_location) argument
229 CreateApiDef(const OpDef& op) argument
[all...]
/external/mesa3d/src/compiler/glsl/
H A Dast_expr.cpp27 ast_expression::operator_string(enum ast_operators op) argument
75 assert((unsigned int)op < sizeof(operators) / sizeof(operators[0]));
77 return operators[op];
H A Dopt_add_neg_to_sub.h43 ir_expression *const op = ir->operands[i]->as_expression(); local
45 if (op != NULL && op->operation == ir_unop_neg) {
52 ir->operands[1] = op->operands[0];
/external/syslinux/com32/include/sys/x86_64/
H A Dcpu.h37 static inline void cpuid(uint32_t op, argument
41 *eax = op;
49 static inline uint32_t cpuid_eax(uint32_t op) argument
53 cpuid(op, &eax, &ebx, &ecx, &edx);
58 static inline uint32_t cpuid_ebx(uint32_t op) argument
62 cpuid(op, &eax, &ebx, &ecx, &edx);
67 static inline uint32_t cpuid_ecx(uint32_t op) argument
71 cpuid(op, &eax, &ebx, &ecx, &edx);
76 static inline uint32_t cpuid_edx(uint32_t op) argument
80 cpuid(op,
85 cpuid_count(uint32_t op, uint32_t cnt, uint32_t * eax, uint32_t * ebx, uint32_t * ecx, uint32_t * edx) argument
[all...]
/external/tensorflow/tensorflow/cc/gradients/
H A Dgrad_testutil.cc23 Status CallGradFunction(const Scope& scope, const Operation& op, argument
28 op.node()->type_string(), &grad_fn));
29 TF_RETURN_IF_ERROR(grad_fn(scope, op, grad_inputs, grad_outputs));
/external/deqp/modules/gles2/functional/
H A Des2fShaderIndexingTests.cpp378 std::ostringstream& op = isVertexCase ? vtx : frag; local
395 op << "uniform mediump int ui_zero, ui_one, ui_two, ui_three;\n";
397 op << "uniform mediump int ui_four;\n";
399 op << "uniform ${PRECISION} ${VAR_TYPE} u_arr[${ARRAY_LEN}];\n";
411 op << " ${PRECISION} ${VAR_TYPE} res = ${VAR_TYPE}(0.0);\n";
414 op << " res += u_arr[0];\n";
415 op << " res += u_arr[1];\n";
416 op << " res += u_arr[2];\n";
417 op << " res += u_arr[3];\n";
421 op << " re
488 std::ostringstream& op = isVertexCase ? vtx : frag; local
652 std::ostringstream& op = isVertexCase ? vtx : frag; local
838 std::ostringstream& op = isVertexCase ? vtx : frag; local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderIndexingTests.cpp341 std::ostringstream& op = isVertexCase ? vtx : frag; local
362 op << "uniform mediump int ui_zero, ui_one, ui_two, ui_three;\n";
364 op << "uniform mediump int ui_four;\n";
366 op << "uniform ${PRECISION} ${VAR_TYPE} u_arr[${ARRAY_LEN}];\n";
378 op << " ${PRECISION} ${VAR_TYPE} res = ${VAR_TYPE}(0.0);\n";
381 op << " res += u_arr[0];\n";
382 op << " res += u_arr[1];\n";
383 op << " res += u_arr[2];\n";
384 op << " res += u_arr[3];\n";
388 op << " re
447 std::ostringstream& op = isVertexCase ? vtx : frag; local
607 std::ostringstream& op = isVertexCase ? vtx : frag; local
807 std::ostringstream& op = isVertexCase ? vtx : frag; local
[all...]
/external/clang/test/CodeGen/
H A D2003-08-18-StructAsValue.c5 int op; member in struct:__anon2384
/external/clang/test/Sema/
H A Dbuiltin_objc_msgSend.c12 extern id objc_msgSend(id self, SEL op, ...);
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
H A DAssignExpr.java52 private Operator op; field in class:AssignExpr
57 public AssignExpr(Expression target, Expression value, Operator op) { argument
60 setOperator(op);
63 public AssignExpr(Range range, Expression target, Expression value, Operator op) { argument
67 setOperator(op);
81 return op;
92 public AssignExpr setOperator(Operator op) { argument
93 this.op = op;
H A DUnaryExpr.java46 private Operator op; field in class:UnaryExpr
51 public UnaryExpr(final Expression expr, final Operator op) { argument
53 setOperator(op);
56 public UnaryExpr(final Range range, final Expression expr, final Operator op) { argument
59 setOperator(op);
75 return op;
84 public UnaryExpr setOperator(final Operator op) { argument
85 this.op = op;
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
H A DAssignExpr.java51 private Operator op; field in class:AssignExpr
56 public AssignExpr(Expression target, Expression value, Operator op) { argument
59 setOperator(op);
62 public AssignExpr(int beginLine, int beginColumn, int endLine, int endColumn, Expression target, Expression value, Operator op) { argument
66 setOperator(op);
80 return op;
91 public void setOperator(Operator op) { argument
92 this.op = op;
H A DUnaryExpr.java45 private Operator op; field in class:UnaryExpr
50 public UnaryExpr(final Expression expr, final Operator op) { argument
52 setOperator(op);
56 final Expression expr, final Operator op) {
59 setOperator(op);
75 return op;
83 public void setOperator(final Operator op) { argument
84 this.op = op;
55 UnaryExpr(final int beginLine, final int beginColumn, final int endLine, final int endColumn, final Expression expr, final Operator op) argument
/external/javassist/src/main/javassist/compiler/ast/
H A DDoubleConst.java44 public ASTree compute(int op, ASTree right) { argument
46 return compute0(op, (IntConst)right);
48 return compute0(op, (DoubleConst)right);
53 private DoubleConst compute0(int op, DoubleConst right) { argument
61 return compute(op, this.value, right.value, newType);
64 private DoubleConst compute0(int op, IntConst right) { argument
65 return compute(op, this.value, (double)right.value, this.type);
68 private static DoubleConst compute(int op, double value1, double value2, argument
72 switch (op) {
/external/jline/src/src/test/java/jline/
H A DTestEditLine.java23 assertBuffer("This is a ", b = b.op(ConsoleReader.DELETE_PREV_WORD));
24 assertBuffer("This is ", b = b.op(ConsoleReader.DELETE_PREV_WORD));
25 assertBuffer("This ", b = b.op(ConsoleReader.DELETE_PREV_WORD));
26 assertBuffer("", b = b.op(ConsoleReader.DELETE_PREV_WORD));
27 assertBuffer("", b = b.op(ConsoleReader.DELETE_PREV_WORD));
28 assertBuffer("", b = b.op(ConsoleReader.DELETE_PREV_WORD));
35 new Buffer("This is a test").op(ConsoleReader.PREV_WORD)
37 .op(ConsoleReader.MOVE_TO_END)
41 new Buffer("This is a test").op(ConsoleReader.PREV_WORD)
42 .op(ConsoleReade
[all...]
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_shader_op.h46 const struct sh_opcode_info *svga_opcode_info( unsigned op );
/external/pdfium/third_party/libtiff/
H A Dtif_packbits.c69 uint8* op; local
77 op = tif->tif_rawcp;
91 if (op + 2 >= ep) { /* insure space for new data */
99 slop = (long)(op - lastliteral);
103 op = tif->tif_rawcp;
105 *op++ = *lastliteral++;
108 tif->tif_rawcc += (tmsize_t)(op - tif->tif_rawcp);
111 op = tif->tif_rawcp;
119 *op++ = (uint8) -127;
120 *op
216 PackBitsDecode(TIFF* tif, uint8* op, tmsize_t occ, uint16 s) argument
[all...]
/external/python/cpython2/Lib/
H A Dopcode.py24 for op in range(256): opname[op] = '<%r>' % (op,)
25 del op
27 def def_op(name, op):
28 opname[op] = name
29 opmap[name] = op
31 def name_op(name, op):
32 def_op(name, op)
33 hasname.append(op)
[all...]

Completed in 787 milliseconds

1234567891011>>