| /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/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/ |
| shell.py | 10 __all__ = ['encode', 'decode'] 54 def decode(string): function
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/ |
| Header.cpp | 64 llvm::Expected<Header> Header::decode(DataExtractor &Data) { function in class:Header
|
| Range.cpp | 86 void AddressRange::decode(DataExtractor &Data, uint64_t BaseAddr, function in class:AddressRange 103 void AddressRanges::decode(DataExtractor &Data, uint64_t BaseAddr, function in class:AddressRanges 111 Range.decode(Data, BaseAddr, Offset);
|
| InlineInfo.cpp | 112 Inline.Ranges.decode(Data, BaseAddr, Offset); 169 /// Decode an InlineInfo in Data at the specified offset. 171 /// A local helper function to decode InlineInfo objects. This function is 174 /// \param Data The data extractor to decode from. 175 /// \param Offset The offset within \a Data to decode from. 179 static llvm::Expected<InlineInfo> decode(DataExtractor &Data, uint64_t &Offset, function 185 Inline.Ranges.decode(Data, BaseAddr, Offset); 210 llvm::Expected<InlineInfo> Child = decode(Data, Offset, ChildBaseAddr); 222 llvm::Expected<InlineInfo> InlineInfo::decode(DataExtractor &Data, function in class:InlineInfo 225 return ::decode(Data, Offset, BaseAddr) [all...] |
| FunctionInfo.cpp | 36 llvm::Expected<FunctionInfo> FunctionInfo::decode(DataExtractor &Data, function in class:FunctionInfo 76 if (Expected<LineTable> LT = LineTable::decode(InfoData, BaseAddr)) 83 if (Expected<InlineInfo> II = InlineInfo::decode(InfoData, BaseAddr)) 164 // The "lookup" functions doesn't report errors as accurately as the "decode" 166 // "decode".
|
| LineTable.cpp | 251 llvm::Expected<LineTable> LineTable::decode(DataExtractor &Data, function in class:LineTable
|
| /src/games/morse/ |
| morse.c | 108 static void decode(const char *); 141 decode(*argv); 164 decode(foo); 194 decode(const char *s) function
|
| /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
|
| /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 237 #define DEC(c) (((c) - ' ') & 077) /* single character decode */
|
| /src/external/mpl/dhcp/dist/tests/DHCPv6/ |
| dhcp_client.pm | 430 sub decode { subroutine
|
| /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 247 decode = ignore = true; 250 decode = true; 265 doit(stdout, stdin, decode, ignore, wrap); 274 doit(stdout, fp, decode, ignore, wrap);
|
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| Data_window.h | 73 decode (Key_t &v) function in class:Data_window
|
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| Data_window.h | 73 decode (Key_t &v) function in class:Data_window
|
| /src/sys/arch/vax/uba/ |
| qvkbd.c | 302 int decode; local 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 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 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/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 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 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/sys/dev/isa/ |
| if_ix.c | 423 uint16_t pg, adjust, decode, edecode; local 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 342 decode = lk201_decode(&sc->sc_itl->zsi_ks, 1, 344 if (decode != LKD_NODATA) 346 } while (decode == LKD_MORE);
|
| /src/crypto/external/apache2/openssl/dist/crypto/encode_decode/ |
| encoder_local.h | 54 OSSL_FUNC_decoder_decode_fn *decode; member in struct:ossl_decoder_st 124 * with trying to decode with any desencoder in |decoder_insts|,
|
| /src/crypto/external/bsd/libsaslc/dist/src/ |
| mech.h | 116 saslc__mech_xxcode_t decode; /**< decoding function - decodes input member in struct:saslc__mech_t
|
| /src/crypto/external/bsd/openssl/dist/crypto/encode_decode/ |
| encoder_local.h | 54 OSSL_FUNC_decoder_decode_fn *decode; member in struct:ossl_decoder_st 121 * with trying to decode with any desencoder in |decoder_insts|,
|
| /src/external/bsd/libfido2/dist/tools/ |
| largeblob.c | 359 decode(const struct blob *ciphertext, const struct blob *nonce, function 424 decode(ciphertext, nonce, origsiz, cred) == 0)
|
| /src/external/bsd/openldap/dist/include/ |
| ldap_pvt.h | 320 ber_int_t (*decode)(struct sb_sasl_generic_data *p, member in struct:sb_sasl_generic_ops
|