Home
last modified time | relevance | path

Searched refs:op_num (Results 1 – 8 of 8) sorted by relevance

/external/grpc-grpc/src/php/ext/grpc/
Dcall.c275 size_t op_num = 0; in PHP_METHOD() local
320 ops[op_num].op = (grpc_op_type)index; in PHP_METHOD()
321 ops[op_num].flags = 0; in PHP_METHOD()
322 ops[op_num].reserved = NULL; in PHP_METHOD()
331 ops[op_num].data.send_initial_metadata.count = metadata.count; in PHP_METHOD()
332 ops[op_num].data.send_initial_metadata.metadata = metadata.metadata; in PHP_METHOD()
349 ops[op_num].flags = Z_LVAL_P(message_flags) & GRPC_WRITE_USED_MASK; in PHP_METHOD()
359 ops[op_num].data.send_message.send_message = in PHP_METHOD()
375 ops[op_num].data.send_status_from_server.trailing_metadata = in PHP_METHOD()
377 ops[op_num].data.send_status_from_server.trailing_metadata_count = in PHP_METHOD()
[all …]
/external/grpc-grpc/src/ruby/ext/grpc/
Drb_call.c610 size_t op_num; /* tracks the last added operation */ member
636 st->op_num = 0; in grpc_run_batch_stack_init()
674 for (i = 0; i < st->op_num; i++) { in grpc_run_batch_stack_cleanup()
696 st->ops[st->op_num].flags = 0; in grpc_run_batch_stack_fill_ops()
700 st->ops[st->op_num].data.send_initial_metadata.count = in grpc_run_batch_stack_fill_ops()
702 st->ops[st->op_num].data.send_initial_metadata.metadata = in grpc_run_batch_stack_fill_ops()
706 st->ops[st->op_num].data.send_message.send_message = in grpc_run_batch_stack_fill_ops()
709 st->ops[st->op_num].flags = st->write_flag; in grpc_run_batch_stack_fill_ops()
715 &st->ops[st->op_num], &st->send_trailing_metadata, in grpc_run_batch_stack_fill_ops()
719 st->ops[st->op_num].data.recv_initial_metadata.recv_initial_metadata = in grpc_run_batch_stack_fill_ops()
[all …]
/external/tensorflow/tensorflow/compiler/xla/tests/
Dtest_utils.cc482 const int64 op_num = use.operand_number; in NeedsInitValue() local
483 return ((opcode == HloOpcode::kReduceWindow && op_num == 1) || in NeedsInitValue()
484 (opcode == HloOpcode::kSelectAndScatter && op_num == 2) || in NeedsInitValue()
486 op_num >= instruction->operand_count() / 2)); in NeedsInitValue()
509 const int64 op_num = use.operand_number; in FindConstrainedUses() local
510 if ((opcode == HloOpcode::kDynamicSlice && op_num >= 1) || in FindConstrainedUses()
511 (opcode == HloOpcode::kDynamicUpdateSlice && op_num >= 2)) { in FindConstrainedUses()
515 op_num == 1) { in FindConstrainedUses()
519 instruction->fused_parameter(op_num); in FindConstrainedUses()
531 instruction->operand_count() >= 2 && op_num == 0) { in FindConstrainedUses()
/external/libaom/libaom/av1/encoder/
Dbitstream.c2932 for (int op_num = 0; in write_uncompressed_header_obu() local
2933 op_num < seq_params->operating_points_cnt_minus_1 + 1; op_num++) { in write_uncompressed_header_obu()
2934 if (seq_params->op_params[op_num].decoder_model_param_present_flag) { in write_uncompressed_header_obu()
2935 if (((seq_params->operating_point_idc[op_num] >> in write_uncompressed_header_obu()
2938 (seq_params->operating_point_idc[op_num] >> in write_uncompressed_header_obu()
2941 seq_params->operating_point_idc[op_num] == 0) { in write_uncompressed_header_obu()
2943 wb, cm->buffer_removal_times[op_num], in write_uncompressed_header_obu()
2945 cm->buffer_removal_times[op_num]++; in write_uncompressed_header_obu()
2946 if (cm->buffer_removal_times[op_num] == 0) { in write_uncompressed_header_obu()
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c4658 for (int op_num = 0; in read_uncompressed_header() local
4659 op_num < seq_params->operating_points_cnt_minus_1 + 1; op_num++) { in read_uncompressed_header()
4660 if (seq_params->op_params[op_num].decoder_model_param_present_flag) { in read_uncompressed_header()
4661 if ((((seq_params->operating_point_idc[op_num] >> in read_uncompressed_header()
4664 ((seq_params->operating_point_idc[op_num] >> in read_uncompressed_header()
4667 seq_params->operating_point_idc[op_num] == 0) { in read_uncompressed_header()
4668 cm->buffer_removal_times[op_num] = aom_rb_read_unsigned_literal( in read_uncompressed_header()
4671 cm->buffer_removal_times[op_num] = 0; in read_uncompressed_header()
4674 cm->buffer_removal_times[op_num] = 0; in read_uncompressed_header()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_rematerialization.cc177 ItemUse(Item* user, int64 op_num, absl::optional<int64> index) in ItemUse()
178 : user(user), operand_number(op_num), index(index) {} in ItemUse()
/external/mksh/src/
Dsh.h2802 Test_op op_num; member
Dfuncs.c2741 return (tbl->op_num); in test_isop()