Searched refs:low (Results 26 - 50 of 137) sorted by relevance

123456

/haiku/src/add-ons/accelerants/nvidia/
H A DProposeDisplayMode.c124 static status_t Haiku_CheckMultiMonTunnel(display_mode *mode, const display_mode *low, const display_mode *high, bool *isTunneled ) argument
140 if( mode->space != 0 || low->space != 0 || high->space != 0
141 || low->virtual_width != 0xffff || low->virtual_height != 0xffff
144 || low->timing.pixel_clock != 'TKTK' || high->timing.pixel_clock != 'KTKT' )
208 Check mode is between low and high limits.
216 * returns B_BAD_VALUE. It's called by the OS with target, low and high set to
227 PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const display_mode *high) argument
241 result = Haiku_CheckMultiMonTunnel(target, low, high, &isTunneled);
356 if (target->virtual_width < low
584 display_mode low, high; local
[all...]
/haiku/headers/private/graphics/common/
H A Dvalidate_display_mode.h45 bool is_display_mode_within_bounds(display_mode& mode, const display_mode& low,
H A Di2c.h18 int low; // low period of clock (4.7/1.3) member in struct:i2c_timing
52 // low-level
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DUnBitArray.h13 unsigned int low; // low end of interval member in struct:RANGE_CODER_STRUCT_DECOMPRESS
H A DBitArray.h11 unsigned int low; // low end of interval member in struct:RANGE_CODER_STRUCT_COMPRESS
/haiku/src/add-ons/accelerants/framebuffer/
H A Daccelerant_protos.h34 status_t framebuffer_get_pixel_clock_limits(display_mode *dm, uint32 *low,
/haiku/src/libs/compat/freebsd_network/compat/machine/x86_64/
H A Dcpufunc.h350 uint32_t low, high; local
352 __asm __volatile("rdmsr" : "=a" (low), "=d" (high) : "c" (msr));
353 return (low | ((uint64_t)high << 32));
359 uint32_t low; local
361 __asm __volatile("rdmsr" : "=a" (low) : "c" (msr) : "rdx");
362 return (low);
368 uint32_t low, high; local
370 __asm __volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (pmc));
371 return (low | ((uint64_t)high << 32));
377 uint32_t low, hig local
409 uint32_t low, high; local
475 u_int low, high; local
484 u_int low, high; local
[all...]
/haiku/src/add-ons/accelerants/et6x00/
H A Dgeneric.h22 status_t PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const display_mode *high);
26 status_t GET_PIXEL_CLOCK_LIMITS(display_mode *dm, uint32 *low, uint32 *high);
/haiku/src/system/libroot/posix/glibc/arch/sparc/
H A Daddmul_1.S39 srl %i3,0,%o1 ! extract low 32 bits of s2_limb
63 sllx %i1,32,%i0 ! align low bits of mid product
66 add %i0,%g5,%i0 ! combine into low 64 bits of result
68 addcc %i0,%o0,%i0 ! add cy_limb to low 64 bits of result
H A Dmul_1.S42 srl %i3,0,%o1 ! extract low 32 bits of s2_limb
66 sllx %i1,32,%i0 ! align low bits of mid product
68 add %i0,%g5,%i0 ! combine into low 64 bits of result
71 addcc %i0,%o0,%i0 ! add cy_limb to low 64 bits of result
H A Dsubmul_1.S38 srl %i3,0,%o1 ! extract low 32 bits of s2_limb
62 sllx %i1,32,%i0 ! align low bits of mid product
65 add %i0,%g5,%i0 ! combine into low 64 bits of result
67 addcc %i0,%o0,%i0 ! add cy_limb to low 64 bits of result
/haiku/src/add-ons/accelerants/radeon/
H A DProposeDisplayMode.c136 b) falls between the contraints imposed by "low" and "high"
146 const display_mode *low, const display_mode *high)
269 if( target->timing.h_display < low->timing.h_display ||
271 target->timing.h_sync_start < low->timing.h_sync_start ||
273 target->timing.h_sync_end < low->timing.h_sync_end ||
275 target->timing.h_total < low->timing.h_total ||
330 if( target->timing.v_display < low->timing.v_display ||
332 target->timing.v_sync_start < low->timing.v_sync_start ||
334 target->timing.v_sync_end < low->timing.v_sync_end ||
336 target->timing.v_total < low
144 Radeon_ProposeDisplayMode(shared_info *si, crtc_info *crtc, general_pll_info *pll, display_mode *target, const display_mode *low, const display_mode *high) argument
444 display_mode low, high; local
627 PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const display_mode *high) argument
[all...]
H A DGetModeInfo.c51 GET_PIXEL_CLOCK_LIMITS(display_mode *dm, uint32 *low, uint32 *high) argument
59 *low = (total_pix * 48L) / 1000L;
60 if (*low > clock_limit)
H A Dmultimon.c147 const display_mode *low, const display_mode *high, bool *isTunneled )
164 if( mode->space != 0 || low->space != 0 || high->space != 0
165 || low->virtual_width != 0xffff || low->virtual_height != 0xffff
168 || low->timing.pixel_clock != 'TKTK' || high->timing.pixel_clock != 'KTKT' )
146 Radeon_CheckMultiMonTunnel( virtual_card *vc, display_mode *mode, const display_mode *low, const display_mode *high, bool *isTunneled ) argument
/haiku/src/system/kernel/
H A Dconvertutf.cpp85 uint32 low = isLittleEndian local
88 if ((low & 0xFC00) != 0xDC00) {
89 // missing low surrogate
93 glyph = (((glyph & 0x3FF) << 10) | (low & 0x3FF)) + 0x10000;
/haiku/src/add-ons/accelerants/radeon_hd/
H A Daccelerant_protos.h38 uint32* low, uint32* high);
/haiku/src/add-ons/accelerants/virtio/
H A Daccelerant_protos.h35 status_t virtio_gpu_get_pixel_clock_limits(display_mode *dm, uint32 *low,
/haiku/src/add-ons/accelerants/intel_810/
H A Daccelerant.h66 status_t ProposeDisplayMode(display_mode* target, const display_mode* low,
71 status_t GetPixelClockLimits(display_mode* dm, uint32* low, uint32* high);
H A Dmode.cpp137 ProposeDisplayMode(display_mode* target, const display_mode* low, argument
140 (void)low; // avoid compiler warning for unused arg
289 GetPixelClockLimits(display_mode* mode, uint32* low, uint32* high) argument
299 if (low != NULL) {
307 *low = lowClock;
/haiku/src/libs/compat/freebsd_network/
H A Dmalloc.cpp49 vm_paddr_t low, vm_paddr_t high, unsigned long alignment,
67 physicalRestrictions.low_address = low;
48 _kernel_contigmalloc(const char *file, int line, size_t size, int flags, vm_paddr_t low, vm_paddr_t high, unsigned long alignment, unsigned long boundary) argument
/haiku/src/add-ons/accelerants/3dfx/
H A Dmode.cpp132 ProposeDisplayMode(display_mode* target, const display_mode* low, argument
135 (void)low; // avoid compiler warning for unused arg
294 GetPixelClockLimits(display_mode* mode, uint32* low, uint32* high) argument
304 if (low != NULL) {
312 *low = lowClock;
/haiku/src/add-ons/accelerants/matrox/
H A Dbe_driver_proto.h22 status_t PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const display_mode *high);
26 status_t GET_PIXEL_CLOCK_LIMITS(display_mode *dm, uint32 *low, uint32 *high);
/haiku/headers/os/interface/
H A DScreen.h62 const display_mode* low,
95 const display_mode* low,
/haiku/src/servers/app/drawing/
H A DBitmapHWInterface.cpp119 BitmapHWInterface::GetPixelClockLimits(display_mode* mode, uint32* low, argument
134 BitmapHWInterface::ProposeMode(display_mode* candidate, const display_mode* low, argument
H A DPatternHandler.cpp26 low color is set to white.
42 is NULL. High color is set to black, and low color is set to white.
58 is NULL. High color is set to black, and low color is set to white.
74 High color is set to black, and low color is set to white.
154 \param low Low color for the handler
157 PatternHandler::SetColors(const rgb_color& high, const rgb_color& low) argument
160 fLowColor = low;
174 \brief Set the low color for the pattern to use
209 \return Value for the coordinates - true if high, false if low.

Completed in 292 milliseconds

123456