Home
last modified time | relevance | path

Searched refs:middle (Results 1 – 25 of 56) sorted by relevance

123

/titanic_41/usr/src/cmd/sgs/prof/common/
H A Dlookup.c41 size_t low = 0, middle, high = module->nfuncs - 1; in nllookup() local
69 middle = (high + low) >> 1; in nllookup()
71 if ((nl[middle].value <= keyval) && in nllookup()
72 (nl[middle + 1].value > keyval)) { in nllookup()
75 (nl[middle + 1].value - module->txt_origin); in nllookup()
78 return (&nl[middle]); in nllookup()
81 if (nl[middle].value > keyval) in nllookup()
82 high = middle; in nllookup()
84 low = middle + 1; in nllookup()
100 size_t low = 0, middle, high = nelem - 1; in locate() local
[all …]
/titanic_41/usr/src/cmd/sgs/gprof/common/
H A Dlookup.c42 size_t low = 0, middle, high = module->nname - 1; in nllookup() local
70 middle = (high + low) >> 1; in nllookup()
72 if (mnl[middle].value <= keyval && in nllookup()
73 mnl[middle + 1].value > keyval) { in nllookup()
76 (mnl[middle + 1].value - in nllookup()
79 return (&mnl[middle]); in nllookup()
82 if (mnl[middle].value > keyval) { in nllookup()
83 high = middle; in nllookup()
85 low = middle + 1; in nllookup()
H A Dgprof.c751 size_t low = 0, middle, high = nelem - 1; in locate() local
760 middle = (high + low) >> 1; in locate()
762 if ((pclist[middle] < keypc) && (pclist[middle + 1] >= keypc)) in locate()
763 return (&pclist[middle + 1]); in locate()
765 if (pclist[middle] >= keypc) in locate()
766 high = middle; in locate()
768 low = middle + 1; in locate()
/titanic_41/usr/src/cmd/ypcmd/
H A Dmkalias.c92 register char *middle; in IsQualified() local
94 middle = strchr(s, '@'); in IsQualified()
95 if (middle) { in IsQualified()
96 for (middle = s; *middle != '@'; *p++ = *middle++) in IsQualified()
99 CopyName(h, middle+1, strlen(middle + 1)); in IsQualified()
102 middle = strrchr(s, '!'); in IsQualified()
103 if (middle) { in IsQualified()
104 strcpy(p, middle+1); in IsQualified()
105 *middle = '\0'; in IsQualified()
107 *middle = '!'; in IsQualified()
/titanic_41/usr/src/grub/grub-0.97/lib/
H A Dgetopt.c312 int middle = last_nonopt; local
343 while (top > middle && middle > bottom)
345 if (top - middle > middle - bottom)
348 int len = middle - bottom;
355 argv[bottom + i] = argv[top - (middle - bottom) + i];
356 argv[top - (middle - bottom) + i] = tem;
357 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
365 int len = top - middle;
372 argv[bottom + i] = argv[middle + i];
373 argv[middle + i] = tem;
[all …]
/titanic_41/usr/src/lib/libslp/javalib/com/sun/slp/
H A DAttributePattern.java97 String middle = ""; in AttributePattern() local
110 middle = tk.nextToken(); in AttributePattern()
115 middle = tok; in AttributePattern()
122 parts.addElement(new PatternPart(wc, middle)); in AttributePattern()
H A DServiceStoreInMemory.java606 int middle = size / 2; in walkVector() local
617 rec = (RegRecord)contents.elementAt(middle); in walkVector()
626 contents.removeElementAt(middle); in walkVector()
629 middle = bottom + (size / 2); in walkVector()
652 top = middle; in walkVector()
654 middle = top - (size / 2); in walkVector()
655 middle = (middle < 0 ? 0:middle); in walkVector()
657 if (middle == top) { in walkVector()
684 contents.insertElementAt(rec, middle); in walkVector()
709 bottom = middle; in walkVector()
[all …]
/titanic_41/usr/src/test/zfs-tests/tests/functional/inheritance/
H A Dstate016.cfg34 # when the middle level properties are set locally, and the bottom
35 # level has inherited its value from the middle level, results in no change
36 # to the top level properties and the middle and bottom properties changing
39 # Executing 'zfs inherit -r' at the bottom and middle levels after executing
H A Dstate015.cfg34 # when the middle level properties are set locally, and the bottom
35 # level has inherited its value from the middle level, results in no change
38 # Executing 'zfs inherit' at the middle level results in the middle level
H A Dstate017.cfg34 # when the top level and middle level datasets properties are set locally,
35 # and the bottom level has inherited its properties from the middle
39 # Executing 'zfs inherit' at the middle level results in the middle level
H A Dstate019.cfg34 # when the top level properties are set locally and the middle and bottom
36 # properties reverting back to their default values, the middle and bottom
39 # Executing 'zfs inherit' at the middle and bottom levels is somewhat
H A Dstate021.cfg35 # middle dataset has inherited from the top level, results in the top level
36 # properties reverting back to their default values, and the middle level
40 # the middle level values.
H A Dstate020.cfg34 # when the top level properties are set locally and the middle and bottom
36 # properties reverting back to their default values, the middle and bottom
39 # Executing 'zfs inherit -r' at the middle and bottom levels is somewhat
H A Dstate018.cfg34 # when the top level and middle level datasets properties are set locally,
35 # and the bottom level has inherited its properties from the middle
40 # Executing 'zfs inherit -r' at the middle and bottom levels after executing
H A Dstate022.cfg35 # middle dataset has inherited from the top level, results in the top level
36 # properties reverting back to their default values, the middle and bottom
39 # Executing 'zfs inherit -r' at the middle and bottom levels is somewhat
H A Dstate005.cfg35 # by a middle level dataset, that the bottom level filesystem inherits
36 # the property from the middle level dataset, and not from the top level
H A Dstate013.cfg33 # Verify that executing 'zfs inherit' on each level when the middle
34 # and bottom levels properties are set locally results in the middle and
H A Dstate023.cfg37 # Executing 'zfs inherit' at the middle level results in it inheriting
41 # the middle levels (now default) values
H A Dstate014.cfg34 # when the bottom and middle level properties have been set locally results
38 # Note : executing inherit -r at the middle level and bottom levels after
H A Dstate004.cfg34 # used to verify that setting a property on a middle level dataset does
/titanic_41/usr/src/lib/libkvm/common/
H A Dkvm.c295 long middle = (first + last) / 2; in kvm_lookup() local
296 pfn_t pfn = kd->kvm_pfn[middle]; in kvm_lookup()
298 fprintf(stderr, " %ld ->", middle); in kvm_lookup()
301 ((uint64_t)middle << in kvm_lookup()
306 first = middle + 1; in kvm_lookup()
308 last = middle - 1; in kvm_lookup()
/titanic_41/usr/src/lib/libadm/common/
H A Dcktime.c107 static char *middle[] = { "AM", "PM", "am", "pm" }; in p_meridian() local
116 if ((strncmp(mid, middle[n], 2)) == 0) in p_meridian()
/titanic_41/usr/src/lib/libbc/libc/gen/common/sparc/
H A Dalloca.s45 ! be in the middle of a compilicated expression.
/titanic_41/usr/src/lib/libc/sparc/gen/
H A Dalloca.s40 ! be in the middle of a compilicated expression.
/titanic_41/usr/src/lib/libc/sparcv9/gen/
H A Dalloca.s39 ! be in the middle of a complicated expression.

123