HomeSort by relevance Sort by last modified time
    Searched refs:oper (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/mesa3d/src/compiler/glsl/
ast_expr.cpp 81 ast_expression_bin::ast_expression_bin(int oper, ast_expression *ex0,
83 ast_expression(oper, ex0, ex1, NULL)
85 assert((oper >= ast_plus) && (oper <= ast_logic_not));
93 printf("%s ", operator_string(oper));
  /external/autotest/client/tests/aiostress/
aio-stress.c 310 static void oper_list_add(struct io_oper *oper, struct io_oper **list)
313 *list = oper;
314 oper->prev = oper->next = oper;
317 oper->prev = (*list)->prev;
318 oper->next = *list;
319 (*list)->prev->next = oper;
320 (*list)->prev = oper;
324 static void oper_list_del(struct io_oper *oper, struct io_oper **list
453 struct io_oper *oper = io->io_oper; local
670 struct io_oper *oper; local
859 struct io_oper *oper; local
1096 struct io_oper *oper; local
1309 struct io_oper *oper; local
    [all...]
  /external/ltp/testcases/kernel/io/ltp-aiodio/
aio-stress.c 312 static void oper_list_add(struct io_oper *oper, struct io_oper **list)
315 *list = oper;
316 oper->prev = oper->next = oper;
319 oper->prev = (*list)->prev;
320 oper->next = *list;
321 (*list)->prev->next = oper;
322 (*list)->prev = oper;
326 static void oper_list_del(struct io_oper *oper, struct io_oper **list
467 struct io_oper *oper = io->io_oper; local
686 struct io_oper *oper; local
878 struct io_oper *oper; local
1116 struct io_oper *oper; local
1343 struct io_oper *oper; local
    [all...]
  /external/libxcam/
code_style.sh 3 git status -s | grep -E "\.cpp$|\.h$" | cut -c4- | xargs astyle --indent=spaces=4 --convert-tabs --pad-oper --suffix=none
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
089-redefine-macro-error.c 16 #define oper(a,b) a+b macro
17 #define oper(a,b) a*b macro
  /external/wpa_supplicant_8/src/ap/
ieee802_11_he.c 54 struct ieee80211_he_operation *oper; local
64 oper = (struct ieee80211_he_operation *) pos;
65 os_memset(oper, 0, sizeof(*oper));
68 oper->he_oper_params |= hapd->iface->conf->he_op.he_bss_color;
71 oper->he_oper_params |=
76 oper->he_oper_params |= HE_OPERATION_TWT_REQUIRED;
79 oper->he_oper_params |=
85 pos += sizeof(*oper);
ieee802_11_vht.c 76 struct ieee80211_vht_operation *oper; local
80 *pos++ = sizeof(*oper);
82 oper = (struct ieee80211_vht_operation *) pos;
83 os_memset(oper, 0, sizeof(*oper));
90 oper->vht_op_info_chan_center_freq_seg0_idx =
92 oper->vht_op_info_chan_center_freq_seg1_idx =
95 oper->vht_op_info_chwidth = hapd->iconf->vht_oper_chwidth;
101 oper->vht_op_info_chwidth = 1;
102 oper->vht_op_info_chan_center_freq_seg1_idx
    [all...]
ieee802_11_ht.c 84 struct ieee80211_ht_operation *oper; local
91 *pos++ = sizeof(*oper);
93 oper = (struct ieee80211_ht_operation *) pos;
94 os_memset(oper, 0, sizeof(*oper));
96 oper->primary_chan = hapd->iconf->channel;
97 oper->operation_mode = host_to_le16(hapd->iface->ht_op_mode);
99 oper->ht_param |= HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE |
102 oper->ht_param |= HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW |
105 pos += sizeof(*oper);
    [all...]
  /external/u-boot/tools/patman/
cros_subprocess.py 284 def _BasicCheck(self, plist, oper):
286 self.assertEqual(plist[0], oper.stdout_data)
287 self.assertEqual(plist[1], oper.stderr_data)
288 self.assertEqual(plist[2], oper.combined_data)
295 oper = TestSubprocess.MyOperation()
296 plist = Popen(['ps']).CommunicateFilter(oper.Output)
297 self._BasicCheck(plist, oper)
301 oper = TestSubprocess.MyOperation()
303 plist = Popen([cmd], shell=True).CommunicateFilter(oper.Output)
304 self._BasicCheck(plist, oper)
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
childmain.c 80 switch (target.oper) {
84 if (env->action_list[i].oper == WRITER) {
147 if (target.oper == WRITER) {
239 target.oper = env->lastAction.oper;
241 target.oper = TST_OPER(args->test_state);
246 target.oper = READER;
248 target.oper = WRITER;
260 target.oper =
261 (env->lastAction.oper == WRITER) ? READER : WRITER
    [all...]
defs.h 107 op_t oper; member in struct:action
  /external/u-boot/arch/arm/mach-tegra/tegra20/
crypto.c 95 * \param oper Security operations mask to perform (enum security_op)
100 static int encrypt_and_sign(u8 *key, enum security_op oper, u8 *src,
113 aes_expand_key(oper & SECURITY_ENCRYPT ? key : zero_key, key_schedule);
117 if (oper & SECURITY_ENCRYPT) {
125 if (oper & SECURITY_SIGN) {
  /external/tensorflow/tensorflow/c/
c_api.h 390 TF_Operation* oper; member in struct:TF_Input
391 int index; // The index of the input within oper.
396 TF_Operation* oper; member in struct:TF_Output
397 int index; // The index of the output within oper.
625 TF_CAPI_EXPORT extern const char* TF_OperationName(TF_Operation* oper);
626 TF_CAPI_EXPORT extern const char* TF_OperationOpType(TF_Operation* oper);
627 TF_CAPI_EXPORT extern const char* TF_OperationDevice(TF_Operation* oper);
629 TF_CAPI_EXPORT extern int TF_OperationNumOutputs(TF_Operation* oper);
631 TF_CAPI_EXPORT extern int TF_OperationOutputListLength(TF_Operation* oper,
635 TF_CAPI_EXPORT extern int TF_OperationNumInputs(TF_Operation* oper);
    [all...]
python_api.cc 63 graph->refiner.GetContext(&new_src.oper->node);
75 graph->refiner.GetContext(&dst.oper->node);
89 status->status = graph->graph.UpdateEdge(&new_src.oper->node, new_src.index,
90 &dst.oper->node, dst.index);
96 RecordMutation(graph, *dst.oper, "updating input tensor");
123 Node* node = &output.oper->node;
159 graph->refiner.GetContext(&output.oper->node);
175 status->status = graph->graph.AddWhileInputHack(&new_src.oper->node,
while_loop_test.cc 85 inputs[i] = {inputs_[i].oper, Int32Tensor(v)};
148 ASSERT_TRUE(params_->cond_inputs[0].oper != nullptr);
149 EXPECT_TRUE(params_->cond_inputs[1].oper != nullptr);
152 EXPECT_TRUE(params_->body_inputs[0].oper != nullptr);
153 EXPECT_TRUE(params_->body_inputs[1].oper != nullptr);
178 EXPECT_TRUE(outputs_[0].oper != nullptr);
180 EXPECT_TRUE(outputs_[1].oper != nullptr);
257 Add(inner_params.body_inputs[1].oper, one, inner_params.body_graph, s_);
261 TF_Operation* inner_input1_add = Add(inner_params.body_inputs[0].oper, two,
c_api.cc 727 Node* node = &output.oper->node;
2235 TF_Operation* oper = TF_FinishOperation(desc, status); local
    [all...]
c_api_test.cc 489 // Make a constant oper with the scalar "3".
493 // Add oper.
511 EXPECT_EQ(feed, add_in_0.oper);
514 EXPECT_EQ(three, add_in_1.oper);
525 // Placeholder oper now has a consumer.
529 EXPECT_EQ(add, feed_port.oper);
532 // The scalar const oper also has a consumer.
537 EXPECT_EQ(add, three_port.oper);
566 // Add another oper to the graph.
605 TF_Operation* oper; local
664 TF_Operation* oper = ScalarConst(3, graph, s); local
841 TF_Operation* oper = ScalarConst(3, graph, s); local
892 TF_Operation* oper = ScalarConst(3, graph, s); local
1975 auto oper = TF_FinishOperation(desc, s_); local
1999 auto oper = TF_FinishOperation(desc, s_); local
2021 auto oper = TF_FinishOperation(desc, s_); local
2038 auto oper = TF_FinishOperation(desc, s_); local
2052 auto oper = TF_FinishOperation(desc, s_); local
2069 auto oper = TF_FinishOperation(desc, s_); local
2083 auto oper = TF_FinishOperation(desc, s_); local
2100 auto oper = TF_FinishOperation(desc, s_); local
2114 auto oper = TF_FinishOperation(desc, s_); local
2131 auto oper = TF_FinishOperation(desc, s_); local
2145 auto oper = TF_FinishOperation(desc, s_); local
2176 auto oper = TF_FinishOperation(desc, s_); local
2204 auto oper = TF_FinishOperation(desc, s_); local
2237 auto oper = TF_FinishOperation(desc, s_); local
2265 auto oper = TF_FinishOperation(desc, s_); local
2300 auto oper = TF_FinishOperation(desc, s_); local
2335 auto oper = TF_FinishOperation(desc, s_); local
2367 auto oper = TF_FinishOperation(desc, s_); local
2375 auto oper = TF_FinishOperation(desc, s_); local
    [all...]
  /external/dtc/
fdtput.c 40 enum oper_type oper; /* operation to perform */ member in struct:display_info
340 switch (disp->oper) {
423 disp.oper = OPER_WRITE_PROP;
435 disp.oper = OPER_CREATE_NODE;
438 disp.oper = OPER_REMOVE_NODE;
441 disp.oper = OPER_DELETE_PROP;
466 if (disp.oper == OPER_WRITE_PROP) {
473 if (disp.oper == OPER_DELETE_PROP)
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/MCTargetDesc/
MBlazeMCCodeEmitter.cpp 156 MCOperand oper = MI.getOperand(opNo); local
158 if (oper.isImm()) {
159 EmitIMM(oper, CurByte, OS);
160 } else if (oper.isExpr()) {
165 Fixups.push_back(MCFixup::Create(0,oper.getExpr(),FixupKind));
171 Fixups.push_back(MCFixup::Create(0,oper.getExpr(),FixupKind));
  /external/u-boot/common/
bedbug.c 769 struct operand *oper[MAX_OPERANDS];
813 oper[n_operands] = &operands[opc->fields[n_operands] - 1];
815 if (oper[n_operands]->hint & OH_SILENT) {
820 oper[n_operands]->name);
832 oper[n_operands]->name, scratch);
835 if ((param = parse_operand (memaddr, opc, oper[n_operands],
869 struct operand *oper, char *txt, int *err)
877 mask = (1 << oper->bits) - 1;
879 if (oper->hint & OH_ADDR) {
892 data |= 1 << (oper->bits - 1)
757 struct operand *oper[MAX_OPERANDS]; local
    [all...]
  /external/tensorflow/tensorflow/python/client/
tf_session_helper.h 190 std::vector<TF_Output> GetOperationInputs(TF_Operation* oper);
194 TF_Operation* oper);
198 TF_Operation* oper);
  /external/clang/test/OpenMP/
declare_reduction_messages.c 13 #pragma omp declare reduction(oper: // expected-error {{expected a type}}
14 #pragma omp declare reduction(oper; // expected-error {{expected ':'}} expected-error {{expected a type}}
  /external/wpa_supplicant_8/src/common/
hw_features_common.c 158 struct ieee80211_ht_operation *oper; local
165 oper = (struct ieee80211_ht_operation *) elems.ht_operation;
166 *pri_chan = oper->primary_chan;
167 if (oper->ht_param & HT_INFO_HT_PARAM_STA_CHNL_WIDTH) {
168 int sec = oper->ht_param &
251 struct ieee80211_ht_operation *oper; local
264 oper = (struct ieee80211_ht_operation *) elems.ht_operation;
265 if (oper->ht_param & HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK)
  /external/tensorflow/tensorflow/go/
operation.go 132 return C.TF_Output{oper: p.Op.c, index: C.int(p.Index)}
152 c: consumer.oper,
178 return C.TF_Input{oper: p.Op.c, index: C.int(p.Index)}
191 c: output.oper,
  /external/u-boot/tools/buildman/
board.py 224 oper = None
227 oper = sym
228 elif oper:
230 oper = None

Completed in 1094 milliseconds

1 2 3 4