Home
last modified time | relevance | path

Searched refs:low (Results 101 – 125 of 495) sorted by relevance

12345678910>>...20

/dragonfly/sys/bus/smbus/
H A Dsmbconf.c44 smbus_intr(device_t bus, u_char devaddr, char low, char high, int error) in smbus_intr() argument
50 SMBUS_INTR(sc->owner, devaddr, low, high, error); in smbus_intr()
/dragonfly/sys/dev/acpica/
H A Dacpi_resource.c449 uint64_t low, uint64_t high,
454 uint64_t low, uint64_t high,
522 acpi_res_set_iorange(device_t dev, void *context, uint64_t low, in acpi_res_set_iorange() argument
533 base = roundup(low, align); in acpi_res_set_iorange()
539 (uintmax_t)low, (uintmax_t)high, (uintmax_t)length, (uintmax_t)align); in acpi_res_set_iorange()
555 acpi_res_set_memoryrange(device_t dev, void *context, uint64_t low, in acpi_res_set_memoryrange() argument
564 (uintmax_t)low, (uintmax_t)high, (uintmax_t)length, (uintmax_t)align); in acpi_res_set_memoryrange()
/dragonfly/contrib/binutils-2.34/libiberty/
H A Dhashtab.c174 unsigned int low = 0; in higher_prime_index() local
177 while (low != high) in higher_prime_index()
179 unsigned int mid = low + (high - low) / 2; in higher_prime_index()
181 low = mid + 1; in higher_prime_index()
187 if (n > prime_tab[low].prime) in higher_prime_index()
193 return low; in higher_prime_index()
/dragonfly/contrib/binutils-2.27/libiberty/
H A Dhashtab.c175 unsigned int low = 0; in higher_prime_index() local
178 while (low != high) in higher_prime_index()
180 unsigned int mid = low + (high - low) / 2; in higher_prime_index()
182 low = mid + 1; in higher_prime_index()
188 if (n > prime_tab[low].prime) in higher_prime_index()
194 return low; in higher_prime_index()
/dragonfly/contrib/gcc-8.0/libiberty/
H A Dhashtab.c174 unsigned int low = 0; in higher_prime_index() local
177 while (low != high) in higher_prime_index()
179 unsigned int mid = low + (high - low) / 2; in higher_prime_index()
181 low = mid + 1; in higher_prime_index()
187 if (n > prime_tab[low].prime) in higher_prime_index()
193 return low; in higher_prime_index()
/dragonfly/contrib/gcc-8.0/gcc/
H A Ddbxout.c1712 dbxout_range_type (tree type, tree low, tree high) in dbxout_range_type() argument
1740 if (low && tree_fits_shwi_p (low)) in dbxout_range_type()
1743 stabstr_O (low); in dbxout_range_type()
1745 stabstr_D (tree_to_shwi (low)); in dbxout_range_type()
1778 tree tem, main_variant, low, high; in dbxout_type() local
1784 low = TYPE_MIN_VALUE (type); in dbxout_type()
1796 low = TYPE_MIN_VALUE (type); in dbxout_type()
2003 dbxout_range_type (type, low, high); in dbxout_type()
2034 stabstr_O (low); in dbxout_type()
2042 dbxout_range_type (type, low, high); in dbxout_type()
[all …]
H A Dtree-ssa-loop-niter.c3244 && TREE_CODE (low) == INTEGER_CST in record_nonwrapping_iv()
3248 && wi::gts_p (min, wi::to_wide (low))) in record_nonwrapping_iv()
3280 tree low, high, type, next; in idx_infer_loop_bounds() local
3313 low = array_ref_low_bound (base); in idx_infer_loop_bounds()
3318 if (TREE_CODE (low) != INTEGER_CST in idx_infer_loop_bounds()
3328 && operand_equal_p (low, high, 0)) in idx_infer_loop_bounds()
3340 || !int_fits_type_p (low, type)) in idx_infer_loop_bounds()
3342 low = fold_convert (type, low); in idx_infer_loop_bounds()
3461 low = lower_bound_in_type (type, type); in infer_loop_bounds_from_pointer_arith()
3472 low = build_int_cstu (TREE_TYPE (low), TYPE_ALIGN_UNIT (TREE_TYPE (type))); in infer_loop_bounds_from_pointer_arith()
[all …]
/dragonfly/contrib/awk/
H A Dlex.c492 int cond, low, mid, high; in binsearch() local
494 low = 0; in binsearch()
496 while (low <= high) { in binsearch()
497 mid = (low + high) / 2; in binsearch()
501 low = mid + 1; in binsearch()
/dragonfly/contrib/gdb-7/readline/
H A Dcomplete.c1154 int low; /* Count of max-matched characters. */ local
1172 for (i = 1, low = 100000; i < matches; i++)
1226 if (low > si)
1227 low = si;
1233 if (low == 0 && text && *text)
1240 match_list[0] = (char *)xmalloc (low + 1);
1272 if (si <= low)
1277 strncpy (match_list[0], match_list[i], low);
1282 strncpy (match_list[0], match_list[1], low);
1286 strncpy (match_list[0], text, low);
[all …]
/dragonfly/sys/dev/virtual/nvmm/x86/
H A Dnvmm_x86.h865 uint32_t low, high; in x86_get_xcr() local
869 : "=a" (low), "=d" (high) in x86_get_xcr()
873 return (low | ((uint64_t)high << 32)); in x86_get_xcr()
879 uint32_t low, high; in x86_set_xcr() local
881 low = val; in x86_set_xcr()
886 : "a" (low), "d" (high), "c" (xcr) in x86_set_xcr()
/dragonfly/contrib/binutils-2.34/bfd/
H A Dtekhex.c76 bfd_vma low; member
814 int low; in tekhex_write_object_contents() local
825 for (low = 0; low < CHUNK_SPAN; low++) in tekhex_write_object_contents()
827 TOHEX (dst, d->chunk_data[addr + low]); in tekhex_write_object_contents()
/dragonfly/contrib/binutils-2.27/bfd/
H A Dtekhex.c76 bfd_vma low; member
810 int low; in tekhex_write_object_contents() local
821 for (low = 0; low < CHUNK_SPAN; low++) in tekhex_write_object_contents()
823 TOHEX (dst, d->chunk_data[addr + low]); in tekhex_write_object_contents()
/dragonfly/contrib/gdb-7/bfd/
H A Ddwarf2.c184 bfd_vma low; member
1277 first_arange->low = low_pc; in arange_add()
1293 arange->low = low_pc; in arange_add()
1305 arange->low = low_pc; in arange_add()
1807 int low, high, mid; in lookup_address_in_line_info_table() local
1810 low = 0; in lookup_address_in_line_info_table()
1812 while (low < high) in lookup_address_in_line_info_table()
1814 mid = (low + high) / 2; in lookup_address_in_line_info_table()
1819 low = mid + 1; in lookup_address_in_line_info_table()
1931 && addr >= arange->low in lookup_symbol_in_function_table()
[all …]
/dragonfly/contrib/xz/src/liblzma/lzma/
H A Dlzma_decoder.c45 probs = ld.low[pos_state];\
123 rc_bit_case(ld.low[pos_state][symbol], , , seq ## _LOW0); \
124 rc_bit_case(ld.low[pos_state][symbol], , , seq ## _LOW1); \
125 rc_bit_case(ld.low[pos_state][symbol], , , seq ## _LOW2); \
164 probability low[POS_STATES_MAX][LEN_LOW_SYMBOLS]; member
916 bittree_reset(coder->match_len_decoder.low[pos_state], in lzma_decoder_reset()
921 bittree_reset(coder->rep_len_decoder.low[pos_state], in lzma_decoder_reset()
/dragonfly/contrib/binutils-2.27/gas/doc/
H A Dc-m32r.texi158 @code{.high} pseudo op is encountered without a matching @code{.low}
186 @cindex @code{low} directive, M32R
187 @item low @var{expression}
188 The @code{low} directive computes the value of its expression and
193 or3 r0, r0, #low(0x12345678) ; compute r0 = r0 | 0x5678
194 add3, r0, r0, #low(fred) ; compute r0 = r0 + low 16-bits of address of fred
239 add3 r0, r0, #low(0x00008000)
246 or3 r0, r0, #low(0x00008000)
/dragonfly/contrib/gdb-7/gdb/
H A Ddwarf2loc.c126 if ((*low & base_mask) == base_mask) in decode_debug_loc_addresses()
130 if (*low == 0 && *high == 0) in decode_debug_loc_addresses()
146 CORE_ADDR *low, CORE_ADDR *high, in decode_debug_loc_dwo_addresses() argument
160 *low = 0; in decode_debug_loc_dwo_addresses()
185 *high = *low; in decode_debug_loc_dwo_addresses()
232 &low, &high, in dwarf2_find_location_expression()
260 low += base_address; in dwarf2_find_location_expression()
267 if (low == high && pc == low) in dwarf2_find_location_expression()
285 if (pc >= low && pc < high) in dwarf2_find_location_expression()
4070 &low, &high, in loclist_describe_location()
[all …]
/dragonfly/contrib/tcsh-6/
H A Ded.chared.c253 c_preword(Char *p, Char *low, int n, Char *delim) in c_preword() argument
256 Char *prev = low; in c_preword()
281 if (p < low) in c_preword()
282 p = low; in c_preword()
311 c_prev_word(Char *p, Char *low, int n) in c_prev_word() argument
317 while ((p >= low) && !isword(*p)) in c_prev_word()
319 while ((p >= low) && isword(*p)) in c_prev_word()
325 if (p < low) in c_prev_word()
326 p = low; in c_prev_word()
334 if (p < low) in c_prev_word()
[all …]
/dragonfly/contrib/diffutils/lib/
H A Dregex_internal.c613 Idx low = 0, high = pstr->valid_len, mid; in re_string_reconstruct() local
616 mid = (high + low) / 2; in re_string_reconstruct()
620 low = mid + 1; in re_string_reconstruct()
624 while (low < high); in re_string_reconstruct()
641 for (low = 0; low < pstr->valid_len; low++) in re_string_reconstruct()
642 pstr->offsets[low] = pstr->offsets[low + offset] - offset; in re_string_reconstruct()
665 for (low = 0; low < pstr->valid_len; ++low) in re_string_reconstruct()
666 pstr->wcs[low] = WEOF; in re_string_reconstruct()
/dragonfly/contrib/grep/lib/
H A Dregex_internal.c613 Idx low = 0, high = pstr->valid_len, mid; in re_string_reconstruct() local
616 mid = (high + low) / 2; in re_string_reconstruct()
620 low = mid + 1; in re_string_reconstruct()
624 while (low < high); in re_string_reconstruct()
641 for (low = 0; low < pstr->valid_len; low++) in re_string_reconstruct()
642 pstr->offsets[low] = pstr->offsets[low + offset] - offset; in re_string_reconstruct()
665 for (low = 0; low < pstr->valid_len; ++low) in re_string_reconstruct()
666 pstr->wcs[low] = WEOF; in re_string_reconstruct()
/dragonfly/usr.bin/rpcinfo/
H A Drpcinfo.c405 minvers = rpcerr.re_vers.low;
419 minvers = rpcerr.re_vers.low;
505 if (err.re_vers.low > PMAPVERS)
712 if (err.re_vers.low == RPCBVERS4) {
723 int high, low; local
765 low = pmaphead->pml_map.pm_port & 0xff;
769 high, low);
1291 minvers = rpcerr.re_vers.low;
1304 minvers = rpcerr.re_vers.low;
1395 minvers = rpcerr.re_vers.low;
[all …]
/dragonfly/sys/vfs/isofs/cd9660/
H A Dcd9660_rrip.c401 u_int high, low; in cd9660_rrip_device() local
404 low = isonum_733(p->dev_t_low); in cd9660_rrip_device()
407 ana->inop->inode.iso_rdev = makeudev(umajor(low), uminor(low)); in cd9660_rrip_device()
409 ana->inop->inode.iso_rdev = makeudev(high, uminor(low)); in cd9660_rrip_device()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dtree.c1184 if (!hi && !low) in build_int_cst_wide()
1195 ix = low; in build_int_cst_wide()
1205 ix = low; in build_int_cst_wide()
1212 ix = low + 1; in build_int_cst_wide()
1831 return ((high == 0 && (low & (low - 1)) == 0) in integer_pow2p()
1893 : exact_log2 (low)); in tree_log2()
7377 *lowval = low; in subrange_type_for_debug_p()
10304 double_int low; in lower_bound_in_type() local
10315 low.low = low.high = 0; in lower_bound_in_type()
10327 low.low = (~(unsigned HOST_WIDE_INT) 0) << (prec - 1); in lower_bound_in_type()
[all …]
/dragonfly/sys/dev/drm/radeon/
H A Dcypress_dpm.c774 &state->low, in cypress_convert_power_state_to_smc()
856 &state->low, in cypress_convert_mc_reg_table_to_smc()
933 new_state->low.sclk, in cypress_program_memory_timing_parameters()
934 new_state->low.mclk)); in cypress_program_memory_timing_parameters()
1146 boot_state->low.mclk); in cypress_force_mc_use_s1()
1204 boot_state->low.mclk); in cypress_force_mc_use_s0()
1262 cpu_to_be32(initial_state->low.mclk); in cypress_populate_smc_initial_state()
1284 initial_state->low.vddc, in cypress_populate_smc_initial_state()
1290 initial_state->low.vddci, in cypress_populate_smc_initial_state()
1314 initial_state->low.mclk); in cypress_populate_smc_initial_state()
[all …]
/dragonfly/usr.sbin/nscd/
H A Dparser.c277 get_number(const char *str, int low, int max) in get_number() argument
290 if (((res >= low) || (low == -1)) && in get_number()
/dragonfly/sys/kern/
H A Dkern_uuid.c59 uint32_t low; member
144 uuid.time.x.low = (uint32_t)time; in kern_uuidgen()
193 id->time.x.low, id->time.x.mid, id->time.x.hi, be16toh(id->seq), in snprintf_uuid()

12345678910>>...20