Searched refs:buffer (Results 1 - 12 of 12) sorted by relevance

/lib/mpi/
H A Dmpicoder.c34 const uint8_t *buffer = xbuffer; local
40 while (nbytes > 0 && buffer[0] == 0) {
41 buffer++;
51 nbits -= count_leading_zeros(buffer[0]);
70 a |= *buffer++;
82 const uint8_t *buffer = xbuffer; local
90 nbits = buffer[0] << 8 | buffer[1];
96 buffer += 2;
114 ("MPI: mpi larger than buffer nrea
140 uint8_t *p, *buffer; local
191 const uint8_t *buffer = xbuffer, *p; local
[all...]
/lib/
H A Doid_registry.c100 * sprint_OID - Print an Object Identifier into a buffer
103 * @buffer: The buffer to render into
104 * @bufsize: The size of the buffer
106 * The OID is rendered into the buffer in "a.b.c.d" format and the number of
108 * and -ENOBUFS if the buffer was too small.
110 int sprint_oid(const void *data, size_t datasize, char *buffer, size_t bufsize) argument
122 ret = count = snprintf(buffer, bufsize, "%u.%u", n / 40, n % 40);
123 buffer += count;
143 ret += count = snprintf(buffer, bufsiz
163 sprint_OID(enum OID oid, char *buffer, size_t bufsize) argument
[all...]
H A Dcrc-t10dif.c22 __u16 crc_t10dif(const unsigned char *buffer, size_t len) argument
31 return crc_t10dif_generic(0, buffer, len);
37 err = crypto_shash_update(&desc.shash, buffer, len);
H A Ddecompress_unlzma.c70 uint8_t *buffer; member in struct:rc
85 static long INIT nofill(void *buffer, unsigned long len) argument
93 rc->buffer_size = rc->fill((char *)rc->buffer, LZMA_IOBUF_SIZE);
96 rc->ptr = rc->buffer;
97 rc->buffer_end = rc->buffer + rc->buffer_size;
103 char *buffer, long buffer_size)
109 rc->buffer = (uint8_t *)buffer;
111 rc->buffer_end = rc->buffer + rc->buffer_size;
112 rc->ptr = rc->buffer;
101 rc_init(struct rc *rc, long (*fill)(void*, unsigned long), char *buffer, long buffer_size) argument
278 uint8_t *buffer; member in struct:writer
[all...]
H A Dcrc-ccitt.c55 * crc_ccitt - recompute the CRC for the data buffer
57 * @buffer: data pointer
58 * @len: number of bytes in the buffer
60 u16 crc_ccitt(u16 crc, u8 const *buffer, size_t len) argument
63 crc = crc_ccitt_byte(crc, *buffer++);
H A Dcrc-itu-t.c51 * crc_itu_t - Compute the CRC-ITU-T for the data buffer
54 * @buffer: data pointer
55 * @len: number of bytes in the buffer
59 u16 crc_itu_t(u16 crc, const u8 *buffer, size_t len) argument
62 crc = crc_itu_t_byte(crc, *buffer++);
H A Dcrc16.c50 * crc16 - compute the CRC-16 for the data buffer
52 * @buffer: data pointer
53 * @len: number of bytes in the buffer
57 u16 crc16(u16 crc, u8 const *buffer, size_t len) argument
60 crc = crc16_byte(crc, *buffer++);
H A Dcrc7.c56 * crc7 - update the CRC7 for the data buffer
58 * @buffer: data pointer
59 * @len: number of bytes in the buffer
67 u8 crc7_be(u8 crc, const u8 *buffer, size_t len) argument
70 crc = crc7_be_byte(crc, *buffer++);
H A Ddecompress_inflate.c30 static long INIT nofill(void *buffer, unsigned long len) argument
55 error("Out of memory while allocating output buffer");
66 error("Out of memory while allocating input buffer");
107 * If the filename doesn't fit into the buffer,
H A Dswiotlb.c72 * When the IOMMU overflows we return a fallback buffer. This sets the size.
174 * Get the overflow emergency buffer
208 * Statically reserve bounce buffer space and initialize bounce buffer data
233 pr_warn("Cannot allocate SWIOTLB buffer");
300 * Get the overflow emergency buffer
386 * Bounce: copy the swiotlb buffer back to the original dma location
395 /* The buffer does not have a mapping. Map it in and copy */
397 char *buffer; local
405 buffer
[all...]
H A Dkfifo.c80 int __kfifo_init(struct __kfifo *fifo, void *buffer, argument
90 fifo->data = buffer;
/lib/fonts/
H A DKconfig15 your frame buffer console usually use.
28 This is the "high resolution" font for the VGA frame buffer (the one
34 Given the resolution provided by the frame buffer device, answer N
41 This is the "high resolution" font for the VGA frame buffer (the one

Completed in 615 milliseconds