Searched refs:low (Results 76 - 100 of 425) sorted by path

1234567891011>>

/freebsd-11-stable/contrib/gdb/gdb/
H A Dada-typeprint.c246 LONGEST low, high;
245 LONGEST low, high; local
H A Dada-valprint.c158 LONGEST low, high;
159 if (get_discrete_bounds (TYPE_FIELD_TYPE (type, 0), &low, &high) < 0)
162 len = high - low + 1;
157 LONGEST low, high; local
H A Dbreakpoint.c242 /* Similar iterators for the low-level breakpoints. */
752 /* Insert a low-level "breakpoint" of some type. BPT is the breakpoint.
4050 /* set_raw_breakpoint() is a low level routine for allocating and
5419 CORE_ADDR low, high, selected_pc = 0;
5473 if (find_pc_partial_function (selected_pc, (char **) NULL, &low, &high))
5495 CORE_ADDR low, high;
5555 if (find_pc_partial_function (sal.pc, (char **) NULL, &low, &high))
5408 CORE_ADDR low, high, selected_pc = 0; local
5484 CORE_ADDR low, high; local
H A Ddisasm.c89 CORE_ADDR low, CORE_ADDR high,
101 for (pc = low; pc < high;)
154 CORE_ADDR low, CORE_ADDR high,
179 for (i = 0; i < nlines - 1 && le[i].pc < low; i++);
300 CORE_ADDR low, CORE_ADDR high,
308 num_displayed = dump_insns (uiout, di, low, high, how_many, stb);
355 int how_many, CORE_ADDR low, CORE_ADDR high)
366 symtab = find_pc_symtab (low);
377 do_assembly_only (uiout, &di, low, high, how_many, stb);
380 do_mixed_source_and_assembly (uiout, &di, nlines, le, low,
88 dump_insns(struct ui_out *uiout, struct disassemble_info * di, CORE_ADDR low, CORE_ADDR high, int how_many, struct ui_stream *stb) argument
151 do_mixed_source_and_assembly(struct ui_out *uiout, struct disassemble_info *di, int nlines, struct linetable_entry *le, CORE_ADDR low, CORE_ADDR high, struct symtab *symtab, int how_many, struct ui_stream *stb) argument
299 do_assembly_only(struct ui_out *uiout, struct disassemble_info * di, CORE_ADDR low, CORE_ADDR high, int how_many, struct ui_stream *stb) argument
351 gdb_disassembly(struct ui_out *uiout, char *file_string, int line_num, int mixed_source_and_assembly, int how_many, CORE_ADDR low, CORE_ADDR high) argument
[all...]
H A Ddisasm.h31 int how_many, CORE_ADDR low, CORE_ADDR high);
H A Ddwarf2loc.c56 CORE_ADDR low, high; local
70 low = dwarf2_read_address (loc_ptr, buf_end, &length);
76 if (low == 0 && high == 0)
80 if ((low & base_mask) == base_mask)
87 low += base_address;
93 if (pc >= low && pc < high)
H A Ddwarf2read.c2193 missing or invalid low and high pc attributes. */
2310 /* Ignore blocks with missing or invalid low and high pc attributes. */
2340 /* Get low and high pc attributes from a die. Return 1 if the attributes
2351 CORE_ADDR low = 0; local
2361 low = DW_ADDR (attr);
2363 /* Found high w/o low attribute. */
2452 /* FIXME: This is recording everything as a low-high
2458 low = range_beginning;
2464 if (range_beginning < low)
2465 low
4038 int low = 0; local
[all...]
H A Deval.c360 LONGEST low, high;
362 low = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
364 if (low < low_bound || high > high_bound)
366 for (index = low; index <= high; index++)
358 LONGEST low, high; local
H A Dmips-tdep.c1243 pc &= 0xfffffffe; /* clear the low order bit */
1317 nexthalf = mips_fetch_instruction (pc + 2); /* low bit still set */
1366 pc = pc & ~0x01; /* Clear low bit, indicate 32 bit mode */
2360 int low, mid, high; local
2363 low = 0;
2370 mid = (low + high) / 2;
2381 low = mid + 1;
2383 while (low != high);
2385 if (low != high)
2653 /* "un-left-justify" the value in the low registe
[all...]
H A Dremote-e7000.c775 int low = convert_hex_digit (gch ()); local
777 return (high << 4) + low;
H A Drs6000-nat.c146 extern void fixup_breakpoints (CORE_ADDR low, CORE_ADDR high, CORE_ADDR delta);
H A Dstack.c2006 CORE_ADDR low, high;
2032 &func_bounds[i].low,
2035 func_bounds[i].low =
2043 found = (get_frame_pc (fp) >= func_bounds[i].low &&
1999 CORE_ADDR low, high; member in struct:function_bounds
/freebsd-11-stable/contrib/gdb/gdb/cli/
H A Dcli-cmds.c842 CORE_ADDR low, high;
857 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
864 low = tui_get_low_disassembly_address (low, pc);
866 low += FUNCTION_START_OFFSET;
872 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
879 low = tui_get_low_disassembly_address (low, pc);
881 low += FUNCTION_START_OFFSET;
887 low
837 CORE_ADDR low, high; local
[all...]
/freebsd-11-stable/contrib/gdb/gdb/mi/
H A Dmi-cmd-disas.c71 CORE_ADDR low = 0; local
113 low = parse_and_eval_address (optarg);
153 if (find_pc_partial_function (start, NULL, &low, &high) == 0)
160 mixed_source_and_assembly, how_many, low, high);
/freebsd-11-stable/contrib/gdb/gdb/tui/
H A Dtui-disasm.c351 /* Determine what the low address will be to display in the TUI's
353 low address input. */
355 tui_get_low_disassembly_address (CORE_ADDR low, CORE_ADDR pc) argument
364 if (pc < low)
365 pc = low;
H A Dtui-stack.c329 CORE_ADDR low;
360 &low, (CORE_ADDR) NULL) == 0)
363 low = tui_get_low_disassembly_address (low, get_frame_pc (fi));
384 a.addr = low;
328 CORE_ADDR low; local
/freebsd-11-stable/contrib/gdb/include/
H A Dhp-symtab.h1849 CORE_ADDR low; member in struct:quick_alias
/freebsd-11-stable/contrib/libgnuregex/
H A Dregex_internal.c608 int low = 0, high = pstr->valid_len, mid;
611 mid = (high + low) / 2;
615 low = mid + 1;
619 while (low < high);
636 for (low = 0; low < pstr->valid_len; low++)
637 pstr->offsets[low] = pstr->offsets[low + offset] - offset;
660 for (low
607 int low = 0, high = pstr->valid_len, mid; local
[all...]
/freebsd-11-stable/contrib/libreadline/
H A Dcomplete.c1049 int low; /* Count of max-matched characters. */ local
1067 for (i = 1, low = 100000; i < matches; i++)
1121 if (low > si)
1122 low = si;
1128 if (low == 0 && text && *text)
1135 match_list[0] = (char *)xmalloc (low + 1);
1167 if (si <= low)
1172 strncpy (match_list[0], match_list[i], low);
1177 strncpy (match_list[0], match_list[1], low);
1181 strncpy (match_list[0], text, low);
[all...]
/freebsd-11-stable/contrib/ncurses/form/
H A Dfty_int.c50 long low; member in struct:__anon4633
58 long low; member in struct:__anon4634
104 arg.low = va_arg(*ap, long);
166 long low = argi->low; local
229 if (low < high)
231 if (val < low || val > high)
H A Dfty_num.c60 double low; member in struct:__anon4635
69 double low; member in struct:__anon4636
96 argn->low = args->low;
123 arg.low = va_arg(*ap, double);
184 double low = argn->low; local
267 if (low < high)
269 if (val < low || val > high)
/freebsd-11-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_mutex.c463 printf("low protect = %d, prio = %d\n", _sched_protect(-2),
466 printf("low prio = %d\n", param.sched_priority);
496 * 2. each child thread(low and high priority thread) sets its scheduler and
500 * 4. the child thread with low priority will call _sched_protect to increase
502 * 5. We verify the thread with low priority runs first.
506 * starting first. The low priority thread did not call _sched_protect(2).
512 * with real low priority.
519 pthread_t high, low; local
534 PTHREAD_REQUIRE(pthread_create(&low, NULL, low_prio, NULL));
536 PTHREAD_REQUIRE(pthread_join(low, NUL
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/unix/include/isc/
H A Dnet.h328 isc_net_getudpportrange(int af, in_port_t *low, in_port_t *high);
336 *\li 'low' and 'high' must be non NULL.
340 *\li *low and *high will be the ports specifying the low and high ends of
/freebsd-11-stable/contrib/ntp/lib/isc/unix/
H A Dnet.c405 getudpportrange_sysctl(int af, in_port_t *low, in_port_t *high) { argument
430 *low = (in_port_t)port_low;
437 getudpportrange_sysctl(int af, in_port_t *low, in_port_t *high) { argument
469 *low = (in_port_t) port_low;
478 isc_net_getudpportrange(int af, in_port_t *low, in_port_t *high) { argument
481 REQUIRE(low != NULL && high != NULL);
484 result = getudpportrange_sysctl(af, low, high);
490 *low = ISC_NET_PORTRANGELOW;
/freebsd-11-stable/contrib/ntp/lib/isc/win32/include/isc/
H A Dnet.h340 isc_net_getudpportrange(int af, in_port_t *low, in_port_t *high);
348 *\li 'low' and 'high' must be non NULL.
352 *\li *low and *high will be the ports specifying the low and high ends of

Completed in 320 milliseconds

1234567891011>>