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

1 2

  /external/wpa_supplicant_8/src/ap/
ieee802_11_he.c 62 struct ieee80211_he_operation *oper; local
79 oper = (struct ieee80211_he_operation *) pos;
80 os_memset(oper, 0, sizeof(*oper));
83 oper->he_oper_params |= hapd->iface->conf->he_op.he_bss_color;
86 oper->he_oper_params |=
91 oper->he_oper_params |= HE_OPERATION_TWT_REQUIRED;
94 oper->he_oper_params |=
98 pos += sizeof(*oper);
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...]
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...]
  /external/mesa3d/src/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/ltp/testcases/kernel/io/disktest/
defs.h 107 op_t oper; member in struct:action
  /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));
  /toolchain/binutils/binutils-2.25/opcodes/
d10v-dis.c 31 print_operand (struct d10v_operand *oper,
39 if (oper->flags == OPERAND_ATMINUS)
44 if (oper->flags == OPERAND_MINUS)
49 if (oper->flags == OPERAND_PLUS)
54 if (oper->flags == OPERAND_ATSIGN)
59 if (oper->flags == OPERAND_ATPAR)
65 shift = oper->shift;
68 if (op->format == LONG_L && (oper->flags & OPERAND_REG))
71 num = (insn >> shift) & (0x7FFFFFFF >> (31 - oper->bits));
73 if (oper->flags & OPERAND_REG
157 struct d10v_operand *oper; local
202 struct d10v_operand *oper; local
    [all...]
rl78-dis.c 150 RL78_Opcode_Operand * oper; local
220 oper = *s == '0' ? &opcode.op[0] : &opcode.op[1];
223 if (oper->use_es && indirect_type (oper->type))
232 PR (PS, "%s", condition_names[oper->condition]);
236 switch (oper->type)
240 dis->print_address_func (oper->addend, dis);
242 || oper->addend > 999
243 || oper->addend < -999)
244 PR (PS, "%#x", oper->addend)
    [all...]
rx-dis.c 115 RX_Opcode_Operand * oper; local
151 oper = opcode.op + *s - '0';
154 if (oper->type == RX_Operand_Indirect)
155 PR (PS, "%s", size_names[oper->size]);
158 switch (oper->type)
162 dis->print_address_func (oper->addend, dis);
164 || oper->addend > 999
165 || oper->addend < -999)
166 PR (PS, "%#x", oper->addend);
168 PR (PS, "%d", oper->addend)
    [all...]
d30v-dis.c 92 extract_value (long long num, struct d30v_operand *oper, int is_long)
95 int shift = 12 - oper->position;
96 int mask = (0xFFFFFFFF >> (32 - oper->bits));
100 if (oper->bits == 32)
111 if (oper->flags & OPERAND_SHIFT)
126 struct d30v_operand *oper; local
160 oper = (struct d30v_operand *) &d30v_operand_table[opnum];
161 bits = oper->bits;
162 if (oper->flags & OPERAND_SHIFT)
166 && oper->flags != OPERAND_PLU
    [all...]
  /external/wpa_supplicant_8/hs20/server/www/
