Searched refs:middle (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-9.3-release/usr.bin/gprof/
H A Dlookup.c51 register long middle; local
62 middle = ( high + low ) >> 1;
63 if ( nl[ middle ].value <= address && nl[ middle+1 ].value > address ) {
69 return &nl[ middle ];
71 if ( nl[ middle ].value > address ) {
72 high = middle;
74 low = middle + 1;
/freebsd-9.3-release/contrib/gperf/src/
H A Dkeyword-list.cc132 /* Determine a list node in the middle. */
133 Keyword_List *middle = list; local
140 middle = middle->rest();
148 Keyword_List *right_half = middle->rest();
149 middle->rest() = NULL;
/freebsd-9.3-release/contrib/cvs/lib/
H A Dgetopt.c233 int middle = last_nonopt;
242 while (top > middle && middle > bottom)
244 if (top - middle > middle - bottom)
247 int len = middle - bottom;
254 argv[bottom + i] = argv[top - (middle - bottom) + i];
255 argv[top - (middle - bottom) + i] = tem;
263 int len = top - middle;
270 argv[bottom + i] = argv[middle
230 int middle = last_nonopt; local
[all...]
/freebsd-9.3-release/contrib/ipfilter/perl/
H A DIsbgraph146 if ($odd_even eq 1) {$middle = $option{'XCELLGRIDSIZE'}/2 +0.5;}
147 else {$middle = $option{'XCELLGRIDSIZE'}/2 +0.5;}
197 $xspaceold+$middle,$YGRAPH,$colour);
199 $xspaceold+$middle,$YGRAPH,$fg);
203 $im->filledRectangle($xspaceold-$middle,$yspaceold,
204 $xspaceold+$middle,$YGRAPH,$colour);
205 $im->rectangle($xspaceold-$middle,$yspaceold,
206 $xspaceold+$middle,$YGRAPH,$fg);
222 $im->filledRectangle($xspace-$middle,$yspace,
224 $im->rectangle($xspace-$middle,
[all...]
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dgetopt.c323 int middle = last_nonopt;
354 while (top > middle && middle > bottom)
356 if (top - middle > middle - bottom)
359 int len = middle - bottom;
366 argv[bottom + i] = argv[top - (middle - bottom) + i];
367 argv[top - (middle - bottom) + i] = tem;
368 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
376 int len = top - middle;
320 int middle = last_nonopt; local
[all...]
H A Dregex.c3966 inserting into the middle of the pattern --
5526 int middle = (lower + upper) / 2;
5527 if (middle == lower || middle == upper)
5529 if (offset_buffer[middle] > length)
5530 upper = middle;
5531 else if (offset_buffer[middle] < length)
5532 lower = middle;
5534 return middle;
5509 int middle = (lower + upper) / 2; local
/freebsd-9.3-release/usr.bin/yacc/
H A Dlalr.c304 int middle; local
313 middle = (low + high) >> 1;
314 s = from_state[middle];
316 return (middle);
318 low = middle + 1;
320 high = middle - 1;
/freebsd-9.3-release/contrib/wpa/src/ap/
H A Dap_config.c485 int start, end, middle, res; local
491 middle = (start + end) / 2;
492 res = os_memcmp(list[middle].addr, addr, ETH_ALEN);
495 *vlan_id = list[middle].vlan_id;
499 start = middle + 1;
501 end = middle - 1;
/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp78 unsigned middle = (numBits + 1) / 2; local
79 NewBits[middle] = BI->getBit(middle);
/freebsd-9.3-release/tools/test/netfibs/
H A Dforwarding.sh35 # left ------------------------- middle ------------------------- right
46 # IFACEFAR is only relevant on the middle (forwarding) node and will be the
60 # This is the initiator and connected middle node.
63 # This is the far end middle node and receiver side.
85 middle) ;;
87 *) echo "ERROR: invalid node name '${node}'. Must be left, middle or" \
159 middle) ifconfig ${IFACE} inet6 ${MIDDLELEFTADDR}/64 -alias \
197 middle) ifconfig ${IFACE} inet6 ${MIDDLELEFTADDR}/64 -alias
244 middle) _reachability_check ${LEFTADDR}
356 # numbers from the middle nod
[all...]
/freebsd-9.3-release/contrib/nvi/vi/
H A Dvs_refresh.c302 goto middle;
324 goto middle;
359 /* It's not close, just put the line in the middle. */
360 goto middle;
366 * in the middle of the screen.
376 middle: if (vs_sm_fill(sp, LNO, P_MIDDLE))
791 * any special games. We try to put the ruler in the middle and the
H A Dvs_smap.c222 goto middle;
236 middle: p = HMAP + sp->t_rows / 2;
1143 * Return the line/column of the top, middle or last line on the screen.
1179 * If the screen isn't filled, find the middle of what's
/freebsd-9.3-release/usr.bin/compress/
H A Dzopen.c251 goto middle;
283 middle: for (i = 0; count--;) {
389 /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
473 goto middle;
547 middle: do {
618 /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
/freebsd-9.3-release/contrib/gcclibs/libcpp/
H A Dexpr.c1429 cpp_num_part middle[2], temp;
1434 middle[0] = LOW_PART (lhs) * HIGH_PART (rhs);
1435 middle[1] = HIGH_PART (lhs) * LOW_PART (rhs);
1438 result.low += LOW_PART (middle[0]) << (PART_PRECISION / 2);
1443 result.low += LOW_PART (middle[1]) << (PART_PRECISION / 2);
1447 result.high += HIGH_PART (middle[0]);
1448 result.high += HIGH_PART (middle[1]);
1428 cpp_num_part middle[2], temp; local
/freebsd-9.3-release/sys/fs/ext2fs/
H A Dext2_htree.c235 struct ext2fs_htree_entry *entp, *start, *end, *middle, *found; local
286 middle = start + (end - start) / 2;
287 if (ext2_htree_get_hash(middle) > hash_major)
288 end = middle - 1;
290 start = middle + 1;
/freebsd-9.3-release/usr.bin/gzip/
H A Dzuncompress.c230 goto middle;
304 middle: do {
384 /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
/freebsd-9.3-release/release/picobsd/tinyware/msh/
H A Dsh4.c29 _PROTOTYPE(static char *generate, (char *start1, char *end1, char *middle, char *end ));
531 * start..end1 / middle end
535 generate(start1, end1, middle, end)
538 char *middle, *end;
543 p = op = space((int)(end1-start1)+strlen(middle)+strlen(end)+2);
546 for (xp = middle; (*op++ = *xp++) != '\0';)
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Dtc-s390.c227 int middle, low, high; local
235 middle = (low + high) / 2;
236 cmp = strcasecmp (name, regs[middle].name);
238 high = middle - 1;
240 low = middle + 1;
242 return regs[middle].value;
H A Dtc-ppc.c563 int middle, low, high;
571 middle = (low + high) / 2;
572 cmp = strcasecmp (name, regs[middle].name);
574 high = middle - 1;
576 low = middle + 1;
578 return regs[middle].value;
560 int middle, low, high; local
/freebsd-9.3-release/contrib/gcclibs/libmudflap/
H A Dmf-runtime.c2446 unsigned middle = low + (high - low) / 2; local
2447 mfsplay_tree_node n = array[middle];
2451 if (low + 1 <= middle)
2452 n->left = mfsplay_tree_rebalance_helper2 (array, low, middle - 1);
2456 if (middle + 1 <= high)
2457 n->right = mfsplay_tree_rebalance_helper2 (array, middle + 1, high);
/freebsd-9.3-release/contrib/gcc/
H A Dvarasm.c1491 /* We could have switched section in the middle of the function. */
6111 unsigned int begin, middle, end;
6161 middle = (end + begin) / 2;
6162 anchor = VEC_index (rtx, block->anchors, middle);
6164 end = middle;
6166 begin = middle + 1;
6168 end = middle;
6170 begin = middle + 1;
6084 unsigned int begin, middle, end; local
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dregex.c3966 inserting into the middle of the pattern --
5526 int middle = (lower + upper) / 2;
5527 if (middle == lower || middle == upper)
5529 if (offset_buffer[middle] > length)
5530 upper = middle;
5531 else if (offset_buffer[middle] < length)
5532 lower = middle;
5534 return middle;
5509 int middle = (lower + upper) / 2; local
/freebsd-9.3-release/sys/dev/e1000/
H A De1000_hw.h415 } middle; member in struct:e1000_rx_desc_packet_split::__anon7780
/freebsd-9.3-release/contrib/amd/doc/
H A Dtexinfo.tex307 % the page break happens to be in the middle of an example.
745 % Ensure vertical mode, so we don't make a big box in the middle of a
2002 % Open one extra group, as we want to close it in the middle of \Etitlepage.
/freebsd-9.3-release/contrib/gcc/doc/include/
H A Dtexinfo.tex316 % the page break happens to be in the middle of an example.
769 % Ensure vertical mode, so we don't make a big box in the middle of a
2165 % Open one extra group, as we want to close it in the middle of \Etitlepage.

Completed in 485 milliseconds

12