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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/aflpp/aflpp.c | null | null | null | null | null | null | C | 2026-05-04T19:38:36.841493 | #include "afl-fuzz.h"
#include "afl-mutations.h"
typedef struct my_mutator {
afl_state_t *afl;
u8 *buf;
u32 buf_size;
} my_mutator_t;
my_mutator_t *afl_custom_init(afl_state_t *afl, unsigned int seed) {
(void)seed;
my_mutator_t *data = calloc(1, sizeof(my_mutator_t));
if (!data) {
... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/examples/example.c | null | null | null | null | null | null | C | 2026-05-04T19:38:36.843907 | /*
New Custom Mutator for AFL++
Written by Khaled Yakdan <yakdan@code-intelligence.de>
Andrea Fioraldi <andreafioraldi@gmail.com>
Shengtuo Hu <h1994st@gmail.com>
Dominik Maier <mail@dmnk.co>
*/
// You need to use -I/path/to/AFLplusplus/include -I.
#include "afl-fuzz.h"
#incl... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/autotokens/standalone/autotokens-standalone.c | null | null | null | null | null | null | C | 2026-05-04T19:38:36.849998 | #include "afl-fuzz.h"
#include "afl-mutations.h"
#include "forkserver.h"
#include <unistd.h>
#include <getopt.h>
static int max_havoc = 16, verbose;
static char _mh[4] = "16";
static char *dict, *mh = _mh;
extern int module_disabled;
void *afl_custom_init(afl_state_t *, unsigned int);
u8 afl_custom_queue_ge... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/examples/custom_send.c | null | null | null | null | null | null | C | 2026-05-04T19:38:36.851754 | //
// This is an example on how to use afl_custom_send
// It writes each mutated data set to /tmp/foo
// You can modify this to send to IPC, shared memory, etc.
//
// cc -O3 -fPIC -shared -g -o custom_send.so -I../../include custom_send.c
// cd ../..
// afl-cc -o test-instr test-instr.c
// AFL_CUSTOM_MUTATOR_LIBRARY=cu... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/atnwalk/atnwalk.c | null | null | null | null | null | null | C | 2026-05-04T19:38:36.853080 | #include "afl-fuzz.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>
#define BUF_SIZE_INIT 4096
#define SOCKET_NAME "./atnwalk.socket"
// how many errors (e.g. timeouts) to tolerate until moving on to the next queue
// en... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/examples/custom_post_run.c | null | null | null | null | null | null | C | 2026-05-04T19:38:36.877584 | //
// This is an example on how to use afl_custom_post_run
// It executes custom code each time after AFL++ executes the target
//
// cc -O3 -fPIC -shared -g -o custom_post_run.so -I../../include
// custom_post_run.c cd ../.. afl-cc -o test-instr test-instr.c
// AFL_CUSTOM_MUTATOR_LIBRARY=custom_mutators/examples/custo... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/custom_send_tcp/custom_send_tcp.c | null | null | null | null | null | null | C | 2026-05-04T19:38:36.879753 | #include <time.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <arpa/inet.h>
#include <sys/select.h>
#include "afl-fuzz.h"
static int my_debug = 0;
static int my_read = 0;
#define DEBUG(...) \
if (my_debug) printf(__VA_ARGS__)
typedef struct tcp_send_m... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/examples/elf_header_mutator.c | null | null | null | null | null | null | C | 2026-05-04T19:38:36.880882 | /*
AFL++ Custom Mutator for ELF Headers
Written by @echel0n <melih.sahin@protonmail.com>
based on libgolf.h by @xcellerator
$ gcc -O3 -fPIC -shared -o elf_mutator.so -I ~/AFLplusplus/include/
*/
#include "afl-fuzz.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <l... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/aflpp/standalone/aflpp-standalone.c | null | null | null | null | null | null | C | 2026-05-04T19:38:36.956943 | #include "afl-fuzz.h"
#include "afl-mutations.h"
#include <unistd.h>
#include <getopt.h>
static int max_havoc = 16, verbose;
static unsigned char *dict;
typedef struct my_mutator {
afl_state_t *afl;
u8 *buf;
u32 buf_size;
} my_mutator_t;
my_mutator_t *afl_custom_init(afl_state_t... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/gramfuzz-mutators.c | null | null | null | null | null | null | C | 2026-05-04T19:38:37.537193 | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include "afl-fuzz.h"
#include "gramfuzz.h"
#include "gramfuzz-rng.h"
Array *performRandomMutation(state *pda, Array *input) {
terminal *term_ptr;
// terminal *prev_ptr;
Array *mutated;
Array *sliced;
// Get offset at which to ge... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/examples/simple_example.c | null | null | null | null | null | null | C | 2026-05-04T19:38:37.538147 | // This simple example just creates random buffer <= 100 filled with 'A'
// needs -I /path/to/AFLplusplus/include
#include "afl-fuzz.h"
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#ifndef _FIXED_CHAR
#define _FIXED_CHAR 0x41
#endif
typedef struct my_mutator {
afl_state_t *afl;... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/gramfuzz.c | null | null | null | null | null | null | C | 2026-05-04T19:38:37.549085 | // This simple example just creates random buffer <= 100 filled with 'A'
// needs -I /path/to/AFLplusplus/include
// #include "custom_mutator_helpers.h"
#include "afl-fuzz.h"
#include "gramfuzz.h"
#include "gramfuzz-rng.h"
#define MUTATORS 4 // Specify the total number of mutators
typedef struct my_mutator {
afl_... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/gramfuzz-helpers.c | null | null | null | null | null | null | C | 2026-05-04T19:38:37.550377 | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include "afl-fuzz.h"
#include "gramfuzz.h"
#include "gramfuzz-rng.h"
/*Slices from beginning till idx*/
Array *slice(Array *input, int idx) {
// printf("\nSlice idx:%d", idx);
terminal *origptr;
terminal *term_ptr;
Array *sliced... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/gramfuzz-rng.h | null | null | null | null | null | null | C | 2026-05-04T19:38:37.577155 |
#ifndef AFLPLUSPLUS_GRAMFUZZ_RNG_H
#define AFLPLUSPLUS_GRAMFUZZ_RNG_H
#include "afl-fuzz.h"
// for test.c as standalone mode instead of AFL mode
struct afl_state;
u32 gf_rand_below(struct afl_state *afl, u32 limit);
#endif // AFLPLUSPLUS_GRAMFUZZ_RNG_H
|
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/gramfuzz-util.c | null | null | null | null | null | null | C | 2026-05-04T19:38:37.578142 | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include "afl-fuzz.h"
#include "gramfuzz.h"
#ifdef _GNU_SOURCE
#undef _GNU_SOURCE
#endif
#define _GNU_SOURCE
#include <sys/mman.h>
/* Dynamic Array for adding to the input repr
* */
void initArray(Array *a, size_t initialSize) {
a->st... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/examples/post_library_gif.so.c | null | null | null | null | null | null | C | 2026-05-04T19:38:37.579397 | /*
american fuzzy lop++ - postprocessor library example
--------------------------------------------------
Originally written by Michal Zalewski
Edited by Dominik Maier, 2020
Copyright 2015 Google Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may n... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/examples/post_library_png.so.c | null | null | null | null | null | null | C | 2026-05-04T19:38:37.610328 | /*
american fuzzy lop++ - postprocessor for PNG
------------------------------------------
Originally written by Michal Zalewski
Copyright 2015 Google Inc. All rights reserved.
Adapted to the new API, 2020 by Dominik Maier
Licensed under the Apache License, Version 2.0 (the "License");
you may n... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/gramfuzz-rng.c | null | null | null | null | null | null | C | 2026-05-04T19:38:37.645100 |
#include "gramfuzz-rng.h"
#include <stdlib.h>
extern afl_state_t *global_afl;
extern int gf_standalone_mode;
u32 gf_rand_below(afl_state_t *afl, u32 limit) {
if (limit <= 1) return 0;
/* Standalone mode (test_pda) */
if (gf_standalone_mode || !afl) {
return (u32)(rand() % limit);
}
/* AFL mode */
... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/gramfuzz.h | null | null | null | null | null | null | C | 2026-05-04T19:38:37.646317 | #ifndef _GRAMFUZZ_H
#define _GRAMFUZZ_H
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "cJSON/cJSON.h"
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include "hashmap.h"
#include "uthash.h"
#include "utarray.h"
#include "json-parser.h"
#define INIT_INPUTS 100 ... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/hashmap.c | null | null | null | null | null | null | C | 2026-05-04T19:38:38.140525 | /*
* Generic map implementation.
*/
#include "hashmap.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#define INITIAL_SIZE (256)
#define MAX_CHAIN_LENGTH (8)
/* We need to keep keys and values */
typedef struct _hashmap_element {
char *key;
int in_use;
any_t data;
} hashmap_element;
/* A h... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/hashmap.h | null | null | null | null | null | null | C | 2026-05-04T19:38:38.169260 | /*
* Generic hashmap manipulation functions
*
* Originally by Elliot C Back -
* http://elliottback.com/wp/hashmap-implementation-in-c/
*
* Modified by Pete Warden to fix a serious performance problem, support strings
* as keys and removed thread synchronization - http://petewarden.typepad.com
*/
#ifndef __HASHM... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/json-parser.h | null | null | null | null | null | null | C | 2026-05-04T19:38:38.170416 | #include "afl-fuzz.h"
#include "cJSON/cJSON.h"
#ifndef AFLPLUSPLUS_JSON_PARSER_H
#define AFLPLUSPLUS_JSON_PARSER_H
cJSON *load_json_file(u8 *automation_file);
#endif // AFLPLUSPLUS_JSON_PARSER_H
|
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/json-parser.c | null | null | null | null | null | null | C | 2026-05-04T19:38:38.279871 | #include "json-parser.h"
cJSON *load_json_file(u8 *automation_file) {
FILE *f = fopen(automation_file, "rb");
if (!f) {
perror("fopen");
return NULL;
}
if (fseek(f, 0, SEEK_END) != 0) {
fclose(f);
return NULL;
}
long size = ftell(f);
if (size < 0) {
fclose(f);
return NULL;
}
... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/test.h | null | null | null | null | null | null | C | 2026-05-04T19:38:38.281102 | #include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <json-c/json.h>
#include <unistd.h>
#include "hashmap.h"
#include "uthash.h"
#include "utarray.h"
#define INIT_SIZE 100 // Initial size of the dynamic array holding the input
typedef struct terminal {
int state;
int tr... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/test.c | null | null | null | null | null | null | C | 2026-05-04T19:38:38.312456 | /* This is the testing module for Gramatron
*/
#include "afl-fuzz.h"
#include "gramfuzz.h"
#include "gramfuzz-rng.h"
#define NUMINPUTS 50
int gf_standalone_mode = 1;
state *create_pda(u8 *automaton_file) {
cJSON *parsed_json;
state *pda;
cJSON *source_obj, *attr;
int ... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/honggfuzz/honggfuzz.h | null | null | null | null | null | null | C | 2026-05-04T19:38:38.678536 | /*
*
* honggfuzz - core structures and macros
* -----------------------------------------
*
* Author: Robert Swiecki <swiecki@google.com>
*
* Copyright 2010-2018 by Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compli... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/utarray.h | null | null | null | null | null | null | C | 2026-05-04T19:38:38.753298 | /*
Copyright (c) 2008-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/honggfuzz/honggfuzz.c | null | null | null | null | null | null | C | 2026-05-04T19:38:38.844957 | #include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "afl-fuzz.h"
#include "mangle.h"
#define NUMBER_OF_MUTATIONS 5
uint8_t *queue_input;
size_t queue_input_size;
afl_state_t *afl_struct;
run_t run;
honggfuzz_t global;
struct _dynfile_t dy... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/gramatron/uthash.h | null | null | null | null | null | null | C | 2026-05-04T19:38:39.095508 | /*
Copyright (c) 2003-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/honggfuzz/mangle.h | null | null | null | null | null | null | C | 2026-05-04T19:38:39.473254 | /*
*
* honggfuzz - buffer mangling routines
* -----------------------------------------
*
* Author: Robert Swiecki <swiecki@google.com>
*
* Copyright 2010-2018 by Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in complian... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerBuiltins.h | null | null | null | null | null | null | C | 2026-05-04T19:38:39.513550 | //===- FuzzerBuiltins.h - Internal header for builtins ----------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/honggfuzz/mangle.c | null | null | null | null | null | null | C | 2026-05-04T19:38:39.550889 | /*
*
* honggfuzz - run->dynfile->datafer mangling routines
* -----------------------------------------
*
* Author:
* Robert Swiecki <swiecki@google.com>
*
* Copyright 2010-2018 by Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file ... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerBuiltinsMsvc.h | null | null | null | null | null | null | C | 2026-05-04T19:38:39.657122 | //===- FuzzerBuiltinsMSVC.h - Internal header for builtins ------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerCommand.h | null | null | null | null | null | null | C | 2026-05-04T19:38:39.723522 | //===- FuzzerCommand.h - Interface representing a process -------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerCorpus.h | null | null | null | null | null | null | C | 2026-05-04T19:38:39.964099 | //===- FuzzerCorpus.h - Internal header for the Fuzzer ----------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerDefs.h | null | null | null | null | null | null | C | 2026-05-04T19:38:40.131571 | //===- FuzzerDefs.h - Internal header for the Fuzzer ------------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerExtFunctions.h | null | null | null | null | null | null | C | 2026-05-04T19:38:40.145608 | //===- FuzzerExtFunctions.h - Interface to external functions ---*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerDictionary.h | null | null | null | null | null | null | C | 2026-05-04T19:38:40.176356 | //===- FuzzerDictionary.h - Internal header for the Fuzzer ------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerFork.h | null | null | null | null | null | null | C | 2026-05-04T19:38:40.276641 | //===- FuzzerFork.h - run fuzzing in sub-processes --------------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerIO.h | null | null | null | null | null | null | C | 2026-05-04T19:38:40.389345 | //===- FuzzerIO.h - Internal header for IO utils ----------------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerInterface.h | null | null | null | null | null | null | C | 2026-05-04T19:38:40.575702 | //===- FuzzerInterface.h - Interface header for the Fuzzer ------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerMerge.h | null | null | null | null | null | null | C | 2026-05-04T19:38:40.758847 | //===- FuzzerMerge.h - merging corpa ----------------------------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerMutate.h | null | null | null | null | null | null | C | 2026-05-04T19:38:40.760031 | //===- FuzzerMutate.h - Internal header for the Fuzzer ----------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/libfuzzer/FuzzerInternal.h | null | null | null | null | null | null | C | 2026-05-04T19:38:40.789485 | //===- FuzzerInternal.h - Internal header for the Fuzzer --------*- C++ -* ===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
AFLplusplus/AFLplusplus | https://github.com/AFLplusplus/AFLplusplus | null | null | null | null | 6,495 | null | null | apache-2.0 | null | null | null | null | null | null | null | custom_mutators/honggfuzz/input.h | null | null | null | null | null | null | C | 2026-05-04T19:38:44.154212 | #ifndef _HG_INPUT_
#define _HG_INPUT_
#include <stdarg.h>
#ifdef __clang__
#include <stdatomic.h>
#endif
#include <stdbool.h>
#include <stdint.h>
#include <time.h>
#include "honggfuzz.h"
#include "afl-fuzz.h"
/*
* Go-style defer scoped implementation
*
* If compiled with clang, use: -fblocks -lBlocksRuntime
*
*... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | examples/edge.c | null | null | null | null | null | null | C | 2026-05-04T19:38:46.882679 | /*
* Copyright 2018, 2020-2021 Uber Technologies, 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 a... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | examples/compactCells.c | null | null | null | null | null | null | C | 2026-05-04T19:38:46.883955 | /*
* Copyright 2018, 2020-2021 Uber Technologies, 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 a... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/applib/include/test.h | null | null | null | null | null | null | C | 2026-05-04T19:38:46.890792 | /*
* Copyright 2017-2018, 2020-2021 Uber Technologies, 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... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | examples/distance.c | null | null | null | null | null | null | C | 2026-05-04T19:38:46.891750 | /*
* Copyright 2018, 2020-2021 Uber Technologies, 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 a... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/applib/include/kml.h | null | null | null | null | null | null | C | 2026-05-04T19:38:46.894815 | /*
* Copyright 2016-2017, 2020-2021 Uber Technologies, 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... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/applib/include/args.h | null | null | null | null | null | null | C | 2026-05-04T19:38:46.897876 | /*
* Copyright 2019 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | examples/neighbors.c | null | null | null | null | null | null | C | 2026-05-04T19:38:46.898730 | /*
* Copyright 2018, 2020 Uber Technologies, 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 applic... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/applib/include/benchmark.h | null | null | null | null | null | null | C | 2026-05-04T19:38:46.922571 | /*
* Copyright 2017 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | examples/index.c | null | null | null | null | null | null | C | 2026-05-04T19:38:46.923739 | /*
* Copyright 2017, 2020-2021 Uber Technologies, 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 a... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/applib/include/aflHarness.h | null | null | null | null | null | null | C | 2026-05-04T19:38:46.952551 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/applib/include/utility.h | null | null | null | null | null | null | C | 2026-05-04T19:38:47.546724 | /*
* Copyright 2016-2021 Uber Technologies, 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 applica... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/applib/lib/utility.c | null | null | null | null | null | null | C | 2026-05-04T19:38:47.557199 | /*
* Copyright 2016-2021 Uber Technologies, 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 applica... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/applib/lib/kml.c | null | null | null | null | null | null | C | 2026-05-04T19:38:47.562719 | /*
* Copyright 2016-2017, 2020-2021 Uber Technologies, 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... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/applib/lib/args.c | null | null | null | null | null | null | C | 2026-05-04T19:38:47.578357 | /*
* Copyright 2019 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/applib/lib/test.c | null | null | null | null | null | null | C | 2026-05-04T19:38:47.579382 | /*
* Copyright 2017-2018, 2020 Uber Technologies, 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 a... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkArea.c | null | null | null | null | null | null | C | 2026-05-04T19:38:47.613777 | /*
* Copyright 2025 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkDirectedEdge.c | null | null | null | null | null | null | C | 2026-05-04T19:38:47.615379 | /*
* Copyright 2020-2021 Uber Technologies, 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 applica... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkGridDiskCells.c | null | null | null | null | null | null | C | 2026-05-04T19:38:47.634327 | /*
* Copyright 2018, 2020 Uber Technologies, 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 applic... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkCellToChildren.c | null | null | null | null | null | null | C | 2026-05-04T19:38:47.635832 | /*
* Copyright 2023 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkCellsToPolyAlgos.c | null | null | null | null | null | null | C | 2026-05-04T19:38:47.664381 | /*
* Copyright 2018, 2025 Uber Technologies, 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 applic... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkVertex.c | null | null | null | null | null | null | C | 2026-05-04T19:38:48.525563 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkPolygon.c | null | null | null | null | null | null | C | 2026-05-04T19:38:48.534142 | /*
* Copyright 2018, 2020-2021 Uber Technologies, 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 a... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkPolygonToCells.c | null | null | null | null | null | null | C | 2026-05-04T19:38:48.548921 | /*
* Copyright 2017, 2020-2021 Uber Technologies, 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 a... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkIsValidCell.c | null | null | null | null | null | null | C | 2026-05-04T19:38:48.549445 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkPolygonToCellsExperimental.c | null | null | null | null | null | null | C | 2026-05-04T19:38:48.613703 | /*
* Copyright 2017, 2020-2021 Uber Technologies, 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 a... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/filters/cellToLocalIj.c | null | null | null | null | null | null | C | 2026-05-04T19:38:48.654234 | /*
* Copyright 2018-2019 Uber Technologies, 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 applica... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/filters/latLngToCell.c | null | null | null | null | null | null | C | 2026-05-04T19:38:49.145343 | /*
* Copyright 2016-2017, 2019-2021 Uber Technologies, 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... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/filters/gridDisk.c | null | null | null | null | null | null | C | 2026-05-04T19:38:49.159561 | /*
* Copyright 2016-2017, 2019-2020 Uber Technologies, 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... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/filters/h3ToComponents.c | null | null | null | null | null | null | C | 2026-05-04T19:38:49.189950 | /*
* Copyright 2016-2017, 2019-2020 Uber Technologies, 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... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/filters/gridDiskUnsafe.c | null | null | null | null | null | null | C | 2026-05-04T19:38:49.222647 | /*
* Copyright 2016-2017, 2019-2020 Uber Technologies, 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... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/filters/localIjToCell.c | null | null | null | null | null | null | C | 2026-05-04T19:38:49.239366 | /*
* Copyright 2019 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerCellArea.c | null | null | null | null | null | null | C | 2026-05-04T19:38:49.320439 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerCellToLatLng.c | null | null | null | null | null | null | C | 2026-05-04T19:38:50.033025 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerCellsToLinkedMultiPolygon.c | null | null | null | null | null | null | C | 2026-05-04T19:38:50.034332 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerCellsToMultiPolygon.c | null | null | null | null | null | null | C | 2026-05-04T19:38:50.035819 | /*
* Copyright 2026 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerCellProperties.c | null | null | null | null | null | null | C | 2026-05-04T19:38:50.145531 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerCellToChildPos.c | null | null | null | null | null | null | C | 2026-05-04T19:38:50.197080 | /*
* Copyright 2022 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerCompact.c | null | null | null | null | null | null | C | 2026-05-04T19:38:50.457644 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerDistances.c | null | null | null | null | null | null | C | 2026-05-04T19:38:50.610859 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerDirectedEdge.c | null | null | null | null | null | null | C | 2026-05-04T19:38:50.642387 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerConstructCell.c | null | null | null | null | null | null | C | 2026-05-04T19:38:50.705285 | /*
* Copyright 2025 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerEdgeLength.c | null | null | null | null | null | null | C | 2026-05-04T19:38:50.723209 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerGridDisk.c | null | null | null | null | null | null | C | 2026-05-04T19:38:50.837990 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerHierarchy.c | null | null | null | null | null | null | C | 2026-05-04T19:38:51.083245 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerInternalAlgos.c | null | null | null | null | null | null | C | 2026-05-04T19:38:51.296386 | /*
* Copyright 2022 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/fuzzers/fuzzerIndexIO.c | null | null | null | null | null | null | C | 2026-05-04T19:38:51.318064 | /*
* Copyright 2021 Uber Technologies, 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 l... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkGridPathCells.c | null | null | null | null | null | null | C | 2026-05-04T19:38:53.157984 | /*
* Copyright 2018, 2020 Uber Technologies, 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 applic... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/benchmarks/benchmarkH3Api.c | null | null | null | null | null | null | C | 2026-05-04T19:38:53.204323 | /*
* Copyright 2017, 2020-2021 Uber Technologies, 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 a... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/filters/cellToBoundary.c | null | null | null | null | null | null | C | 2026-05-04T19:38:53.260711 | /*
* Copyright 2016-2017, 2019-2021 Uber Technologies, 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... |
uber/h3 | https://github.com/uber/h3 | null | null | null | null | 6,209 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/apps/filters/cellToLatLng.c | null | null | null | null | null | null | C | 2026-05-04T19:38:53.269809 | /*
* Copyright 2016-2017, 2019-2021 Uber Technologies, 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... |
zmap/zmap | https://github.com/zmap/zmap | null | null | null | null | 6,184 | null | null | apache-2.0 | null | null | null | null | null | null | null | lib/cachehash.h | null | null | null | null | null | null | C | 2026-05-04T19:38:55.788566 | /*
* CacheHash Copyright 2014 Regents of the University of Michigan
*
* 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
*/
#ifndef CACHEHASH_H
#d... |
zmap/zmap | https://github.com/zmap/zmap | null | null | null | null | 6,184 | null | null | apache-2.0 | null | null | null | null | null | null | null | lib/aes128.c | null | null | null | null | null | null | C | 2026-05-04T19:38:55.792754 | /*
* ZMap Copyright 2013 Regents of the University of Michigan
*
* 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
*/
#include "aes128.h"
#inclu... |
zmap/zmap | https://github.com/zmap/zmap | null | null | null | null | 6,184 | null | null | apache-2.0 | null | null | null | null | null | null | null | lib/constraint.c | null | null | null | null | null | null | C | 2026-05-04T19:38:55.797721 | /*
* Copyright 2021 Regents of the University of Michigan
*
* 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 a... |
zmap/zmap | https://github.com/zmap/zmap | null | null | null | null | 6,184 | null | null | apache-2.0 | null | null | null | null | null | null | null | lib/blocklist.c | null | null | null | null | null | null | C | 2026-05-04T19:38:55.800477 | /*
* Blocklist Copyright 2013 Regents of the University of Michigan
*
* 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
*/
#include <errno.h>
#in... |
zmap/zmap | https://github.com/zmap/zmap | null | null | null | null | 6,184 | null | null | apache-2.0 | null | null | null | null | null | null | null | lib/cachehash.c | null | null | null | null | null | null | C | 2026-05-04T19:38:55.817658 | /*
* CacheHash Copyright 2014 Regents of the University of Michigan
*
* 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
*/
#include "cachehash.h"... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.