Home
last modified time | relevance | path

Searched refs:obyte (Results 1 – 25 of 106) sorted by relevance

12345

/dports/graphics/bmeps/dktools-4.31.1/src/libdk4c/
H A Ddk4ahd.c47 dec->obyte = 0x00; in dk4ahex_dec_init()
75 dec->obyte = 0x00; in dk4ahex_dec_add()
81 dec->obyte |= 0x01; dec->cpos = 2; in dk4ahex_dec_add()
83 dec->obyte = 0x10; dec->cpos = 1; in dk4ahex_dec_add()
90 dec->obyte = 0x20; dec->cpos = 1; in dk4ahex_dec_add()
97 dec->obyte = 0x30; dec->cpos = 1; in dk4ahex_dec_add()
104 dec->obyte = 0x40; dec->cpos = 1; in dk4ahex_dec_add()
111 dec->obyte = 0x50; dec->cpos = 1; in dk4ahex_dec_add()
118 dec->obyte = 0x60; dec->cpos = 1; in dk4ahex_dec_add()
125 dec->obyte = 0x70; dec->cpos = 1; in dk4ahex_dec_add()
[all …]
H A Ddk4ahd.ctr151 dec->obyte = 0x00;
179 dec->obyte = 0x00;
187 dec->obyte = 0x10; dec->cpos = 1;
194 dec->obyte = 0x20; dec->cpos = 1;
201 dec->obyte = 0x30; dec->cpos = 1;
208 dec->obyte = 0x40; dec->cpos = 1;
215 dec->obyte = 0x50; dec->cpos = 1;
222 dec->obyte = 0x60; dec->cpos = 1;
229 dec->obyte = 0x70; dec->cpos = 1;
236 dec->obyte = 0x80; dec->cpos = 1;
[all …]
H A Ddk4bitsh.c49 bs->obyte = 0x00; in dk4bit_shift_init()
71 if (0 != bit) { bs->obyte = 0x80; } else { bs->obyte = 0x00; } in dk4bit_shift_add()
75 if (0 != bit) { bs->obyte |= 0x40; } in dk4bit_shift_add()
79 if (0 != bit) { bs->obyte |= 0x20; } in dk4bit_shift_add()
83 if (0 != bit) { bs->obyte |= 0x10; } in dk4bit_shift_add()
87 if (0 != bit) { bs->obyte |= 0x08; } in dk4bit_shift_add()
91 if (0 != bit) { bs->obyte |= 0x04; } in dk4bit_shift_add()
95 if (0 != bit) { bs->obyte |= 0x02; } in dk4bit_shift_add()
99 if (0 != bit) { bs->obyte |= 0x01; } in dk4bit_shift_add()
147 back = bs->obyte; in dk4bit_shift_output()
/dports/mail/mmr/mmr-1.6.0/
H A Dbase64.cpp57 char sextet[4], obyte; in base64_decode() local
89 obyte <<= 2; in base64_decode()
91 dst[o++] = obyte; in base64_decode()
94 obyte <<= 2; in base64_decode()
98 obyte <<= 4; in base64_decode()
113 obyte <<= 2; in base64_decode()
115 dst[o++] = obyte; in base64_decode()
117 obyte <<= 4; in base64_decode()
119 dst[o++] = obyte; in base64_decode()
121 obyte <<= 6; in base64_decode()
[all …]
/dports/net/imapproxy/imapproxy-1.0/
H A Dbase64.c37 unsigned char obyte; in base64encode() local
48 *top++ = b64string[(int)obyte]; in base64encode()
53 *top++ = b64string[(int)obyte]; in base64encode()
67 obyte |= (cbyte >> 4); in base64encode()
68 *top++ = b64string[(int)obyte]; in base64encode()
89 unsigned char obyte; in base64decode() local
98 obyte = cbyte << 2; /* 1111 1100 */ in base64decode()
106 *top++ = obyte; in base64decode()
116 *top++ = obyte; in base64decode()
125 obyte |= cbyte; /* 0011 1111 */ in base64decode()
[all …]
/dports/devel/godot2/godot-2.1.6-stable/thirdparty/misc/
H A Dbase64.c13 unsigned char obyte; local
23 *top++ = b64string[(int)obyte];
28 *top++ = b64string[(int)obyte];
42 obyte |= (cbyte >> 4);
43 *top++ = b64string[(int)obyte];
66 unsigned char obyte; local
75 obyte = cbyte << 2; /* 1111 1100 */
83 *top++ = obyte;
93 *top++ = obyte;
102 obyte |= cbyte; /* 0011 1111 */
[all …]
/dports/devel/godot2-tools/godot-2.1.6-stable/thirdparty/misc/
H A Dbase64.c13 unsigned char obyte; local
23 *top++ = b64string[(int)obyte];
28 *top++ = b64string[(int)obyte];
42 obyte |= (cbyte >> 4);
43 *top++ = b64string[(int)obyte];
66 unsigned char obyte; local
75 obyte = cbyte << 2; /* 1111 1100 */
83 *top++ = obyte;
93 *top++ = obyte;
102 obyte |= cbyte; /* 0011 1111 */
[all …]
/dports/graphics/swfmill/swfmill-0.3.6/src/
H A Dbase64.c11 unsigned char obyte; in base64_encode() local
21 *top++ = b64string[(int)obyte]; in base64_encode()
26 *top++ = b64string[(int)obyte]; in base64_encode()
40 obyte |= (cbyte >> 4); in base64_encode()
41 *top++ = b64string[(int)obyte]; in base64_encode()
62 unsigned char obyte; in base64_decode() local
71 obyte = cbyte << 2; /* 1111 1100 */ in base64_decode()
79 *top++ = obyte; in base64_decode()
89 *top++ = obyte; in base64_decode()
98 obyte |= cbyte; /* 0011 1111 */ in base64_decode()
[all …]
/dports/emulators/hercules/hercules-3.13/
H A Dcodepage.c969 char ibyte, obyte; in set_iconv_cp() local
1009 ibytes = &ibyte; obytes = &obyte; in set_iconv_cp()
1020 ibytes = &ibyte; obytes = &obyte; in set_iconv_cp()
1074 char obyte; in host_to_guest() local
1075 char *gbyte = &obyte; in host_to_guest()
1082 return obyte; in host_to_guest()
1093 char obyte; in guest_to_host() local
1094 char *hbyte = &obyte; in guest_to_host()
1101 return obyte; in guest_to_host()
/dports/lang/gcc6-aux/gcc-6-20180516/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/lang/gcc12-devel/gcc-12-20211205/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/lang/gcc8/gcc-8.5.0/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/lang/gcc10/gcc-10.3.0/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/devel/avr-gdb/gdb-7.3.1/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/lang/gcc9-devel/gcc-9-20211007/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/shells/ion/decimal-972c8547a0a76c7ad9a314e28a335aa57d46a543/decNumber/
H A DdecPacked.c62 uByte obyte, *out; // current output byte, and where it goes in decPackedFromNumber() local
74 if (dn->bits&DECNEG) obyte=DECPMINUS; // set the sign .. in decPackedFromNumber()
75 else obyte=DECPPLUS; in decPackedFromNumber()
95 obyte|=(nib<<4); in decPackedFromNumber()
99 *out=obyte; in decPackedFromNumber()
100 obyte=0; // assume 0 in decPackedFromNumber()
109 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
112 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/devel/gdb/gdb-11.1/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/lang/gcc48/gcc-4.8.5/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/emulators/hercules/hercules-3.13/decNumber/
H A DdecPacked.c65 uByte obyte, *out; // current output byte, and where it goes in decPackedFromNumber() local
77 if (dn->bits&DECNEG) obyte=DECPMINUS; // set the sign .. in decPackedFromNumber()
78 else obyte=DECPPLUS; in decPackedFromNumber()
98 obyte|=(nib<<4); in decPackedFromNumber()
102 *out=obyte; in decPackedFromNumber()
103 obyte=0; // assume 0 in decPackedFromNumber()
112 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
115 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/devel/gdb761/gdb-7.6.1/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libdecnumber/
H A DdecPacked.c72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber() local
84 if (dn->bits&DECNEG) obyte=DECPMINUS; /* set the sign .. */ in decPackedFromNumber()
85 else obyte=DECPPLUS; in decPackedFromNumber()
105 obyte|=(nib<<4); in decPackedFromNumber()
109 *out=obyte; in decPackedFromNumber()
110 obyte=0; /* assume 0 */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()

12345