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

/illumos-gate/usr/src/cmd/sgs/prof/common/
H A Dlookup.c41 size_t low = 0, middle, high = module->nfuncs - 1; local
69 middle = (high + low) >> 1;
71 if ((nl[middle].value <= keyval) &&
72 (nl[middle + 1].value > keyval)) {
75 (nl[middle + 1].value - module->txt_origin);
78 return (&nl[middle]);
81 if (nl[middle].value > keyval)
82 high = middle;
84 low = middle + 1;
100 size_t low = 0, middle, hig local
[all...]
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dlookup.c42 size_t low = 0, middle, high = module->nname - 1; local
70 middle = (high + low) >> 1;
72 if (mnl[middle].value <= keyval &&
73 mnl[middle + 1].value > keyval) {
76 (mnl[middle + 1].value -
79 return (&mnl[middle]);
82 if (mnl[middle].value > keyval) {
83 high = middle;
85 low = middle + 1;
H A Dgprof.c751 size_t low = 0, middle, high = nelem - 1; local
760 middle = (high + low) >> 1;
762 if ((pclist[middle] < keypc) && (pclist[middle + 1] >= keypc))
763 return (&pclist[middle + 1]);
765 if (pclist[middle] >= keypc)
766 high = middle;
768 low = middle + 1;
/illumos-gate/usr/src/cmd/ypcmd/
H A Dmkalias.c92 register char *middle; local
94 middle = strchr(s, '@');
95 if (middle) {
96 for (middle = s; *middle != '@'; *p++ = *middle++)
99 CopyName(h, middle+1, strlen(middle + 1));
102 middle = strrchr(s, '!');
103 if (middle) {
[all...]
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DAttributePattern.java60 * pattern in the middle. Any of the parts may be missing, but it will
97 String middle = "";
102 // Beginning wildcard, or, if none, then the middle.
107 // Need to look for middle.
110 middle = tk.nextToken();
115 middle = tok;
122 parts.addElement(new PatternPart(wc, middle));
H A DServiceStoreInMemory.java606 int middle = size / 2;
615 // Get the one at the current middle.
617 rec = (RegRecord)contents.elementAt(middle);
626 contents.removeElementAt(middle);
629 middle = bottom + (size / 2);
652 top = middle;
654 middle = top - (size / 2);
655 middle = (middle < 0 ? 0:middle);
[all...]
/illumos-gate/usr/src/grub/grub-0.97/lib/
H A Dgetopt.c315 int middle = last_nonopt;
346 while (top > middle && middle > bottom)
348 if (top - middle > middle - bottom)
351 int len = middle - bottom;
358 argv[bottom + i] = argv[top - (middle - bottom) + i];
359 argv[top - (middle - bottom) + i] = tem;
360 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
368 int len = top - middle;
312 int middle = last_nonopt; local
[all...]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/sparc/
H A Dalloca.s45 ! be in the middle of a compilicated expression.
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dalloca.s40 ! be in the middle of a compilicated expression.
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dalloca.s39 ! be in the middle of a complicated expression.
/illumos-gate/usr/src/lib/libkvm/common/
H A Dkvm.c295 long middle = (first + last) / 2; local
296 pfn_t pfn = kd->kvm_pfn[middle];
298 fprintf(stderr, " %ld ->", middle);
301 ((uint64_t)middle <<
306 first = middle + 1;
308 last = middle - 1;
/illumos-gate/usr/src/lib/libadm/common/
H A Dcktime.c107 static char *middle[] = { "AM", "PM", "am", "pm" }; local
116 if ((strncmp(mid, middle[n], 2)) == 0)
/illumos-gate/usr/src/uts/common/io/usb/clients/usbinput/usbwcm/
H A Dusbwcm.c174 uwacom_mouse_events_graphire(usbwcm_state_t *usbwcmp, int left, int middle, argument
178 uwacom_event(usbwcmp, EVT_BTN, BTN_MIDDLE, middle);
341 int left, middle, right, extra, side, wheel; local
347 middle = PACKET_BIT(6, 1);
356 middle = PACKET_BIT(8, 3);
365 uwacom_event(usbwcmp, EVT_BTN, BTN_MIDDLE, middle);
/illumos-gate/usr/src/tools/ctf/dwarf/common/
H A Ddwarf_frame.c2008 Dwarf_Signed middle = 0; local
2012 middle = (low + high) / 2;
2013 cur_fde = fde_data[middle];
2015 high = middle - 1;
2019 low = middle + 1;
2021 fde = fde_data[middle];
/illumos-gate/usr/src/cmd/savecore/
H A Dsavecore.c463 long middle = 0; local
469 middle = (first + last) / 2;
470 pfn = pfn_table[middle];
474 first = middle + 1;
476 last = middle - 1;
489 ((uint64_t)middle << corehdr.dump_pageshift);
/illumos-gate/usr/src/cmd/vi/misc/
H A Dctags.c103 typedef enum {none, begin, begin_rec, begin_tag, middle, end } TYST; enumerator in enum:__anon1908
581 tydef = middle;
594 if (!level && tydef == middle) {
/illumos-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/
H A DkernelAttributeUtil.c215 size_t lower, middle, upper; local
221 /* Always starts from middle. */
222 middle = (lower + upper) / 2;
224 if (type > attr_map[middle]) {
226 lower = middle + 1;
230 if (type == attr_map[middle]) {
235 if (type < attr_map[middle]) {
237 upper = middle - 1;
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftAttributeUtil.c221 size_t lower, middle, upper; local
227 /* Always starts from middle. */
228 middle = (lower + upper) / 2;
230 if (type > attr_map[middle]) {
232 lower = middle + 1;
236 if (type == attr_map[middle]) {
241 if (type < attr_map[middle]) {
243 upper = middle - 1;
/illumos-gate/usr/src/uts/common/io/e1000api/
H A De1000_hw.h440 } middle; member in struct:e1000_rx_desc_packet_split::__anon219
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vsin.S1464 ! branched here in the middle of the array. Need to adjust
H A D__vcos.S1536 ! branched here in the middle of the array. Need to adjust
/illumos-gate/usr/src/grub/grub-0.97/docs/
H A Dtexinfo.tex308 % the page break happens to be in the middle of an example.
746 % Ensure vertical mode, so we don't make a big box in the middle of a
2064 % Open one extra group, as we want to close it in the middle of \Etitlepage.

Completed in 131 milliseconds