Searched refs:dcode (Results 1 – 6 of 6) sorted by relevance
/openbmc/linux/lib/zlib_inflate/ |
H A D | inffast.c | 85 code const *dcode; /* local strm->distcode */ in inflate_fast() local 112 dcode = state->distcode; in inflate_fast() 152 this = dcode[hold & dmask]; in inflate_fast() 286 this = dcode[this.val + (hold & ((1U << op) - 1))]; in inflate_fast()
|
/openbmc/u-boot/lib/zlib/ |
H A D | inffast.c | 88 code const FAR *dcode; /* local strm->distcode */ in inflate_fast() local 123 dcode = state->distcode; in inflate_fast() 167 this = dcode[hold & dmask]; in inflate_fast() 300 this = dcode[this.val + (hold & ((1U << op) - 1))]; in inflate_fast()
|
H A D | trees.c | 1054 int dcode; local 1055 for (dcode = 0; dcode < D_CODES; dcode++) { 1056 out_length += (ulg)s->dyn_dtree[dcode].Freq * 1057 (5L+extra_dbits[dcode]);
|
/openbmc/linux/drivers/scsi/qla2xxx/ |
H A D | qla_sup.c | 556 uint32_t *dcode = (uint32_t *)req->ring; in qla2xxx_find_flt_start() local 588 rc = qla24xx_read_flash_data(vha, dcode, pcihdr >> 2, 0x20); in qla2xxx_find_flt_start() 600 rc = qla24xx_read_flash_data(vha, dcode, pcids >> 2, 0x20); in qla2xxx_find_flt_start() 620 rc = qla24xx_read_flash_data(vha, dcode, pcihdr >> 2, sizeof(*fltl) >> 2); in qla2xxx_find_flt_start() 3188 uint16_t *dcode; in qla2x00_get_flash_version() local 3279 dcode = (uint16_t *)dbyte; in qla2x00_get_flash_version() 3289 if ((dcode[0] == 0xffff && dcode[1] == 0xffff && in qla2x00_get_flash_version() 3290 dcode[2] == 0xffff && dcode[3] == 0xffff) || in qla2x00_get_flash_version() 3291 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 && in qla2x00_get_flash_version() 3292 dcode[3] == 0)) { in qla2x00_get_flash_version() [all …]
|
H A D | qla_init.c | 8453 uint32_t *dcode; in qla24xx_load_risc_flash() local 8462 dcode = (uint32_t *)req->ring; in qla24xx_load_risc_flash() 8463 rval = qla24xx_read_flash_data(vha, dcode, faddr, 8); in qla24xx_load_risc_flash() 8464 if (rval || qla24xx_risc_firmware_invalid(dcode)) { in qla24xx_load_risc_flash() 8469 dcode[0], dcode[1], dcode[2], dcode[3]); in qla24xx_load_risc_flash() 8474 dcode = (uint32_t *)req->ring; in qla24xx_load_risc_flash() 8480 rval = qla24xx_read_flash_data(vha, dcode, faddr, 10); in qla24xx_load_risc_flash() 8486 risc_addr = be32_to_cpu((__force __be32)dcode[2]); in qla24xx_load_risc_flash() 8487 risc_size = be32_to_cpu((__force __be32)dcode[3]); in qla24xx_load_risc_flash() 8490 risc_attr = be32_to_cpu((__force __be32)dcode[9]); in qla24xx_load_risc_flash() [all …]
|
/openbmc/linux/lib/zlib_deflate/ |
H A D | deftree.c | 943 int dcode; local 944 for (dcode = 0; dcode < D_CODES; dcode++) { 945 out_length += (ulg)s->dyn_dtree[dcode].Freq * 946 (5L+extra_dbits[dcode]);
|