Searched refs:op (Results 251 - 275 of 1139) sorted by relevance

<<11121314151617181920>>

/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueString.cpp45 VarSetOperationType op) {
64 switch (op) {
74 error = OptionValue::SetValueFromString(value, op);
44 SetValueFromString(llvm::StringRef value, VarSetOperationType op) argument
H A DOptionValuePathMappings.cpp43 VarSetOperationType op) {
48 switch (op) {
139 if (op == eVarSetOperationInsertAfter)
192 error = OptionValue::SetValueFromString(value, op);
42 SetValueFromString(llvm::StringRef value, VarSetOperationType op) argument
H A DOptionValueFileSpecList.cpp45 VarSetOperationType op) {
51 switch (op) {
109 if (op == eVarSetOperationInsertAfter)
157 error = OptionValue::SetValueFromString(value, op);
44 SetValueFromString(llvm::StringRef value, VarSetOperationType op) argument
/freebsd-current/sys/contrib/xen/io/
H A Dpciif.h111 struct xen_pci_op op; member in struct:xen_pci_sharedinfo
/freebsd-current/contrib/opencsd/decoder/include/common/
H A Dtrc_frame_deformatter.h60 virtual ocsd_datapath_resp_t TraceDataIn( const ocsd_datapath_op_t op,
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValuePathMappings.h36 VarSetOperationType op = eVarSetOperationAssign) override;
H A DOptionValueChar.h39 VarSetOperationType op = eVarSetOperationAssign) override;
H A DOptionValueUUID.h38 VarSetOperationType op = eVarSetOperationAssign) override;
H A DOptionValueFileColonLine.h34 VarSetOperationType op = eVarSetOperationAssign) override;
/freebsd-current/contrib/tcpdump/
H A Dprint-vsock.c107 nd_uint16_t op; /* enum virtio_vsock_op */ member in struct:virtio_vsock_hdr
118 nd_uint16_t op; /* enum af_vsockmon_op */ member in struct:af_vsockmon_hdr
137 u16_v = GET_LE_U_2(hdr->op);
138 ND_PRINT(", op %s",
139 tok2str(virtio_op, "Invalid op (%hu)", u16_v));
217 hdr_op = GET_LE_U_2(hdr->op);
221 tok2str(vsock_op, " invalid op (%u)", hdr_op),
/freebsd-current/sys/dev/smbus/
H A Dsmb.h37 u_short op; member in struct:smbcmd
/freebsd-current/sys/dev/ath/
H A Dif_ath_alq.h150 uint16_t op; member in struct:if_ath_alq_hdr
161 if_ath_alq_checkdebug(struct if_ath_alq *alq, uint16_t op) argument
165 & (1 << (op - 1)));
174 extern void if_ath_alq_post(struct if_ath_alq *alq, uint16_t op,
H A Dif_ath_alq.c152 if_ath_alq_post(struct if_ath_alq *alq, uint16_t op, uint16_t len, argument
159 if (! if_ath_alq_checkdebug(alq, op))
181 ap->op = htobe16(op);
/freebsd-current/tools/bus_space/
H A Dbusdma.h52 int bd_sync(int mdid, u_int op, u_long ofs, u_long len);
/freebsd-current/tools/tools/ath/athkey/
H A Dathkey.c135 int op = HAL_DIAG_SETKEY; local
149 op = HAL_DIAG_RESETKEY;
171 atd.ad_id = op | ATH_DIAG_IN | ATH_DIAG_DYN;
174 switch (op) {
/freebsd-current/crypto/openssl/crypto/
H A Dthreads_pthread.c225 int CRYPTO_atomic_or(uint64_t *val, uint64_t op, uint64_t *ret, argument
230 *ret = __atomic_or_fetch(val, op, __ATOMIC_ACQ_REL);
236 *ret = atomic_or_64_nv(val, op);
242 *val |= op;
H A Dthreads_win.c219 int CRYPTO_atomic_or(uint64_t *val, uint64_t op, uint64_t *ret, argument
225 *val |= op;
233 *ret = (uint64_t)InterlockedOr64((LONG64 volatile *)val, (LONG64)op) | op;
/freebsd-current/lib/libc/tests/stdlib/
H A Ddynthr_test.c43 typedef void (modfunc_t)(int op);
/freebsd-current/sys/powerpc/include/
H A Dofw_machdep.h54 int ofw_pcibus_get_cpus(device_t dev, device_t child, enum cpu_sets op,
/freebsd-current/sys/riscv/riscv/
H A Ddb_disasm.c80 int (*match_func)(struct riscv_op *op, uint32_t insn);
84 m_op(struct riscv_op *op, uint32_t insn) argument
87 if (((insn ^ op->match) & op->mask) == 0)
348 oprint(struct riscv_op *op, vm_offset_t loc, int insn) argument
356 p = op->fmt;
362 db_printf("%s\t", op->name);
577 struct riscv_op *op; local
583 op = &riscv_opcodes[j];
584 if (op
[all...]
/freebsd-current/tools/bus_space/C/
H A Dlang.c227 busdma_sync(busdma_md_t md, int op) argument
230 return (bd_sync(md, op, 0UL, ~0UL));
234 busdma_sync_range(busdma_md_t md, int op, bus_size_t ofs, bus_size_t len) argument
237 return (bd_sync(md, op, ofs, len));
/freebsd-current/contrib/bc/include/
H A Dbc.h240 * Returns non-zero if operator @a op is left associative, zero otherwise.
241 * @param op The operator to test for associativity.
244 #define BC_PARSE_OP_LEFT(op) (BC_PARSE_OP_DATA(op) & BC_LEX_CHAR_MSB(1))
247 * Returns the precedence of operator @a op. Lower number means higher
249 * @param op The operator to return the precedence of.
250 * @return The precedence of @a op.
252 #define BC_PARSE_OP_PREC(op) (BC_PARSE_OP_DATA(op) & ~(BC_LEX_CHAR_MSB(1)))
/freebsd-current/sys/arm64/arm64/
H A Dsys_machdep.c49 switch (uap->op) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwo.cpp84 const uint8_t op) const {
85 return GetBaseSymbolFile().GetVendorDWARFOpcodeSize(data, data_offset, op);
89 uint8_t op, const lldb_private::DataExtractor &opcodes,
91 return GetBaseSymbolFile().ParseVendorDWARFOpcode(op, opcodes, offset, stack);
88 ParseVendorDWARFOpcode( uint8_t op, const lldb_private::DataExtractor &opcodes, lldb::offset_t &offset, std::vector<lldb_private::Value> &stack) const argument
/freebsd-current/sys/arm/arm/
H A Dsys_machdep.c54 int op; member in struct:sysarch_args
178 switch (uap->op) {
188 ktrcapfail(CAPFAIL_SYSCALL, &uap->op);
194 switch (uap->op) {

Completed in 298 milliseconds

<<11121314151617181920>>