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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_entry_point.h | null | null | null | null | null | null | C | 2026-05-04T18:41:00.342016 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef BASE_ENTRY_POINT_H
#define BASE_ENTRY_POINT_H
internal void main_thread_base_entry_point(int argc, char **argv);
internal void supplement_thread_base_entry_point(void (*entry_point)(void *params), ... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_log.c | null | null | null | null | null | null | C | 2026-05-04T18:41:00.352208 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
////////////////////////////////
//~ rjf: Globals/Thread-Locals
C_LINKAGE thread_static Log *log_active;
#if !BUILD_SUPPLEMENTARY_UNIT
C_LINKAGE thread_static Log *log_active = 0;
#endif
/////////////... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_inc.c | null | null | null | null | null | null | C | 2026-05-04T18:41:00.354241 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
////////////////////////////////
//~ rjf: Base Includes
#undef LAYER_COLOR
#define LAYER_COLOR 0x3399ccff
#include "base_core.c"
#include "base_profile.c"
#include "base_arena.c"
#include "base_math.... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_hash.c | null | null | null | null | null | null | C | 2026-05-04T18:41:00.354852 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
////////////////////////////////
//~ rjf: MD5
#include "third_party/martins_hash/md5.h"
internal MD5
md5_from_data(String8 data)
{
md5_ctx ctx = {0};
md5_init(&ctx);
md5_update(&ctx, (void*)data.str, data.... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_markup.c | null | null | null | null | null | null | C | 2026-05-04T18:41:00.371208 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
internal void
set_thread_name(String8 string)
{
ProfThreadName("%.*s", str8_varg(string));
os_set_thread_name(string);
}
internal void
set_thread_namef(char *fmt, ...)
{
Temp scratch = scratch_... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_markup.h | null | null | null | null | null | null | C | 2026-05-04T18:41:00.390125 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef BASE_MARKUP_H
#define BASE_MARKUP_H
#define RADDBG_MARKUP_IMPLEMENTATION
#define RADDBG_MARKUP_VSNPRINTF raddbg_vsnprintf
#if OS_LINUX
# define RADDBG_MARKUP_STUBS
#endif
#include "lib_raddbg_m... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_math.c | null | null | null | null | null | null | C | 2026-05-04T18:41:00.420706 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
////////////////////////////////
//~ rjf: Scalar Math Ops
internal F32
mix_1f32(F32 a, F32 b, F32 t)
{
F32 c = (a + (b-a) * Clamp(0.f, t, 1.f));
return c;
}
internal F64
mix_1f64(F64 a, F64 b, ... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_threads.c | null | null | null | null | null | null | C | 2026-05-04T18:41:01.367247 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
////////////////////////////////
//~ rjf: Thread Functions
internal Thread
thread_launch(ThreadEntryPointFunctionType *f, void *p)
{
Thread thread = os_thread_launch(f, p);
return thread;
}
inte... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_meta.h | null | null | null | null | null | null | C | 2026-05-04T18:41:01.369166 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef BASE_META_H
#define BASE_META_H
////////////////////////////////
//~ rjf: Meta Markup Features
#define EmbedFile(name, path)
#define TweakB32(name, default) (TWEAK_##name)
#define Tw... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_profile.h | null | null | null | null | null | null | C | 2026-05-04T18:41:01.382655 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef BASE_PROFILE_H
#define BASE_PROFILE_H
////////////////////////////////
//~ rjf: Zero Settings
#if !defined(PROFILE_TELEMETRY)
# define PROFILE_TELEMETRY 0
#endif
#if !defined(PROFILE_SPALL)
... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_thread_context.c | null | null | null | null | null | null | C | 2026-05-04T18:41:01.889359 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
////////////////////////////////
//~ rjf: Globals
C_LINKAGE thread_static TCTX *tctx_thread_local;
#if !BUILD_SUPPLEMENTARY_UNIT
C_LINKAGE thread_static TCTX *tctx_thread_local = 0;
#endif
///////////... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_strings.h | null | null | null | null | null | null | C | 2026-05-04T18:41:01.890424 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef BASE_STRINGS_H
#define BASE_STRINGS_H
////////////////////////////////
//~ rjf: String Types
typedef struct String8 String8;
struct String8
{
U8 *str;
U64 size;
};
typedef struct Str... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_math.h | null | null | null | null | null | null | C | 2026-05-04T18:41:01.891889 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef BASE_MATH_H
#define BASE_MATH_H
////////////////////////////////
//~ rjf: Vector Types
//- rjf: 2-vectors
typedef union Vec2F32 Vec2F32;
union Vec2F32
{
struct
{
F32 x;
F32 y;
};
F32 v[2... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_strings.c | null | null | null | null | null | null | C | 2026-05-04T18:41:02.328945 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
////////////////////////////////
//~ rjf: Character Classification & Conversion Functions
internal B32
char_is_space(U8 c)
{
return (c == ' ' || c == '\n' || c == '\t' || c == '\r' || c == '\f' || c ==... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_profile.c | null | null | null | null | null | null | C | 2026-05-04T18:41:02.329540 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#if PROFILE_SPALL
internal inline void
spall_begin(char *fmt, ...)
{
if(spall_buffer.data == 0)
{
spall_buffer.length = MB(1);
spall_buffer.data = os_reserve(spall_buffer.length);
os_c... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_meta.c | null | null | null | null | null | null | C | 2026-05-04T18:41:02.567229 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
////////////////////////////////
//~ rjf: Type Info Lookups
internal Member *
member_from_name(Type *type, String8 name)
{
Member *member = &member_nil;
if(type->members != 0 && name.size != 0)
{... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/codeview/codeview_dump.c | null | null | null | null | null | null | C | 2026-05-04T18:41:02.862666 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
internal String8
cv_string_from_numeric(Arena *arena, CV_NumericParsed num)
{
String8 result = str8_zero();
switch (num.kind) {
case CV_NumericKind_FLOAT16: NotImplemented; break; // TODO: format float16... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/codeview/codeview_dump.h | null | null | null | null | null | null | C | 2026-05-04T18:41:02.868728 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef CODEVIEW_DUMP_H
#define CODEVIEW_DUMP_H
internal String8 cv_string_from_numeric(Arena *arena, CV_NumericParsed num);
#endif // CODEVIEW_DUMP_H
|
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/codeview/codeview_parse.c | null | null | null | null | null | null | C | 2026-05-04T18:41:02.899526 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
//- Hasher
internal U64
cv_hash_from_string(String8 string)
{
U64 result = 5381;
for(U64 i = 0; i < string.size; i += 1)
{
result = ((result << 5) + result) + string.str[i];
}
return result;
}
inte... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_thread_context.h | null | null | null | null | null | null | C | 2026-05-04T18:41:02.916570 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef BASE_THREAD_CONTEXT_H
#define BASE_THREAD_CONTEXT_H
////////////////////////////////
//~ rjf: Lane Context
typedef struct LaneCtx LaneCtx;
struct LaneCtx
{
U64 lane_idx;
U64 lane_count;
... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/codeview/generated/codeview.meta.c | null | null | null | null | null | null | C | 2026-05-04T18:41:02.994708 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
//- GENERATED CODE
internal String8
cv_string_from_numeric_kind(CV_NumericKind v)
{
String8 result = str8_lit("<Unknown CV_NumericKind>");
switch(v)
{
default:{}break;
case CV_NumericKind_CHAR:{result... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/codeview/codeview_parse.h | null | null | null | null | null | null | C | 2026-05-04T18:41:03.013588 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef CODEVIEW_PARSE_H
#define CODEVIEW_PARSE_H
////////////////////////////////
//~ CodeView Common Parser Types
// CV_Numeric layout
// x: U16
// buf: U8[]
// case (x < 0x8000): kind=U16 val=x
// case (x >=... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/codeview/generated/codeview.meta.h | null | null | null | null | null | null | C | 2026-05-04T18:41:03.205939 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
//- GENERATED CODE
#ifndef CODEVIEW_META_H
#define CODEVIEW_META_H
typedef U16 CV_NumericKind;
typedef enum CV_NumericKindEnum
{
CV_NumericKind_CHAR = 0x8000,
CV_NumericKind_SHORT = 0x8001,
CV_Numer... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/coff/coff.c | null | null | null | null | null | null | C | 2026-05-04T18:41:03.474178 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
internal U64
coff_align_size_from_section_flags(COFF_SectionFlags flags)
{
U32 align = 0;
U32 align_index = COFF_SectionFlags_ExtractAlign(flags);
switch (align_index) {
default: break;
cas... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/coff/coff_dump.h | null | null | null | null | null | null | C | 2026-05-04T18:41:03.495560 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef COFF_DUMP_H
#define COFF_DUMP_H
#if 0
internal void coff_print_archive_member_header(Arena *arena, String8List *out, String8 indent, COFF_ParsedArchiveMemberHeader header, String8 long_names);
internal vo... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/coff/coff.h | null | null | null | null | null | null | C | 2026-05-04T18:41:03.496641 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef COFF_H
#define COFF_H
////////////////////////////////
//~ rjf: COFF Format Types
read_only global U8 g_coff_big_header_magic[] =
{
0xc7, 0xa1, 0xba, 0xd1, 0xee, 0xba, 0xa9, 0x4b, 0xaf, 0x20, 0xfa, 0xf... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/coff/coff_dump.c | null | null | null | null | null | null | C | 2026-05-04T18:41:03.528626 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#if 0
internal void
coff_print_archive_member_header(Arena *arena, String8List *out, String8 indent, COFF_ParsedArchiveMemberHeader header, String8 long_names)
{
Temp scratch = scratch_begin(&arena, 1);
String... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/coff/coff_inc.c | null | null | null | null | null | null | C | 2026-05-04T18:41:03.629174 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#include "coff/coff.c"
#include "coff/coff_parse.c"
#include "coff/coff_dump.c"
|
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/coff/coff_inc.h | null | null | null | null | null | null | C | 2026-05-04T18:41:04.363135 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef COFF_INC_H
#define COFF_INC_H
#include "coff/coff.h"
#include "coff/coff_parse.h"
#include "coff/coff_dump.h"
#endif // COFF_INC_H
|
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/coff/coff_obj_writer.h | null | null | null | null | null | null | C | 2026-05-04T18:41:04.552049 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef COFF_OBJ_WRITER_H
#define COFF_OBJ_WRITER_H
typedef enum
{
COFF_SymbolLocation_Null,
COFF_SymbolLocation_Section,
COFF_SymbolLocation_Abs,
COFF_SymbolLocation_Undef,
COFF_SymbolLocation_Common,
... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/coff/coff_lib_writer.c | null | null | null | null | null | null | C | 2026-05-04T18:41:04.552661 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
internal COFF_LibWriterSymbolNode *
coff_lib_writer_symbol_list_push(Arena *arena, COFF_LibWriterSymbolList *list, COFF_LibWriterSymbol symbol)
{
COFF_LibWriterSymbolNode *node = push_array_no_zero(arena, COFF_L... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/coff/coff_lib_writer.h | null | null | null | null | null | null | C | 2026-05-04T18:41:04.747682 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef COFF_LIB_WRITER_H
#define COFF_LIB_WRITER_H
typedef struct COFF_LibWriterMember
{
String8 name;
String8 data;
} COFF_LibWriterMember;
typedef struct COFF_LibWriterMemberNode
{
COFF_LibWriterMember ... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/coff/coff_obj_writer.c | null | null | null | null | null | null | C | 2026-05-04T18:41:04.789545 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
internal COFF_ObjWriter*
coff_obj_writer_alloc(COFF_TimeStamp time_stamp, COFF_MachineType machine)
{
Arena *arena = arena_alloc(.name = "COFF OBJ WRITER");
COFF_ObjWriter *obj_writer = push_array(arena, COFF_... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/base/base_threads.h | null | null | null | null | null | null | C | 2026-05-04T18:41:07.215411 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef BASE_THREADS_H
#define BASE_THREADS_H
////////////////////////////////
//~ rjf: Thread Types
typedef struct Thread Thread;
struct Thread
{
U64 u64[1];
};
typedef void ThreadEntryPointFunc... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/codeview/codeview.c | null | null | null | null | null | null | C | 2026-05-04T18:41:07.260211 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
////////////////////////////////
//~ Generated Code
#include "generated/codeview.meta.c"
////////////////////////////////
internal CV_Arch
cv_arch_from_coff_machine(COFF_MachineType machine)
{
CV... |
EpicGamesExt/raddebugger | https://github.com/EpicGamesExt/raddebugger | null | null | null | null | 6,879 | null | null | mit | null | null | null | null | null | null | null | src/codeview/codeview.h | null | null | null | null | null | null | C | 2026-05-04T18:41:07.305160 | // Copyright (c) Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef CODEVIEW_H
#define CODEVIEW_H
// https://github.com/microsoft/microsoft-pdb/blob/master/include/cvinfo.h
////////////////////////////////
//~ rjf: CodeView Format Shared Types
#define CV_MinC... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_4_channel_mic/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:16.076569 | /*
* The MIT License (MIT)
*
* Copyright (c) 2020 Reinhard Panhuber
*
* 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... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_test/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:16.078357 | /*
* The MIT License (MIT)
*
* Copyright (c) 2020 Reinhard Panhuber
*
* 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... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_test/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:16.080741 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_4_channel_mic/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:16.081704 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_4_channel_mic_freertos/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:16.083112 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_4_channel_mic_freertos/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:16.084547 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_4_channel_mic/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:16.085609 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_test_freertos/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:16.086999 | /*
* The MIT License (MIT)
*
* Copyright (c) 2020 Reinhard Panhuber
*
* 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... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_4_channel_mic_freertos/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:16.087854 | /*
* The MIT License (MIT)
*
* Copyright (c) 2020 Reinhard Panhuber
*
* 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... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_test/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:17.035897 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_test_freertos/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:17.407356 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_test_multi_rate/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:17.437976 | /*
* The MIT License (MIT)
*
* Copyright (c) 2020 Reinhard Panhuber
* Copyright (c) 2022 HiFiPhile
*
* 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 wit... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/board_test/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:17.438553 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_test_freertos/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:17.439558 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_test_multi_rate/src/usb_descriptors.h | null | null | null | null | null | null | C | 2026-05-04T18:41:17.458630 | /*
* The MIT License (MIT)
*
* Copyright (c) 2022 HiFiPhile
*
* 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, co... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_dual_ports/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:17.710488 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_dual_ports/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:18.065947 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_msc/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:18.095962 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_msc/src/msc_disk.c | null | null | null | null | null | null | C | 2026-05-04T18:41:18.097218 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_msc/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:18.125561 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_msc/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:18.143477 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_msc_freertos/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:18.366324 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_msc_freertos/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:18.728650 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_msc_freertos/src/msc_disk.c | null | null | null | null | null | null | C | 2026-05-04T18:41:18.744893 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_msc_freertos/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:18.769853 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_msc_throughput/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:18.799763 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_msc_throughput/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:18.844193 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_msc_throughput/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:19.008298 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_uac2/src/cdc_app.c | null | null | null | null | null | null | C | 2026-05-04T18:41:19.398097 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
* Copyright (c) 2022 Angel Molina (angelmolinu@gmail.com)
*
* 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 wi... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_uac2/src/common.h | null | null | null | null | null | null | C | 2026-05-04T18:41:19.398649 | #ifndef __COMMON_H__
#define __COMMON_H__
/* Blink pattern
* - 25 ms : streaming data
* - 250 ms : device not mounted
* - 1000 ms : device mounted
* - 2500 ms : device is suspended
*/
enum
{
BLINK_STREAMING = 25,
BLINK_NOT_MOUNTED = 250,
BLINK_MOUNTED = 1000,
BLINK_SUSPENDED = 2500,
};
enum
{
VOLUME... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_uac2/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:19.453091 | /*
* The MIT License (MIT)
*
* Copyright (c) 2020 Ha Thach (tinyusb.org)
* Copyright (c) 2020 Jerzy Kasenberg
*
* 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, in... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_uac2/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:19.485977 | /*
* The MIT License (MIT)
*
* Copyright (c) 2020 Jerzy Kasenberg
* Copyright (c) 2022 Angel Molina <angelmolinu@gmail.com>
* Copyright (c) 2023 Dhiru Kholia <dhiru.kholia@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation ... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_uac2/src/uac2_app.c | null | null | null | null | null | null | C | 2026-05-04T18:41:19.511557 | /*
* The MIT License (MIT)
*
* Copyright (c) 2020 Jerzy Kasenberg
* Copyright (c) 2022 Angel Molina (angelmolinu@gmail.com)
*
* 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 r... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_uac2/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:19.624951 | /*
* The MIT License (MIT)
*
* Copyright (c) 2020 Ha Thach (tinyusb.org)
* Copyright (c) 2020 Jerzy Kasenberg
* Copyright (c) 2022 Angel Molina (angelmolinu@gmail.com)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Sof... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_uac2/src/usb_descriptors.h | null | null | null | null | null | null | C | 2026-05-04T18:41:20.088070 | /*
* The MIT License (MIT)
*
* Copyright (c) 2020 Jerzy Kasenbreg
* Copyright (c) 2022 Angel Molina (angelmolinu@gmail.com)
*
* 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 r... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/dfu/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:20.093871 | /*
* tusb_config.h
*
* Created on: May 5, 2021
* Author: Jeremiah McCarthy
*/
#ifndef TUSB_CONFIG_H_
#define TUSB_CONFIG_H_
#ifdef __cplusplus
extern "C" {
#endif
//--------------------------------------------------------------------+
// Board Specific Configuration
//------------------------------------... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/dfu/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:20.124028 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/dfu_runtime/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:20.181053 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/dfu/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:20.183195 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/dfu_runtime/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:20.276338 | /*
* tusb_config.h
*
* Created on: Oct 28, 2019
* Author: Sylvain Munaut
*/
#ifndef TUSB_CONFIG_H_
#define TUSB_CONFIG_H_
#ifdef __cplusplus
extern "C" {
#endif
//--------------------------------------------------------------------+
// Board Specific Configuration
//--------------------------------------... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/dynamic_configuration/src/msc_disk.c | null | null | null | null | null | null | C | 2026-05-04T18:41:20.731735 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/dynamic_configuration/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:20.748454 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/dfu_runtime/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:20.779991 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/dynamic_configuration/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:20.780481 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/dynamic_configuration/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:20.846475 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/hid_boot_interface/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:20.893327 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_test_multi_rate/src/usb_descriptors.c | null | null | null | null | null | null | C | 2026-05-04T18:41:22.011862 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
* Copyright (c) 2022 HiFiPhile
*
* 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, includin... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/cdc_dual_ports/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:22.147171 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/board_test/src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:22.170629 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
hathach/tinyusb | https://github.com/hathach/tinyusb | null | null | null | null | 6,772 | null | null | mit | null | null | null | null | null | null | null | examples/device/audio_test_multi_rate/src/tusb_config.h | null | null | null | null | null | null | C | 2026-05-04T18:41:22.200216 | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org)
*
* 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
... |
s-macke/VoxelSpace | https://github.com/s-macke/VoxelSpace | null | null | null | null | 6,712 | null | null | mit | null | null | null | null | null | null | null | tools/comanche3extract/extract.c | null | null | null | null | null | null | C | 2026-05-04T18:41:24.792943 | /*
* This file contains the code to
* extract the maps from the game
* Comanche3
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <sys/types.h>
#include <dirent.h>
#include<png.h>
#include <fnmatch.h>
typedef unsigned char ubyte;
// -----------------------------------... |
s-macke/VoxelSpace | https://github.com/s-macke/VoxelSpace | null | null | null | null | 6,712 | null | null | mit | null | null | null | null | null | null | null | tools/comanche2extract/extract.c | null | null | null | null | null | null | C | 2026-05-04T18:41:24.822633 | /*
* This file contains the code to
* extract the maps from the game
* Comanche
*/
#include<png.h>
unsigned char buffer[1024*1024];
unsigned int palette[256];
unsigned char palettergb[256*3];
unsigned int imagewidth;
unsigned int imageheight;
const char *maps[] =
{
"C1W", "D1",
"C2W", "D2",
"C... |
fulldecent/system-bus-radio | https://github.com/fulldecent/system-bus-radio | null | null | null | null | 6,675 | null | null | mit | null | null | null | null | null | null | null | implementations/c-apple-silicon/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:27.269714 | // SYSTEM BUS RADIO - M1 PULSE-PACKET TRANSMITTER (4 CORES)
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <arm_neon.h>
#include <time.h>
#include <mach/mach_time.h>
#include <mach/thread_policy.h>
#include <mach/mach_init.h>
#include <mach/thread_act.h>
#include <pthread.h>
#in... |
fulldecent/system-bus-radio | https://github.com/fulldecent/system-bus-radio | null | null | null | null | 6,675 | null | null | mit | null | null | null | null | null | null | null | implementations/c-apple-silicon-wav/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:27.270836 | // SYSTEM BUS RADIO - M1 WAV PLAYER (STOCHASTIC DENSITY MODULATION)
// Uses probability to modulate bus density, achieving high-resolution AM.
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <math.h>
#include <arm_neon.h>
#include <time.h>
#include <mach/mach_time.h>
#include <ma... |
fulldecent/system-bus-radio | https://github.com/fulldecent/system-bus-radio | null | null | null | null | 6,675 | null | null | mit | null | null | null | null | null | null | null | implementations/c-_mm_stream_si128/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:27.283328 | // SYSTEM BUS RADIO
// https://github.com/fulldecent/system-bus-radio
// Copyright 2016 William Entriken
#include <stdio.h>
#include <emmintrin.h>
#include <inttypes.h>
#include <time.h>
#include <math.h>
#ifdef __MACH__
#include <mach/mach_traps.h>
#include <mach/mach_time.h>
#endif
#ifndef NSEC_PER_SEC
#define NSEC... |
fulldecent/system-bus-radio | https://github.com/fulldecent/system-bus-radio | null | null | null | null | 6,675 | null | null | mit | null | null | null | null | null | null | null | implementations/c-neon-threads/main.c | null | null | null | null | null | null | C | 2026-05-04T18:41:27.283909 | // SYSTEM BUS RADIO - M1 PULSE-PACKET (CUSTOM BARRIER)
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <arm_neon.h>
#include <time.h>
#include <mach/mach_time.h>
#include <mach/thread_policy.h>
#include <mach/mach_init.h>
#include <mach/thread_act.h>
#include <pthread.h>
#include... |
fulldecent/system-bus-radio | https://github.com/fulldecent/system-bus-radio | null | null | null | null | 6,675 | null | null | mit | null | null | null | null | null | null | null | implementations/c-apple-silicon-wav/gen_sweep.c | null | null | null | null | null | null | C | 2026-05-04T18:41:27.285110 | #include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <math.h>
#define SAMPLE_RATE 24000
#define DURATION_PER_TONE 2
#define NUM_TONES 5
int frequencies[] = {500, 1000, 2000, 4000, 8000};
int main() {
FILE *fp = fopen("sweep.wav", "wb");
if (!fp) return 1;
uint32_t total_samples = SAM... |
nodejs/http-parser | https://github.com/nodejs/http-parser | null | null | null | null | 6,438 | null | null | mit | null | null | null | null | null | null | null | contrib/parsertrace.c | null | null | null | null | null | null | C | 2026-05-04T18:41:29.839912 | /* Copyright Joyent, Inc. and other Node contributors.
*
* 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, copy, modi... |
nodejs/http-parser | https://github.com/nodejs/http-parser | null | null | null | null | 6,438 | null | null | mit | null | null | null | null | null | null | null | fuzzers/fuzz_url.c | null | null | null | null | null | null | C | 2026-05-04T18:41:29.842556 | #include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "http_parser.h"
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
struct http_parser_url u;
http_parser_url_init(&u);
http_parser_parse_url((char*)data, size, 0, &u);
http_parser_parse_url((char*)data, size, 1, &u);
return 0;
... |
nodejs/http-parser | https://github.com/nodejs/http-parser | null | null | null | null | 6,438 | null | null | mit | null | null | null | null | null | null | null | contrib/url_parser.c | null | null | null | null | null | null | C | 2026-05-04T18:41:29.881801 | #include "http_parser.h"
#include <stdio.h>
#include <string.h>
void
dump_url (const char *url, const struct http_parser_url *u)
{
unsigned int i;
printf("\tfield_set: 0x%x, port: %u\n", u->field_set, u->port);
for (i = 0; i < UF_MAX; i++) {
if ((u->field_set & (1 << i)) == 0) {
printf("\tfield_data[%... |
nodejs/http-parser | https://github.com/nodejs/http-parser | null | null | null | null | 6,438 | null | null | mit | null | null | null | null | null | null | null | http_parser.c | null | null | null | null | null | null | C | 2026-05-04T18:41:29.900752 | /* Copyright Joyent, Inc. and other Node contributors.
*
* 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, copy, modi... |
nodejs/http-parser | https://github.com/nodejs/http-parser | null | null | null | null | 6,438 | null | null | mit | null | null | null | null | null | null | null | bench.c | null | null | null | null | null | null | C | 2026-05-04T18:41:29.939991 | /* Copyright Fedor Indutny. 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, copy, modify, me... |
nodejs/http-parser | https://github.com/nodejs/http-parser | null | null | null | null | 6,438 | null | null | mit | null | null | null | null | null | null | null | fuzzers/fuzz_parser.c | null | null | null | null | null | null | C | 2026-05-04T18:41:29.942449 | #include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "http_parser.h"
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
static const http_parser_settings settings_null = {
.on_message_begin = 0
, .on_header_field = 0
,.on_header_value = 0
,.on_url = 0
,.on_status = 0
... |
nodejs/http-parser | https://github.com/nodejs/http-parser | null | null | null | null | 6,438 | null | null | mit | null | null | null | null | null | null | null | http_parser.h | null | null | null | null | null | null | C | 2026-05-04T18:41:29.949198 | /* 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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.