Searched refs:code (Results 76 - 100 of 115) sorted by relevance

12345

/u-boot/lib/bzip2/
H A Dbzlib_huffman.c18 1. Redistributions of source code must retain the above copyright
176 void BZ2_hbAssignCodes ( Int32 *code, argument
187 if (length[i] == n) { code[i] = vec; vec++; };
H A Dbzlib_compress.c17 1. Redistributions of source code must retain the above copyright
290 Int32 code[BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
531 BZ2_hbAssignCodes ( &(s->code[t][0]), &(s->len[t][0]),
583 VPrintf1 ( "code lengths %d, ", s->numZ-nBytes );
601 = &(s->code[s->selector[selCtr]][0]);
627 s->code [s->selector[selCtr]] [mtfv[i]] );
/u-boot/
H A Dconfig.mk40 # CPU-specific code.
/u-boot/lib/zlib/
H A Ddeflate.h20 the crc code when it is not needed. For shared libraries, gzip encoding
31 /* number of length codes, not counting the special END_BLOCK code */
37 /* number of Literal or Length codes, including the END_BLOCK code */
61 /* Data structure describing a single value and its code string. */
65 ush code; /* bit string */ member in union:ct_data_s::__anon91
74 #define Code fc.code
82 int max_code; /* largest code with non zero frequency */
229 * example a binary file with poorly compressible code followed by
242 int last_eob_len; /* bit length of EOB code for last block */
279 /* In order to simplify the code, particularl
[all...]
H A Dinflate.c282 code, and no more.
308 during that inflate() call in order to return the proper return code.
316 return code (per zlib.h). inflate() always writes as much as possible to
336 code this; /* current decoding table entry */
337 code last; /* parent table entry */
339 int ret; /* return code */
343 static const unsigned short order[19] = /* permutation of code lengths */
635 state->lencode = (code const FAR *)(state->next);
640 strm->msg = (char *)"invalid code lengths set";
644 Tracev((stderr, "inflate: code length
[all...]
/u-boot/arch/mips/
H A Dconfig.mk43 # code since it only slows down the whole thing. At some point we might make
/u-boot/drivers/pci_endpoint/
H A Dpcie-cadence.h192 #define CDNS_PCIE_NORMAL_MSG_CODE(code) \
193 (((code) << 8) & CDNS_PCIE_NORMAL_MSG_CODE_MASK)
/u-boot/arch/arm/mach-bcm283x/include/mach/
H A Dmbox.h71 u32 code; member in struct:bcm2835_mbox_hdr
80 (_m_)->hdr.code = 0; \
/u-boot/drivers/misc/
H A Datsha204a-i2c.c158 if (resp.code != ATSHA204A_STATUS_AFTER_WAKE) {
159 debug("failed (response code = %02x), ending\n", resp.code);
/u-boot/board/bosch/shc/
H A Dboard.c495 static void hang_bosch(const char *cause, int code) argument
508 for (lv = 0; lv < code; lv++) {
/u-boot/drivers/qe/
H A Dqe.c6 * based on source code of Shlomi Gridish
427 const u32 *code = base + be32_to_cpu(ucode->code_offset); local
442 out_be32(&qe_immr->iram.idata, be32_to_cpu(code[i]));
720 const u32 *code; local
759 code = (const void *)firmware + be32_to_cpu(ucode->code_offset);
766 out_be32(&qe_immrr->iram.idata, be32_to_cpu(code[i]));
/u-boot/drivers/tpm/
H A Dtpm_tis_st33zp24_spi.c81 static int st33zp24_spi_status_to_errno(u8 code) argument
83 switch (code) {
102 return code;
112 * @return: should be zero if success else a negative error code.
163 * @return: should be zero if success else a negative error code.
478 * @return: Returns zero in case of success else the negative error code.
/u-boot/drivers/input/
H A Dinput.c28 /* Special flag ORed with key code to indicate release */
88 * German keymap. Special letters are mapped according to code page 437.
153 const uchar *xlate; /* Ascii code for each keycode */
254 * @param key Key code to process
412 * Checks and converts a special key code into ANSI 3.64 escape sequence.
415 * @param keycode Key code to examine
579 int code = config->prev_keycodes[i]; local
581 if (new_keycode == code) {
586 keycode[count++] = code;
/u-boot/board/gdsys/a38x/
H A Dhre.c373 * @param[in,out] code_size (remaining) size of the code
497 * @param code pointer to the (HRE) code.
498 * @param code_size size of the code (in bytes).
501 int hre_run_program(struct udevice *tpm, const uint8_t *code, size_t code_size) argument
504 const uint8_t *ip = code;
520 crc = crc32(0, prg->code, prg->code_size);
/u-boot/drivers/mtd/spi/
H A Dspi-nor-tiny.c50 static int spi_nor_read_reg(struct spi_nor *nor, u8 code, u8 *val, int len) argument
52 struct spi_mem_op op = SPI_MEM_OP(SPI_MEM_OP_CMD(code, 1),
66 code);
69 nor->spi->bus, nor->spi->cs, ret, code);
185 /* No conversion found, keep input op code. */
/u-boot/lib/efi_loader/
H A Defi_device_path.c878 s32 code = utf8_get(&src); local
880 if (code < 0)
881 code = '?';
882 else if (code == '/')
883 code = '\\';
884 utf16_put(code, &pos);
1007 * Return: status code
1047 * Return: status code
/u-boot/drivers/net/fm/
H A Dfm.c189 u32 *code; local
193 code = (void *)firmware +
196 fm_upload_ucode(fm_idx, fm_imem, code, ucode_size);
/u-boot/cmd/
H A Dtlv_eeprom.c38 static bool tlvinfo_delete_tlv(u8 *eeprom, u8 code);
66 * 1. The type code is not reserved (0x00 or 0xFF)
266 * 2. The type code in hex right justified in 5 characters
563 * This function finds the TLV with the supplied code in the EERPOM.
574 // supplied type code.
591 * This function deletes the TLV with the specified type code from the
594 static bool tlvinfo_delete_tlv(u8 *eeprom, u8 code) argument
602 if (tlvinfo_find_tlv(eeprom, code, &eeprom_index)) {
/u-boot/common/
H A Dcli_hush.c19 * how much of the Johnson/Troan code has survived the repeated rewrites.
1519 * return code is normally -1, when the caller has to wait for children
1522 * time run_pipe_real returns, and the exit code is provided as the
1577 /* XXX could we merge code with following builtin case,
1743 * in which case setpgid returns error code EACCES. */
1932 /* return code is the exit status of the pipe */
2006 final_printf("%s pipe followup code %d\n", ind, pi->followup);
2036 * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
2098 /* we can code this better when the debug_printf's are gone */
2289 * Return code i
2373 int code; member in struct:reserved_combo
3145 mapset(const unsigned char *set, int code) argument
3186 int code = 1; local
[all...]
/u-boot/lib/zstd/common/
H A Dfse.h9 * This source code is licensed under both the BSD-style license (found in the
34 # define FSE_PUBLIC_API __declspec(dllimport) /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/
71 or an error code, which can be tested using FSE_isError() .
87 FSE_PUBLIC_API unsigned FSE_isError(size_t code); /* tells if a return value is an error code */
88 FSE_PUBLIC_API const char* FSE_getErrorName(size_t code); /* provides error code string (useful for debugging) */
100 if FSE_isError(return), it's an error code.
274 If there is an error, the function will return an error code, which can be tested using FSE_isError().
279 If there is an error, the function will return an error code, whic
[all...]
H A Dhuf.h9 * This source code is licensed under both the BSD-style license (found in the
32 # define HUF_PUBLIC_API __declspec(dllimport) /* not required, just to generate faster code (saves a function pointer load from IAT and an indirect jump) */
62 * or an error code, which can be tested using HUF_isError()
73 HUF_PUBLIC_API unsigned HUF_isError(size_t code); /*< tells if a return value is an error code */
74 HUF_PUBLIC_API const char* HUF_getErrorName(size_t code); /*< provides error code string (useful for debugging) */
120 #define HUF_TABLELOG_ABSOLUTEMAX 12 /* absolute limit of HUF_MAX_TABLELOG. Beyond that value, code does not work */
272 * Buffer overflow errors may potentially occur if code modifications result in
/u-boot/include/
H A Dnet.h100 * @param code ICMP code
107 typedef void rxhand_icmp_f(unsigned type, unsigned code, unsigned dport,
426 u8 code; member in struct:icmp_hdr
/u-boot/tools/
H A Dkwbimage.h89 /* Structure of the binary code header, version 0 (Dove) */
103 uint8_t code[2000]; /* 0x30-0x7FF */ member in struct:bin_hdr_v0
217 * "binary" header contains ARM binary code to be executed prior to
219 * typically used to execute DDR3 training code. The "register" header
247 * extension header. First binary code header starts immediately
250 * padding. There is no padding between binary code headers and
251 * neither after the last binary code header.
/u-boot/drivers/i2c/
H A Docteon_i2c.c194 * @code status code
198 static int twsi_i2c_lost_arb(u8 code, int final_read) argument
200 switch (code) {
/u-boot/net/
H A Dtftp.c53 * positive. The globals are meant to be set (and restored) by code needing
444 static void icmp_handler(unsigned type, unsigned code, unsigned dest, argument
448 if (type == ICMP_NOT_REACH && code == ICMP_NOT_REACH_PORT) {

Completed in 421 milliseconds

12345