| /src/sys/dev/ofw/ |
| ofw_pci_subr.c | 51 struct ofw_pci_register opr; local 67 len = OF_getprop(phandle, "reg", &opr, sizeof(opr)); 68 if (len < sizeof(opr)) { 72 phys_hi = be32toh(opr.phys_hi);
|
| /src/external/gpl3/binutils/dist/opcodes/ |
| s12z-dis.c | 221 /* Emit the disassembled text for OPR */ 223 opr_emit_disassembly (const struct operand *opr, 228 switch (opr->cl) 232 ((struct immediate_operand *) opr)->value); 236 int r = ((struct register_operand*) opr)->reg; 252 ((struct bitfield_operand*)opr)->width, 253 ((struct bitfield_operand*)opr)->offset); 258 (struct simple_memory_operand *) opr; 265 struct memory_operand *mo = (struct memory_operand *) opr;
|
| microblaze-dis.c | 202 const struct op_code_struct **opr) 231 *opr = op;
|
| /src/external/gpl3/binutils.old/dist/opcodes/ |
| s12z-dis.c | 221 /* Emit the disassembled text for OPR */ 223 opr_emit_disassembly (const struct operand *opr, 228 switch (opr->cl) 232 ((struct immediate_operand *) opr)->value); 236 int r = ((struct register_operand*) opr)->reg; 252 ((struct bitfield_operand*)opr)->width, 253 ((struct bitfield_operand*)opr)->offset); 258 (struct simple_memory_operand *) opr; 265 struct memory_operand *mo = (struct memory_operand *) opr;
|
| microblaze-dis.c | 202 const struct op_code_struct **opr) 231 *opr = op;
|
| /src/external/gpl3/gdb.old/dist/opcodes/ |
| s12z-dis.c | 221 /* Emit the disassembled text for OPR */ 223 opr_emit_disassembly (const struct operand *opr, 228 switch (opr->cl) 232 ((struct immediate_operand *) opr)->value); 236 int r = ((struct register_operand*) opr)->reg; 252 ((struct bitfield_operand*)opr)->width, 253 ((struct bitfield_operand*)opr)->offset); 258 (struct simple_memory_operand *) opr; 265 struct memory_operand *mo = (struct memory_operand *) opr;
|
| /src/external/gpl3/gdb/dist/opcodes/ |
| s12z-dis.c | 221 /* Emit the disassembled text for OPR */ 223 opr_emit_disassembly (const struct operand *opr, 228 switch (opr->cl) 232 ((struct immediate_operand *) opr)->value); 236 int r = ((struct register_operand*) opr)->reg; 252 ((struct bitfield_operand*)opr)->width, 253 ((struct bitfield_operand*)opr)->offset); 258 (struct simple_memory_operand *) opr; 265 struct memory_operand *mo = (struct memory_operand *) opr;
|
| /src/external/mit/lua/dist/src/ |
| lcode.c | 1390 ** Convert a BinOpr to an OpCode (ORDER OPR - ORDER OP) 1392 l_sinline OpCode binopr2op (BinOpr opr, BinOpr baser, OpCode base) { 1393 lua_assert(baser <= opr && 1394 ((baser == OPR_ADD && opr <= OPR_SHR) || 1395 (baser == OPR_LT && opr <= OPR_LE))); 1396 return cast(OpCode, (cast_int(opr) - cast_int(baser)) + cast_int(base)); 1401 ** Convert a UnOpr to an OpCode (ORDER OPR - ORDER OP) 1403 l_sinline OpCode unopr2op (UnOpr opr) { 1404 return cast(OpCode, (cast_int(opr) - cast_int(OPR_MINUS)) + 1410 ** Convert a BinOpr to a tag method (ORDER OPR - ORDER TM [all...] |
| /src/external/gpl3/binutils/dist/gas/config/ |
| loongarch-parse.y | 164 offsetT opr = s_top->value.X_add_number; 170 opr = -opr; 173 opr = ~opr; 176 opr = !opr; 181 s_top->value.X_add_number = opr;
|
| loongarch-parse.c | 216 offsetT opr = s_top->value.X_add_number; local 222 opr = -opr; 225 opr = ~opr; 228 opr = !opr; 233 s_top->value.X_add_number = opr;
|
| tc-s12z.c | 849 /* Emit the code for an OPR address mode operand */ 874 opr (const struct instruction *insn) 1707 /* OP0: S; OP1: destination OPR */ 1714 /* OP0: S; OP1: source OPR */ 1736 non-optimal kludges in the OPR encoding, it seems sensible that 1877 Then, it rewinds the input and parses it again as a OPR. 2036 /* Shift instruction with a OPR operand */ 2084 /* Shift instruction with a OPR operand */ 3388 {"jmp", 1, 0xaa, opr, 0xba}, 3389 {"jsr", 1, 0xab, opr, 0xbb} 867 opr (const struct instruction *insn) function [all...] |
| /src/external/gpl3/binutils.old/dist/gas/config/ |
| loongarch-parse.y | 163 offsetT opr = s_top->value.X_add_number; 169 opr = -opr; 172 opr = ~opr; 175 opr = !opr; 180 s_top->value.X_add_number = opr;
|
| loongarch-parse.c | 215 offsetT opr = s_top->value.X_add_number; local 221 opr = -opr; 224 opr = ~opr; 227 opr = !opr; 232 s_top->value.X_add_number = opr;
|
| tc-s12z.c | 849 /* Emit the code for an OPR address mode operand */ 874 opr (const struct instruction *insn) 1707 /* OP0: S; OP1: destination OPR */ 1714 /* OP0: S; OP1: source OPR */ 1736 non-optimal kludges in the OPR encoding, it seems sensible that 1877 Then, it rewinds the input and parses it again as a OPR. 2036 /* Shift instruction with a OPR operand */ 2084 /* Shift instruction with a OPR operand */ 3388 {"jmp", 1, 0xaa, opr, 0xba}, 3389 {"jsr", 1, 0xab, opr, 0xbb} 867 opr (const struct instruction *insn) function [all...] |
| /src/external/gpl2/xcvs/dist/lib/ |
| regcomp.c | 315 re_set_fastmap (fastmap, icase, dfa->nodes[node].opr.c); 325 *p++ = dfa->nodes[node].opr.c; 329 *p++ = dfa->nodes[node].opr.c; 344 if (dfa->nodes[node].opr.sbcset[i] & ((bitset_word) 1 << j)) 351 re_charset_t *cset = dfa->nodes[node].opr.mbcset; 972 && clexp_node->opr.idx == dfa->nodes[node_idx].opr.idx) 1034 if (dfa->nodes[node].opr.c >= 0x80) 1038 switch (dfa->nodes[node].opr.idx) 1071 if (dfa->nodes[node].opr.sbcset[i] >> rshift != 0 [all...] |
| regexec.c | 1298 Idx subexp_idx = dfa->nodes[node].opr.idx + 1; 1526 Idx reg_num = dfa->nodes[cur_node].opr.idx + 1; 1537 Idx reg_num = dfa->nodes[cur_node].opr.idx + 1; 1898 subexp_idx = dfa->nodes[ent->node].opr.idx; 1984 if ((boundaries & 1) && subexp_idx == dfa->nodes[node].opr.idx) 1989 if ((boundaries & 2) && subexp_idx == dfa->nodes[node].opr.idx) 2049 subexp_idx = dfa->nodes[ent->node].opr.idx; 2059 && subexp_idx == dfa->nodes[node].opr.idx) 2062 && subexp_idx == dfa->nodes[node].opr.idx) 2104 if (subexp_idx != dfa->nodes[node].opr.idx [all...] |
| /src/sys/arch/hpcmips/stand/pbsdboot/ |
| elf.c | 73 vmem_sub(int opr, void* xxx, void *addr, int nbytes, int *byte_count) 84 opr == VMEM_CLEAR ? "clear" : (opr == VMEM_LOAD ? "load" : "copy")); 97 switch (opr) {
|
| /src/external/bsd/wpa/dist/src/crypto/ |
| random.c | 395 u8 opr; local 411 opr = own_pool_ready > 0xff ? 0xff : own_pool_ready; 412 if (fwrite(&opr, 1, 1, f) != 1 ||
|
| /src/external/gpl3/gcc/dist/gcc/ |
| genmatch.cc | 2409 id_base *opr = e->operation; local 2410 if (user_id *uid = dyn_cast <user_id *> (opr)) 2411 opr = uid->substitutes[0]; 2588 id_base *opr = operation; local 2592 if (user_id *uid = dyn_cast <user_id *> (opr)) 2593 opr = uid->substitutes[0]; 2595 bool conversion_p = is_conversion (opr); 2605 else if (*opr == REALPART_EXPR 2606 || *opr == IMAGPART_EXPR) 2613 else if (is_a <operator_id *> (opr) 3647 id_base *opr = e->operation; local 3734 id_base *opr = e->operation; local 4788 id_base *opr = get_operator (id); local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| genmatch.cc | 2253 id_base *opr = e->operation; local 2254 if (user_id *uid = dyn_cast <user_id *> (opr)) 2255 opr = uid->substitutes[0]; 2432 id_base *opr = operation; local 2436 if (user_id *uid = dyn_cast <user_id *> (opr)) 2437 opr = uid->substitutes[0]; 2439 bool conversion_p = is_conversion (opr); 2449 else if (*opr == REALPART_EXPR 2450 || *opr == IMAGPART_EXPR) 2457 else if (is_a <operator_id *> (opr) 3440 id_base *opr = e->operation; local 3526 id_base *opr = e->operation; local 4554 id_base *opr = get_operator (id); local [all...] |
| /src/external/cddl/osnet/dist/lib/libdtrace/common/ |
| dt_proc.c | 1016 dt_proc_t *dpr, *opr; local 1081 for (opr = dt_list_prev(&dph->dph_lrulist); 1082 opr != NULL; opr = dt_list_prev(opr)) { 1083 if (opr->dpr_cacheable && opr->dpr_refs == 0) { 1084 dt_proc_destroy(dtp, opr->dpr_proc);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/ |
| py-xmethods.py | 25 def A_plus_A(obj, opr): 27 return obj["a"] + opr["a"]
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| py-xmethods.py | 25 def A_plus_A(obj, opr): 27 return obj["a"] + opr["a"]
|
| /src/usr.sbin/wiconfig/ |
| wiconfig.c | 798 #define SET_OPERAND(opr, desc) do { \ 799 if ((opr) == NULL) \ 800 (opr) = optarg; \ 803 desc, (opr)); \
|
| /src/bin/csh/ |
| set.c | 366 Char opr[2], **v, *vec[5], **vecp; local 374 opr[0] = (Char)op; 375 opr[1] = 0; 376 *v++ = opr; 378 *v++ = opr;
|