/freebsd/contrib/libdivsufsort/lib/ |
H A D | sssort.c | 264 saidx_t *middle; in ss_pivot() local 268 middle = first + t / 2; in ss_pivot() 272 return ss_median3(Td, PA, first, middle, last - 1); in ss_pivot() 275 return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1); in ss_pivot() 280 middle = ss_median3(Td, PA, middle - t, middle, middle + t); in ss_pivot() 282 return ss_median3(Td, PA, first, middle, last); in ss_pivot() 461 ss_rotate(saidx_t *first, saidx_t *middle, saidx_t *last) { in ss_rotate() argument 464 l = middle - first, r = last - middle; in ss_rotate() 466 if(l == r) { ss_blockswap(first, middle, l); break; } in ss_rotate() 468 a = last - 1, b = middle - 1; in ss_rotate() [all …]
|
H A D | trsort.c | 168 saidx_t *middle; in tr_pivot() local 172 middle = first + t / 2; in tr_pivot() 176 return tr_median3(ISAd, first, middle, last - 1); in tr_pivot() 179 return tr_median5(ISAd, first, first + t, middle, last - 1 - t, last - 1); in tr_pivot() 184 middle = tr_median3(ISAd, middle - t, middle, middle + t); in tr_pivot() 186 return tr_median3(ISAd, first, middle, last); in tr_pivot() 223 saidx_t *first, saidx_t *middle, saidx_t *last, in tr_partition() argument 229 for(b = middle - 1; (++b < last) && ((x = ISAd[*b]) == v);) { } in tr_partition()
|
/freebsd/usr.bin/gprof/ |
H A D | lookup.c | 44 register long middle; in nllookup() local 55 middle = ( high + low ) >> 1; in nllookup() 56 if ( nl[ middle ].value <= address && nl[ middle+1 ].value > address ) { in nllookup() 63 if (nl[middle].name[0] == '$' && in nllookup() 64 nl[middle-1].value == nl[middle].value) in nllookup() 65 middle--; in nllookup() 68 return &nl[ middle ]; in nllookup() 70 if ( nl[ middle ].value > address ) { in nllookup() 71 high = middle; in nllookup() 73 low = middle + 1; in nllookup()
|
/freebsd/sys/contrib/zstd/lib/dictBuilder/ |
H A D | divsufsort.c | 354 int *middle; in ss_pivot() local 358 middle = first + t / 2; in ss_pivot() 362 return ss_median3(Td, PA, first, middle, last - 1); in ss_pivot() 365 return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1); in ss_pivot() 370 middle = ss_median3(Td, PA, middle - t, middle, middle + t); in ss_pivot() 372 return ss_median3(Td, PA, first, middle, last); in ss_pivot() 551 ss_rotate(int *first, int *middle, int *last) { in ss_rotate() argument 554 l = middle - first, r = last - middle; in ss_rotate() 556 if(l == r) { ss_blockswap(first, middle, l); break; } in ss_rotate() 558 a = last - 1, b = middle - 1; in ss_rotate() [all …]
|
/freebsd/contrib/ntp/html/drivers/scripts/ |
H A D | footer.txt | 3 <td width='33%' align='center'><img src='../icons/home.gif' align='middle'>\ 5 <td width='33%' ><img src='../icons/sitemap.png' align='middle'>\ 7 <td width='33%' ><img src='../icons/mail2.gif' align='middle'>\
|
/freebsd/contrib/ntp/html/scripts/ |
H A D | footer.txt | 3 <td width='33%' align='center'><img src='icons/home.gif' align='middle'>\ 5 <td width='33%' align='center'><img src='icons/sitemap.png' align='middle'>\ 7 <td width='33%' align='center'><img src='icons/mail2.gif' align='middle'>\
|
H A D | command.txt | 3 <td width='50%' ><img src='icons/home.gif' align='middle' alt='gif'>\ 5 <td width='50%' ><img src='icons/mail2.gif' align='middle' alt='gif'>\
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | IntervalTree.h | 275 PointType middle() const { return MiddlePoint; } in middle() function 339 OS << format(Format, Node->middle()) << Text << " "; 476 if (Point == Node->middle()) { in initNode() 484 if (Point < Node->middle()) { in initNode() 511 if (Node->middle() == Point) in nextInterval() 513 if (Point < Node->middle()) { in nextInterval() 532 if (Point == Node->middle()) { in nextInterval() 538 Node = Point < Node->middle() ? Node->Left : Node->Right; in nextInterval() 553 return (Point <= Node->middle()) in current()
|
/freebsd/lib/libc/tests/gen/ |
H A D | dir2_test.c | 56 long beginning, middle, end, td; in ATF_TC_BODY() local 86 middle = telldir(dirp); in ATF_TC_BODY() 104 seekdir(dirp, middle); in ATF_TC_BODY() 106 ATF_CHECK_EQ(middle, td); in ATF_TC_BODY()
|
/freebsd/tests/sys/cddl/zfs/tests/inheritance/ |
H A D | state015.cfg | 29 # when the middle level properties are set locally, and the bottom 30 # level has inherited its value from the middle level, results in no change 33 # Executing 'zfs inherit' at the middle level results in the middle level
|
H A D | state016.cfg | 29 # when the middle level properties are set locally, and the bottom 30 # level has inherited its value from the middle level, results in no change 31 # to the top level properties and the middle and bottom properties changing 34 # Executing 'zfs inherit -r' at the bottom and middle levels after executing
|
H A D | state017.cfg | 29 # when the top level and middle level datasets properties are set locally, 30 # and the bottom level has inherited its properties from the middle 34 # Executing 'zfs inherit' at the middle level results in the middle level
|
H A D | state019.cfg | 29 # when the top level properties are set locally and the middle and bottom 31 # properties reverting back to their default values, the middle and bottom 34 # Executing 'zfs inherit' at the middle and bottom levels is somewhat
|
H A D | state021.cfg | 30 # middle dataset has inherited from the top level, results in the top level 31 # properties reverting back to their default values, and the middle level 35 # the middle level values.
|
H A D | state018.cfg | 29 # when the top level and middle level datasets properties are set locally, 30 # and the bottom level has inherited its properties from the middle 35 # Executing 'zfs inherit -r' at the middle and bottom levels after executing
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/inheritance/ |
H A D | state015.cfg | 34 # 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 D | state016.cfg | 34 # 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 D | state017.cfg | 34 # 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 D | state019.cfg | 34 # 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 D | state020.cfg | 34 # 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 D | state021.cfg | 35 # 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 D | state022.cfg | 35 # 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
|
/freebsd/bin/ed/test/ |
H A D | c.r | 2 between top/middle 3 in the middle
|
H A D | c.t | 5 in the middle 11 between top/middle
|
/freebsd/sys/contrib/device-tree/Bindings/input/ |
H A D | gpio-mouse.txt | 16 - button-middle-gpios: GPIO line handle to the middle mouse button 30 button-middle-gpios = <&gpio0 5 GPIO_ACTIVE_LOW>;
|