Lines Matching refs:size
39 * (possibly to avoid 64 bit arithmetic). The window size cannot exceed
298 * size: Size of this structure, must be 0x68.
325 * scratch_pad_size: Scratch pad size
329 __le16 size;
401 * payload_size: optional in-place payload size
402 * mapped_payload_size: optional out-of-place payload size
456 * payload_size: optional payload size after each entry
536 * taurus_cal_size: "Taurus" calibration blob size
539 * taurus_beamforming_cal_size: "Taurus" beamforming calibration blob size
1227 skb = __hci_cmd_sync(bcm4377->hdev, 0xfd98, fw->size, fw->data,
1267 size_t chunks = DIV_ROUND_UP(fw->size, (size_t)BCM4378_PTB_CHUNK_SIZE);
1271 for (i = 0, left = fw->size; i < chunks; ++i, left -= transfer_len) {
1603 bcm4377->ctx->size = cpu_to_le16(sizeof(*bcm4377->ctx));
1685 * A payload size of MAX_EVENT_PAYLOAD_SIZE is enough here since large
1838 bfr = dma_alloc_coherent(&bcm4377->pdev->dev, fw->size, &fw_dma,
1845 memcpy(bfr, fw->data, fw->size);
1854 iowrite32(fw->size, bcm4377->bar2 + BCM4377_BAR2_FW_SIZE);
1880 dma_free_coherent(&bcm4377->pdev->dev, fw->size, bfr, fw_dma);
2029 size_t size)
2037 if (size < 6)
2046 idx += strnlen(chip_params, size - idx) + 1;
2047 if (idx >= size)
2053 idx += strnlen(board_params, size - idx);
2054 if (idx >= size)