Home
last modified time | relevance | path

Searched refs:bit5 (Results 1 – 25 of 1598) sorted by relevance

12345678910>>...64

/dports/games/frogatto/frogatto-1.3.1/MacOSJet/boost/include/boost/polygon/detail/
H A Dtransform_detail.hpp117 bool bit5 = (atr_ & 32) != 0; in operator +=() local
126 (int)(bit2 & !bit5), in operator +=()
128 (int)(!bit5 & !bit2), in operator +=()
129 ((int)(!bit4 & !bit5) << 1) + in operator +=()
130 (int)(bit5) in operator +=()
172 bool bit5 = (atr_ & 32) != 0; in populate_axis_array() local
233 atr_ = ATR((bit5 << 5) + in write_back_axis_array()
269 atr_ = ATR((bit5 << 5) + in set_directions()
289 int bit5 = (atr_ & 32) != 0; in transform() local
321 int bit5 = ((atr_ & 32) != 0); in invert() local
[all …]
/dports/lang/sdcc/sdcc-4.0.0/device/include/hc08/
H A Dmc68hc908apxx.h55 unsigned int bit5:1; member
68 #define PTA5 ((struct __hc08_bits *)(&PTA))->bit5
79 #define PTB5 ((struct __hc08_bits *)(&PTB))->bit5
90 #define PTC5 ((struct __hc08_bits *)(&PTC))->bit5
101 #define PTD5 ((struct __hc08_bits *)(&PTD))->bit5
111 #define DDRA5 ((struct __hc08_bits *)(&DDRA))->bit5
121 #define DDRB5 ((struct __hc08_bits *)(&DDRB))->bit5
131 #define DDRC5 ((struct __hc08_bits *)(&DDRC))->bit5
141 #define DDRD5 ((struct __hc08_bits *)(&DDRD))->bit5
212 #define SCRF ((struct __hc08_bits *)(&SCS1))->bit5
[all …]
H A Dmc68hc908gp32.h55 unsigned int bit5:1; member
68 #define PTA5 ((struct __hc08_bits *)(&PTA))->bit5
79 #define PTB5 ((struct __hc08_bits *)(&PTB))->bit5
90 #define PTC5 ((struct __hc08_bits *)(&PTC))->bit5
101 #define PTD5 ((struct __hc08_bits *)(&PTD))->bit5
111 #define DDRA5 ((struct __hc08_bits *)(&DDRA))->bit5
121 #define DDRB5 ((struct __hc08_bits *)(&DDRB))->bit5
131 #define DDRC5 ((struct __hc08_bits *)(&DDRC))->bit5
141 #define DDRD5 ((struct __hc08_bits *)(&DDRD))->bit5
152 #define PTE5 ((struct __hc08_bits *)(&PTE))->bit5
[all …]
H A Dmc68hc908jb8.h55 unsigned int bit5:1; member
67 #define PTA5 ((struct __hc08_bits *)(&PTA))->bit5
77 #define PTB5 ((struct __hc08_bits *)(&PTB))->bit5
87 #define PTC5 ((struct __hc08_bits *)(&PTC))->bit5
97 #define PTD5 ((struct __hc08_bits *)(&PTD))->bit5
107 #define DDRA5 ((struct __hc08_bits *)(&DDRA))->bit5
117 #define DDRB5 ((struct __hc08_bits *)(&DDRB))->bit5
127 #define DDRC5 ((struct __hc08_bits *)(&DDRC))->bit5
137 #define DDRD5 ((struct __hc08_bits *)(&DDRD))->bit5
147 #define PTE5 ((struct __hc08_bits *)(&PTE))->bit5
[all …]
H A Dmc68hc908jkjl.h55 unsigned int bit5:1; member
68 #define PTA5 ((struct __hc08_bits *)(&PTA))->bit5
79 #define PTB5 ((struct __hc08_bits *)(&PTB))->bit5
90 #define PTD5 ((struct __hc08_bits *)(&PTD))->bit5
100 #define DDRA5 ((struct __hc08_bits *)(&DDRA))->bit5
110 #define DDRB5 ((struct __hc08_bits *)(&DDRB))->bit5
120 #define DDRD5 ((struct __hc08_bits *)(&DDRD))->bit5
157 #define TXINV ((struct __hc08_bits *)(&SCC1))->bit5
188 #define SCRF ((struct __hc08_bits *)(&SCS1))->bit5
203 #define SCP1 ((struct __hc08_bits *)(&SCBR))->bit5
[all …]
H A Dmc68hc908qy.h52 unsigned int bit5:1; member
64 #define PTA5 ((struct __hc08_bits *)(&PTA))->bit5
73 #define PTB5 ((struct __hc08_bits *)(&PTB))->bit5
82 #define DDRA5 ((struct __hc08_bits *)(&DDRA))->bit5
90 #define DDRB5 ((struct __hc08_bits *)(&DDRB))->bit5
125 #define KBIE5 ((struct __hc08_bits *)(&KBIER))->bit5
145 #define TSTOP ((struct __hc08_bits *)(&TSC))->bit5
163 #define MS0B ((struct __hc08_bits *)(&TSC0))->bit5
177 #define MS1B ((struct __hc08_bits *)(&TSC1))->bit5
216 #define COP ((struct __hc08_bits *)(&SRSR))->bit5
[all …]
/dports/textproc/scim-openvanilla/openvanilla-0.7.2.20070514/Loaders/Win32/AmphiVanilla/
H A DAVService.cpp103 enum { bit7=0x80, bit6=0x40, bit5=0x20, bit4=0x10, bit3=8, bit2=4, bit1=2, bit0=1 }; enumerator
113 if ((a & (bit7|bit6|bit5))==(bit7|bit6)) { // 0x000080-0x0007ff in UTF8ToUTF16()
117 u_internal[len] += (((a & (bit1|bit0)) << 6) | (b & (bit5|bit4|bit3|bit2|bit1|bit0))); in UTF8ToUTF16()
119 else if ((a & (bit7|bit6|bit5|bit4))==(bit7|bit6|bit5)) // 0x000800-0x00ffff in UTF8ToUTF16()
124 …u_internal[len] = (((a & (bit3|bit2|bit1|bit0)) << 4) | ((b & (bit5|bit4|bit3|bit2)) >> 2)) * 0x10… in UTF8ToUTF16()
125 u_internal[len] += (((b & (bit1|bit0)) << 6) | (c & (bit5|bit4|bit3|bit2|bit1|bit0))); in UTF8ToUTF16()
/dports/textproc/openvanilla-framework/openvanilla-0.7.2.20070514/Loaders/Win32/AmphiVanilla/
H A DAVService.cpp103 enum { bit7=0x80, bit6=0x40, bit5=0x20, bit4=0x10, bit3=8, bit2=4, bit1=2, bit0=1 }; enumerator
113 if ((a & (bit7|bit6|bit5))==(bit7|bit6)) { // 0x000080-0x0007ff in UTF8ToUTF16()
117 u_internal[len] += (((a & (bit1|bit0)) << 6) | (b & (bit5|bit4|bit3|bit2|bit1|bit0))); in UTF8ToUTF16()
119 else if ((a & (bit7|bit6|bit5|bit4))==(bit7|bit6|bit5)) // 0x000800-0x00ffff in UTF8ToUTF16()
124 …u_internal[len] = (((a & (bit3|bit2|bit1|bit0)) << 4) | ((b & (bit5|bit4|bit3|bit2)) >> 2)) * 0x10… in UTF8ToUTF16()
125 u_internal[len] += (((b & (bit1|bit0)) << 6) | (c & (bit5|bit4|bit3|bit2|bit1|bit0))); in UTF8ToUTF16()
/dports/lang/fpc-source/fpc-3.2.2/tests/webtbs/
H A Dtw33417.pp3 bit0,bit1,bit2,bit3,bit4,bit5,bit6,bit7 : boolean;
16 if flags.bit5 then
18 if pflags.bit5 then
20 if gflags.bit5 then
32 gflags.bit5:=false;
/dports/cad/alliance/alliance/src/cells/src/romlib/
H A Drom_data_midvss.vbe12 bit5 : out MUX_BIT BUS;
30 bit5 <= GUARDED '0';
42 bit5 <= GUARDED '0';
54 bit5 <= GUARDED '0';
66 bit5 <= GUARDED '0';
H A Drom_data_midsel.vbe12 bit5 : out MUX_BIT BUS;
30 bit5 <= GUARDED '0';
42 bit5 <= GUARDED '0';
54 bit5 <= GUARDED '0';
66 bit5 <= GUARDED '0';
/dports/textproc/scim-openvanilla/openvanilla-0.7.2.20070514/Experiments/VisualBasic/
H A DOVVB-POJ-Holo.cpp4 enum { bit7=0x80, bit6=0x40, bit5=0x20, bit4=0x10, bit3=8, bit2=4, bit1=2, bit0=1 }; enumerator
22 if ((a & (bit7|bit6|bit5))==(bit7|bit6)) { // 0x000080-0x0007ff in utf8toutf16()
26 s += hexstr(((a & (bit1|bit0)) << 6) | (b & (bit5|bit4|bit3|bit2|bit1|bit0))); in utf8toutf16()
28 else if ((a & (bit7|bit6|bit5|bit4))==(bit7|bit6|bit5)) // 0x000800-0x00ffff in utf8toutf16()
33 s += hexstr (((a & (bit3|bit2|bit1|bit0)) << 4) | ((b & (bit5|bit4|bit3|bit2)) >> 2)); in utf8toutf16()
34 s += hexstr (((b & (bit1|bit0)) << 6) | (c & (bit5|bit4|bit3|bit2|bit1|bit0))); in utf8toutf16()
/dports/textproc/openvanilla-framework/openvanilla-0.7.2.20070514/Experiments/VisualBasic/
H A DOVVB-POJ-Holo.cpp4 enum { bit7=0x80, bit6=0x40, bit5=0x20, bit4=0x10, bit3=8, bit2=4, bit1=2, bit0=1 }; enumerator
22 if ((a & (bit7|bit6|bit5))==(bit7|bit6)) { // 0x000080-0x0007ff in utf8toutf16()
26 s += hexstr(((a & (bit1|bit0)) << 6) | (b & (bit5|bit4|bit3|bit2|bit1|bit0))); in utf8toutf16()
28 else if ((a & (bit7|bit6|bit5|bit4))==(bit7|bit6|bit5)) // 0x000800-0x00ffff in utf8toutf16()
33 s += hexstr (((a & (bit3|bit2|bit1|bit0)) << 4) | ((b & (bit5|bit4|bit3|bit2)) >> 2)); in utf8toutf16()
34 s += hexstr (((b & (bit1|bit0)) << 6) | (c & (bit5|bit4|bit3|bit2|bit1|bit0))); in utf8toutf16()
/dports/lang/sdcc/sdcc-4.0.0/support/regression/tests/
H A Dscott-sub.c21 bit bit5 = 0; variable
125 bit7 = bit4-bit5; in sub_bits()
126 bit6 = bit4+bit5; in sub_bits()
127 bit3 = bit4-bit5-bit6-bit7-bit0; // 0-0-0-0-1 => 1 in sub_bits()
/dports/emulators/emu64/emu64-5.0.19/src/
H A Dwidget_sr_edit.cpp38 bit0 = bit1 = bit2 = bit3 = bit4 = bit5 = bit6 = bit7 = false; in WidgetSREdit()
63 if(bit5) value |= 32; in CalcValue()
129 bit5 = true; in SetValue()
134 bit5 = false; in SetValue()
238 bit5 = true; in on_Bit5_clicked()
/dports/games/frogatto/frogatto-1.3.1/MacOSJet/boost/include/boost/polygon/
H A Dtransform.hpp268 bool bit5 = (atr_ & 32) != 0; in get_directions() local
274 proximal_dir = direction_3d((direction_2d_enum)((((int)(!bit4 & !bit5)) << 2) + in get_directions()
275 ((int)(bit5) << 1) + in get_directions()
277 vertical_dir = direction_3d((direction_2d_enum)((((int)((bit4 & bit2) | (bit5 & !bit2))) << 2)+ in get_directions()
278 ((int)(!bit5 & !bit2) << 1) + in get_directions()
280 horizontal_dir = direction_3d((direction_2d_enum)((((int)((bit5 & bit2) | in get_directions()
282 ((int)(bit2 & !bit5) << 1) + in get_directions()
/dports/lang/sdcc/sdcc-4.0.0/src/regression/
H A Dsub.c21 bit bit5 = 0; variable
145 bit7 = bit4-bit5; in sub_bits()
146 bit6 = bit4+bit5; in sub_bits()
147 bit3 = bit4-bit5-bit6-bit7-bit0; // 0-0-0-0-1 => 1 in sub_bits()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/u-boot/tools/
H A Dvybridimage.c47 uint8_t bit5 = (byte & (1 << 5)) ? 1 : 0; in vybridimage_sw_ecc() local
52 res |= ((bit6 ^ bit5 ^ bit3 ^ bit2) << 0); in vybridimage_sw_ecc()
53 res |= ((bit7 ^ bit5 ^ bit4 ^ bit2 ^ bit1) << 1); in vybridimage_sw_ecc()
54 res |= ((bit7 ^ bit6 ^ bit5 ^ bit1 ^ bit0) << 2); in vybridimage_sw_ecc()
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot/tools/
H A Dvybridimage.c47 uint8_t bit5 = (byte & (1 << 5)) ? 1 : 0; in vybridimage_sw_ecc() local
52 res |= ((bit6 ^ bit5 ^ bit3 ^ bit2) << 0); in vybridimage_sw_ecc()
53 res |= ((bit7 ^ bit5 ^ bit4 ^ bit2 ^ bit1) << 1); in vybridimage_sw_ecc()
54 res |= ((bit7 ^ bit6 ^ bit5 ^ bit1 ^ bit0) << 2); in vybridimage_sw_ecc()
/dports/sysutils/u-boot-nanopi-neo2/u-boot-2021.07/tools/
H A Dvybridimage.c47 uint8_t bit5 = (byte & (1 << 5)) ? 1 : 0; in vybridimage_sw_ecc() local
52 res |= ((bit6 ^ bit5 ^ bit3 ^ bit2) << 0); in vybridimage_sw_ecc()
53 res |= ((bit7 ^ bit5 ^ bit4 ^ bit2 ^ bit1) << 1); in vybridimage_sw_ecc()
54 res |= ((bit7 ^ bit6 ^ bit5 ^ bit1 ^ bit0) << 2); in vybridimage_sw_ecc()
/dports/sysutils/u-boot-olimex-a20-som-evb/u-boot-2021.07/tools/
H A Dvybridimage.c47 uint8_t bit5 = (byte & (1 << 5)) ? 1 : 0; in vybridimage_sw_ecc() local
52 res |= ((bit6 ^ bit5 ^ bit3 ^ bit2) << 0); in vybridimage_sw_ecc()
53 res |= ((bit7 ^ bit5 ^ bit4 ^ bit2 ^ bit1) << 1); in vybridimage_sw_ecc()
54 res |= ((bit7 ^ bit6 ^ bit5 ^ bit1 ^ bit0) << 2); in vybridimage_sw_ecc()
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/tools/
H A Dvybridimage.c47 uint8_t bit5 = (byte & (1 << 5)) ? 1 : 0; in vybridimage_sw_ecc() local
52 res |= ((bit6 ^ bit5 ^ bit3 ^ bit2) << 0); in vybridimage_sw_ecc()
53 res |= ((bit7 ^ bit5 ^ bit4 ^ bit2 ^ bit1) << 1); in vybridimage_sw_ecc()
54 res |= ((bit7 ^ bit6 ^ bit5 ^ bit1 ^ bit0) << 2); in vybridimage_sw_ecc()
/dports/sysutils/u-boot-nanopi-m1plus/u-boot-2021.07/tools/
H A Dvybridimage.c47 uint8_t bit5 = (byte & (1 << 5)) ? 1 : 0; in vybridimage_sw_ecc() local
52 res |= ((bit6 ^ bit5 ^ bit3 ^ bit2) << 0); in vybridimage_sw_ecc()
53 res |= ((bit7 ^ bit5 ^ bit4 ^ bit2 ^ bit1) << 1); in vybridimage_sw_ecc()
54 res |= ((bit7 ^ bit6 ^ bit5 ^ bit1 ^ bit0) << 2); in vybridimage_sw_ecc()
/dports/sysutils/u-boot-beaglebone/u-boot-2021.07/tools/
H A Dvybridimage.c47 uint8_t bit5 = (byte & (1 << 5)) ? 1 : 0; in vybridimage_sw_ecc() local
52 res |= ((bit6 ^ bit5 ^ bit3 ^ bit2) << 0); in vybridimage_sw_ecc()
53 res |= ((bit7 ^ bit5 ^ bit4 ^ bit2 ^ bit1) << 1); in vybridimage_sw_ecc()
54 res |= ((bit7 ^ bit6 ^ bit5 ^ bit1 ^ bit0) << 2); in vybridimage_sw_ecc()
/dports/sysutils/u-boot-cubieboard2/u-boot-2021.07/tools/
H A Dvybridimage.c47 uint8_t bit5 = (byte & (1 << 5)) ? 1 : 0; in vybridimage_sw_ecc() local
52 res |= ((bit6 ^ bit5 ^ bit3 ^ bit2) << 0); in vybridimage_sw_ecc()
53 res |= ((bit7 ^ bit5 ^ bit4 ^ bit2 ^ bit1) << 1); in vybridimage_sw_ecc()
54 res |= ((bit7 ^ bit6 ^ bit5 ^ bit1 ^ bit0) << 2); in vybridimage_sw_ecc()

12345678910>>...64