lib/fonts/font_10x18.c
Source file repositories/reference/linux-study-clean/lib/fonts/font_10x18.c
File Facts
- System
- Linux kernel
- Corpus path
lib/fonts/font_10x18.c- Extension
.c- Size
- 144056 bytes
- Lines
- 5148
- Domain
- Kernel Services
- Bucket
- lib
- Inferred role
- Kernel Services: implementation source
- Status
- source implementation candidate
Why This File Exists
Shared kernel service surface used by multiple subsystems, including helpers, cryptography, virtualization support, and async I/O infrastructure.
- Shared kernel service surface used by multiple subsystems, including helpers, cryptography, virtualization support, and async I/O infrastructure.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
font.h
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
/********************************
* adapted from font_sun12x22.c *
* by Jurriaan Kalkman 06-2005 *
********************************/
#include "font.h"
#define FONTDATAMAX 9216
static const struct font_data fontdata_10x18 = {
{ 0, 0, FONTDATAMAX, 0 }, {
/* 0 0x00 '^@' */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
/* 1 0x01 '^A' */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x3f, 0x80, /* 0011111110 */
0x40, 0x40, /* 0100000001 */
0x5b, 0x40, /* 0101101101 */
0x40, 0x40, /* 0100000001 */
0x44, 0x40, /* 0100010001 */
0x44, 0x40, /* 0100010001 */
0x51, 0x40, /* 0101000101 */
0x4e, 0x40, /* 0100111001 */
0x40, 0x40, /* 0100000001 */
0x3f, 0x80, /* 0011111110 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
/* 2 0x02 '^B' */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x3f, 0x80, /* 0011111110 */
0x7f, 0xc0, /* 0111111111 */
0x64, 0xc0, /* 0110010011 */
0x7f, 0xc0, /* 0111111111 */
0x7b, 0xc0, /* 0111101111 */
0x7b, 0xc0, /* 0111101111 */
0x6e, 0xc0, /* 0110111011 */
0x71, 0xc0, /* 0111000111 */
0x7f, 0xc0, /* 0111111111 */
0x3f, 0x80, /* 0011111110 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
/* 3 0x03 '^C' */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
0x11, 0x00, /* 0001000100 */
0x3b, 0x80, /* 0011101110 */
0x7f, 0xc0, /* 0111111111 */
0x3f, 0x80, /* 0011111110 */
0x3f, 0x80, /* 0011111110 */
0x1f, 0x00, /* 0001111100 */
0x1f, 0x00, /* 0001111100 */
0x0e, 0x00, /* 0000111000 */
0x0e, 0x00, /* 0000111000 */
0x04, 0x00, /* 0000010000 */
0x00, 0x00, /* 0000000000 */
0x00, 0x00, /* 0000000000 */
Annotation
- Immediate include surface: `font.h`.
- Atlas domain: Kernel Services / lib.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.