est.php 54 $oper = $row['operation']; variable
55 if ($oper != '5') {
56 error_log("EST: Unexpected operation $oper for user=$user realm=$realm");
  /system/core/demangle/
Demangler.cpp 48 const char* oper = nullptr; local
54 oper = "operator&&";
58 oper = "operator&";
61 oper = "operator&=";
64 oper = "operator=";
72 oper = "operator()";
75 oper = "operator,";
78 oper = "operator~";
86 oper = "operator delete[]";
89 oper = "operator*"
    [all...]
  /system/core/toolbox/upstream-netbsd/bin/dd/
args.c 116 char *oper, *arg; local
120 while ((oper = *++argv) != NULL) {
121 if ((oper = strdup(oper)) == NULL) {
127 if ((arg = strchr(oper, '=')) == NULL) {
128 errx(EXIT_FAILURE, "unknown operand %s", oper);
133 errx(EXIT_FAILURE, "no value specified for %s", oper);
136 tmp.name = oper;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GroupsTest.java 265 final ArrayList<ContentProviderOperation> oper = Lists.newArrayList(); local
269 oper.add(buildVisibleAssert(contactId, true));
270 oper.add(ContentProviderOperation.newUpdate(groupUri).withValue(Groups.GROUP_VISIBLE, 0)
272 oper.add(buildVisibleAssert(contactId, true));
273 mResolver.applyBatch(ContactsContract.AUTHORITY, oper);
276 oper.clear();
277 oper.add(buildVisibleAssert(contactId, false));
278 mResolver.applyBatch(ContactsContract.AUTHORITY, oper);
  /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/wpa_supplicant_8/src/common/
hw_features_common.c 149 struct ieee80211_ht_operation *oper; local
156 oper = (struct ieee80211_ht_operation *) elems.ht_operation;
157 *pri_chan = oper->primary_chan;
158 if (oper->ht_param & HT_INFO_HT_PARAM_STA_CHNL_WIDTH) {
159 int sec = oper->ht_param &
242 struct ieee80211_ht_operation *oper; local
255 oper = (struct ieee80211_ht_operation *) elems.ht_operation;
256 if (oper->ht_param & HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK)
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
RawContactDeltaTests.java 194 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
196 assertEquals("Incorrect target", RawContacts.CONTENT_URI, oper.getUri());
200 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
202 assertEquals("Incorrect target", Data.CONTENT_URI, oper.getUri());
206 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
208 assertEquals("Incorrect target", RawContacts.CONTENT_URI, oper.getUri());
237 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
239 assertEquals("Incorrect target", RawContacts.CONTENT_URI, oper.getUri());
243 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
245 assertEquals("Incorrect target", RawContacts.CONTENT_URI, oper.getUri())
249 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
255 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
280 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
286 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
292 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
316 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
338 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
367 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
373 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
    [all...]
RawContactDeltaListTests.java 301 final ContentProviderOperation oper = cpoWrapper.getOperation(); local
302 if (AggregationExceptions.CONTENT_URI.equals(oper.getUri())
  /external/wpa_supplicant_8/wpa_supplicant/
mesh_mpm.c 651 struct ieee80211_ht_operation *oper; local
685 oper = (struct ieee80211_ht_operation *) elems->ht_operation;
686 if (oper &&
687 !(oper->ht_param & HT_INFO_HT_PARAM_STA_CHNL_WIDTH) &&
    [all...]
  /art/compiler/optimizing/
induction_var_range.cc 1321 HInstruction* oper; local
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_sndlib.h 278 S_FM_OPER oper[4]; member in struct:s_fm_region_tag
  /external/wpa_supplicant_8/hs20/server/
spp_server.c 1500 enum hs20_session_operation oper; local
1537 enum hs20_session_operation oper; local
1563 enum hs20_session_operation oper; local
1756 enum hs20_session_operation oper; local
1780 enum hs20_session_operation oper; local
2026 enum hs20_session_operation oper; local
    [all...]
  /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 308 static void oper_list_add(struct io_oper *oper, struct io_oper **list)
311 *list = oper;
312 oper->prev = oper->next = oper;
315 oper->prev = (*list)->prev;
316 oper->next = *list;
317 (*list)->prev->next = oper;
318 (*list)->prev = oper;
322 static void oper_list_del(struct io_oper *oper, struct io_oper **list
463 struct io_oper *oper = io->io_oper; local
682 struct io_oper *oper; local
874 struct io_oper *oper; local
1112 struct io_oper *oper; local
1339 struct io_oper *oper; local
    [all...]
  /external/mesa3d/src/glsl/
ast.h 200 ast_expression(int oper, ast_expression *,
204 oper(ast_identifier)
220 enum ast_operators oper; member in class:ast_expression
254 ast_expression_bin(int oper, ast_expression *, ast_expression *);

Completed in 452 milliseconds

1 2