/src/sys/dev/fdt/ |
fdt_clock.h | 36 struct clk * (*decode)(device_t, int, const void *, size_t); member in struct:fdtbus_clock_controller_func
|
/src/games/morse/ |
morse.c | 108 static void decode(const char *); 141 decode(*argv); 164 decode(foo); 194 decode(const char *s) function in typeref:typename:void
|
/src/usr.bin/logger/ |
logger.c | 56 static int decode(const char *, const CODE *); 153 * Decode a symbolic name to a numeric value 165 fac = decode(save, facilitynames); 173 lev = decode(s, prioritynames); 180 decode(const char *name, const CODE *codetab) function in typeref:typename:int
|
/src/usr.bin/uudecode/ |
uudecode.c | 70 static int decode(char *); 112 rval |= decode(outputname); 116 rval = decode(outputname); 122 * Decode one file from stdin. If outputname is not NULL 126 decode(char *outputname) function in typeref:typename:int 237 #define DEC(c) (((c) - ' ') & 077) /* single character decode */
|
/src/usr.bin/base64/ |
base64.c | 222 doit(FILE *fout, FILE *fin, bool decode, bool ignore, size_t wrap) 226 if (decode) 233 errc(EXIT_FAILURE, e, "%scoding failed", decode ? "De": "En"); 239 bool decode = false; local in function:main 247 decode = ignore = true; 250 decode = true; 265 doit(stdout, stdin, decode, ignore, wrap); 274 doit(stdout, fp, decode, ignore, wrap);
|
/src/sys/arch/vax/uba/ |
qvkbd.c | 302 int decode; local in function:qvkbd_input 305 decode = lk201_decode(&sc->sc_itl->qvi_ks, 1, 307 if (decode != LKD_NODATA) 309 } while (decode == LKD_MORE);
|
/src/sys/dev/dec/ |
dzkbd.c | 307 int decode; local in function:dzkbd_input 310 decode = lk201_decode(&sc->sc_itl->dzi_ks, 1, 312 if (decode != LKD_NODATA) 314 } while (decode == LKD_MORE);
|
/src/common/dist/zlib/contrib/blast/ |
blast.c | 50 /* input limit error return state for bits() and decode() */ 101 * seen in the function decode() below. 109 * Decode a code from the stream s using huffman table h. Return the symbol or 129 local int decode(struct state *s, struct huffman *h) function in typeref:typename:local int 179 * Huffman code for n symbols, construct the tables required to decode those 186 * possible for decode() using that table to return an error--any stream of 188 * it is possible for decode() using that table to return an error for received 217 return 0; /* complete, but decode() will fail */ 245 * Decode PKWare Compression Library stream. 329 /* decode literals and length/distance pairs * [all...] |
/src/sys/dev/isa/ |
if_ix.c | 423 uint16_t pg, adjust, decode, edecode; local in function:ix_match 560 decode = ((1 << (ia->ia_iomem[0].ir_size / 16384)) - 1) << pg; 561 edecode = ((~decode >> 4) & 0xF0) | (decode >> 8); 563 bus_space_write_1(iot, ioh, IX_MEMDEC, decode & 0xFF); 565 bus_space_write_1(iot, ioh, IX_MPCTRL, (~decode & 0xFF));
|
/src/sys/dev/tc/ |
zskbd.c | 339 int decode; local in function:zskbd_input 342 decode = lk201_decode(&sc->sc_itl->zsi_ks, 1, 344 if (decode != LKD_NODATA) 346 } while (decode == LKD_MORE);
|
/src/common/dist/zlib/contrib/puff/ |
puff.c | 13 * around 4K on my machine (a PowerPC using GNU cc). If the faster decode() 45 * 1.2 17 Mar 2002 - Add faster version of decode(), doubles speed (!), 111 /* input limit error return state for bits() and decode() */ 204 * seen in the function decode() below. 212 * Decode a code from the stream s using huffman table h. Return the symbol or 235 local int decode(struct state *s, const struct huffman *h) function in typeref:typename:local int 258 * A faster version of decode() for real applications of this code. It's not 263 local int decode(struct state *s, const struct huffman *h) function in typeref:typename:local int 310 * Huffman code for n symbols, construct the tables required to decode those 317 * possible for decode() using that table to return an error--any stream o [all...] |
/src/usr.bin/mail/ |
support.c | 267 int decode; local in function:hfield 269 decode = value(ENAME_MIME_DECODE_MSG) && 284 if (decode)
|
mime_decode.c | 845 DM_DISPLAY, /* decode and display the part */ 1053 * Decode a portion of the header field. 1055 * linebuf buffer to decode into. 1058 * srcstr pointer to string to decode 1063 hfield_decoder_t decode; local in function:mime_decode_hfield 1064 decode = mime_hfield_decoder(hdrline); 1065 if (decode) { 1066 decode(linebuf, bufsize, srcstr);
|
/src/usr.sbin/syslogd/ |
syslogd.c | 268 int decode(const char *, CODE *); 3885 /* decode priority name */ 3890 pri = decode(buf, prioritynames); 3914 i = decode(buf, facilitynames); 4049 * Decode a symbolic name to a numeric value 4052 decode(const char *name, CODE *codetab) function in typeref:typename:int
|
/src/sys/dev/stbi/ |
stb_image.c | 1222 // decode a jpeg huffman value from the bitstream 1223 __forceinline static int decode(jpeg *j, huffman *h) function in typeref:typename:int 1316 // decode one 64-entry block-- 1320 int t = decode(j, hdc); 1331 // decode AC components, see JPEG spec 1335 int rs = decode(j, hac); 1344 // decode into unzigzag'd location 1710 if ((1 << 30) / s->img_x / s->img_n < s->img_y) return e("too large", "Image too large to decode"); 1729 // to simplify generation, we'll allocate enough memory to decode 2177 // public domain zlib decode v0.2 Sean Barrett 2006-11-1 [all...] |
/src/sys/net/ |
zlib.c | 2983 * on 5 bits or less, inflate may have only 5+3 bits of lookahead to decode 3909 } decode; /* if CODES, current state */ member in union:inflate_blocks_state::__anon0201f1530a0a 4031 inflate_codes_free(s->sub.decode.codes, z); 4108 s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z); 4109 if (s->sub.decode.codes == Z_NULL) 4281 s->sub.decode.codes = c; 4291 inflate_codes_free(s->sub.decode.codes, z); 4482 The fastest way to decode is to simply build a lookup table whose 4489 the longer codes. The time it costs to decode the longer codes is 4494 length codes can decode in one step, and dbits is the same thing fo [all...] |