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

12

/freebsd-current/usr.bin/gprof/
H A Dlookup.c44 register long middle; local
55 middle = ( high + low ) >> 1;
56 if ( nl[ middle ].value <= address && nl[ middle+1 ].value > address ) {
63 if (nl[middle].name[0] == '$' &&
64 nl[middle-1].value == nl[middle].value)
65 middle--;
68 return &nl[ middle ];
70 if ( nl[ middle ]
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-sysv.exp7 pre-middle-suffix = "pre-middle-suffix"
11 pre-middle-suffix =NS "pre-middle-suffixNS"
15 pre-middle-suffix =% "pre-middle-suffix%"
19 pre-middle-suffix =%NS "pre-middle-suffix%NS"
23 pre-middle-suffix =NPre% "pre-middle
[all...]
H A Dparse-var.mk79 # In variable assignments, there may be spaces in the middle of the left-hand
109 # In this test word, the below conditions will replace the '{{}' in the middle
H A Dcomment.mk80 @echo A shell comment can#not start in the middle of a word.
H A Dvarmod-sysv.mk205 .if ${prefix-middle-suffix:L:prefix-%-suffix=p-%-s} != "p-middle-s"
247 . for word in '' suffix prefix pre-middle-suffix
H A Dvarname-dot-make-save_dollars.mk55 # It's even possible to change the dollar interpretation in the middle of
/freebsd-current/contrib/libdivsufsort/lib/
H A Dsssort.c264 saidx_t *middle; local
268 middle = first + t / 2;
272 return ss_median3(Td, PA, first, middle, last - 1);
275 return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1);
280 middle = ss_median3(Td, PA, middle - t, middle, middle + t);
282 return ss_median3(Td, PA, first, middle, last);
461 ss_rotate(saidx_t *first, saidx_t *middle, saidx_ argument
502 ss_inplacemerge(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t depth) argument
545 ss_mergeforward(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t *buf, saidx_t depth) argument
595 ss_mergebackward(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t *buf, saidx_t depth) argument
654 ss_swapmerge(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t *buf, saidx_t bufsize, saidx_t depth) argument
753 saidx_t *b, *middle, *curbuf; local
[all...]
H A Dtrsort.c168 saidx_t *middle; local
172 middle = first + t / 2;
176 return tr_median3(ISAd, first, middle, last - 1);
179 return tr_median5(ISAd, first, first + t, middle, last - 1 - t, last - 1);
184 middle = tr_median3(ISAd, middle - t, middle, middle + t);
186 return tr_median3(ISAd, first, middle, last);
223 saidx_t *first, saidx_t *middle, saidx_
222 tr_partition(const saidx_t *ISAd, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t **pa, saidx_t **pb, saidx_t v) argument
[all...]
/freebsd-current/sys/contrib/zstd/lib/dictBuilder/
H A Ddivsufsort.c354 int *middle; local
358 middle = first + t / 2;
362 return ss_median3(Td, PA, first, middle, last - 1);
365 return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1);
370 middle = ss_median3(Td, PA, middle - t, middle, middle + t);
372 return ss_median3(Td, PA, first, middle, last);
551 ss_rotate(int *first, int *middle, in argument
592 ss_inplacemerge(const unsigned char *T, const int *PA, int *first, int *middle, int *last, int depth) argument
635 ss_mergeforward(const unsigned char *T, const int *PA, int *first, int *middle, int *last, int *buf, int depth) argument
685 ss_mergebackward(const unsigned char *T, const int *PA, int *first, int *middle, int *last, int *buf, int depth) argument
744 ss_swapmerge(const unsigned char *T, const int *PA, int *first, int *middle, int *last, int *buf, int bufsize, int depth) argument
842 int *b, *middle, *curbuf; local
1016 int *middle; local
1070 tr_partition(const int *ISAd, int *first, int *middle, int *last, int **pa, int **pb, int v) argument
[all...]
/freebsd-current/lib/libc/tests/gen/
H A Ddir2_test.c56 long beginning, middle, end, td; local
86 middle = telldir(dirp);
104 seekdir(dirp, middle);
106 ATF_CHECK_EQ(middle, td);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalTree.h93 // MP: A middle point.
94 // IL: All intervals whose left value are completely to the left of the middle
97 // middle point. They are sorted in descending order by their ending point.
275 PointType middle() const { return MiddlePoint; } function in class:llvm::IntervalTree::IntervalNode
298 // contains the middle point for the node.
299 IntervalReferences IntervalsLeft; // Intervals to the left of middle point.
300 IntervalReferences IntervalsRight; // Intervals to the right of middle point.
339 OS << format(Format, Node->middle()) << Text << " ";
397 // Current interval contains the middle point.
420 // Sort intervals on the left and right of the middle poin
[all...]
/freebsd-current/contrib/ldns/ldns/
H A Ddname.h168 * check if middle lays in the interval defined by prev and next
169 * prev <= middle < next. This is useful for nsec checking
171 * \param[in] middle the dname to check
173 * return 0 on error or unknown, -1 when middle is in the interval, +1 when not
175 int ldns_dname_interval(const ldns_rdf *prev, const ldns_rdf *middle, const ldns_rdf *next);
/freebsd-current/contrib/byacc/
H A Dlalr.c258 int middle; local
262 middle = (low + high) >> 1;
263 s = from_state[middle];
265 return (Value_t)(middle);
267 low = middle + 1;
269 high = middle - 1;
/freebsd-current/sys/netgraph/
H A Dng_macfilter.c378 u_int middle = base + (range >> 1); /* middle */ local
379 int d = bcmp(ether, mf_macs[middle].ether, ETHER_ADDR_LEN);
381 *ri = middle;
384 range -= middle - base + 1;
385 base = middle + 1;
387 range = middle - base;
/freebsd-current/contrib/ldns/
H A Ddname.c482 /* nsec test: does prev <= middle < next
488 ldns_dname_interval(const ldns_rdf *prev, const ldns_rdf *middle, argument
494 assert(ldns_rdf_get_type(middle) == LDNS_RDF_TYPE_DNAME);
497 prev_check = ldns_dname_compare(prev, middle);
498 next_check = ldns_dname_compare(middle, next);
/freebsd-current/tools/test/netfibs/
H A Dforwarding.sh34 # left ------------------------- middle ------------------------- right
45 # IFACEFAR is only relevant on the middle (forwarding) node and will be the
59 # This is the initiator and connected middle node.
62 # This is the far end middle node and receiver side.
84 middle) ;;
86 *) echo "ERROR: invalid node name '${node}'. Must be left, middle or" \
158 middle) ifconfig ${IFACE} inet6 ${MIDDLELEFTADDR}/64 -alias \
196 middle) ifconfig ${IFACE} inet6 ${MIDDLELEFTADDR}/64 -alias
243 middle) _reachability_check ${LEFTADDR}
355 # numbers from the middle nod
[all...]
/freebsd-current/sys/netinet/
H A Din_fib_dxr.c234 if (masked_dst < range[middle].start) { \
235 upperbound = middle; \
236 middle = (middle + lowerbound) / 2; \
237 } else if (masked_dst < range[middle + 1].start) \
238 return (range[middle].nexthop); \
240 lowerbound = middle + 1; \
241 middle = (upperbound + middle + 1) / 2; \
251 uint32_t middle; local
[all...]
/freebsd-current/usr.sbin/bluetooth/bthidd/
H A Dhid.c437 int firm = 0, middle = 0; local
460 * The hard part: accumulate touch events and emulate middle
491 /* Count firm touches vs. firm+middle touches */
493 ++middle;
498 * touches which are all in center, make it a middle click
500 if (mouse_butt && !c->button_state && firm && middle == firm)
505 * to a middle click, keep it middle clicking
/freebsd-current/crypto/openssl/Configurations/
H A Dgentemplate.pm124 my @middle = (
142 print STDERR "DEBUG[expanddepends] = ", join(' ', @middle), "\n"
146 push @before, @middle;
/freebsd-current/contrib/nvi/vi/
H A Dvs_refresh.c293 goto middle;
315 goto middle;
351 /* It's not close, just put the line in the middle. */
352 goto middle;
358 * in the middle of the screen.
368 middle: if (vs_sm_fill(sp, LNO, P_MIDDLE))
784 * any special games. We try to put the ruler in the middle and the
/freebsd-current/usr.bin/compress/
H A Dzopen.c248 goto middle;
280 middle: for (i = 0; count--;) {
386 /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
470 goto middle;
544 middle: do {
615 /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
/freebsd-current/sys/fs/ext2fs/
H A Dext2_htree.c265 struct ext2fs_htree_entry *entp, *start, *end, *middle, *found; local
318 middle = start + (end - start) / 2;
319 if (ext2_htree_get_hash(middle) > hash_major)
320 end = middle - 1;
322 start = middle + 1;
/freebsd-current/contrib/bmake/
H A Ddir.c762 const char *prefix, *middle, *piece, *middle_end, *suffix; local
765 /* Split the word into prefix, '{', middle, '}' and suffix. */
767 middle = brace + 1;
768 middle_end = closing_brace(middle);
770 Error("Unterminated {} clause \"%s\"", middle);
779 /* Split the middle into pieces, separated by commas. */
781 piece = middle;
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenTarget.cpp578 unsigned middle = (numBits + 1) / 2; local
579 NewBits[middle] = BI->getBit(middle);
/freebsd-current/contrib/wpa/src/ap/
H A Dap_config.c1020 int start, end, middle, res; local
1026 middle = (start + end) / 2;
1027 res = os_memcmp(list[middle].addr, addr, ETH_ALEN);
1030 *vlan_id = list[middle].vlan_id;
1034 start = middle + 1;
1036 end = middle - 1;

Completed in 278 milliseconds

12