| /freebsd-10-stable/sys/ia64/disasm/ |
| D | disasm_decode.c | 53 enum asm_op op; in asm_decodeA() local 55 fmt = ASM_FMT_NONE, op = ASM_OP_NONE; in asm_decodeA() 64 op = ASM_OP_ADD, in asm_decodeA() 69 op = ASM_OP_SUB, in asm_decodeA() 74 op = ASM_OP_ADDP4, in asm_decodeA() 80 op = ASM_OP_AND, in asm_decodeA() 84 op = ASM_OP_ANDCM, in asm_decodeA() 88 op = ASM_OP_OR, in asm_decodeA() 92 op = ASM_OP_XOR, in asm_decodeA() 100 op = ASM_OP_AND, in asm_decodeA() [all …]
|
| D | disasm_extract.c | 186 asm_normalize(struct asm_inst *i, enum asm_op op) in asm_normalize() argument 190 switch (op) { in asm_normalize() 193 op = ASM_OP_BR; in asm_normalize() 197 op = ASM_OP_BR; in asm_normalize() 201 op = ASM_OP_BR; in asm_normalize() 205 op = ASM_OP_BR; in asm_normalize() 209 op = ASM_OP_BR; in asm_normalize() 213 op = ASM_OP_BR; in asm_normalize() 217 op = ASM_OP_BR; in asm_normalize() 221 op = ASM_OP_BR; in asm_normalize() [all …]
|
| /freebsd-10-stable/contrib/gcc/config/arm/ |
| D | pr-support.c | 110 _uw op; in __gnu_unwind_execute() local 117 op = next_unwind_byte (uws); in __gnu_unwind_execute() 118 if (op == CODE_FINISH) in __gnu_unwind_execute() 132 if ((op & 0x80) == 0) in __gnu_unwind_execute() 137 offset = ((op & 0x3f) << 2) + 4; in __gnu_unwind_execute() 139 if (op & 0x40) in __gnu_unwind_execute() 147 if ((op & 0xf0) == 0x80) in __gnu_unwind_execute() 149 op = (op << 8) | next_unwind_byte (uws); in __gnu_unwind_execute() 150 if (op == 0x8000) in __gnu_unwind_execute() 156 op = (op << 4) & 0xfff0; in __gnu_unwind_execute() [all …]
|
| D | predicates.md | 25 if (GET_CODE (op) == SUBREG) 26 op = SUBREG_REG (op); 30 return (GET_CODE (op) == REG 31 && (REGNO (op) >= FIRST_PSEUDO_REGISTER 32 || REGNO_REG_CLASS (REGNO (op)) != NO_REGS)); 39 return REGNO (op) < FIRST_PSEUDO_REGISTER; 46 if (GET_CODE (op) == SUBREG) 47 op = SUBREG_REG (op); 49 return (GET_CODE (op) == REG 50 && (REGNO (op) <= LAST_ARM_REGNUM [all …]
|
| /freebsd-10-stable/contrib/libpcap/ |
| D | bpf_image.c | 60 const char *fmt, *op; local 68 op = "unimp"; 74 op = "ret"; 79 op = "ret"; 84 op = "ld"; 89 op = "ldh"; 94 op = "ldb"; 99 op = "ld"; 104 op = "ld"; 109 op = "ldh"; [all …]
|
| /freebsd-10-stable/contrib/zlib/ |
| D | inffast.c | 74 unsigned op; /* code bits, operation, extra bits, or */ local 112 op = (unsigned)(here.bits); 113 hold >>= op; 114 bits -= op; 115 op = (unsigned)(here.op); 116 if (op == 0) { /* literal */ 122 else if (op & 16) { /* length base */ 124 op &= 15; /* number of extra bits */ 125 if (op) { 126 if (bits < op) { [all …]
|
| /freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
| D | inffast.c | 93 unsigned op; /* code bits, operation, extra bits, or */ local 131 op = (unsigned)(this.bits); 132 hold >>= op; 133 bits -= op; 134 op = (unsigned)(this.op); 135 if (op == 0) { /* literal */ 141 else if (op & 16) { /* length base */ 143 op &= 15; /* number of extra bits */ 144 if (op) { 145 if (bits < op) { [all …]
|
| /freebsd-10-stable/contrib/gcc/config/ia64/ |
| D | predicates.md | 35 (match_test "SYMBOL_REF_FUNCTION_P (op)"))) 43 switch (GET_CODE (op)) 46 op = XEXP (op, 0); 47 if (GET_CODE (op) != PLUS 48 || GET_CODE (XEXP (op, 0)) != SYMBOL_REF 49 || GET_CODE (XEXP (op, 1)) != CONST_INT) 51 offset = INTVAL (XEXP (op, 1)); 52 op = XEXP (op, 0); 56 if (CONSTANT_POOL_ADDRESS_P (op)) 58 size = GET_MODE_SIZE (get_pool_mode (op)); [all …]
|
| /freebsd-10-stable/contrib/gcc/ |
| D | sched-vis.c | 74 rtx op[4]; in print_exp() local 80 op[i] = NULL_RTX; in print_exp() 86 op[0] = XEXP (x, 0); in print_exp() 91 op[1] = GEN_INT (-INTVAL (XEXP (x, 1))); in print_exp() 96 op[1] = XEXP (x, 1); in print_exp() 100 op[0] = XEXP (x, 0); in print_exp() 102 op[1] = XEXP (x, 1); in print_exp() 106 op[0] = XEXP (x, 0); in print_exp() 108 op[1] = XEXP (x, 1); in print_exp() 112 op[0] = XEXP (x, 0); in print_exp() [all …]
|
| D | recog.c | 941 general_operand (rtx op, enum machine_mode mode) in general_operand() argument 943 enum rtx_code code = GET_CODE (op); in general_operand() 946 mode = GET_MODE (op); in general_operand() 950 if (GET_MODE (op) == VOIDmode && mode != VOIDmode in general_operand() 955 if (GET_CODE (op) == CONST_INT in general_operand() 957 && trunc_int_for_mode (INTVAL (op), mode) != INTVAL (op)) in general_operand() 960 if (CONSTANT_P (op)) in general_operand() 961 return ((GET_MODE (op) == VOIDmode || GET_MODE (op) == mode in general_operand() 963 && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op)) in general_operand() 964 && LEGITIMATE_CONSTANT_P (op)); in general_operand() [all …]
|
| /freebsd-10-stable/sbin/iscontrol/ |
| D | login.c | 122 isc_opt_t *op = sess->op; in handleTgtResp() local 130 if(strcmp(np, op->tgtChapName? op->tgtChapName: op->initiatorName) != 0) { in handleTgtResp() 134 l1 = str2bin(op->tgtChapDigest, &d1); in handleTgtResp() 137 debug(3, "l1=%d '%s' l2=%d '%s'", l1, op->tgtChapDigest, l2, rp); in handleTgtResp() 145 free(op->tgtChapDigest); in handleTgtResp() 146 op->tgtChapDigest = NULL; in handleTgtResp() 156 isc_opt_t *op = sess->op; in processParams() local 176 q = op->targetAddress = strdup(eq+1); in processParams() 181 ta = op->targetAddress; in processParams() 182 op->targetAddress = strdup(ta+1); in processParams() [all …]
|
| /freebsd-10-stable/contrib/subversion/subversion/libsvn_client/ |
| D | mtcc.c | 100 mtcc_op_t *op; in mtcc_op_create() local 102 op = apr_pcalloc(result_pool, sizeof(*op)); in mtcc_op_create() 103 op->name = name ? apr_pstrdup(result_pool, name) : ""; in mtcc_op_create() 106 op->kind = directory ? OP_ADD_DIR : OP_ADD_FILE; in mtcc_op_create() 108 op->kind = directory ? OP_OPEN_DIR : OP_OPEN_FILE; in mtcc_op_create() 111 op->children = apr_array_make(result_pool, 4, sizeof(mtcc_op_t *)); in mtcc_op_create() 113 op->src_rev = SVN_INVALID_REVNUM; in mtcc_op_create() 115 return op; in mtcc_op_create() 119 mtcc_op_find(mtcc_op_t **op, in mtcc_op_find() argument 140 *op = base_op; in mtcc_op_find() [all …]
|
| /freebsd-10-stable/contrib/gcc/config/s390/ |
| D | predicates.md | 32 (match_test "op == CONST0_RTX (mode)"))) 38 (match_test "CONSTANT_P (op)"))) 49 && GET_CODE (op) == SUBREG 50 && GET_CODE (SUBREG_REG (op)) == MEM) 51 op = SUBREG_REG (op); 53 if (GET_CODE (op) != MEM) 55 if (!s390_legitimate_address_without_index_p (op)) 66 (match_test "!flag_pic || SYMBOL_REF_LOCAL_P (op)")) 68 (and (match_test "GET_CODE (XEXP (op, 0)) == UNSPEC") 69 (match_test "XINT (XEXP (op, 0), 1) == UNSPEC_PLT"))))) [all …]
|
| /freebsd-10-stable/usr.sbin/config/ |
| D | mkoptions.c | 68 struct opt *op; in options() local 72 op = (struct opt *)calloc(1, sizeof(*op)); in options() 73 if (op == NULL) in options() 75 op->op_name = ns(cp->cpu_name); in options() 76 SLIST_INSERT_HEAD(&opt, op, op_next); in options() 90 op = (struct opt *)calloc(1, sizeof(*op)); in options() 91 if (op == NULL) in options() 93 op->op_name = ns("MAXUSERS"); in options() 95 op->op_value = ns(buf); in options() 96 SLIST_INSERT_HEAD(&opt, op, op_next); in options() [all …]
|
| /freebsd-10-stable/libexec/rtld-elf/ |
| D | malloc.c | 155 register union overhead *op; local 168 op = (union overhead *)(pagepool_start); 169 n = n - sizeof (*op) - ((long)op & (n - 1)); 188 if (nbytes <= (unsigned long)(n = pagesz - sizeof (*op) - RSLOP)) { 196 n = -(sizeof (*op) + RSLOP); 211 if ((op = nextf[bucket]) == NULL) { 213 if ((op = nextf[bucket]) == NULL) 217 nextf[bucket] = op->ov_next; 218 op->ov_magic = MAGIC; 219 op->ov_index = bucket; [all …]
|
| /freebsd-10-stable/sys/mips/rmi/dev/sec/ |
| D | rmisec.c | 422 bzero(&cmd->op, sizeof(xlr_sec_io_t)); in xlr_sec_process() 424 cmd->op.source_buf = (uint64_t) (unsigned long)crp->crp_buf; in xlr_sec_process() 425 cmd->op.source_buf_size = crp->crp_ilen; in xlr_sec_process() 427 cmd->op.dest_buf = (uint64_t) (unsigned long)crp->crp_buf; in xlr_sec_process() 428 cmd->op.dest_buf_size = crp->crp_ilen; in xlr_sec_process() 430 cmd->op.dest_buf = (uint64_t) (unsigned long)crp->crp_buf; in xlr_sec_process() 431 cmd->op.dest_buf_size = crp->crp_ilen; in xlr_sec_process() 433 cmd->op.num_packets = 1; in xlr_sec_process() 434 cmd->op.num_fragments = 1; in xlr_sec_process() 436 if (cmd->op.source_buf_size > SEC_MAX_FRAG_LEN) { in xlr_sec_process() [all …]
|
| /freebsd-10-stable/contrib/gcc/config/i386/ |
| D | predicates.md | 24 (match_test "ANY_FP_REGNO_P (REGNO (op))"))) 29 (match_test "FP_REGNO_P (REGNO (op))"))) 34 (not (match_test "ANY_FP_REGNO_P (REGNO (op))")))) 39 (not (match_test "FP_REGNO_P (REGNO (op))")))) 44 (match_test "MMX_REGNO_P (REGNO (op))"))) 50 if (GET_CODE (op) == SUBREG) 51 op = SUBREG_REG (op); 52 return ANY_QI_REG_P (op); 55 ;; Return true if op is a NON_Q_REGS class register. 59 if (GET_CODE (op) == SUBREG) [all …]
|
| /freebsd-10-stable/bin/sh/ |
| D | arith_yacc.c | 64 #define ARITH_PRECEDENCE(op, prec) [op - ARITH_BINOP_MIN] = prec argument 113 static inline int arith_prec(int op) in arith_prec() argument 115 return prec[op - ARITH_BINOP_MIN]; in arith_prec() 123 static arith_t do_binop(int op, arith_t a, arith_t b) in do_binop() argument 126 switch (op) { in do_binop() 134 return op == ARITH_REM ? a % b : a / b; in do_binop() 168 static arith_t primary(int token, union yystype *val, int op, int noeval) in primary() argument 175 result = assignment(op, noeval); in primary() 181 last_token = op; in primary() 184 last_token = op; in primary() [all …]
|
| /freebsd-10-stable/contrib/ntp/sntp/libevent/test/ |
| D | tinytest_macros.h | 72 #define tt_abort_perror(op) TT_DIE(("%s: %s [%d]",(op),strerror(errno), errno)) argument 78 #define tt_fail_perror(op) TT_FAIL(("%s: %s [%d]",(op),strerror(errno), errno)) argument 153 #define tt_assert_op_type(a,op,b,type,fmt) \ argument 154 tt_assert_test_type(a,b,#a" "#op" "#b,type,(val1_ op val2_),fmt, \ 157 #define tt_int_op(a,op,b) \ argument 158 tt_assert_test_type(a,b,#a" "#op" "#b,long,(val1_ op val2_), \ 161 #define tt_uint_op(a,op,b) \ argument 162 tt_assert_test_type(a,b,#a" "#op" "#b,unsigned long, \ 163 (val1_ op val2_),"%lu",TT_EXIT_TEST_FUNCTION) 165 #define tt_ptr_op(a,op,b) \ argument [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Target/R600/ |
| D | SIInstrInfo.td | 159 class SOP1_32 <bits<8> op, string opName, list<dag> pattern> : SOP1 < 160 op, (outs SReg_32:$dst), (ins SSrc_32:$src0), 164 class SOP1_64 <bits<8> op, string opName, list<dag> pattern> : SOP1 < 165 op, (outs SReg_64:$dst), (ins SSrc_64:$src0), 169 class SOP2_32 <bits<7> op, string opName, list<dag> pattern> : SOP2 < 170 op, (outs SReg_32:$dst), (ins SSrc_32:$src0, SSrc_32:$src1), 174 class SOP2_64 <bits<7> op, string opName, list<dag> pattern> : SOP2 < 175 op, (outs SReg_64:$dst), (ins SSrc_64:$src0, SSrc_64:$src1), 179 class SOP2_SHIFT_64 <bits<7> op, string opName, list<dag> pattern> : SOP2 < 180 op, (outs SReg_64:$dst), (ins SSrc_64:$src0, SSrc_32:$src1), [all …]
|
| /freebsd-10-stable/sys/netinet/ |
| D | if_atm.c | 96 struct atmio_openvcc op; in atm_rtrequest() local 146 bzero(&op, sizeof(op)); in atm_rtrequest() 156 GET1BYTE(op.param.flags, addr, alen); in atm_rtrequest() 157 GET1BYTE(op.param.vpi, addr, alen); in atm_rtrequest() 158 GET2BYTE(op.param.vci, addr, alen); in atm_rtrequest() 159 op.param.traffic = ATMIO_TRAFFIC_UBR; in atm_rtrequest() 160 op.param.aal = (op.param.flags & ATM_PH_AAL5) ? in atm_rtrequest() 164 op.param.aal = ATMIO_AAL_5; in atm_rtrequest() 166 GET1BYTE(op.param.flags, addr, alen); in atm_rtrequest() 167 op.param.flags &= ATM_PH_LLCSNAP; in atm_rtrequest() [all …]
|
| /freebsd-10-stable/contrib/gcc/config/sparc/ |
| D | predicates.md | 26 (match_test "op == CONST0_RTX (mode)"))) 31 (match_test "op == CONST1_RTX (mode)"))) 36 (match_test "INTVAL (op) == 4096"))) 43 (match_test "SPARC_SIMM13_P (INTVAL (op))"))) 52 return ((GET_CODE (op) == CONST_INT && (unsigned) INTVAL (op) < 0x1000) 53 || (GET_CODE (op) == CONST_DOUBLE 54 && CONST_DOUBLE_HIGH (op) == 0 55 && (unsigned) CONST_DOUBLE_LOW (op) - 0xFFFFF000 < 0x1000)); 57 return (GET_CODE (op) == CONST_INT 58 && ((INTVAL (op) >= 0 && INTVAL (op) < 0x1000) [all …]
|
| /freebsd-10-stable/contrib/gcc/config/rs6000/ |
| D | predicates.md | 29 ;; Return 1 if op is COUNT register. 32 (match_test "REGNO (op) == COUNT_REGISTER_REGNUM 33 || REGNO (op) > LAST_VIRTUAL_REGISTER"))) 35 ;; Return 1 if op is an Altivec register. 38 (match_test "GET_CODE (op) != REG 39 || ALTIVEC_REGNO_P (REGNO (op)) 40 || REGNO (op) > LAST_VIRTUAL_REGISTER"))) 42 ;; Return 1 if op is XER register. 45 (match_test "XER_REGNO_P (REGNO (op))"))) 47 ;; Return 1 if op is a signed 5-bit constant integer. [all …]
|
| /freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| D | lz4.c | 484 BYTE *op = (BYTE *) dest; in LZ4_compressCtx() local 533 token = op++; in LZ4_compressCtx() 536 if unlikely(op + length + (2 + 1 + LASTLITERALS) + in LZ4_compressCtx() 544 *op++ = 255; in LZ4_compressCtx() 545 *op++ = (BYTE)len; in LZ4_compressCtx() 550 LZ4_BLINDCOPY(anchor, op, length); in LZ4_compressCtx() 554 LZ4_WRITE_LITTLEENDIAN_16(op, ip - ref); in LZ4_compressCtx() 587 if unlikely(op + (1 + LASTLITERALS) + (len >> 8) > oend) in LZ4_compressCtx() 593 *op++ = 255; in LZ4_compressCtx() 594 *op++ = 255; in LZ4_compressCtx() [all …]
|
| /freebsd-10-stable/sbin/hastd/ |
| D | lzf.c | 111 u8 *op = (u8 *)out_data; in lzf_compress() local 113 u8 *out_end = op + out_len; in lzf_compress() 142 lit = 0; op++; /* start run */ in lzf_compress() 173 if (expect_false (op + 3 + 1 >= out_end)) /* first a faster conservative test */ in lzf_compress() 174 if (op - !lit + 3 + 1 >= out_end) /* second the exact but rare test */ in lzf_compress() 177 op [- lit - 1] = lit - 1; /* stop run */ in lzf_compress() 178 op -= !lit; /* undo run if length is zero */ in lzf_compress() 217 *op++ = (off >> 8) + (len << 5); in lzf_compress() 221 *op++ = (off >> 8) + ( 7 << 5); in lzf_compress() 222 *op++ = len - 7; in lzf_compress() [all …]
|