/external/valgrind/memcheck/tests/vbit-test/ |
D | util.c | 65 int num_operands = get_num_operands(op->op); in complain() local 67 for (unsigned i = 0; i < num_operands; ++i) { in complain() 182 int num_operands = 4; in get_num_operands() local 183 if (t4 == Ity_INVALID) num_operands = 3; in get_num_operands() 184 if (t3 == Ity_INVALID) num_operands = 2; in get_num_operands() 185 if (t2 == Ity_INVALID) num_operands = 1; in get_num_operands() 188 -- num_operands; in get_num_operands() 190 return num_operands; in get_num_operands()
|
D | valgrind.c | 52 cb.num_operands = get_num_operands(op->op); in new_iricb() 119 unsigned i, num_operands; in valgrind_execute_test() local 122 num_operands = get_num_operands(op->op); in valgrind_execute_test() 124 for (i = 0; i < num_operands; ++i) { in valgrind_execute_test()
|
D | main.c | 188 switch (iricb.num_operands) { in main()
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_expression_operation.py | 40 def __init__(self, source_types, num_operands): argument 48 self.num_operands = num_operands 51 def __init__(self, dest_type, source_types, num_operands): argument 60 self.num_operands = num_operands 76 return (dest_type, self.num_operands * (self.source_types[i],)) 326 …def __init__(self, name, num_operands, printable_name = None, source_types = None, dest_type = Non… argument 328 self.num_operands = num_operands 360 return "ir_{0}op_{1}".format(("un", "bin", "tri", "quad")[self.num_operands-1], self.name) 375 if self.num_operands == 2: 382 elif self.num_operands == 3: [all …]
|
D | ir_reader.cpp | 736 int num_operands = (int) ((s_list *) expr)->subexpressions.length() - 3; in read_expression() local 739 if (num_operands != expected_operands) { in read_expression() 741 num_operands, expected_operands); in read_expression() 746 for (int i = 0; i < num_operands; i++) { in read_expression()
|
D | ir.cpp | 205 int num_operands = get_num_operands(this->operation); in ir_expression() local 206 for (int i = num_operands; i < 4; i++) { in ir_expression()
|
/external/v8/src/compiler/ |
D | bytecode-analysis.cc | 99 int num_operands = Bytecodes::NumberOfOperands(bytecode); in UpdateInLiveness() local 105 for (int i = 0; i < num_operands; ++i) { in UpdateInLiveness() 143 for (int i = 0; i < num_operands; ++i) { in UpdateInLiveness() 216 int num_operands = Bytecodes::NumberOfOperands(bytecode); in UpdateAssignments() local 219 for (int i = 0; i < num_operands; ++i) { in UpdateAssignments()
|
/external/python/cpython3/Modules/ |
D | mathmodule.c | 1348 unsigned long midpoint, num_operands; in factorial_partial_product() local 1367 num_operands = (stop - start) / 2; in factorial_partial_product() 1370 if (num_operands <= 8 * SIZEOF_LONG && in factorial_partial_product() 1371 num_operands * max_bits <= 8 * SIZEOF_LONG) { in factorial_partial_product() 1379 midpoint = (start + num_operands) | 1; in factorial_partial_product()
|
/external/valgrind/VEX/pub/ |
D | libvex.h | 896 UInt num_operands; // excluding rounding mode, if any member
|
/external/valgrind/VEX/priv/ |
D | ir_inject.c | 202 switch (iricb.num_operands) { in vex_inject_ir()
|
/external/google-breakpad/src/third_party/libdisasm/swig/ |
D | libdisasm_oop.i | 565 size_t num_operands( enum x86_op_foreach_type type ) { in num_operands() function
|
/external/pcre/dist2/src/sljit/ |
D | sljitNativeTILEGX-encoder.c | 638 unsigned char num_operands; member 9553 for (i = 0; i < opc->num_operands; i++) in parse_insn_tilegx() 10120 for (j = 0; j < opcode->num_operands; j++) in print_insn_tilegx()
|
D | sljitNativeTILEGX_64.c | 614 for (i = 0; i < opcode->num_operands; i++) { in get_bundle_bit()
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm.ml | 463 external num_operands : llvalue -> int = "llvm_num_operands"
|
D | llvm.mli | 776 (** [num_operands v] returns the number of operands for the value [v]. 778 val num_operands : llvalue -> int val
|
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/ |
D | llvm.ml | 371 external num_operands : llvalue -> int = "llvm_num_operands"
|
D | llvm.mli | 633 (** [num_operands v] returns the number of operands for the value [v]. 635 val num_operands : llvalue -> int val
|
/external/llvm/test/Bindings/OCaml/ |
D | core.ml | 613 insist ((num_operands i) = 2);
|
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/ |
D | vmcore.ml | 531 insist ((num_operands i) = 2);
|