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
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/aot_perf_map.c
null
null
null
null
null
null
C
2026-05-04T19:39:13.333532
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "aot_perf_map.h" #include "bh_log.h" #include "bh_platform.h" struct func_info { uint32 idx; void *ptr; }; static uint32 get_func_size(const AOTModule *module, struct func_...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/aot_runtime.h
null
null
null
null
null
null
C
2026-05-04T19:39:13.349936
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _AOT_RUNTIME_H_ #define _AOT_RUNTIME_H_ #include "bh_platform.h" #include "../common/wasm_runtime_common.h" #include "../interpreter/wasm_runtime.h" #include "../compilation/aot.h" #...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/aot_perf_map.h
null
null
null
null
null
null
C
2026-05-04T19:39:13.351294
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _AOT_PERF_MAP_H_ #define _AOT_PERF_MAP_H_ #include "aot_runtime.h" bool aot_create_perf_map(const AOTModule *module, char *error_buf, uint32 error_buf_size); #e...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/aot_validator.h
null
null
null
null
null
null
C
2026-05-04T19:39:13.382752
/* * Copyright (C) 2025 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _AOT_VALIDATOR_H_ #define _AOT_VALIDATOR_H_ #include "aot_runtime.h" bool aot_module_validate(const AOTModule *module, char *error_buf, uint32 error_buf_size); ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/aot_reloc.h
null
null
null
null
null
null
C
2026-05-04T19:39:13.383796
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _AOT_RELOC_H_ #define _AOT_RELOC_H_ #include "aot_runtime.h" #include "aot_intrinsic.h" #if WASM_ENABLE_STRINGREF != 0 #include "string_object.h" #endif #ifdef __cplusplus extern "...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/arch/aot_reloc_arm.c
null
null
null
null
null
null
C
2026-05-04T19:39:14.120868
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "aot_reloc.h" #define R_ARM_CALL 28 /* PC relative 24 bit (BL, BLX). */ #define R_ARM_JMP24 29 /* PC relative 24 bit (B/BL<cond>). */ #define R_ARM_ABS32 2 /* Direct 32 bit */ #...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/arch/aot_reloc_x86_32.c
null
null
null
null
null
null
C
2026-05-04T19:39:14.305211
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "aot_reloc.h" /* clang-format off */ #if !defined(BH_PLATFORM_WINDOWS) #define R_386_32 1 /* Direct 32 bit */ #define R_386_PC32 2 /* PC relative 32 bit */ #define R_386_PLT32 ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/debug/elf.h
null
null
null
null
null
null
C
2026-05-04T19:39:14.338862
/**************************************************************************** * include/elf.h * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The * ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/arch/aot_reloc_xtensa.c
null
null
null
null
null
null
C
2026-05-04T19:39:14.339922
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "aot_reloc.h" #define R_XTENSA_32 1 /* Direct 32 bit */ #define R_XTENSA_SLOT0_OP 20 /* PC relative */ /* clang-format off */ /* for soft-float */ void __floatsidf(void); vo...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/arch/aot_reloc_x86_64.c
null
null
null
null
null
null
C
2026-05-04T19:39:14.340958
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "aot_reloc.h" #if !defined(BH_PLATFORM_WINDOWS) #define R_X86_64_64 1 /* Direct 64 bit */ #define R_X86_64_PC32 2 /* PC relative 32 bit signed */ #define R_X8...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/arch/aot_reloc_mips.c
null
null
null
null
null
null
C
2026-05-04T19:39:14.359767
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "aot_reloc.h" #define R_MIPS_32 2 /* Direct 32 bit */ #define R_MIPS_26 4 /* Direct 26 bit shifted */ /* clang-format off */ static SymbolMap target_sym_map[] = { REG_COMMON_SY...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/arch/aot_reloc_dummy.c
null
null
null
null
null
null
C
2026-05-04T19:39:14.361012
/* * Copyright (C) 2020 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "aot_reloc.h" SymbolMap * get_target_symbol_map(uint32 *sym_num) { abort(); } uint32 get_plt_table_size(void) { abort(); } void init_plt_table(uint8 *plt) { abort(); }...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/arch/aot_reloc_riscv.c
null
null
null
null
null
null
C
2026-05-04T19:39:14.368679
/* * Copyright (C) 2021 XiaoMi Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "aot_reloc.h" #define R_RISCV_32 1 #define R_RISCV_64 2 #define R_RISCV_CALL 18 #define R_RISCV_CALL_PLT 19 #define R_RISCV_PCREL_HI20 23 #define R_RISCV_PCREL_LO12_I 24 #define R_...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/arch/aot_reloc_thumb.c
null
null
null
null
null
null
C
2026-05-04T19:39:14.405343
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "aot_reloc.h" #define R_ARM_ABS32 2 /* Direct 32 bit */ #define R_ARM_THM_CALL 10 /* PC relative (Thumb BL and ARMv5 Thumb BLX). */ #define R_ARM_THM_JMP24 30 /* B.W */ #defin...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/arch/aot_reloc_arc.c
null
null
null
null
null
null
C
2026-05-04T19:39:14.439287
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "aot_reloc.h" #define R_ARC_S21H_PCREL 14 #define R_ARC_S21W_PCREL 15 #define R_ARC_S25H_PCREL 16 #define R_ARC_S25W_PCREL 17 #define R_ARC_32 4 #define R_ARC_32_ME 27 /* clang-for...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/debug/elf32.h
null
null
null
null
null
null
C
2026-05-04T19:39:14.828819
/**************************************************************************** * include/elf32.h * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/debug/elf64.h
null
null
null
null
null
null
C
2026-05-04T19:39:14.925335
/**************************************************************************** * include/elf64.h * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/debug/elf_parser.c
null
null
null
null
null
null
C
2026-05-04T19:39:14.981102
/* * Copyright (C) 2021 Ant Group. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include <stdio.h> #include <assert.h> #include <fcntl.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <stdbool.h> #include "elf.h" #include "aot_runtime.h" #include "bh_log...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/debug/elf_parser.h
null
null
null
null
null
null
C
2026-05-04T19:39:15.006630
/* * Copyright (C) 2021 Ant Group. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _ELF_PARSER_H_ #define _ELF_PARSER_H_ #include <stdbool.h> #ifdef __cplusplus extern "C" { #endif bool is_ELF(void *buf); bool is_ELF64(void *buf); bool get_text_section(void *buf, uint6...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/debug/jit_debug.h
null
null
null
null
null
null
C
2026-05-04T19:39:15.008421
/* * Copyright (C) 2021 Ant Group. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _JIT_DEBUG_H_ #define _JIT_DEBUG_H_ #ifdef __cplusplus extern "C" { #endif bool jit_debug_engine_init(void); void jit_debug_engine_destroy(void); bool jit_code_entry_create(const uint8 *...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/aot/debug/jit_debug.c
null
null
null
null
null
null
C
2026-05-04T19:39:15.009635
/* * Copyright (C) 2015 The Android Open Source Project * * 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 app...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/gc/gc_common.c
null
null
null
null
null
null
C
2026-05-04T19:39:15.076659
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "../wasm_runtime_common.h" #include "gc_export.h" #if WASM_ENABLE_INTERP != 0 #include "../interpreter/wasm_runtime.h" #endif #if WASM_ENABLE_AOT != 0 #include "../aot/aot_runtime.h...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/arch/invokeNative_general.c
null
null
null
null
null
null
C
2026-05-04T19:39:15.107358
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "../wasm_runtime_common.h" #include "../wasm_exec_env.h" #if defined(__clang__) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wdeprecated-non-prototype" #endif ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/gc/gc_object.c
null
null
null
null
null
null
C
2026-05-04T19:39:15.108868
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "gc_object.h" #include "mem_alloc.h" #include "../wasm_runtime_common.h" #if WASM_ENABLE_INTERP != 0 #include "../interpreter/wasm_runtime.h" #endif #if WASM_ENABLE_AOT != 0 #include...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/gc/gc_object.h
null
null
null
null
null
null
C
2026-05-04T19:39:15.109861
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _GC_OBJECT_H_ #define _GC_OBJECT_H_ #include "gc_type.h" #ifdef __cplusplus extern "C" { #endif /** * Object header of a WASM object, as the address of allocated memory * must be...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/gc/gc_type.c
null
null
null
null
null
null
C
2026-05-04T19:39:15.554210
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "gc_type.h" void wasm_dump_value_type(uint8 type, const WASMRefType *ref_type) { switch (type) { case VALUE_TYPE_I32: os_printf("i32"); break; ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/gc/gc_type.h
null
null
null
null
null
null
C
2026-05-04T19:39:15.592315
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _GC_TYPE_H_ #define _GC_TYPE_H_ #include "../interpreter/wasm.h" #ifdef __cplusplus extern "C" { #endif void wasm_dump_value_type(uint8 type, const WASMRefType *ref_type); void wa...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/gc/stringref/stringref_stub.c
null
null
null
null
null
null
C
2026-05-04T19:39:15.618661
/* * Copyright (C) 2023 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ /* This file is the stub for stringref implementation, only used for wamrc * compiler. The runtime embedder SHOULD NOT use this file */ #include "string_object.h" /******************* gc f...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/gc/stringref/string_object.h
null
null
null
null
null
null
C
2026-05-04T19:39:15.635293
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _STRING_OBJECT_H_ #define _STRING_OBJECT_H_ #include "wasm.h" #ifdef __cplusplus extern "C" { #endif typedef enum EncodingFlag { UTF8, WTF8, WTF16, LOSSY_UTF8, } En...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_application.c
null
null
null
null
null
null
C
2026-05-04T19:39:15.660299
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "bh_platform.h" #if WASM_ENABLE_INTERP != 0 #include "../interpreter/wasm_runtime.h" #endif #if WASM_ENABLE_AOT != 0 #include "../aot/aot_runtime.h" #endif #if WASM_ENABLE_THREAD_MG...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_blocking_op.c
null
null
null
null
null
null
C
2026-05-04T19:39:15.670630
/* * Copyright (C) 2023 Midokura Japan KK. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "wasm_runtime_common.h" #include "bh_platform.h" #include "bh_common.h" #include "bh_assert.h" #if WASM_ENABLE_THREAD_MGR != 0 && defined(OS_ENABLE_WAKEUP_BLOCKING_OP) #define LO...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_c_api_internal.h
null
null
null
null
null
null
C
2026-05-04T19:39:15.689276
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _WASM_C_API_INTERNAL_H #define _WASM_C_API_INTERNAL_H #include "../include/wasm_c_api.h" #include "wasm_runtime_common.h" #ifndef own #define own #endif /* Vectors */ /* we will m...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_loader_common.c
null
null
null
null
null
null
C
2026-05-04T19:39:15.706902
/* * Copyright (C) 2024 Amazon Inc. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "wasm_loader_common.h" #include "bh_leb128.h" #include "bh_log.h" #if WASM_ENABLE_GC != 0 #include "../common/gc/gc_type.h" #endif void wasm_loader_set_error_buf(char *error_buf, uint32 er...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_exec_env.c
null
null
null
null
null
null
C
2026-05-04T19:39:15.748452
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "wasm_exec_env.h" #include "wasm_runtime_common.h" #if WASM_ENABLE_GC != 0 #include "mem_alloc.h" #endif #if WASM_ENABLE_INTERP != 0 #include "../interpreter/wasm_runtime.h" #endif ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_exec_env.h
null
null
null
null
null
null
C
2026-05-04T19:39:15.773046
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _WASM_EXEC_ENV_H #define _WASM_EXEC_ENV_H #include "bh_assert.h" #include "wasm_suspend_flags.h" #if WASM_ENABLE_INTERP != 0 #include "../interpreter/wasm.h" #endif #ifdef __cplusp...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_memory.h
null
null
null
null
null
null
C
2026-05-04T19:39:16.351662
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _WASM_MEMORY_H #define _WASM_MEMORY_H #include "bh_common.h" #include "../include/wasm_export.h" #include "../interpreter/wasm_runtime.h" #include "../common/wasm_shared_memory.h" ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_memory.c
null
null
null
null
null
null
C
2026-05-04T19:39:16.582453
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "wasm_runtime_common.h" #include "../interpreter/wasm_runtime.h" #include "../aot/aot_runtime.h" #include "mem_alloc.h" #include "wasm_memory.h" #if WASM_ENABLE_SHARED_MEMORY != 0 ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_loader_common.h
null
null
null
null
null
null
C
2026-05-04T19:39:16.731771
/* * Copyright (C) 2024 Amazon Inc. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _WASM_LOADER_COMMON_H #define _WASM_LOADER_COMMON_H #include "platform_common.h" #include "../interpreter/wasm.h" #ifdef __cplusplus extern "C" { #endif #if WASM_ENABLE_MEMORY64 != 0 /* ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_native.c
null
null
null
null
null
null
C
2026-05-04T19:39:16.861017
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "wasm_native.h" #include "wasm_runtime_common.h" #include "bh_log.h" #if WASM_ENABLE_INTERP != 0 #include "../interpreter/wasm_runtime.h" #endif #if WASM_ENABLE_AOT != 0 #include "....
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_shared_memory.h
null
null
null
null
null
null
C
2026-05-04T19:39:16.873811
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _WASM_SHARED_MEMORY_H #define _WASM_SHARED_MEMORY_H #include "bh_common.h" #include "../interpreter/wasm_runtime.h" #include "wasm_runtime_common.h" #ifdef __cplusplus extern "C" {...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_shared_memory.c
null
null
null
null
null
null
C
2026-05-04T19:39:16.878746
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "bh_log.h" #include "wasm_shared_memory.h" #if WASM_ENABLE_THREAD_MGR != 0 #include "../libraries/thread-mgr/thread_manager.h" #endif #if WASM_ENABLE_AOT != 0 #include "../aot/aot_r...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_native.h
null
null
null
null
null
null
C
2026-05-04T19:39:16.879341
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _WASM_NATIVE_H #define _WASM_NATIVE_H #include "bh_common.h" #include "../include/wasm_export.h" #include "../interpreter/wasm.h" #ifdef __cplusplus extern "C" { #endif typedef st...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_suspend_flags.h
null
null
null
null
null
null
C
2026-05-04T19:39:16.888743
/* * Copyright (C) 2023 Amazon Inc. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _WASM_SUSPEND_FLAGS_H #define _WASM_SUSPEND_FLAGS_H #include "bh_atomic.h" #ifdef __cplusplus extern "C" { #endif /* Need to terminate */ #define WASM_SUSPEND_FLAG_TERMINATE 0x1 /* Need ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/compilation/aot.c
null
null
null
null
null
null
C
2026-05-04T19:39:16.889445
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #include "aot.h" static char aot_error[128]; char * aot_get_last_error(void) { return aot_error[0] == '\0' ? "" : aot_error; } void aot_set_last_error_v(const char *format, ...) { ...
bytecodealliance/wasm-micro-runtime
https://github.com/bytecodealliance/wasm-micro-runtime
null
null
null
null
5,912
null
null
apache-2.0
null
null
null
null
null
null
null
core/iwasm/common/wasm_runtime_common.h
null
null
null
null
null
null
C
2026-05-04T19:39:16.947892
/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _WASM_COMMON_H #define _WASM_COMMON_H #include "bh_platform.h" #include "bh_common.h" #include "wasm_exec_env.h" #include "wasm_native.h" #include "../include/wasm_export.h" #includ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/config_keyword.c
null
null
null
null
null
null
C
2026-05-04T19:39:20.766489
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/bond.h
null
null
null
null
null
null
C
2026-05-04T19:39:20.767132
/* * Copyright (c) 2022 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/arp.h
null
null
null
null
null
null
C
2026-05-04T19:39:20.768919
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/client.h
null
null
null
null
null
null
C
2026-05-04T19:39:20.770395
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/config_keyword.h
null
null
null
null
null
null
C
2026-05-04T19:39:20.771530
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/config.h
null
null
null
null
null
null
C
2026-05-04T19:39:20.772941
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2024 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/bond.c
null
null
null
null
null
null
C
2026-05-04T19:39:20.774006
/* * Copyright (c) 2022-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/arp.c
null
null
null
null
null
null
C
2026-05-04T19:39:20.775111
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/config.c
null
null
null
null
null
null
C
2026-05-04T19:39:20.776262
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2024 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/client.c
null
null
null
null
null
null
C
2026-05-04T19:39:21.988249
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2024 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/eth.c
null
null
null
null
null
null
C
2026-05-04T19:39:23.030478
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/cpuload.c
null
null
null
null
null
null
C
2026-05-04T19:39:23.034206
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/csum.h
null
null
null
null
null
null
C
2026-05-04T19:39:23.139057
/* * Copyright (c) 2022-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/dpdk.c
null
null
null
null
null
null
C
2026-05-04T19:39:23.140241
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2024 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/ctl.h
null
null
null
null
null
null
C
2026-05-04T19:39:23.143938
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/dpdk.h
null
null
null
null
null
null
C
2026-05-04T19:39:23.145347
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2024 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/cpuload.h
null
null
null
null
null
null
C
2026-05-04T19:39:23.147935
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/ctl.c
null
null
null
null
null
null
C
2026-05-04T19:39:23.231377
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/csum.c
null
null
null
null
null
null
C
2026-05-04T19:39:23.234556
/* * Copyright (c) 2022 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/eth.h
null
null
null
null
null
null
C
2026-05-04T19:39:23.401440
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/http_parse.h
null
null
null
null
null
null
C
2026-05-04T19:39:24.267076
/* * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 require...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/flow.c
null
null
null
null
null
null
C
2026-05-04T19:39:24.268187
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/icmp.h
null
null
null
null
null
null
C
2026-05-04T19:39:24.273069
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/icmp.c
null
null
null
null
null
null
C
2026-05-04T19:39:24.274197
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/http_parse.c
null
null
null
null
null
null
C
2026-05-04T19:39:24.278132
/* * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 require...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/flow.h
null
null
null
null
null
null
C
2026-05-04T19:39:24.281352
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/http.h
null
null
null
null
null
null
C
2026-05-04T19:39:24.366930
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/http.c
null
null
null
null
null
null
C
2026-05-04T19:39:24.369629
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/icmp6.c
null
null
null
null
null
null
C
2026-05-04T19:39:24.531553
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/icmp6.h
null
null
null
null
null
null
C
2026-05-04T19:39:24.535231
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/ip_list.h
null
null
null
null
null
null
C
2026-05-04T19:39:25.192356
/* * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 require...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/kni.h
null
null
null
null
null
null
C
2026-05-04T19:39:25.193561
/* * Copyright (c) 2022-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2024 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/ip.c
null
null
null
null
null
null
C
2026-05-04T19:39:25.233557
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/kni.c
null
null
null
null
null
null
C
2026-05-04T19:39:25.234627
/* * Copyright (c) 2022-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2024 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/ip_list.c
null
null
null
null
null
null
C
2026-05-04T19:39:25.304808
/* * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 require...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/lldp.c
null
null
null
null
null
null
C
2026-05-04T19:39:25.346588
/* * Copyright (c) 2022 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/ip.h
null
null
null
null
null
null
C
2026-05-04T19:39:25.347881
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/ip_range.h
null
null
null
null
null
null
C
2026-05-04T19:39:25.370141
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/lldp.h
null
null
null
null
null
null
C
2026-05-04T19:39:25.459697
/* * Copyright (c) 2022 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/loop.h
null
null
null
null
null
null
C
2026-05-04T19:39:25.461175
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
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:39:25.918731
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/mbuf_cache.c
null
null
null
null
null
null
C
2026-05-04T19:39:25.919355
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/mbuf.c
null
null
null
null
null
null
C
2026-05-04T19:39:25.948664
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/neigh.c
null
null
null
null
null
null
C
2026-05-04T19:39:25.949244
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/mbuf.h
null
null
null
null
null
null
C
2026-05-04T19:39:26.006301
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/mbuf_cache.h
null
null
null
null
null
null
C
2026-05-04T19:39:26.032606
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/neigh.h
null
null
null
null
null
null
C
2026-05-04T19:39:26.033536
/* * Copyright (c) 2021 Baidu.com, Inc. All Rights Reserved. * * 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 ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/port.c
null
null
null
null
null
null
C
2026-05-04T19:39:26.077182
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2024 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/net_stats.c
null
null
null
null
null
null
C
2026-05-04T19:39:26.078167
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
baidu/dperf
https://github.com/baidu/dperf
null
null
null
null
5,564
null
null
apache-2.0
null
null
null
null
null
null
null
src/net_stats.h
null
null
null
null
null
null
C
2026-05-04T19:39:26.145562
/* * Copyright (c) 2021-2022 Baidu.com, Inc. All Rights Reserved. * Copyright (c) 2022-2023 Jianzhang Peng. All Rights Reserved. * * 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 * * ...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
fuzzing/nxt_http_h1p_fuzz.c
null
null
null
null
null
null
C
2026-05-04T19:39:34.016007
/* * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> /* DO NOT TRY THIS AT HOME! */ #include "nxt_h1proto.c" #define KMININPUTLENGTH 2 #define KMAXINPUTLENGTH 1024 extern int LLVMFuzzerInitialize(int *argc, char ***argv); extern int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); extern char **e...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
auto/echo/echo.c
null
null
null
null
null
null
C
2026-05-04T19:39:34.051875
/* * Copyright (C) Igor Sysoev * Copyright (C) NGINX, Inc. * * A portable "echo" program that supports "-n" option: * echo Hello world! * echo "Hello world!" * echo -n Hello world! * echo * * It also passes "\c" characters as is. */ #include <stdio.h> #include <string.h> int main(int arg...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
fuzzing/nxt_basic_fuzz.c
null
null
null
null
null
null
C
2026-05-04T19:39:34.053959
/* * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> #include <nxt_sha1.h> #include <nxt_websocket.h> #include <nxt_websocket_header.h> /* DO NOT TRY THIS AT HOME! */ #include <nxt_websocket_accept.c> #define KMININPUTLENGTH 4 #define KMAXINPUTLENGTH 128 extern int LLVMFuzzerInitialize(int *argc, char ***arg...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
fuzzing/nxt_http_controller_fuzz.c
null
null
null
null
null
null
C
2026-05-04T19:39:34.055647
/* * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> /* DO NOT TRY THIS AT HOME! */ #include "nxt_controller.c" #define KMININPUTLENGTH 2 #define KMAXINPUTLENGTH 1024 extern int LLVMFuzzerInitialize(int *argc, char ***argv); extern int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); extern char ...
nginx/unit
https://github.com/nginx/unit
null
null
null
null
5,563
null
null
apache-2.0
null
null
null
null
null
null
null
go/nxt_cgo_lib.c
null
null
null
null
null
null
C
2026-05-04T19:39:34.078751
/* * Copyright (C) Max Romanov * Copyright (C) NGINX, Inc. */ #include "_cgo_export.h" #include <nxt_unit.h> #include <nxt_unit_request.h> static ssize_t nxt_cgo_port_send(nxt_unit_ctx_t *ctx, nxt_unit_port_t *port, const void *buf, size_t buf_size, const void *oob, size_t oob_size); static ssize_t nxt_cgo_...