| /src/external/lgpl3/gmp/dist/mpz/ |
| sqrt.c | 38 mp_size_t op_size, root_size; local 41 op_size = SIZ (op); 42 if (UNLIKELY (op_size <= 0)) 44 if (UNLIKELY (op_size < 0)) 51 root_size = (op_size + 1) / 2; 64 mpn_sqrtrem (root_ptr, NULL, op_ptr, op_size); 74 mpn_sqrtrem (root_ptr, NULL, op_ptr, op_size);
|
| sqrtrem.c | 38 mp_size_t op_size, root_size, rem_size; local 41 op_size = SIZ (op); 42 if (UNLIKELY (op_size <= 0)) 44 if (UNLIKELY (op_size < 0)) 52 rem_ptr = MPZ_NEWALLOC (rem, op_size); 55 root_size = (op_size + 1) / 2; 68 rem_size = mpn_sqrtrem (root_ptr, rem_ptr, op_ptr, op_size); 79 rem_size = mpn_sqrtrem (root_ptr, rem_ptr, op_ptr, op_size);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| ax-general.c | 315 int op_size; 363 if (i + 1 + aop_map[op].op_size > x->buf.size ()) 371 if (aop_map[op].op_size > 0) 376 read_const (x, i + 1, aop_map[op].op_size)); 392 i += 1 + aop_map[op].op_size; 455 for (i = 0; i < ax->buf.size (); i += 1 + op->op_size) 471 if (i + 1 + op->op_size > ax->buf.size ()) 313 int op_size; member in struct:aop_map
|
| ax-gdb.c | 1227 int op_size = 8 << op; 1233 if (offset + op_size <= bound_end) 1236 int last_frag = (offset + op_size == bound_end); 1247 ax_trace_quick (ax, op_size / TARGET_CHAR_BIT); 1288 gen_left_shift (ax, end - (offset + op_size)); 1296 offset += op_size; 1218 int op_size = 8 << op; local
|
| /src/external/gpl3/gdb/dist/sim/cr16/ |
| interp.c | 116 int32_t op_size = 0; local 127 op_size = cr16_optab[op_type].bit_size; 134 OP[i] = ((ins >> 4) & ((1 << op_size) -1)); 136 OP[i] = ((ins >> (32 - start_bit)) & ((1 << op_size) -1)); 138 if (OP[i] & ((long)1 << (op_size -1))) 143 OP[i] = (unsigned long int)(OP[i] & (((long)1 << op_size) -1)); 151 OP[i] = ((ins >> 4) & ((1 << op_size) -1)); break; 153 OP[i] = ((ins >> (32 - start_bit)) & ((1 << op_size) -1));break; 155 OP[i] = ((ins >> (16 + start_bit)) & ((1 << op_size) -1)); break; 165 OP[i] = ((ins >> 4) & ((1 << op_size) -1)) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| ax-general.c | 315 int op_size; 363 if (i + 1 + aop_map[op].op_size > x->buf.size ()) 371 if (aop_map[op].op_size > 0) 376 read_const (x, i + 1, aop_map[op].op_size)); 392 i += 1 + aop_map[op].op_size; 455 for (i = 0; i < ax->buf.size (); i += 1 + op->op_size) 471 if (i + 1 + op->op_size > ax->buf.size ()) 313 int op_size; member in struct:aop_map
|
| ax-gdb.c | 1227 int op_size = 8 << op; 1233 if (offset + op_size <= bound_end) 1236 int last_frag = (offset + op_size == bound_end); 1247 ax_trace_quick (ax, op_size / TARGET_CHAR_BIT); 1288 gen_left_shift (ax, end - (offset + op_size)); 1296 offset += op_size; 1218 int op_size = 8 << op; local
|
| /src/external/gpl3/gdb.old/dist/sim/cr16/ |
| interp.c | 116 int32_t op_size = 0; local 127 op_size = cr16_optab[op_type].bit_size; 134 OP[i] = ((ins >> 4) & ((1 << op_size) -1)); 136 OP[i] = ((ins >> (32 - start_bit)) & ((1 << op_size) -1)); 138 if (OP[i] & ((long)1 << (op_size -1))) 143 OP[i] = (unsigned long int)(OP[i] & (((long)1 << op_size) -1)); 151 OP[i] = ((ins >> 4) & ((1 << op_size) -1)); break; 153 OP[i] = ((ins >> (32 - start_bit)) & ((1 << op_size) -1));break; 155 OP[i] = ((ins >> (16 + start_bit)) & ((1 << op_size) -1)); break; 165 OP[i] = ((ins >> 4) & ((1 << op_size) -1)) [all...] |
| /src/external/gpl3/binutils/dist/gas/config/ |
| tc-h8300.c | 1099 int op_size = op & SIZE; local 1110 if (x_size != op_size) 1122 if (op_size == L_P) 1123 op_size = (Hmode ? L_32 : L_16); 1126 if (op_size != x_size) 1213 if (op_size != x_size) 1222 if (x_size == L_24 && op_size == L_32) 1228 if (((x_size == L_16 && op_size == L_16U) 1229 || (x_size == L_8 && op_size == L_8U) 1230 || (x_size == L_3 && op_size == L_3NZ) [all...] |
| tc-xtensa.c | 5123 int op_size; 5130 op_size = xtensa_format_length (isa, fmt); 5133 if (frag_addr + op_size > branch_align) 5136 op_size, (long) frag->fr_address); 5162 int op_size; 5174 op_size = xtensa_format_length (isa, fmt); 5177 if (frag_addr + op_size > xtensa_fetch_width) 5180 op_size, (long) frag->fr_address); 5115 int op_size; local 5154 int op_size; local
|
| /src/external/gpl3/binutils.old/dist/gas/config/ |
| tc-h8300.c | 1099 int op_size = op & SIZE; local 1110 if (x_size != op_size) 1122 if (op_size == L_P) 1123 op_size = (Hmode ? L_32 : L_16); 1126 if (op_size != x_size) 1213 if (op_size != x_size) 1222 if (x_size == L_24 && op_size == L_32) 1228 if (((x_size == L_16 && op_size == L_16U) 1229 || (x_size == L_8 && op_size == L_8U) 1230 || (x_size == L_3 && op_size == L_3NZ) [all...] |
| tc-xtensa.c | 5123 int op_size; 5130 op_size = xtensa_format_length (isa, fmt); 5133 if (frag_addr + op_size > branch_align) 5136 op_size, (long) frag->fr_address); 5162 int op_size; 5174 op_size = xtensa_format_length (isa, fmt); 5177 if (frag_addr + op_size > xtensa_fetch_width) 5180 op_size, (long) frag->fr_address); 5115 int op_size; local 5154 int op_size; local
|
| /src/external/mpl/dhcp/dist/server/ |
| failover.c | 657 unsigned op_size; local 750 op_size = ft_sizes [ft_options [option_code].type]; 753 if (option_len != op_size * op_count) { 784 op_size = 1; 806 op_size = ft_sizes [ft_options [option_code].type]; 810 if (op_size > 1 && option_len % op_size) { 812 option_len, "multiple of ", op_size); 816 op_count = option_len / op_size; 835 if (op_size == 1 || ft_options [option_code].type == FT_IPADDR) [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/aarch64/ |
| aarch64-ldp-fusion.cc | 3165 const auto op_size = GET_MODE_SIZE (modes[0]); local 3166 gcc_checking_assert (known_eq (op_size, GET_MODE_SIZE (modes[1]))); 3171 rtx mem = adjust_address_nv (pair_mem, modes[i], op_size * i);
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
| cmd_parser.c | 1026 unsigned long guest_gma, int op_size, bool index_mode); 1493 unsigned long guest_gma, int op_size, bool index_mode) 1500 if (op_size > max_surface_size) { 1511 } else if (!intel_gvt_ggtt_validate_range(vgpu, guest_gma, op_size)) { 1520 s->info->name, guest_gma, op_size); 1541 int op_size = (cmd_length(s) - 3) * sizeof(u32); local 1567 ret = cmd_address_audit(s, gma + op_size * core_id, op_size, false); 1598 int op_size = (1 << ((cmd_val(s, 0) & GENMASK(20, 19)) >> 19)) * local 1620 ret = cmd_address_audit(s, gma, op_size, false) [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| tree-ssa-sccvn.cc | 2424 HOST_WIDE_INT op_offset, op_size; local 2430 && op->size.is_constant (&op_size) 2436 op_size); 2445 true, op_offset, op_size);
|
| varasm.cc | 5290 HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0))); 5295 if (type_size > op_size 5266 HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0))); local
|
| dwarf2out.cc | 1985 unsigned long op_size = size_of_locs (loc->dw_loc_oprnd1.v.val_loc); 1986 size += size_of_uleb128 (op_size) + op_size; 1982 unsigned long op_size = size_of_locs (loc->dw_loc_oprnd1.v.val_loc); local
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| varasm.cc | 5245 HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0))); 5250 if (type_size > op_size 5221 HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0))); local
|
| dwarf2out.cc | 1987 unsigned long op_size = size_of_locs (loc->dw_loc_oprnd1.v.val_loc); 1988 size += size_of_uleb128 (op_size) + op_size; 1984 unsigned long op_size = size_of_locs (loc->dw_loc_oprnd1.v.val_loc); local
|
| /src/external/gpl3/gcc.old/dist/gcc/config/spu/ |
| spu.c | 366 int op_size; 379 op_size = GET_MODE_BITSIZE (GET_MODE (op)); 380 if (op_size < 32) 383 *start += 32 - op_size; 384 op_size = 32; 387 mode = int_mode_for_size (op_size, 0).require (); 363 int op_size; local
|