Searched refs:high (Results 151 - 175 of 339) sorted by relevance

1234567891011>>

/macosx-10.9.5/cctools-845/as/
H A Datof-ieee.c170 generic_floating_point_number.high = NULL;
218 generic_floating_point_number.high = generic_floating_point_number.low + precision - 1 + GUARD;
336 /* Word 1. Sign, exponent and perhaps high bits. */
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DLowerSwitch.cpp54 CaseRange(Constant *low = 0, Constant *high = 0, BasicBlock *bb = 0) :
55 Low(low), High(high), BB(bb) { }
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/generic/
H A Dbincode.c633 #define IN_RANGE(low,x,high) (((low) <= (x)) && ((x) <= (high)))
/macosx-10.9.5/vim-53/runtime/syntax/
H A Ddebchangelog.vim21 syn match debchangelogUrgency contained "; urgency=\(low\|medium\|high\|critical\|emergency\)\( \S.*\)\="
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DDecimal.cpp130 UInt128(uint64_t low, uint64_t high) argument
131 : m_high(high), m_low(low)
137 uint64_t high() const { return m_high; } function in class:WebCore::DecimalPrivate::UInt128
146 static uint64_t makeUInt64(uint32_t low, uint32_t high) { return low | (static_cast<uint64_t>(high) << 32); } argument
181 // Returns high 64bit of 128bit product.
431 while (work.high()) {
/macosx-10.9.5/dcerpc-58/dcerpc/idl_lib/
H A Dinterpsh.c1191 idl_long_int low, mid, high; /* Element indices */ local
1202 high = arm_count - 1;
1210 mid = (low + high) / 2; /* Compute midpoint element */
1220 high = mid - 1; /* adjust high index below midpoint */
1224 } while (high >= low);
1226 if (high >= low)
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dtype-break.el1049 ;; This function keeps the high and low 16 bits of the seconds properly
1054 (let ((high 0)
1065 (setq high (+ high (or (car tem) 0)))
1079 (setq high (+ high tem))))
1081 (list high low micro)))
H A Dhelp-fns.el378 (high (help-highlight-arguments use doc)))
380 (insert (car high) "\n")
382 (setq doc (cdr high))))
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Ddwarf2.c145 bfd_vma high; member in struct:arange
927 if (first_arange->high == 0)
930 first_arange->high = high_pc;
938 if (low_pc == arange->high)
940 arange->high = high_pc;
956 arange->high = high_pc;
1145 for ia64-Linux). Thus, to determine the low and high
1454 if (addr >= arange->low && addr < arange->high)
1457 ((arange->high - arange->low) < (best_fit->arange.high
[all...]
/macosx-10.9.5/cctools-845/otool/
H A Dm88k_disasm.c1053 int32_t low, high, mid, reloc_found, offset; local
1198 high = nsorted_symbols - 1;
1199 mid = (high - low) / 2;
1200 while(high >= low){
1243 high = mid - 1;
1244 mid = (high + low) / 2;
1248 mid = (high + low) / 2;
H A Darm_disasm.c191 int32_t low, high, mid, reloc_found, offset; local
422 high = info->nsorted_symbols - 1;
423 mid = (high - low) / 2;
424 while(high >= low){
431 high = mid - 1;
432 mid = (high + low) / 2;
436 mid = (high + low) / 2;
1999 %S print Thumb register (bits 3..5 as high number if bit 6 set)
2000 %D print Thumb register (bits 0..2 as high number if bit 7 set)
2149 We adopt the convention that hw1 is the high 1
3559 unsigned low, high; local
5246 int32_t low, high, mid, reloc_found, offset; local
5861 int32_t high, low, mid; local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/assembler/
H A DAbstractMacroAssembler.h719 void check(unsigned low, unsigned high) argument
721 RELEASE_ASSERT_WITH_MESSAGE(!(low <= m_offset && m_offset <= high), "Unsafe branch over register allocation at instruction offset %u in jump offset range %u..%u", m_offset, low, high);
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/
H A Dopenssldh_link.c601 unsigned int high, low; local
605 high = s - hexdigits;
611 data[i/2] = (unsigned char)((high << 4) + low);
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dthumbnail.c372 static int clamp(float v, int low, int high) argument
373 { return (v < low ? low : v > high ? high : (int)v); }
/macosx-10.9.5/gnudiff-19/diffutils/src/
H A Ddiff3.c493 * being the high water mark and move the current block up
495 * b) Check the next block in the diff that the high water
498 * *If* the high water mark is above
502 * block up. Set the high water mark to the max of
503 * the high end of this block and the current. Repeat b.
604 /* Setup low and high water threads, diffs, and marks. */
714 lin low[2], high[2];
732 high[d] = D_HIGH_MAPLINE (last_using[d], FC, FO, highc);
737 high[d] = D_HIGH_MAPLINE (last_diff3, FILEC, FILE0 + d, highc);
741 result = create_diff3_block (low[0], high[
711 lin low[2], high[2]; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/
H A Dhfs_search.c128 static Boolean CompareRange(u_long val, u_long low, u_long high);
129 static Boolean CompareWideRange(u_int64_t val, u_int64_t low, u_int64_t high);
131 static Boolean CompareRange( u_long val, u_long low, u_long high )
133 return( (val >= low) && (val <= high) );
136 static Boolean CompareWideRange( u_int64_t val, u_int64_t low, u_int64_t high )
138 return( (val >= low) && (val <= high) );
140 //#define CompareRange(val, low, high) ((val >= low) && (val <= high))
760 * high that you would want to see all matches, even those that do not
/macosx-10.9.5/CPANInternal-140/YAML-Syck/lib/YAML/
H A DSyck.pm205 byte strings with high-bit set will be dumped with backslash escaping.
214 scalars containing high-bit bytes.
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DNumberPrototype.cpp118 static ALWAYS_INLINE bool getIntegerArgumentInRange(ExecState* exec, int low, int high, int& result, bool& isUndefined) argument
130 if (asDouble < low || asDouble > high)
/macosx-10.9.5/WebKit-7537.78.2/mac/History/
H A DWebHistory.mm218 unsigned high = count;
219 while (low < high) {
220 unsigned mid = low + (high - low) / 2;
224 high = mid;
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/trace.tproj/
H A Dtrace.c2242 int low, high, mid; local
2246 high = highbound;
2250 mid = (low + high) / 2;
2254 if (low > high)
2256 else if ( low + 1 >= high)
2259 if (list[high].debugid == code)
2260 return(high);
2267 high = mid;
/macosx-10.9.5/system_cmds-597.90.1/trace.tproj/
H A Dtrace.c2242 int low, high, mid; local
2246 high = highbound;
2250 mid = (low + high) / 2;
2254 if (low > high)
2256 else if ( low + 1 >= high)
2259 if (list[high].debugid == code)
2260 return(high);
2267 high = mid;
/macosx-10.9.5/libiconv-41/libiconv/tools/
H A Dcjk_tab_to_h.c1418 struct { int low; int high; int diff; int total; } ranges[256]; member in struct:__anon9532
1462 low[k] <= i <= high[k] => j = diff[k] + i
1463 with a set of disjoint intervals (low[k], high[k]). */
1471 if (!(i > ranges[ranges_count-1].high))
1473 if (!(j > ranges[ranges_count-1].high + ranges[ranges_count-1].diff))
1480 ranges[ranges_count-1].high = i;
1485 ranges[ranges_count].high = i;
1495 ranges_total += ranges[k].high - ranges[k].low + 1;
1500 printf(" 0x%04x, 0x%04x", ranges[k].low, ranges[k].high);
1511 printf(" 0x%04x, 0x%04x", ranges[k].low + ranges[k].diff, ranges[k].high
[all...]
/macosx-10.9.5/ruby-104/ruby/
H A Dregexec.c3638 UChar* range, UChar** low, UChar** high, UChar** low_prev)
3752 /* no needs to adjust *high, *high is used as range check only */
3753 *high = p - reg->dmin;
3757 "forward_search_range success: low: %d, high: %d, dmin: %d, dmax: %d\n",
3758 (int )(*low - str), (int )(*high - str), reg->dmin, reg->dmax);
3774 UChar** low, UChar** high)
3852 /* no needs to adjust *high, *high is used as range check only */
3855 *high
3637 forward_search_range(regex_t* reg, const UChar* str, const UChar* end, UChar* s, UChar* range, UChar** low, UChar** high, UChar** low_prev) argument
3772 backward_search_range(regex_t* reg, const UChar* str, const UChar* end, UChar* s, const UChar* range, UChar* adjrange, UChar** low, UChar** high) argument
4117 UChar *sch_range, *low, *high, *low_prev; local
4190 UChar *low, *high, *adjrange, *sch_start; local
[all...]
/macosx-10.9.5/CPANInternal-140/Data-UUID/
H A DUUID.pm96 and supports fairly high allocation rates -- 10 million per second per machine
/macosx-10.9.5/CPANInternal-140/Data-UUID-1.218/
H A DUUID.pm64 UUIDs and supports fairly high allocation rates -- 10 million per second per

Completed in 434 milliseconds

1234567891011>>