repo_full_name stringlengths 6 93 | repo_url stringlengths 25 112 | repo_api_url stringclasses 28
values | owner stringclasses 28
values | repo_name stringclasses 28
values | description stringclasses 28
values | stars int64 617 98.8k | forks int64 31 355 ⌀ | watchers int64 990 999 ⌀ | license stringclasses 2
values | default_branch stringclasses 2
values | repo_created_at timestamp[s]date 2012-07-24 23:12:50 2025-06-16 08:07:28 ⌀ | repo_updated_at timestamp[s]date 2026-02-23 15:23:15 2026-05-03 18:52:12 ⌀ | repo_topics listlengths 0 13 ⌀ | repo_languages unknown | is_fork bool 1
class | open_issues int64 3 104 ⌀ | file_path stringlengths 3 208 | file_name stringclasses 509
values | file_extension stringclasses 1
value | file_size_bytes int64 101 84k ⌀ | file_url stringclasses 627
values | file_raw_url stringclasses 627
values | file_sha stringclasses 624
values | language stringclasses 8
values | parsed_at stringdate 2026-05-04 01:12:36 2026-05-04 19:41:55 | text stringlengths 100 102k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
asmvik/yabai | https://github.com/asmvik/yabai | null | null | null | null | 28,791 | null | null | mit | null | null | null | null | null | null | null | src/misc/memory_pool.h | null | null | null | null | null | null | C | 2026-05-04T18:45:11.000253 | #ifndef MEMORY_POOL_H
#define MEMORY_POOL_H
struct memory_pool
{
void *memory;
uint64_t size;
volatile uint64_t used;
};
bool memory_pool_init(struct memory_pool *pool, uint64_t size)
{
int page_size = getpagesize();
uint64_t num_pages = size / page_size;
uint64_t remainder = size % page_size... |
asmvik/yabai | https://github.com/asmvik/yabai | null | null | null | null | 28,791 | null | null | mit | null | null | null | null | null | null | null | src/misc/helpers.h | null | null | null | null | null | null | C | 2026-05-04T18:45:11.020438 | #ifndef HELPERS_H
#define HELPERS_H
#define ANIMATION_EASING_TYPE_LIST \
ANIMATION_EASING_TYPE_ENTRY(ease_in_sine) \
ANIMATION_EASING_TYPE_ENTRY(ease_out_sine) \
ANIMATION_EASING_TYPE_ENTRY(ease_in_out_sine) \
ANIMATION_EASING_TYPE_ENTRY(ease_in_quad) \
ANIMATION_EASING_TYPE_ENTRY(ease_out_quad) \
... |
asmvik/yabai | https://github.com/asmvik/yabai | null | null | null | null | 28,791 | null | null | mit | null | null | null | null | null | null | null | src/misc/macros.h | null | null | null | null | null | null | C | 2026-05-04T18:45:11.032624 | #ifndef MACROS_H
#define MACROS_H
#define KILOBYTES(value) ((value) * 1024ULL)
#define MEGABYTES(value) (KILOBYTES(value) * 1024ULL)
#define GIGABYTES(value) (MEGABYTES(value) * 1024ULL)
#define array_count(a) (int)(sizeof((a)) / sizeof(*(a)))
#define min(a, b) ((a) < (b) ? (a) : (b))
#define max(a, b) ((a) > (b) ? (... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/cgi/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:13.603555 | #include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <uv.h>
uv_loop_t *loop;
uv_process_t child_req;
uv_process_options_t options;
void cleanup_handles(uv_process_t *req, int64_t exit_status, int term_signal) {
fprintf(stderr, "Process exited with status %" PRId64 ", signal %d... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/idle-basic/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:13.618785 | #include <stdio.h>
#include <uv.h>
int64_t counter = 0;
void wait_for_a_while(uv_idle_t* handle) {
counter++;
if (counter >= 10e6)
uv_idle_stop(handle);
}
int main() {
uv_idle_t idler;
uv_idle_init(uv_default_loop(), &idler);
uv_idle_start(&idler, wait_for_a_while);
printf("Idling.... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/dns/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:13.629403 | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <uv.h>
uv_loop_t *loop;
void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) {
buf->base = malloc(suggested_size);
buf->len = suggested_size;
}
void on_read(uv_stream_t *client, ssize_t nread, const uv_buf_t *buf) {
i... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/detach/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:13.633052 | #include <stdio.h>
#include <uv.h>
uv_loop_t *loop;
uv_process_t child_req;
uv_process_options_t options;
int main() {
loop = uv_default_loop();
char* args[3];
args[0] = "sleep";
args[1] = "100";
args[2] = NULL;
options.exit_cb = NULL;
options.file = "sleep";
options.args = args;
... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/cgi/tick.c | null | null | null | null | null | null | C | 2026-05-04T18:45:13.641906 | #include <stdio.h>
#include <unistd.h>
int main() {
int i;
for (i = 0; i < 10; i++) {
printf("tick\n");
fflush(stdout);
sleep(1);
}
printf("BOOM!\n");
return 0;
}
|
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/locks/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:13.657333 | #include <stdio.h>
#include <uv.h>
uv_barrier_t blocker;
uv_rwlock_t numlock;
int shared_num;
void reader(void *n)
{
int num = *(int *)n;
int i;
for (i = 0; i < 20; i++) {
uv_rwlock_rdlock(&numlock);
printf("Reader %d: acquired lock\n", num);
printf("Reader %d: shared num = %d\n", ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/interfaces/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:13.666865 | #include <stdio.h>
#include <uv.h>
int main() {
char buf[512];
uv_interface_address_t *info;
int count, i;
uv_interface_addresses(&info, &count);
i = count;
printf("Number of interfaces: %d\n", count);
while (i--) {
uv_interface_address_t interface_a = info[i];
printf("Na... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/default-loop/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:13.668092 | #include <stdio.h>
#include <uv.h>
int main() {
uv_loop_t *loop = uv_default_loop();
printf("Default loop.\n");
uv_run(loop, UV_RUN_DEFAULT);
uv_loop_close(loop);
return 0;
}
|
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/helloworld/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:13.675219 | #include <stdio.h>
#include <stdlib.h>
#include <uv.h>
int main() {
uv_loop_t *loop = malloc(sizeof(uv_loop_t));
uv_loop_init(loop);
printf("Now quitting.\n");
uv_run(loop, UV_RUN_DEFAULT);
uv_loop_close(loop);
free(loop);
return 0;
}
|
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/idle-compute/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:13.677194 | #include <stdio.h>
#include <uv.h>
uv_loop_t *loop;
uv_fs_t stdin_watcher;
uv_idle_t idler;
char buffer[1024];
void crunch_away(uv_idle_t* handle) {
// Compute extra-terrestrial life
// fold proteins
// computer another digit of PI
// or similar
fprintf(stderr, "Computing PI...\n");
// just t... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/multi-echo-server/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.188291 | #include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <uv.h>
uv_loop_t *loop;
struct child_worker {
uv_process_t req;
uv_process_options_t options;
uv_pipe_t pipe;
} *workers;
int round_robin_counter;
int child_worker_count;
uv_buf_t dummy_buf;
char worker_path[500];
... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/onchange/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.220250 | #include <stdio.h>
#include <stdlib.h>
#include <uv.h>
uv_loop_t *loop;
const char *command;
void run_command(uv_fs_event_t *handle, const char *filename, int events, int status) {
char path[1024];
size_t size = 1023;
// Does not handle error if path is longer than 1023.
uv_fs_event_getpath(handle, p... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/multi-echo-server/worker.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.239843 | #include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <uv.h>
uv_loop_t *loop;
uv_pipe_t queue;
typedef struct {
uv_write_t req;
uv_buf_t buf;
} write_req_t;
void free_write_req(uv_write_t *req) {
write_req_t *wr = (write_req_t*) req;
free(wr->buf.... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/pipe-echo-server/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.248835 | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <uv.h>
#ifdef _WIN32
#define PIPENAME "\\\\?\\pipe\\echo.sock"
#else
#define PIPENAME "echo.sock"
#endif
uv_loop_t *loop;
typedef struct {
uv_write_t req;
uv_buf_t buf;
} write_req_t;
void free_write_req(uv_write_t *req) {
write_req_t *... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/progress/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.305787 | #include <stdatomic.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <uv.h>
uv_loop_t *loop;
uv_async_t async;
_Atomic double percentage;
void fake_download(uv_work_t *req) {
int size = *((int*) req->data);
int downloaded = 0;
double pct;
while (downloaded < size) {
pct... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/plugin/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.306861 | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <uv.h>
#include "plugin.h"
typedef void (*init_plugin_function)();
void mfp_register(const char *name) {
fprintf(stderr, "Registered plugin \"%s\"\n", name);
}
int main(int argc, char **argv) {
if (argc == 1) {
fprintf(stderr, "Usa... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/proc-streams/test.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.308314 | #include <stdio.h>
int main()
{
fprintf(stderr, "This is stderr\n");
printf("This is stdout\n");
return 0;
}
|
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/plugin/plugin.h | null | null | null | null | null | null | C | 2026-05-04T18:45:14.332439 | #ifndef UVBOOK_PLUGIN_SYSTEM
#define UVBOOK_PLUGIN_SYSTEM
// Plugin authors should use this to register their plugins with mfp.
void mfp_register(const char *name);
#endif
|
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/proc-streams/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.388278 | #include <stdio.h>
#include <string.h>
#include <inttypes.h>
#include <uv.h>
uv_loop_t *loop;
uv_process_t child_req;
uv_process_options_t options;
void on_exit(uv_process_t *req, int64_t exit_status, int term_signal) {
fprintf(stderr, "Process exited with status %" PRId64 ", signal %d\n", exit_status, term_sign... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/queue-cancel/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.758481 | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <uv.h>
#define FIB_UNTIL 25
uv_loop_t *loop;
uv_work_t fib_reqs[FIB_UNTIL];
long fib_(long t) {
if (t == 0 || t == 1)
return 1;
else
return fib_(t-1) + fib_(t-2);
}
void fib(uv_work_t *req) {
int n = *(int *) req->data;
... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/queue-work/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.842301 | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <uv.h>
#define FIB_UNTIL 25
uv_loop_t *loop;
long fib_(long t) {
if (t == 0 || t == 1)
return 1;
else
return fib_(t-1) + fib_(t-2);
}
void fib(uv_work_t *req) {
int n = *(int *) req->data;
if (random() % 2)
s... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/ref-timer/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.846295 | #include <stdio.h>
#include <uv.h>
uv_loop_t *loop;
uv_timer_t gc_req;
uv_timer_t fake_job_req;
void gc(uv_timer_t *handle) {
fprintf(stderr, "Freeing unused objects\n");
}
void fake_job(uv_timer_t *handle) {
fprintf(stdout, "Fake job done\n");
}
int main() {
loop = uv_default_loop();
uv_timer_ini... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/signal/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.847723 | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <uv.h>
uv_loop_t* create_loop()
{
uv_loop_t *loop = malloc(sizeof(uv_loop_t));
if (loop) {
uv_loop_init(loop);
}
return loop;
}
void signal_handler(uv_signal_t *handle, int signum)
{
printf("Signal received: %d\n", signum);
... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/thread-create/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.889632 | #include <stdio.h>
#include <uv.h>
void hare(void *arg) {
int tracklen = *((int *) arg);
while (tracklen) {
tracklen--;
uv_sleep(1000);
fprintf(stderr, "Hare ran another step\n");
}
fprintf(stderr, "Hare done running!\n");
}
void tortoise(void *arg) {
int tracklen = *((int... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/spawn/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.918599 | #include <stdio.h>
#include <inttypes.h>
#include <uv.h>
uv_loop_t *loop;
uv_process_t child_req;
uv_process_options_t options;
void on_exit(uv_process_t *req, int64_t exit_status, int term_signal) {
fprintf(stderr, "Process exited with status %" PRId64 ", signal %d\n", exit_status, term_signal);
uv_close((u... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/tty-gravity/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.920692 | #include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <uv.h>
uv_loop_t *loop;
uv_tty_t tty;
uv_timer_t tick;
uv_write_t write_req;
int width, height;
int pos = 0;
char *message = " Hello TTY ";
void update(uv_timer_t *req) {
char data[500];
uv_buf_t buf;
buf.base = data;
buf.len = spr... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/tcp-echo-server/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.947595 | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <uv.h>
#define DEFAULT_PORT 7000
#define DEFAULT_BACKLOG 128
uv_loop_t *loop;
struct sockaddr_in addr;
typedef struct {
uv_write_t req;
uv_buf_t buf;
} write_req_t;
void free_write_req(uv_write_t *req) {
write_req_t *wr = (write_req_t*)... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/tty/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.948801 | #include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <uv.h>
uv_loop_t *loop;
uv_tty_t tty;
int main() {
uv_write_t req;
uv_buf_t buf;
uv_write_t req1;
uv_buf_t buf1;
loop = uv_default_loop();
uv_tty_init(loop, &tty, STDOUT_FILENO, 0);
uv_tty_set_mode(&tty, UV_TTY_MODE_NORMA... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/udp-dhcp/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:14.950406 | #include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <uv.h>
uv_loop_t *loop;
uv_udp_t send_socket;
uv_udp_t recv_socket;
void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) {
buf->base = malloc(suggested_size);
buf->len = suggested_size;
}
void on_read... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/uvcat/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:15.358772 | #include <assert.h>
#include <stdio.h>
#include <fcntl.h>
#include <uv.h>
void on_read(uv_fs_t *req);
uv_fs_t open_req;
uv_fs_t read_req;
uv_fs_t write_req;
static char buffer[1024];
static uv_buf_t iov;
void on_write(uv_fs_t *req) {
if (req->result < 0) {
fprintf(stderr, "Write error: %s\n", uv_strerr... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/uvtee/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:15.484707 | #include <stdio.h>
#include <fcntl.h>
#include <string.h>
#include <stdlib.h>
#include <uv.h>
typedef struct {
uv_write_t req;
uv_buf_t buf;
} write_req_t;
uv_loop_t *loop;
uv_pipe_t stdin_pipe;
uv_pipe_t stdout_pipe;
uv_pipe_t file_pipe;
void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv.h | null | null | null | null | null | null | C | 2026-05-04T18:45:15.486018 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/uvwget/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:15.513471 | #include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <uv.h>
#include <curl/curl.h>
uv_loop_t *loop;
CURLM *curl_handle;
uv_timer_t timeout;
typedef struct curl_context_s {
uv_poll_t poll_handle;
curl_socket_t sockfd;
} curl_context_t;
curl_context_t *create_curl_context(curl_socket_t sockfd) {... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/bsd.h | null | null | null | null | null | null | C | 2026-05-04T18:45:15.543030 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/aix.h | null | null | null | null | null | null | C | 2026-05-04T18:45:15.562393 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/linux.h | null | null | null | null | null | null | C | 2026-05-04T18:45:15.568479 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/errno.h | null | null | null | null | null | null | C | 2026-05-04T18:45:15.569054 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/darwin.h | null | null | null | null | null | null | C | 2026-05-04T18:45:15.570776 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | docs/code/uvstop/main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:15.619440 | #include <stdio.h>
#include <uv.h>
int64_t counter = 0;
void idle_cb(uv_idle_t *handle) {
printf("Idle callback\n");
counter++;
if (counter >= 5) {
uv_stop(uv_default_loop());
printf("uv_stop() called\n");
}
}
void prep_cb(uv_prepare_t *handle) {
printf("Prep callback\n");
}
int... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/posix.h | null | null | null | null | null | null | C | 2026-05-04T18:45:16.348315 | /* Copyright libuv project contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, cop... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/os390.h | null | null | null | null | null | null | C | 2026-05-04T18:45:16.357643 | /* Copyright libuv project contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, cop... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/sunos.h | null | null | null | null | null | null | C | 2026-05-04T18:45:16.390985 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/win.h | null | null | null | null | null | null | C | 2026-05-04T18:45:16.532642 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | src/fs-poll.c | null | null | null | null | null | null | C | 2026-05-04T18:45:16.552292 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/version.h | null | null | null | null | null | null | C | 2026-05-04T18:45:16.553324 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/unix.h | null | null | null | null | null | null | C | 2026-05-04T18:45:16.554442 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/tree.h | null | null | null | null | null | null | C | 2026-05-04T18:45:16.569396 | /*-
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice,... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | include/uv/threadpool.h | null | null | null | null | null | null | C | 2026-05-04T18:45:17.809750 | /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* righ... |
libuv/libuv | https://github.com/libuv/libuv | null | null | null | null | 26,808 | null | null | mit | null | null | null | null | null | null | null | src/heap-inl.h | null | null | null | null | null | null | C | 2026-05-04T18:45:21.720481 | /* Copyright (c) 2013, Ben Noordhuis <info@bnoordhuis.nl>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" A... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/lv_demos.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.207051 | /**
* @file lv_demos.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_demos.h"
/*********************
* DEFINES
*********************/
#define LV_DEMOS_COUNT (sizeof(demos_entry_info) / sizeof(demo_entry_info_t) - 1)
/**********************
* TYPEDEFS
*************... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/benchmark/lv_demo_benchmark.h | null | null | null | null | null | null | C | 2026-05-04T18:45:25.208227 | /**
* @file lv_demo_benchmark.h
*
*/
#ifndef LV_DEMO_BENCHMARK_H
#define LV_DEMO_BENCHMARK_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../lv_demos.h"
#if LV_USE_DEMO_BENCHMARK
/*********************
* DEFINES
*********************/
#i... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/lv_demos.h | null | null | null | null | null | null | C | 2026-05-04T18:45:25.209812 | /**
* @file lv_demos.h
*
*/
#ifndef LV_DEMOS_H
#define LV_DEMOS_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../include/lvgl/lvgl.h"
typedef struct _lv_demo_args lv_demo_args_t;
#if LV_USE_DEMO_BENCHMARK
#include "benchmark/lv_demo_benchmark.... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/keypad_encoder/lv_demo_keypad_encoder.h | null | null | null | null | null | null | C | 2026-05-04T18:45:25.210858 | /**
* @file lv_demo_keypad_encoder.h
*
*/
#ifndef LV_DEMO_KEYPAD_ENCODER_H
#define LV_DEMO_KEYPAD_ENCODER_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../lv_demos.h"
/*********************
* DEFINES
*********************/
/************... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_btn_corner_large.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.215197 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_BTN_CORNER
#define LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_BTN_CORNER
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARG... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/keypad_encoder/lv_demo_keypad_encoder.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.218488 | /**
* @file lv_demo_keypad_encoder.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_demo_keypad_encoder.h"
#if LV_USE_DEMO_KEYPAD_AND_ENCODER
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/*****... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_btn_list_pause.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.249074 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_list_pause_map[] = {
0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, ... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/gltf/lv_demo_gltf.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.300812 | /**
* @file lv_demo_gltf.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_demo_gltf.h"
#if LV_USE_DEMO_GLTF
#include "../../lvgl_private.h"
/*********************
* DEFINES
*********************/
#define PI_TO_RAD 0.01745329238f
#define SLIDER_COLOR lv_color_hex(0... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/benchmark/lv_demo_benchmark.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.317555 | /**
* @file lv_demo_benchmark.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_demo_benchmark.h"
#if LV_USE_DEMO_BENCHMARK
#if LV_FONT_MONTSERRAT_14 == 0 && LV_DEMO_BENCHMARK_ALIGNED_FONTS == 0
#error "LV_FONT_MONTSERRAT_14 or LV_DEMO_BENCHMARK_ALIGNED_FONTS is required for ... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/gltf/lv_demo_gltf.h | null | null | null | null | null | null | C | 2026-05-04T18:45:25.335641 | /**
* @file lv_demo_gltf.h
*
*/
#ifndef LV_DEMO_GLTF_H
#define LV_DEMO_GLTF_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../lv_demos.h"
#if LV_USE_DEMO_GLTF
/*********************
* DEFINES
*********************/
/*******************... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_btn_list_play.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.838880 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_list_play_map[] = {
0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_btn_prev.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.846081 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_prev_map[] = {
0xf2, 0x6c, 0x9c, 0x00, 0xf2, 0x6c, 0x9c, 0x00, 0xf2, 0x6c, 0x9c, 0x00, 0xf2, 0x6c, 0x9c, ... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_corner_left.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.932048 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_corner_left_map[] = {
0x47, 0x32, 0x34, 0x07, 0x47, 0x32, 0x34, 0x00, 0x47, 0x32, 0x34, 0x00, 0x47, 0x32, 0x3... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_corner_right.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.952209 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_corner_right_map[] = {
0x47, 0x32, 0x34, 0x00, 0x47, 0x32, 0x34, 0x00, 0x47, 0x32, 0x34, 0x00, 0x47, 0x32, 0x... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_btn_loop.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.978184 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_loop_map[] = {
0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, ... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_btn_loop_large.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.991766 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_BTN_LOOP
#define LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_BTN_LOOP
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CO... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_btn_rnd.c | null | null | null | null | null | null | C | 2026-05-04T18:45:25.992767 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_rnd_map[] = {
0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_btn_rnd_large.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.030743 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_BTN_RND
#define LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_BTN_RND
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONS... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_corner_left_large.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.031950 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_CORNER_1
#define LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_CORNER_1
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_btn_next.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.045504 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_btn_next_map[] = {
0xf2, 0x6c, 0x9c, 0x00, 0xf2, 0x6c, 0x9c, 0x00, 0xf2, 0x6c, 0x9c, 0x00, 0xf2, 0x6c, 0x9c, ... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_corner_right_large.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.462660 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_CORNER_2
#define LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_CORNER_2
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_icon_1.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.562031 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_icon_1_map[] = {
/*Pixel format: Fix 0xFF: 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/
0xff, 0xff, 0xf... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_icon_1_large.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.575438 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_ICN_CHART
#define LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_ICN_CHART
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARG... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_icon_3_large.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.599407 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_ICN_DOWNLOAD
#define LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_ICN_DOWNLOAD
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUT... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_icon_2_large.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.600711 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_ICN_CHAT
#define LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_ICN_CHAT
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_icon_2.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.617042 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_icon_2_map[] = {
/*Pixel format: Fix 0xFF: 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/
0xff, 0xff, 0xf... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_icon_3.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.618521 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_icon_3_map[] = {
/*Pixel format: Fix 0xFF: 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/
0xff, 0xff, 0xf... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_icon_4_large.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.675460 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_ICN_HEART
#define LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_ICN_HEART
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARG... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_list_border.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.677431 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_list_border_map[] = {
0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x0... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_icon_4.c | null | null | null | null | null | null | C | 2026-05-04T18:45:26.838991 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_icon_4_map[] = {
/*Pixel format: Fix 0xFF: 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/
0xff, 0xff, 0xf... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_slider_knob.c | null | null | null | null | null | null | C | 2026-05-04T18:45:27.194286 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && !LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_lv_demo_music_slider_knob_map[] = {
0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xf... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/spectrum_1.h | null | null | null | null | null | null | C | 2026-05-04T18:45:27.221634 | const uint16_t spectrum_1[][4] = {
{ 0, 0, 0, 0, },
{ 0, 9, 7, 8, },
{ 5, 39, 24, 29, },
{ 14, 44, 34, 45, },
{ 16, 25, 32, 48, },
{ 16, 18, 29, 44, },
{ 15, 20, 26, 40, },
{ 15, 19, 24, 37, },
{ 14, 19, 27, 42, },
{ 13, 17, 29, 39, },
{ 12, 17, 24, 31, },
{ 11, 17, 24, 29, },
{ 9, 19, 22, 26, },
{ 6, 19, 27, 35, },
{ ... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/spectrum_3.h | null | null | null | null | null | null | C | 2026-05-04T18:45:27.226679 | const uint16_t spectrum_3[][4] = {
{ 0, 0, 0, 0, },
{ 0, 0, 0, 0, },
{ 0, 0, 0, 0, },
{ 0, 1, 1, 0, },
{ 0, 1, 1, 0, },
{ 0, 1, 1, 0, },
{ 0, 2, 2, 0, },
{ 0, 2, 2, 0, },
{ 0, 2, 3, 0, },
{ 0, 3, 3, 0, },
{ 0, 3, 3, 0, },
{ 0, 4, 3, 0, },
{ 0, 4, 4, 0, },
{ 0, 4, 5, 0, },
{ 0, 4, 5, 0, },
{ 1, 4, 6, 0, },
{ 1, 4, 6, 1,... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/spectrum_2.h | null | null | null | null | null | null | C | 2026-05-04T18:45:27.257870 | const uint16_t spectrum_2[][4] = {
{ 0, 0, 0, 0, },
{ 0, 8, 28, 14, },
{ 1, 35, 63, 31, },
{ 5, 62, 56, 35, },
{ 13, 49, 42, 30, },
{ 21, 24, 45, 31, },
{ 22, 15, 46, 37, },
{ 20, 9, 48, 35, },
{ 17, 12, 50, 33, },
{ 6, 11, 49, 35, },
{ 0, 10, 50, 40, },
{ 0, 11, 50, 37, },
{ 0, 14, 51, 37, },
{ 0, 18, 47, 33, },
{ 0, ... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/lv_demo_music.h | null | null | null | null | null | null | C | 2026-05-04T18:45:27.272990 | /**
* @file lv_demo_music.h
*
*/
#ifndef LV_DEMO_MUSIC_H
#define LV_DEMO_MUSIC_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../lv_demos.h"
#if LV_USE_DEMO_MUSIC
/*********************
* DEFINES
*********************/
#if LV_DEMO_MUSIC... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/assets/img_lv_demo_music_list_border_large.c | null | null | null | null | null | null | C | 2026-05-04T18:45:27.274374 | #include "../lv_demo_music.h"
#if LV_USE_DEMO_MUSIC && LV_DEMO_MUSIC_LARGE
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_LIST_BORDER
#define LV_ATTRIBUTE_IMAGE_IMG_LV_DEMO_MUSIC_LIST_BORDER
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/lv_demo_music_list.c | null | null | null | null | null | null | C | 2026-05-04T18:45:27.325979 | /**
* @file lv_demo_music_list.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_demo_music_list.h"
#if LV_USE_DEMO_MUSIC
#include "lv_demo_music_main.h"
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
********************... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/lv_demo_music_list.h | null | null | null | null | null | null | C | 2026-05-04T18:45:27.334759 | /**
* @file lv_demo_music_list.h
*
*/
#ifndef LV_DEMO_MUSIC_LIST_H
#define LV_DEMO_MUSIC_LIST_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "lv_demo_music.h"
#if LV_USE_DEMO_MUSIC
/*********************
* DEFINES
*********************/
/... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/lv_demo_music.c | null | null | null | null | null | null | C | 2026-05-04T18:45:27.359465 | /**
* @file lv_demo_music.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_demo_music.h"
#if LV_USE_DEMO_MUSIC
#include "lv_demo_music_main.h"
#include "lv_demo_music_list.h"
#if LV_DEMO_MUSIC_AUTO_PLAY && LV_USE_PERF_MONITOR
#include "../../lvgl_private.h"
#endif
/********... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/lv_demo_music_main.c | null | null | null | null | null | null | C | 2026-05-04T18:45:27.593456 | /**
* @file lv_demo_music_main.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_demo_music_main.h"
#if LV_USE_DEMO_MUSIC
#include "lv_demo_music_list.h"
#include "assets/spectrum_1.h"
#include "assets/spectrum_2.h"
#include "assets/spectrum_3.h"
#include "../../lvgl_private.h"
/... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/render/assets/img_render_lvgl_logo_argb8888.c | null | null | null | null | null | null | C | 2026-05-04T18:45:27.861268 | #ifdef __has_include
#if __has_include("lvgl.h")
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
#define LV_LVGL_H_INCLUDE_SIMPLE
#endif
#endif
#endif
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/render/assets/img_render_lvgl_logo_rgb565.c | null | null | null | null | null | null | C | 2026-05-04T18:45:27.906266 | #ifdef __has_include
#if __has_include("lvgl.h")
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
#define LV_LVGL_H_INCLUDE_SIMPLE
#endif
#endif
#endif
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/music/lv_demo_music_main.h | null | null | null | null | null | null | C | 2026-05-04T18:45:27.907019 | /**
* @file lv_demo_music_main.h
*
*/
#ifndef LV_DEMO_MUSIC_MAIN_H
#define LV_DEMO_MUSIC_MAIN_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "lv_demo_music.h"
#if LV_USE_DEMO_MUSIC
#if LV_USE_GRID == 0
#error "LV_USE_GRID needs to be enabled"
#e... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/render/assets/img_render_lvgl_logo_argb8888_premultiplied.c | null | null | null | null | null | null | C | 2026-05-04T18:45:27.936332 | #ifdef __has_include
#if __has_include("lvgl.h")
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
#define LV_LVGL_H_INCLUDE_SIMPLE
#endif
#endif
#endif
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/render/assets/img_render_lvgl_logo_rgb565a8.c | null | null | null | null | null | null | C | 2026-05-04T18:45:27.954767 | #ifdef __has_include
#if __has_include("lvgl.h")
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
#define LV_LVGL_H_INCLUDE_SIMPLE
#endif
#endif
#endif
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/render/assets/img_render_lvgl_logo_rgb565_swapped.c | null | null | null | null | null | null | C | 2026-05-04T18:45:27.974185 | #ifdef __has_include
#if __has_include("lvgl.h")
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
#define LV_LVGL_H_INCLUDE_SIMPLE
#endif
#endif
#endif
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATT... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/render/assets/img_render_lvgl_logo_l8.c | null | null | null | null | null | null | C | 2026-05-04T18:45:27.995867 | #ifdef __has_include
#if __has_include("lvgl.h")
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
#define LV_LVGL_H_INCLUDE_SIMPLE
#endif
#endif
#endif
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATT... |
lvgl/lvgl | https://github.com/lvgl/lvgl | null | null | null | null | 23,427 | null | null | mit | null | null | null | null | null | null | null | demos/render/assets/img_render_lvgl_logo_i1.c | null | null | null | null | null | null | C | 2026-05-04T18:45:28.050650 | #ifdef __has_include
#if __has_include("lvgl.h")
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
#define LV_LVGL_H_INCLUDE_SIMPLE
#endif
#endif
#endif
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATT... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.