Home
last modified time | relevance | path

Searched defs:is_bits (Results 1 – 9 of 9) sorted by relevance

/dports/print/ghostscript8-x11/ghostscript-8.71/base/
H A Dgxclpath.h196 #define is_bits(d, n) !(((d) + ((fixed)1 << ((n) - 1))) & (-(fixed)1 << (n))) macro
/dports/print/ghostscript7-base/ghostscript-7.07/src/
H A Dgxclpath.h180 #define is_bits(d, n) !(((d) + ((fixed)1 << ((n) - 1))) & (-(fixed)1 << (n))) macro
/dports/print/ghostscript7-x11/ghostscript-7.07/src/
H A Dgxclpath.h180 #define is_bits(d, n) !(((d) + ((fixed)1 << ((n) - 1))) & (-(fixed)1 << (n))) macro
/dports/print/ghostscript8-base/ghostscript-8.71/base/
H A Dgxclpath.h196 #define is_bits(d, n) !(((d) + ((fixed)1 << ((n) - 1))) & (-(fixed)1 << (n))) macro
/dports/print/ghostscript9-base/ghostscript-9.06/base/
H A Dgxclpath.h202 #define is_bits(d, n) !(((d) + ((fixed)1 << ((n) - 1))) & (-(fixed)1 << (n))) macro
/dports/print/ghostscript9-x11/ghostscript-9.06/base/
H A Dgxclpath.h202 #define is_bits(d, n) !(((d) + ((fixed)1 << ((n) - 1))) & (-(fixed)1 << (n))) macro
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dgxclpath.h206 #define is_bits(d, n) !(((d) + ((fixed)1 << ((n) - 1))) & (-(fixed)1 << (n))) macro
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/base/
H A Dgxclpath.h206 #define is_bits(d, n) !(((d) + ((fixed)1 << ((n) - 1))) & (-(fixed)1 << (n))) macro
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_const_eval/src/interpret/
H A Dvalidity.rs525 let is_bits = value.check_init().map_or(false, |v| v.try_to_int().is_ok()); in try_visit_primitive() localVariable