blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
721
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
5
91
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
321 values
visit_date
timestamp[ns]date
2016-08-12 09:31:09
2023-09-06 10:45:07
revision_date
timestamp[ns]date
2010-09-28 14:01:40
2023-09-06 06:22:19
committer_date
timestamp[ns]date
2010-09-28 14:01:40
2023-09-06 06:22:19
github_id
int64
426
681M
star_events_count
int64
101
243k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[ns]date
2012-06-28 18:51:49
2023-09-14 21:59:16
gha_created_at
timestamp[ns]date
2008-02-11 22:55:26
2023-08-10 11:14:58
gha_language
stringclasses
147 values
src_encoding
stringclasses
26 values
language
stringclasses
2 values
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
6
10.2M
extension
stringclasses
115 values
filename
stringlengths
3
113
content
stringlengths
6
10.2M
57bc97c0507f107cb9a8d4d91109c2f62abab047
bdc27c22522a99b5bff2ec4cfa95fadcba65747d
/thirdparty/ffs/ffs/ffs/tests/test_funcs.h
65075c3af9175b6de0b77ec5a834b276a97abb37
[ "Apache-2.0" ]
permissive
ornladios/ADIOS2
a34e257b28adb26e6563b800502266ebb0c9088c
c8b7b66ed21b03bfb773bd972d5aeaaf10231e67
refs/heads/master
2023-08-31T18:11:22.186415
2023-08-29T20:45:03
2023-08-29T20:45:03
75,750,830
243
140
Apache-2.0
2023-09-14T11:15:00
2016-12-06T16:39:55
C++
UTF-8
C
false
false
9,320
h
test_funcs.h
#ifdef _MSC_VER #define strdup(s) _strdup(s) #define open(x,y,z) _open(x,y,z) #define read(x,y,z) _read(x,y,z) #define write(x,y,z) _write(x,y,z) #define close(x) _close(x) #define unlink(x) _unlink(x) #include <io.h> #endif typedef struct _newer_rec { int ganzzahl; double gleitkommazahl; char zeichen; } ne...
1e6aeb85a60d8426b20733988773cd7c5fb67a14
b6ed57db11d13e986e01d4dcc6b7fb5f1713ea00
/examples/c/sharedlib.c
b4db14154bdc10f45c10b1aec960167e454a81e3
[ "MIT" ]
permissive
Kray-G/kinx
c60fd22a51a1d83aa8510558073f0b9a52282e58
5f80f6e9f53c3bde8bf1532eadc99128531d09e4
refs/heads/main
2022-12-13T21:20:22.609327
2022-12-06T02:09:06
2022-12-06T02:09:06
224,545,404
254
18
MIT
2022-01-05T12:20:29
2019-11-28T01:20:27
C
UTF-8
C
false
false
1,355
c
sharedlib.c
#include <libkinx.h> /* cl -LD -I include examples/c/sharedlib.c kx.lib gcc -fPIC -shared -o sharedlib.so -I include examples/c/sharedlib.c -ldl -L. -lkx */ /* How to use from Kinx script: var lib = Clib.loadSharedLibrary("sharedlib"); var r = lib.call("print_arguments", 1, 2.0, "This is ...
b7448f156d27f836eff8dd4100d9da72e0a97162
e65a4dbfbfb0e54e59787ba7741efee12f7687f3
/games/gtkballs/files/patch-src__game.c
d1ff9d8d2b721cc824c58c65b7602a696e7564f2
[ "BSD-2-Clause" ]
permissive
freebsd/freebsd-ports
86f2e89d43913412c4f6b2be3e255bc0945eac12
605a2983f245ac63f5420e023e7dce56898ad801
refs/heads/main
2023-08-30T21:46:28.720924
2023-08-30T19:33:44
2023-08-30T19:33:44
1,803,961
916
918
NOASSERTION
2023-09-08T04:06:26
2011-05-26T11:15:35
null
UTF-8
C
false
false
2,625
c
patch-src__game.c
--- src/game.c.orig 2004-10-06 11:06:46 UTC +++ src/game.c @@ -406,7 +406,8 @@ gint game_destroy_lines(gboolean count_s for(i = 1; i < rules_get_width() - x && board_get_at_xy(x + i, y) == board_get_at_xy(x, y); - i++); + i++) + ; ...
7493a0dfe88618e226ff5aa74197f91316e6f786
167c6226bc77c5daaedab007dfdad4377f588ef4
/cpp/ql/src/experimental/Security/CWE/CWE-401/MemoryLeakOnFailedCallToRealloc.c
dc5565f34713ee3bc6c1e140be6261abde6ec204
[ "MIT" ]
permissive
github/codeql
1eebb449a34f774db9e881b52cb8f7a1b1a53612
d109637e2d7ab3b819812eb960c05cb31d9d2168
refs/heads/main
2023-08-20T11:32:39.162059
2023-08-18T14:33:32
2023-08-18T14:33:32
143,040,428
5,987
1,363
MIT
2023-09-14T19:36:50
2018-07-31T16:35:51
CodeQL
UTF-8
C
false
false
390
c
MemoryLeakOnFailedCallToRealloc.c
// BAD: on unsuccessful call to realloc, we will lose a pointer to a valid memory block if (currentSize < newSize) { buffer = (unsigned char *)realloc(buffer, newSize); } // GOOD: this way we will exclude possible memory leak unsigned char * tmp; if (currentSize < newSize) { tmp = (unsigned char *)realloc(buffer,...
be99b3b2dd293b09616601e901804fea47f4cfb4
7eaf54a78c9e2117247cb2ab6d3a0c20719ba700
/SOFTWARE/A64-TERES/u-boot_new/board/BuR/tseries/board.c
c0178e75cfcb2796e71158e1f4b95d93279b45da
[ "LicenseRef-scancode-free-unknown", "Apache-2.0", "GPL-2.0-or-later" ]
permissive
OLIMEX/DIY-LAPTOP
ae82f4ee79c641d9aee444db9a75f3f6709afa92
a3fafd1309135650bab27f5eafc0c32bc3ca74ee
refs/heads/rel3
2023-08-04T01:54:19.483792
2023-04-03T07:18:12
2023-04-03T07:18:12
80,094,055
507
92
Apache-2.0
2023-04-03T07:05:59
2017-01-26T07:25:50
C
UTF-8
C
false
false
3,886
c
board.c
/* * board.c * * Board functions for B&R LEIT Board * * Copyright (C) 2013 Hannes Petermaier <oe5hpm@oevsv.at> * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com * * SPDX-License-Identifier: GPL-2.0+ * */ #include <common.h> #include <errno.h> #include <spl.h> #include <asm/arch/cpu...
2b84f394e9c4e8c7c6582b6d147a49070e10dfe4
03666e5f961946fc1a0ac67781ac1425562ef0d7
/src/tools/dev/clipeditor/Font.C
0cae32cc1f66b910578ac1c953d573c737a6e5b3
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
visit-dav/visit
e9f81b4d4b9b9930a0db9d5282cd1bcabf465e2e
601ae46e0bef2e18425b482a755d03490ade0493
refs/heads/develop
2023-09-06T08:19:38.397058
2023-09-05T21:29:32
2023-09-05T21:29:32
165,565,988
335
120
BSD-3-Clause
2023-09-14T00:53:37
2019-01-13T23:27:26
C
UTF-8
C
false
false
73,424
c
Font.C
// Copyright (c) Lawrence Livermore National Security, LLC and other VisIt // Project developers. See the top-level LICENSE file for dates and other // details. No copyright assignment is required to contribute to VisIt. // ************************************************************************* // // ...
1d406ad0c6a8bacb06a09c1a471041f62712ba4b
971b2cea2d1c3001aadc8ca1a48110b7db1ed5f2
/deps/abc/src/sat/satoko/solver.c
8f7dd87512a970b6b29dc075db4b8af8faa17c9a
[ "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer", "MIT", "MIT-Modern-Variant" ]
permissive
emsec/hal
70ad2921739967d914dd458984bd7d6d497d3b0a
e4fae37bec9168a61100eacfda37a1f291b4d0be
refs/heads/master
2023-09-02T20:27:32.909426
2023-09-01T13:03:24
2023-09-01T13:03:24
169,076,171
510
72
MIT
2023-09-01T13:03:26
2019-02-04T12:37:20
C++
UTF-8
C
false
false
27,070
c
solver.c
//===--- solver.c -----------------------------------------------------------=== // // satoko: Satisfiability solver // // This file is distributed under the BSD 2-Clause License. // See LICENSE for details. // //===------------------------------------------------------------------------=== #include...
2bf97c34904f7f295c97d376d97f00c22a6f4d2e
f62ddee2dcadcae0e90f969be513b04e16dabf58
/data/source/yaltools/yalmount/usage.c
87045a1c0e3208391163efc607cb4b73316f9073
[ "Apache-2.0" ]
permissive
libyal/libyal
30bccf56471dbf874292fe32d5d9173fd470df0e
124111953917f65782a66a80e96a502ce2331b09
refs/heads/main
2023-07-25T09:25:46.068071
2023-07-08T09:56:44
2023-07-08T09:56:44
23,780,738
196
30
Apache-2.0
2022-11-27T19:01:42
2014-09-08T05:57:58
C
UTF-8
C
false
false
571
c
usage.c
mount_handle_t *${mount_tool_name}_mount_handle = NULL; int ${mount_tool_name}_abort = 0; /* Prints usage information */ void usage_fprint( FILE *stream ) { if( stream == NULL ) { return; } fprintf( stream, "Use ${mount_tool_name} to mount ${mount_tool_source_description_long}\n\n" ); ...
53e36cdfc5e1de6cf01ea2595942bb29e64f5644
7eaf54a78c9e2117247cb2ab6d3a0c20719ba700
/SOFTWARE/A64-TERES/linux-a64/arch/arm/mach-imx/mach-cpuimx35.c
771362d1fbee712247242c3d7c5d9956b7f58e70
[ "LicenseRef-scancode-free-unknown", "Apache-2.0", "Linux-syscall-note", "GPL-2.0-only", "GPL-1.0-or-later" ]
permissive
OLIMEX/DIY-LAPTOP
ae82f4ee79c641d9aee444db9a75f3f6709afa92
a3fafd1309135650bab27f5eafc0c32bc3ca74ee
refs/heads/rel3
2023-08-04T01:54:19.483792
2023-04-03T07:18:12
2023-04-03T07:18:12
80,094,055
507
92
Apache-2.0
2023-04-03T07:05:59
2017-01-26T07:25:50
C
UTF-8
C
false
false
5,604
c
mach-cpuimx35.c
/* * Copyright (C) 2010 Eric Benard - eric@eukrea.com * Copyright (C) 2009 Sascha Hauer, Pengutronix * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or ...
bbfd582ca35f88081bd86b844738b8d0b8cfe4c1
1231e1bf4117cfaaa54bd4752cca1bdb71290cec
/ext/stub/vars.zep.h
f8473e514e36f18916f89625842d27deac48cc93
[ "MIT" ]
permissive
zephir-lang/zephir
ac53ec68e35d19860a4d80224d94f38a6a5e04b5
6773f19d9b272cafee96b9a30f9b152c28e982ea
refs/heads/development
2023-08-31T10:33:38.621586
2023-02-28T10:27:43
2023-02-28T10:27:43
11,478,636
291
47
MIT
2023-08-28T22:07:11
2013-07-17T14:49:27
PHP
UTF-8
C
false
true
4,412
h
vars.zep.h
extern zend_class_entry *stub_vars_ce; ZEPHIR_INIT_CLASS(Stub_Vars); PHP_METHOD(Stub_Vars, testParam); PHP_METHOD(Stub_Vars, testVarDump); PHP_METHOD(Stub_Vars, testVarDump2); PHP_METHOD(Stub_Vars, testVarExport); PHP_METHOD(Stub_Vars, test88Issue); PHP_METHOD(Stub_Vars, test88IssueParam2InitString); PHP_METHOD(Stub...
4c35fd854e8759bfea26d327c96209c8b834a10a
98ebf9cb3e47e54c9f5ca3a21574ae423d90081c
/sw/lib/include/neorv32_dma.h
39518c2ac39448643a53b054eeac48c511d1a35b
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
stnolting/neorv32
4a42ceae7a6bcbee4044ca50ab88f138025f1813
4cc0b8c296517e4b7c22296fe95253816a1dae55
refs/heads/main
2023-09-05T00:29:41.538253
2023-09-03T18:44:00
2023-09-03T18:44:00
274,442,284
1,224
210
BSD-3-Clause
2023-09-12T05:45:14
2020-06-23T15:29:41
VHDL
UTF-8
C
false
false
8,076
h
neorv32_dma.h
// ################################################################################################# // # << NEORV32: neorv32_dma.h - Direct Memory Access Controller (DMA) HW Driver >> # // # ********************************************************************************************* # // # BSD 3-Clause...
2abb8988682659d84dac2a64c49ee132dbbaca32
abe704eb3b53944cdd6505f922f58558e334c589
/components/knob/iot_knob.h
35d10845c9992432520bd00a485373fdff93ba25
[ "Apache-2.0" ]
permissive
espressif/esp-iot-solution
c25079eb26a8f54ddacd23689a7288533c721916
2227f0ca21ab37df9cf9d74182fa84c52dffc76f
refs/heads/master
2023-09-01T15:06:17.000154
2023-08-31T10:26:21
2023-08-31T10:26:21
99,690,601
1,612
758
Apache-2.0
2023-09-08T08:43:59
2017-08-08T12:32:16
C
UTF-8
C
false
false
2,751
h
iot_knob.h
/* * SPDX-FileCopyrightText: 2016-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ #pragma once #ifdef __cplusplus extern "C" { #endif typedef void (* knob_cb_t)(void *, void *); typedef void *knob_handle_t; /** * @brief Knob events * */ typedef enum { KNOB_LEFT = 0, ...
9990dfc02c3f0f4927c0dc023833577d7d21601c
7f6c235b0598353549959c18f69eefd20b766907
/src/appmake/tixx.c
ec6f78784a43fad2bd50adfbefd29cb0acea57a9
[ "ClArtistic" ]
permissive
z88dk/z88dk
46dfd4905f36d99333173cadd0a660839befc9f0
8b07f37cc43c5d9ffe69b563c80763491d8faff7
refs/heads/master
2023-09-04T19:29:49.254958
2023-09-03T20:51:24
2023-09-03T20:51:24
54,035,569
820
263
NOASSERTION
2023-09-05T11:09:04
2016-03-16T13:48:16
Assembly
UTF-8
C
false
false
7,840
c
tixx.c
/* ------------------------------------------------------------------------------- This version of bin2var has been adapted to work with the Z88DK's appmake tool. It has been fixed to be endian-independent by Dominic Morris / Stefano Bodrato ------------------------------------------------------------------------------...
deee142ab6ea8178a06c0b81042c64dd637be5fb
7eaf54a78c9e2117247cb2ab6d3a0c20719ba700
/SOFTWARE/A64-TERES/u-boot_new/common/exports.c
b97ca48307dcba1493d9426bde8e6f706d8fa1ed
[ "GPL-2.0-or-later", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-free-unknown", "Apache-2.0" ]
permissive
OLIMEX/DIY-LAPTOP
ae82f4ee79c641d9aee444db9a75f3f6709afa92
a3fafd1309135650bab27f5eafc0c32bc3ca74ee
refs/heads/rel3
2023-08-04T01:54:19.483792
2023-04-03T07:18:12
2023-04-03T07:18:12
80,094,055
507
92
Apache-2.0
2023-04-03T07:05:59
2017-01-26T07:25:50
C
UTF-8
C
false
false
1,000
c
exports.c
#include <common.h> #include <exports.h> #include <spi.h> DECLARE_GLOBAL_DATA_PTR; __attribute__((unused)) static void dummy(void) { } unsigned long get_version(void) { return XF_VERSION; } /* Reuse _exports.h with a little trickery to avoid bitrot */ #define EXPORT_FUNC(sym) gd->jt[XF_##sym] = (void *)sym; #if !...
6a9cec10d311834db43041a22fabdef12da2754f
e1cddfd754d952134e72dfd03522c5ea4fb6008e
/src/plugins/idpf/virtchnl2_lan_desc.h
31eff81fd811da9252243a101fa1a4af577b387f
[ "Apache-2.0" ]
permissive
FDio/vpp
0ad30fa1bec2975ffa6b66b45c9f4f32163123b6
f234b0d4626d7e686422cc9dfd25958584f4931e
refs/heads/master
2023-08-31T16:09:04.068646
2022-03-14T09:49:15
2023-08-31T09:50:00
96,556,718
1,048
630
Apache-2.0
2023-06-21T05:39:17
2017-07-07T16:29:40
C
UTF-8
C
false
false
21,824
h
virtchnl2_lan_desc.h
/* *------------------------------------------------------------------ * Copyright (c) 2023 Intel and/or its affiliates. * 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://w...
c1b5bc11c71e7ae05fbd2bd0345dc2939d4d2ec9
8a51a96f61699f0318315ccc89cef39f6866f2b5
/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004/utf8_and_sjis2004.c
ce81f60eed896fbe625e231baed7238e57136e7c
[ "PostgreSQL" ]
permissive
postgres/postgres
979febf2b41c00090d1256228f768f33e7ef3b6f
b5934bfd6071fed3a38cea0cfaa93afda63d9c0c
refs/heads/master
2023-08-31T00:10:01.373472
2023-08-30T23:07:48
2023-08-30T23:07:48
927,442
13,691
4,807
NOASSERTION
2023-09-09T13:59:15
2010-09-21T11:35:45
C
UTF-8
C
false
false
2,303
c
utf8_and_sjis2004.c
/*------------------------------------------------------------------------- * * SHIFT_JIS_2004 <--> UTF8 * * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION * src/backend/utils/mb/conversion_procs...
f5eb4e471d3cfb44249c63833895aa04d628c8c7
88ae8695987ada722184307301e221e1ba3cc2fa
/third_party/wayland-protocols/gtk/gdk/gdkdevicepadprivate.h
7a4371f9bd38eb04340848abd8aebea01289011e
[ "LGPL-2.0-only", "Apache-2.0", "LGPL-2.1-only", "LGPL-2.0-or-later", "MIT", "GPL-1.0-or-later", "BSD-3-Clause" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C
false
false
1,615
h
gdkdevicepadprivate.h
/* GDK - The GIMP Drawing Kit * Copyright (C) 2016 Red Hat * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version...
eb0e683b961147b3bd1466c4fdc6db878bca389e
2247493654c160426c1655281aa7f1dca2bc98dd
/src/kernel/TurbKineticEnergyKsgsDesignOrderSrcElemKernel.C
d55670285d9a12b29be906789004de6a3bd3191b
[ "BSD-2-Clause" ]
permissive
NaluCFD/Nalu
12999b0e3b76dbeab8fc184f38b65a13b1180bce
3286651e494894ac5948c41bf985f987d20c2370
refs/heads/master
2023-08-10T02:48:04.179859
2023-08-02T19:02:46
2023-08-02T19:02:46
69,712,764
138
185
NOASSERTION
2023-09-14T16:42:19
2016-10-01T01:25:20
C
UTF-8
C
false
false
7,064
c
TurbKineticEnergyKsgsDesignOrderSrcElemKernel.C
/*------------------------------------------------------------------------*/ /* Copyright 2014 Sandia Corporation. */ /* This software is released under the license detailed */ /* in the file, LICENSE, which is located in the top-level Nalu */ /* director...
50f6ba872a57e0b4a3e13e8caf5973ff813f7ae4
66df4873f0599b86e6baf66bb3a0c87329a71e61
/linked-lists/dummy-head-population/list.c
021cc8aabe79b2cbef0277cc70c1f56a0964ce8d
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
bartobri/data-structures-c
1aaaa0f9f36b173b2df6049d9677c70a0d2afbde
02d8e6b0aec7d38af5f5d5cab3383bdbc2288a61
refs/heads/master
2023-02-21T23:00:18.553695
2023-02-17T16:58:37
2023-02-17T16:58:37
82,822,619
102
48
MIT
2020-10-01T12:04:34
2017-02-22T15:48:12
C
UTF-8
C
false
false
242
c
list.c
#include <stdlib.h> #include "list.h" link new_link(int i) { link x = malloc(sizeof *x); x->item = i; x->next = NULL; return x; } // Insert b after a link insert_after(link a, link b) { b->next = a->next; a->next = b; return b; }
9d1ddf2e25e7596acb8f7195f0c7d4b36578bdd3
8838eb997879add5759b6dfb23f9a646464e53ca
/src/arch/arm/fpu/vfp/fpu.h
855308651ccc41943860712929d263d19f2e144e
[ "BSD-2-Clause" ]
permissive
embox/embox
d6aacec876978522f01cdc4b8de37a668c6f4c80
98e3c06e33f3fdac10a29c069c20775568e0a6d1
refs/heads/master
2023-09-04T03:02:20.165042
2023-09-02T14:55:31
2023-09-02T14:55:31
33,078,138
1,087
325
BSD-2-Clause
2023-09-14T16:58:34
2015-03-29T15:27:48
C
UTF-8
C
false
false
765
h
fpu.h
/** * @file vfp.h * @brief * @author Denis Deryugin <deryugin.denis@gmail.com> * @version * @date 28.03.2018 */ #ifndef ARM_FPU_H_ #define ARM_FPU_H_ #define ARM_FPU_VFP /* One word for coprocessor state and 64 words for VFP registers */ #define FPU_DATA_LEN (64 + 1) #ifndef __ASSEMBLER__ #include <string.h> ...
38aecdf50e94d4effa645beb078c8855d68f33c8
79d343002bb63a44f8ab0dbac0c9f4ec54078c3a
/lib/libc/include/any-linux-any/linux/pci.h
ae3822bd196686322ec325e442e68e9f09d88bf6
[ "MIT" ]
permissive
ziglang/zig
4aa75d8d3bcc9e39bf61d265fd84b7f005623fc5
f4c9e19bc3213c2bc7e03d7b06d7129882f39f6c
refs/heads/master
2023-08-31T13:16:45.980913
2023-08-31T05:50:29
2023-08-31T05:50:29
40,276,274
25,560
2,399
MIT
2023-09-14T21:09:50
2015-08-06T00:51:28
Zig
UTF-8
C
false
false
1,379
h
pci.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * pci.h * * PCI defines and function prototypes * Copyright 1994, Drew Eckhardt * Copyright 1997--1999 Martin Mares <mj@ucw.cz> * * For more information, please consult the following manuals (look at * http://www.pcisig.com/ for how to get them):...
f24734eb389cd5763f6e4a2e0b75ad452fcf1d14
9ceacf33fd96913cac7ef15492c126d96cae6911
/lib/libutil/pty.c
0f2c2c1c42e89e0400723a3469769524be6ab6b2
[]
no_license
openbsd/src
ab97ef834fd2d5a7f6729814665e9782b586c130
9e79f3a0ebd11a25b4bff61e900cb6de9e7795e9
refs/heads/master
2023-09-02T18:54:56.624627
2023-09-02T15:16:12
2023-09-02T15:16:12
66,966,208
3,394
1,235
null
2023-08-08T02:42:25
2016-08-30T18:18:25
C
UTF-8
C
false
false
3,716
c
pty.c
/* $OpenBSD: pty.c,v 1.22 2022/04/20 14:00:19 millert Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met:...
c12142d1f8f1512c57606187515ca23d516f9cbf
7d232f51e2330a4f537c50ede9c6bc023d656fd4
/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h
8678805365a2add2ba8cfa270525a864b04cafef
[ "BSD-3-Clause", "MPL-2.0", "Apache-2.0" ]
permissive
grpc/grpc
6975af3ba6f07a6fe965b875a0c09abf18999a52
e4d598ab64aa54f1da78c6ed6133b741742d11d4
refs/heads/master
2023-08-31T01:10:22.666618
2023-08-30T22:35:17
2023-08-30T22:35:17
27,729,880
42,330
13,022
Apache-2.0
2023-09-14T21:54:19
2014-12-08T18:58:53
C++
UTF-8
C
false
false
4,887
h
api_listener.upb.h
/* This file was generated by upbc (the upb compiler) from the input * file: * * envoy/config/listener/v3/api_listener.proto * * Do not edit -- your changes will be discarded when the file is * regenerated. */ #ifndef ENVOY_CONFIG_LISTENER_V3_API_LISTENER_PROTO_UPB_H_ #define ENVOY_CONFIG_LISTENER_V3_API_LIS...
daa17b40c7a3e5e215d3507c4bd2afa15acb1a74
a5bdda116d9e865dc4e6ddb92cf5b56d8467fe3c
/webview-sys/webview_mshtml.c
cae70a56de0585726f6e708b827462bdcce3e6b0
[ "MIT" ]
permissive
Boscop/web-view
26277653ba588530af4717e42f0e347f71636d6a
82d7cbce6228b1a964673cc0f22944ad808eab42
refs/heads/master
2023-07-10T20:16:44.918499
2023-05-15T13:59:06
2023-05-16T13:33:20
117,624,288
2,026
225
MIT
2023-05-16T13:33:22
2018-01-16T03:05:21
JavaScript
UTF-8
C
false
false
40,774
c
webview_mshtml.c
#include "webview.h" #define CINTERFACE #include <windows.h> #include <commctrl.h> #include <exdisp.h> #include <mshtmhst.h> #include <mshtml.h> #include <shobjidl.h> #include <stdio.h> #pragma comment(lib, "ole32.lib") #pragma comment(lib, "comctl32.lib") #pragma comment(lib, "oleaut32.lib") #pragma comment(lib, "...
06486cdddf4a7877376054f27b1e88215f7185b7
2d11442aa09b51e10c245ee2b64231aeb051744f
/platforms/minheadless/common/sqWindow-Null.c
3379f3b382f0979337de04e09338e85a4dc067d9
[ "MIT" ]
permissive
OpenSmalltalk/opensmalltalk-vm
622b01c10017a93fdff4f1ef2188c45342384c78
330d6779ad2ecbce1f07131f53d75cd168165f0b
refs/heads/Cog
2023-09-04T05:36:54.320281
2023-08-17T11:32:52
2023-08-31T12:26:44
59,481,716
556
153
NOASSERTION
2023-06-19T19:58:13
2016-05-23T12:40:27
C
UTF-8
C
false
false
4,905
c
sqWindow-Null.c
#include <stdlib.h> #include <time.h> #include "sq.h" #include "sqaio.h" #include "sqMemoryAccess.h" #include "sqWindow.h" #include "config.h" static sqInt currentDisplayWidth; static sqInt currentDisplayHeight; static sqInt currentDisplayDepth; static sqInt currentDisplayFullscreenFlag; static sqInt screenWidth = 19...
a571d1cc8d7781564b0cb81845ad406510cbe34a
7eaf54a78c9e2117247cb2ab6d3a0c20719ba700
/SOFTWARE/A64-TERES/u-boot_new/drivers/power/sunxi/axp_null.c
97d9f93a050ddbf50a9fb82432a6876273932977
[ "LicenseRef-scancode-free-unknown", "Apache-2.0", "GPL-2.0-or-later" ]
permissive
OLIMEX/DIY-LAPTOP
ae82f4ee79c641d9aee444db9a75f3f6709afa92
a3fafd1309135650bab27f5eafc0c32bc3ca74ee
refs/heads/rel3
2023-08-04T01:54:19.483792
2023-04-03T07:18:12
2023-04-03T07:18:12
80,094,055
507
92
Apache-2.0
2023-04-03T07:05:59
2017-01-26T07:25:50
C
GB18030
C
false
false
10,603
c
axp_null.c
/* * (C) Copyright 2007-2013 * Allwinner Technology Co., Ltd. <www.allwinnertech.com> * Jerry Wang <wangflord@allwinnertech.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Ge...
716842f027b8ddac87fbf4e31239d8708ad156c6
aa3befea459382dc5c01c925653d54f435b3fb0f
/libs/libc/stdio/lib_tempnam.c
7151905eb44928698956577a4dc30f10f5c32dcf
[ "MIT-open-group", "BSD-3-Clause", "HPND-sell-variant", "BSD-4-Clause-UC", "LicenseRef-scancode-warranty-disclaimer", "MIT-0", "LicenseRef-scancode-bsd-atmel", "LicenseRef-scancode-gary-s-brown", "LicenseRef-scancode-proprietary-license", "SunPro", "MIT", "LicenseRef-scancode-public-domain-disc...
permissive
apache/nuttx
14519a7bff4a87935d94fb8fb2b19edb501c7cec
606b6d9310fb25c7d92c6f95bf61737e3c79fa0f
refs/heads/master
2023-08-25T06:55:45.822534
2023-08-23T16:03:31
2023-08-24T21:25:47
228,103,273
407
241
Apache-2.0
2023-09-14T18:26:05
2019-12-14T23:27:55
C
UTF-8
C
false
false
3,500
c
lib_tempnam.c
/**************************************************************************** * libs/libc/stdio/lib_tempnam.c * * 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 own...
f02482fd5c2f46a1213eb0472472bb9b90cbbed0
8a5580a3a3305bc7edca07266e6f22790ed5b7c6
/external_packages/matlab/default_packages/matlab_bgl/private/matching_mex.c
aab00e85b35f9b500c0a19cdf108379d3093f024
[ "MIT" ]
permissive
ThomasYeoLab/CBIG
7550d22aefbda437f7d263ce34e15bb867b699c0
c773720ad340dcb1d566b0b8de68b6acdf2ca505
refs/heads/master
2023-07-06T08:20:16.900602
2023-06-28T07:39:37
2023-06-28T07:39:37
63,240,796
508
421
MIT
2023-03-09T18:42:08
2016-07-13T11:33:56
MATLAB
UTF-8
C
false
false
3,856
c
matching_mex.c
/* * David Gleich * Copyright, Stanford Unviersity, 2007 */ /** * @file matching_mex.c * Wrap a call to the libmbgl matching function. */ /* * 8 July 2007 * Initial version */ #include "mex.h" #if MX_API_VER < 0x07030000 typedef int mwIndex; typedef int mwSize; #endif /* MX_API_VER */ #include "matlab_b...
833bcf2545c0e47b0d202c002e77e73660b373ce
56df6683865fd9319b389afd6dd4a922299da593
/source/preprocessor/include/preprocessor/preprocessor_comparison.h
9f7565df2c5c2f793acda58b72fa7510f15fe2c1
[ "Python-2.0", "GPL-2.0-or-later", "MPL-1.1", "NCSA", "LicenseRef-scancode-proprietary-license", "GPL-1.0-or-later", "BSD-3-Clause", "MPL-2.0", "Ruby", "BSD-2-Clause", "MIT", "Apache-2.0" ]
permissive
metacall/core
4f36fe0b13924853aab6d0f053285b649398cc1d
419ffb573b17501c91662f0f161032bb19ea1ab3
refs/heads/develop
2023-08-23T10:19:30.898387
2023-08-10T18:39:08
2023-08-10T18:39:08
163,221,062
1,391
167
Apache-2.0
2023-09-13T23:49:43
2018-12-26T22:02:57
C
UTF-8
C
false
false
1,540
h
preprocessor_comparison.h
/* * Preprocessor Library by Parra Studios * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com> * * A generic header-only preprocessor metaprogramming library. * */ #ifndef PREPROCESSOR_COMPARISON_H #define PREPROCESSOR_COMPARISON_H 1 /* -- Headers -- */ #include <preproces...
19b0f5234e3b4804204b3719a27f8d4493e29a19
f7dc806f341ef5dbb0e11252a4693003a66853d5
/thirdparty/libktx/lib/basis_sgd.h
6c55909652934c6464be83a81e93476537841170
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-free-unknown", "MIT", "CC-BY-4.0", "OFL-1.1", "Bison-exception-2.2", "CC0-1.0", "LicenseRef-scancode-nvidia-2002", "LicenseRef-scancode-other-permissive", "GPL-3.0-only", "Unlicense", "BSL-1.0", "BSD-3-Clau...
permissive
godotengine/godot
8a2419750f4851d1426a8f3bcb52cac5c86f23c2
970be7afdc111ccc7459d7ef3560de70e6d08c80
refs/heads/master
2023-08-21T14:37:00.262883
2023-08-21T06:26:15
2023-08-21T06:26:15
15,634,981
68,852
18,388
MIT
2023-09-14T21:42:16
2014-01-04T16:05:36
C++
UTF-8
C
false
false
2,488
h
basis_sgd.h
/* -*- tab-width: 4; -*- */ /* vi: set sw=2 ts=4 expandtab textwidth=70: */ /* * Copyright 2019-2020 The Khronos Group Inc. * SPDX-License-Identifier: Apache-2.0 */ /** * @internal * @file basisu_sgd.h * @~English * * @brief Declare global data for Basis LZ supercompression with ETC1S. * * These functions a...
b057dbd62f166ea1ee251301595bea853da8ac8b
7f6c235b0598353549959c18f69eefd20b766907
/libsrc/target/x1/time/clock.c
160bb0dda65a107d9dcc0a9df76a80fe75de72f9
[ "ClArtistic" ]
permissive
z88dk/z88dk
46dfd4905f36d99333173cadd0a660839befc9f0
8b07f37cc43c5d9ffe69b563c80763491d8faff7
refs/heads/master
2023-09-04T19:29:49.254958
2023-09-03T20:51:24
2023-09-03T20:51:24
54,035,569
820
263
NOASSERTION
2023-09-05T11:09:04
2016-03-16T13:48:16
Assembly
UTF-8
C
false
false
658
c
clock.c
/* * clock() function * * Return the current time basically * Typically used to find amount of CPU time * used by a program. * * ANSI allows any time at start of program so * properly written programs should call this fn * twice and take the difference * * stefano, 11/2013 * * -------- * $Id: clock.c $ ...
01a18f3718e3bb99b4a5e035ae3d4ca3a23bc187
376e1818d427b5e4d32fa6dd6c7b71e9fd88afdb
/sysutils/spice-server/patches/patch-server_red-worker.c
124387507f3f52d3bf92f59374a06b9eac82e8d5
[]
no_license
NetBSD/pkgsrc
a0732c023519650ef821ab89c23ab6ab59e25bdb
d042034ec4896cc5b47ed6f2e5b8802d9bc5c556
refs/heads/trunk
2023-09-01T07:40:12.138283
2023-09-01T05:25:19
2023-09-01T05:25:19
88,439,572
321
138
null
2023-07-12T22:34:14
2017-04-16T20:04:15
null
UTF-8
C
false
false
904
c
patch-server_red-worker.c
$NetBSD: patch-server_red-worker.c,v 1.4 2021/04/06 23:43:40 khorben Exp $ Add NetBSD support. --- server/red-worker.c.orig 2020-02-27 11:26:12.000000000 +0000 +++ server/red-worker.c @@ -1119,6 +1119,9 @@ static void *red_worker_main(void *arg) { RedWorker *worker = arg; +#if defined(__APPLE__) + pthread_...
6f6e994c4ecc9f1cb7bfdbf0890c4ae6e8c134f0
79d343002bb63a44f8ab0dbac0c9f4ec54078c3a
/lib/libc/include/any-windows-any/synchapi.h
d9a94eda092a2416df73fd32846c4518928d9959
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain", "MIT" ]
permissive
ziglang/zig
4aa75d8d3bcc9e39bf61d265fd84b7f005623fc5
f4c9e19bc3213c2bc7e03d7b06d7129882f39f6c
refs/heads/master
2023-08-31T13:16:45.980913
2023-08-31T05:50:29
2023-08-31T05:50:29
40,276,274
25,560
2,399
MIT
2023-09-14T21:09:50
2015-08-06T00:51:28
Zig
UTF-8
C
false
false
8,575
h
synchapi.h
/** * This file is part of the mingw-w64 runtime package. * No warranty is given; refer to the file DISCLAIMER within this package. */ #ifndef _SYNCHAPI_H_ #define _SYNCHAPI_H_ #include <apiset.h> #include <apisetcconv.h> #include <minwindef.h> #include <minwinbase.h> #ifdef __cplusplus extern "C" { #endif #defin...
7814da27514da2013bfb03405a0b19ee0ef215ad
88ae8695987ada722184307301e221e1ba3cc2fa
/third_party/pdfium/public/fpdf_thumbnail.h
27b6d497198c003d3b9aab685abe653d0c3a2083
[ "BSD-3-Clause", "Apache-2.0", "LGPL-2.0-or-later", "MIT", "GPL-1.0-or-later" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C
false
false
1,932
h
fpdf_thumbnail.h
// Copyright 2019 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PUBLIC_FPDF_THUMBNAIL_H_ #define PUBLIC_FPDF_THUMBNAIL_H_ #include <stdint.h> // NOLINTNEXTLINE(build/include) #include "fpdfview.h" #ifdef __cplusplus extern "C" { #e...
96f571bec5361ac02b481bb13b73c8ce4c4307f4
fdbb74a95924e2677466614f6ab6e2bb13b2a95a
/third_party/sqlite3/func.c
c454ca11341feaecce374b90c1a33008c8a5e73f
[ "ISC", "MIT", "LicenseRef-scancode-public-domain" ]
permissive
jart/cosmopolitan
fb11b5658939023977060a7c6c71a74093d9cb44
0d748ad58e1063dd1f8560f18a0c75293b9415b7
refs/heads/master
2023-09-06T09:17:29.303607
2023-09-02T03:49:13
2023-09-02T03:50:18
272,457,606
11,887
435
ISC
2023-09-14T17:47:58
2020-06-15T14:16:13
C
UTF-8
C
false
false
75,801
c
func.c
/* ** 2002 February 23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ********************...
c8d6a0feb78e343dd6bfc6b5e0fdcd7755353dc9
c17e9dfd8c9bc4a34b2af9e5cf4d5b51171d6594
/src/utils.h
d254d91141ff6951d9182ee8271baec230903502
[ "MIT" ]
permissive
ecohealthalliance/fasterize
570db416c94f6259737ed7cbf4aad4bb0e6edc65
183f6179094cd077574d9bb9b26b7ba4794ed56a
refs/heads/main
2023-05-22T16:20:28.268271
2022-12-26T03:55:32
2022-12-26T03:55:32
84,496,110
175
21
NOASSERTION
2022-12-08T11:45:55
2017-03-09T22:50:54
C++
UTF-8
C
false
false
243
h
utils.h
#ifndef UTILS #define UTILS #include <RcppArmadillo.h> // [[Rcpp::plugins(cpp11)] // [[Rcpp::depends(RcppArmadillo)]] extern Rcpp::CharacterVector as_character(const Rcpp::RObject vec); extern Rcpp::S4 brick(const Rcpp::S4 &raster); #endif
3b1558b8785692333c75debfa9d0078ea2e476f7
5f86fc385c7dcfcb5b166cdea7c8b13057b8bb5f
/tools/oesign/main.c
97f9c51bca6a9ed083373b965007161c3a0b9a1a
[ "MIT" ]
permissive
openenclave/openenclave
54a38e12d9aa73357d9f438a07cd8c07ffe5e6df
cdeb95c1ec163117de409295333b6b2702013e08
refs/heads/master
2023-08-14T16:43:32.049533
2023-07-21T15:58:54
2023-07-21T15:58:54
101,804,230
800
372
MIT
2023-09-12T20:26:02
2017-08-29T20:31:38
C
UTF-8
C
false
false
16,952
c
main.c
// Copyright (c) Open Enclave SDK contributors. // Licensed under the MIT License. #include <getopt.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "oe_err.h" #if defined(WIN32) #define HAS_ENGINE_SUPPORT 0 #else #define HAS_ENGINE_SUPPORT 1 #endif int oedump(const char*); #ifdef OE_WITH_EXPER...
c4dccddd3d32bc8a092b7731386e8161e7e85edd
7eaf54a78c9e2117247cb2ab6d3a0c20719ba700
/SOFTWARE/A64-TERES/linux-a64/arch/mips/include/asm/lasat/lasat.h
9e32b4da99e249acc03bd64c91d0c73ddee07f24
[ "Linux-syscall-note", "GPL-2.0-only", "GPL-1.0-or-later", "LicenseRef-scancode-free-unknown", "Apache-2.0" ]
permissive
OLIMEX/DIY-LAPTOP
ae82f4ee79c641d9aee444db9a75f3f6709afa92
a3fafd1309135650bab27f5eafc0c32bc3ca74ee
refs/heads/rel3
2023-08-04T01:54:19.483792
2023-04-03T07:18:12
2023-04-03T07:18:12
80,094,055
507
92
Apache-2.0
2023-04-03T07:05:59
2017-01-26T07:25:50
C
UTF-8
C
false
false
7,520
h
lasat.h
/* * lasat.h * * Thomas Horsten <thh@lasat.com> * Copyright (C) 2000 LASAT Networks A/S. * * This program is free software; you can distribute it and/or modify it * under the terms of the GNU General Public License (Version 2) as * published by the Free Software Foundation. * * This program is distributed...
19c960fa985859358a087be1d282c1b08da6f693
78dc9f153549b281be709227bc9897931b06260d
/generation/WinSDK/RecompiledIdlHeaders/shared/atsmedia.h
933b4dc99a31550208e252f46326d6b1fc3334f5
[ "MIT" ]
permissive
microsoft/win32metadata
dff35b4fe904d556162cee5133294c4498f1a79a
5bf233f04d45f7a697e112e9639722551103eb07
refs/heads/main
2023-09-01T19:51:22.972899
2023-08-30T21:39:44
2023-08-30T21:39:44
270,838,404
1,240
107
NOASSERTION
2023-09-14T18:49:44
2020-06-08T21:52:10
C++
UTF-8
C
false
false
1,260
h
atsmedia.h
//------------------------------------------------------------------------------ // File: ATSMedia.h // // Desc: Broadcast Driver Architecture Media Definitions for ATSC // // Copyright (c) 1996 - 2001, Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------...
0a552de9c0d076f48ecd3550de275303d73f0b31
bed3ac926beac0f4e0293303d7b2a6031ee476c9
/Modules/ThirdParty/VNL/src/vxl/v3p/netlib/lapack/complex16/zgehrd.h
a3fcf3636420dca0c6cd9a0ca95f436b4cbae459
[ "IJG", "Zlib", "LicenseRef-scancode-proprietary-license", "SMLNJ", "BSD-3-Clause", "BSD-4.3TAHOE", "LicenseRef-scancode-free-unknown", "Spencer-86", "LicenseRef-scancode-llnl", "FSFUL", "Libpng", "libtiff", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-other-permissive", ...
permissive
InsightSoftwareConsortium/ITK
ed9dbbc5b8b3f7511f007c0fc0eebb3ad37b88eb
3eb8fd7cdfbc5ac2d0c2e5e776848a4cbab3d7e1
refs/heads/master
2023-08-31T17:21:47.754304
2023-08-31T00:58:51
2023-08-31T14:12:21
800,928
1,229
656
Apache-2.0
2023-09-14T17:54:00
2010-07-27T15:48:04
C++
UTF-8
C
false
false
296
h
zgehrd.h
extern int v3p_netlib_zgehrd_( v3p_netlib_integer *n, v3p_netlib_integer *ilo, v3p_netlib_integer *ihi, v3p_netlib_doublecomplex *a, v3p_netlib_integer *lda, v3p_netlib_doublecomplex *tau, v3p_netlib_doublecomplex *work, v3p_netlib_integer *lwork, v3p_netlib_integer *info );
28a247f92a94f461c1695f9f3185fab5304db547
28d0f8c01599f8f6c711bdde0b59f9c2cd221203
/usr.sbin/ldpd/notifications.h
d690a7cf1a438c6537abc764e8c046937619bd56
[]
no_license
NetBSD/src
1a9cbc22ed778be638b37869ed4fb5c8dd616166
23ee83f7c0aea0777bd89d8ebd7f0cde9880d13c
refs/heads/trunk
2023-08-31T13:24:58.105962
2023-08-27T15:50:47
2023-08-27T15:50:47
88,439,547
656
348
null
2023-07-20T20:07:24
2017-04-16T20:03:43
null
UTF-8
C
false
false
3,673
h
notifications.h
/* $NetBSD: notifications.h,v 1.3 2013/07/11 05:45:23 kefren Exp $ */ /*- * Copyright (c) 2010 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Mihai Chelaru <kefren@NetBSD.org> * * Redistribution and use in source and binary for...
587dcf3f78bab0488e58994279fc1874d2a7c8b9
d61b532db0d3e08818338cfaac530a1ced1ffe3b
/mach/mips/as/mach3.c
d3cb812c5a3e87900674b99dca1e4fc270a7edea
[ "LicenseRef-scancode-other-permissive" ]
permissive
davidgiven/ack
61049c7a8e95ff61a77b1edd3c22bb290720e276
db5a32c68c4a60ca26a3927a799ea662b5b2b0e5
refs/heads/default
2023-08-29T07:33:12.771205
2023-07-08T20:17:27
2023-07-08T20:17:27
37,686,316
376
74
NOASSERTION
2023-07-08T20:17:28
2015-06-18T21:33:42
C
UTF-8
C
false
false
2,868
c
mach3.c
/* Integer registers */ 0, GPR, 0, "r0", 0, GPR, 0, "zero", 0, GPR, 1, "r1", 0, GPR, 1, "at", 0, GPR, 2, "r2", 0, GPR, 3, "r3", 0, GPR, 4, "r4", 0, GPR, 5, "r5...
a4fb0816b99eca5e309259493b21c37fb1451a8e
ffdc77394c5b5532b243cf3c33bd584cbdc65cb7
/third_party/securec/src/strcat_s.c
6bf1379b40189f6d694237cfbff5181b628aff40
[ "Apache-2.0", "LicenseRef-scancode-proprietary-license", "MPL-1.0", "OpenSSL", "LGPL-3.0-only", "LicenseRef-scancode-warranty-disclaimer", "BSD-3-Clause-Open-MPI", "MIT", "MPL-2.0-no-copyleft-exception", "NTP", "BSD-3-Clause", "GPL-1.0-or-later", "0BSD", "MPL-2.0", "LicenseRef-scancode-f...
permissive
mindspore-ai/mindspore
ca7d5bb51a3451c2705ff2e583a740589d80393b
54acb15d435533c815ee1bd9f6dc0b56b4d4cf83
refs/heads/master
2023-07-29T09:17:11.051569
2023-07-17T13:14:15
2023-07-17T13:14:15
239,714,835
4,178
768
Apache-2.0
2023-07-26T22:31:11
2020-02-11T08:43:48
C++
UTF-8
C
false
false
3,980
c
strcat_s.c
/** * Copyright 2020 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
715cbc9d602b26b85f8c94d7e1a20e18a8d74ab7
fbdc48c28e54fb33ae4842ef95ff63893902c99a
/src/omv/boards/arduino_nano_33_ble_sense/omv_boardconfig.h
8514f3a63fb2512f2e50a8ccc118d908aa731a8e
[ "MIT" ]
permissive
openmv/openmv
44d4b79fc8693950a2e330e5e0fd95b5c36e230f
8a90e070a88b7fc14c87a00351b9c4a213278419
refs/heads/master
2023-08-30T20:59:57.227603
2023-08-23T16:50:55
2023-08-23T16:50:55
14,360,940
2,150
1,226
MIT
2023-09-14T07:18:15
2013-11-13T10:23:44
C
UTF-8
C
false
false
5,395
h
omv_boardconfig.h
/* * This file is part of the OpenMV project. * * Copyright (c) 2013-2021 Ibrahim Abdelkader <iabdalkader@openmv.io> * Copyright (c) 2013-2021 Kwabena W. Agyeman <kwagyeman@openmv.io> * * This work is licensed under the MIT license, see the file LICENSE for details. * * Board configuration and pin definitions. ...
6c89b3e44ab27a0d274d40c5bae82e2ffa04bd02
676acab8ff535019faff7da3afb8eecc3fa127f5
/src/driver/range_finder/lidar.c
0df330ba3c316ec7ad34a6d82e9785b010f712b2
[ "Apache-2.0" ]
permissive
Firmament-Autopilot/FMT-Firmware
f8c324577245bd7e91af436954b4ce9421acbb41
0212fe89820376bfbedaded519552f6b011a7b8a
refs/heads/master
2023-09-01T11:37:46.194145
2023-08-29T06:33:10
2023-08-29T06:33:10
402,557,689
351
143
Apache-2.0
2023-09-12T05:28:39
2021-09-02T20:42:56
C
UTF-8
C
false
false
3,725
c
lidar.c
/****************************************************************************** * Copyright 2020 The Firmament Authors. 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 ...
3f6111998c89a2a7e8fc242f2c8c2bf694edfcc2
c9bc99866cfab223c777cfb741083be3e9439d81
/product/rdv1/scp_ramfw/config_system_pll.c
9edea2601943544ebdde7d26bbb9cf867daa3735
[ "BSD-3-Clause" ]
permissive
ARM-software/SCP-firmware
4738ca86ce42d82588ddafc2226a1f353ff2c797
f6bcca436768359ffeadd84d65e8ea0c3efc7ef1
refs/heads/master
2023-09-01T16:13:36.962036
2023-08-17T13:00:20
2023-08-31T07:43:37
134,399,880
211
165
NOASSERTION
2023-09-13T14:27:10
2018-05-22T10:35:56
C
UTF-8
C
false
false
3,208
c
config_system_pll.c
/* * Arm SCP/MCP Software * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include "clock_soc.h" #include "scp_pik.h" #include "scp_soc_mmap.h" #include <mod_system_pll.h> #include <fwk_element.h> #include <fwk_id.h> #include <fwk_macros...
0189cbfc9b0ec74e8034eb5f6bf7221efdfac7d8
d79db96554e506a7be2b61bd9df178a98ac7ccf4
/src/libressl-2.4.1/crypto/bn/bn_recp.c
412474dea989071928f30308718112a0eecc4b28
[ "FSFAP", "OpenSSL", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
lsds/TaLoS
42edcb4ed4d76257ec3c217ba26a92f543a9ef63
9c959980de0c6d2a80582e3546747823ea3eca69
refs/heads/master
2023-09-05T04:58:07.718709
2022-01-25T05:00:19
2022-01-25T05:00:19
85,239,830
113
23
Apache-2.0
2020-11-19T08:10:08
2017-03-16T20:42:42
C
UTF-8
C
false
false
6,937
c
bn_recp.c
/* $OpenBSD: bn_recp.c,v 1.12 2015/03/21 08:05:20 doug Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This li...
b22d88c6265123b5937cd09645ff19f3da78cce5
05819963250c2ae0ba59ffef48d7c99a5b6b7cfd
/target/sam9x60/component/sha.h
d8810a548ea31f1eb2b35b812fc6b773d3a5ffdd
[ "LicenseRef-scancode-bsd-atmel" ]
permissive
atmelcorp/atmel-software-package
cefa3213069995d453d3b47b8b3aa7a7aca683ac
e0428c7c8175a42a2460cff27bb0501db0bbe160
refs/heads/master
2023-04-13T16:34:56.181081
2023-04-06T17:30:10
2023-04-11T06:05:12
47,840,424
117
94
NOASSERTION
2022-10-20T03:07:15
2015-12-11T17:18:56
C
UTF-8
C
false
false
17,076
h
sha.h
/* ---------------------------------------------------------------------------- */ /* Microchip Microcontroller Software Support */ /* SAM Software Package License */ /* --------------------------------------------------------------------...
07f4099596b984ae5deb681d8930b97d4a6b3e5f
50dd46b8ece33f3cdd174284b15d1d51f89669d4
/third_party/tomcrypt/src/misc/crypt/crypt_argchk.c
d4e7229f9b37c7861e7472f64efad044e3621f78
[ "LicenseRef-scancode-generic-cla", "Apache-2.0" ]
permissive
google/google-ctf
f99da1ee07729bbccb869fff1cbaed6a80e43bcc
df02323eaf945d15e124801c74abaadca2749dc7
refs/heads/master
2023-08-31T14:30:27.548081
2023-08-29T13:04:20
2023-08-29T13:04:20
131,317,137
4,136
607
Apache-2.0
2023-08-30T22:17:02
2018-04-27T15:56:03
Go
UTF-8
C
false
false
701
c
crypt_argchk.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis * * LibTomCrypt is a library that provides various cryptographic * algorithms in a highly modular and flexible manner. * * The library is free for all purposes without any express * guarantee it works. */ #include "tomcrypt_private.h" /** @file cry...
424731ccac269d79c7a406af2688f8bd230ba285
bb6e080239557a3b09ee94219a3912c1b01f8432
/src/MacVim/qlstephen/main.c
b95b9ff08182c0ad93841454e1d8b48e1dced6c6
[ "Vim", "GPL-1.0-or-later", "GPL-2.0-only", "MIT" ]
permissive
macvim-dev/macvim
85beb1b9bd301dcc0858417856753ec6a4cf0c92
55620efb6e8693a64c0acb1e2d9e83630241eaa1
refs/heads/master
2023-08-31T22:06:25.091881
2023-08-23T22:31:43
2023-08-23T22:31:43
5,641,441
8,509
991
Vim
2023-09-12T04:57:49
2012-09-01T17:14:57
Vim Script
UTF-8
C
false
false
9,372
c
main.c
//============================================================================== // // DO NO MODIFY THE CONTENT OF THIS FILE // // This file contains the generic CFPlug-in code necessary for your generator // To complete your generator implement the function in GenerateThumbnailForURL/GeneratePreviewForURL.c // //=====...
8e1719268be908bd064afc41e7cd48f5b2910276
cfb156de35a7f3987f88d6b025c762921f5e9931
/libc/kernel/uapi/linux/rkisp1-config.h
7175c23fcacd3e9bbc58d6cce9faa350790fb8d5
[ "BSD-4-Clause-UC", "LicenseRef-scancode-warranty-disclaimer", "SMLNJ", "BSD-3-Clause", "LicenseRef-scancode-ibm-dhcp", "Martin-Birgmeier", "SunPro", "MIT", "BSD-4-Clause", "ISC", "Apache-2.0", "HPND", "BSD-2-Clause" ]
permissive
aosp-mirror/platform_bionic
6faa82304cb67f3347a9b04f2f0eb712444d764a
143f3cea320becbfc836309fade5dfa1074731d0
refs/heads/master
2023-07-08T07:44:02.618070
2023-06-26T23:35:08
2023-06-26T23:35:08
65,830
300
131
null
2018-11-05T20:53:52
2008-10-21T18:19:55
Objective-C
UTF-8
C
false
false
13,698
h
rkisp1-config.h
/**************************************************************************** **************************************************************************** *** *** This header was automatically generated from a Linux kernel header *** of the same name, to make information necessary for userspace to *** call i...
921beb7cf1f3b2469c50c5e25ea89ef6d7a04055
fdbb74a95924e2677466614f6ab6e2bb13b2a95a
/third_party/chibicc/test/generic_test.c
41532e8b9d000159c35e17793a48e34cc7fef57d
[ "MIT", "LicenseRef-scancode-free-unknown", "ISC" ]
permissive
jart/cosmopolitan
fb11b5658939023977060a7c6c71a74093d9cb44
0d748ad58e1063dd1f8560f18a0c75293b9415b7
refs/heads/master
2023-09-06T09:17:29.303607
2023-09-02T03:49:13
2023-09-02T03:50:18
272,457,606
11,887
435
ISC
2023-09-14T17:47:58
2020-06-15T14:16:13
C
UTF-8
C
false
false
441
c
generic_test.c
#include "third_party/chibicc/test/test.h" int main() { ASSERT(1, _Generic(100.0, double : 1, int * : 2, int : 3, float : 4)); ASSERT(2, _Generic((int *)0, double : 1, int * : 2, int : 3, float : 4)); ASSERT(2, _Generic((int[3]){}, double : 1, int * : 2, int : 3, float : 4)); ASSERT(3, _Generic(100, double : 1...
fec2f1594d136b96c78d3c309c80982befe129fb
e73547787354afd9b717ea57fe8dd0695d161821
/include/mapfs/kpa_41_shape.h
44f84e4505fdd6281a15fd676899bd18933d3c04
[]
no_license
pmret/papermario
8b514b19653cef8d6145e47499b3636b8c474a37
9774b26d93f1045dd2a67e502b6efc9599fb6c31
refs/heads/main
2023-08-31T07:09:48.951514
2023-08-21T18:07:08
2023-08-21T18:07:08
287,151,133
904
139
null
2023-09-14T02:44:23
2020-08-13T01:22:57
C
UTF-8
C
false
false
4,736
h
kpa_41_shape.h
#define MODEL_Root 0x7C #define MODEL_akari 0x7B #define MODEL_hi11 0x7A #define MODEL_hi10 0x79 #define MODEL_hi9 0x78 #define MODEL_hi8 0x77 #define MODEL_hi7 0x76 #define MODEL_hi6 0x75 #define MODEL_hi...
26b8fb4c5c1e8727b6624a2fea1e6c43e3a382ef
f367e4b66a1ee42e85830b31df88f63723c36a47
/lib/lwrb/docs/examples_src/example_minimal.c
c2333088f1e832afd6d33ba4ad1316bf3e1b7139
[ "MIT", "Apache-2.0" ]
permissive
fluent/fluent-bit
06873e441162b92941024e9a7e9e8fc934150bf7
1a41f49dc2f3ae31a780caa9ffd6137b1d703065
refs/heads/master
2023-09-05T13:44:55.347372
2023-09-05T10:14:33
2023-09-05T10:14:33
29,933,948
4,907
1,565
Apache-2.0
2023-09-14T10:17:02
2015-01-27T20:41:52
C
UTF-8
C
false
false
458
c
example_minimal.c
#include "lwrb/lwrb.h" /* Declare rb instance & raw data */ lwrb_t buff; uint8_t buff_data[8]; /* Application variables */ uint8_t data[2]; /* Application working data */ /* Application code ... */ lwrb_init(&buff, buff_data, sizeof(buff_data)); /* Initialize buffer */ /* Write 4 bytes of data */ lwrb_write(&bu...
ec7071d45ccd73d23d1fc9f95b7b084146457c7a
eecd5e4c50d8b78a769bcc2675250576bed34066
/src/dm/impls/forest/p4est/pforest.h
686d4ccb3a07d900bc817f0147d5d6abd2534f79
[ "BSD-2-Clause" ]
permissive
petsc/petsc
3b1a04fea71858e0292f9fd4d04ea11618c50969
9c5460f9064ca60dd71a234a1f6faf93e7a6b0c9
refs/heads/main
2023-08-17T20:51:16.507070
2023-08-17T16:08:06
2023-08-17T16:08:06
8,691,401
341
169
NOASSERTION
2023-03-29T11:02:58
2013-03-10T20:55:21
C
UTF-8
C
false
false
221,474
h
pforest.h
#include <petscds.h> #include <petsc/private/dmimpl.h> #include <petsc/private/dmforestimpl.h> #include <petsc/private/dmpleximpl.h> #include <petsc/private/dmlabelimpl.h> #include <petsc/private/viewerimpl.h> #include <../src/sys/classes/viewer/impls/vtk/vtkvimpl.h> #include "petsc_p4est_package.h" #if defined(PETSC_...
93e0a9e5d4d41cb9eeed585ad8f83cf6c088e2a2
fbbe424559f64e9a94116a07eaaa555a01b0a7bb
/pytorch/source/torch/lib/include/torch/csrc/cuda/override_macros.h
c697a06e449734a673c83b885bc3f857788798eb
[ "MIT" ]
permissive
ryfeus/lambda-packs
6544adb4dec19b8e71d75c24d8ed789b785b0369
cabf6e4f1970dc14302f87414f170de19944bac2
refs/heads/master
2022-12-07T16:18:52.475504
2022-11-29T13:35:35
2022-11-29T13:35:35
71,386,735
1,283
263
MIT
2022-11-26T05:02:14
2016-10-19T18:22:39
Python
UTF-8
C
false
false
1,871
h
override_macros.h
#include "undef_macros.h" #define THWStoragePtr THCStoragePtr #define THPStoragePtr THCPStoragePtr #define THWTensorPtr THCTensorPtr #define THPTensorPtr THCPTensorPtr #define THWStorage THCStorage #define THWStorage_(NAME) THCStorage_(NAME) #define THWTensor THCTensor #define THWTensor_(NAME) THCTensor_(NAME) #defi...
de90343e47d7843ade5fc5222d1da714b5ee5a69
3a3002e883bd57840fef26146a187d613957b457
/其他/json/include/json/autolink.h
c9881dbd96078291e4f806997db1c23f027ac402
[ "BSD-2-Clause", "MIT" ]
permissive
juhuaguai/duilib
184f5ce6c4d1aa2056d7c954e902e41553cf6fca
eba087f6563ee67d405d867f647f579da1bf5dca
refs/heads/master
2023-04-13T16:42:09.454573
2023-04-12T09:58:13
2023-04-12T09:58:13
70,299,505
118
73
MIT
2021-02-02T09:18:04
2016-10-08T03:03:16
C++
UTF-8
C
false
false
687
h
autolink.h
// Copyright 2007-2010 Baptiste Lepilleur // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_AUTOLINK_H_INCLUDED #define JSON_AUTOLINK_H_INCLUDED #include "config.h"...
0b6d8e189bc8cd548a2c8ff5b2a42963c3042fe6
fdbb74a95924e2677466614f6ab6e2bb13b2a95a
/third_party/python/Modules/posixmodule.h
5c547d2b907de18e44abd722e8401114788ba3bf
[ "ISC", "Python-2.0", "GPL-1.0-or-later", "LicenseRef-scancode-python-cwi", "LicenseRef-scancode-free-unknown", "LicenseRef-scancode-other-copyleft" ]
permissive
jart/cosmopolitan
fb11b5658939023977060a7c6c71a74093d9cb44
0d748ad58e1063dd1f8560f18a0c75293b9415b7
refs/heads/master
2023-09-06T09:17:29.303607
2023-09-02T03:49:13
2023-09-02T03:50:18
272,457,606
11,887
435
ISC
2023-09-14T17:47:58
2020-06-15T14:16:13
C
UTF-8
C
false
false
434
h
posixmodule.h
#ifndef Py_POSIXMODULE_H #define Py_POSIXMODULE_H #include "libc/calls/weirdtypes.h" #include "third_party/python/Include/object.h" COSMOPOLITAN_C_START_ #ifndef Py_LIMITED_API #ifndef MS_WINDOWS PyObject *_PyLong_FromUid(uid_t); PyObject *_PyLong_FromGid(gid_t); int _Py_Uid_Converter(PyObject *, void *); int _Py_Gid_...
7ed886c4c0b4161827857f4289b83d95799ffe93
f3eed0234b4d0ad2bbb2abd700cf1e2c7a0e8a1d
/AKWF-c/AKWF_0013/AKWF_1281.h
8dd9b2482531e4dca54c19482a3b9f0651ad8f21
[ "CC0-1.0" ]
permissive
KristofferKarlAxelEkstrand/AKWF-FREE
b2defa1a2d389d309be6dd2e9f968923daf80d1b
cf8171df36e9fec25416b5f568b72a6e2cb69194
refs/heads/master
2023-07-23T18:22:36.939705
2023-07-10T17:14:40
2023-07-10T17:14:40
145,817,187
359
59
CC0-1.0
2023-07-10T17:14:41
2018-08-23T07:26:56
null
UTF-8
C
false
false
4,672
h
AKWF_1281.h
/* Adventure Kid Waveforms (AKWF) converted for use with Teensy Audio Library * * Adventure Kid Waveforms(AKWF) Open waveforms library * https://www.adventurekid.se/akrt/waveforms/adventure-kid-waveforms/ * * This code is in the public domain, CC0 1.0 Universal (CC0 1.0) * https://creativecommons.org/publicdom...
00ac1e3e99f8c5a4af61a20d54e8ea64bae7f118
ac2f43c8e0d9649a7f063c59b3dffdfed9fd7ed7
/common/recipes-utils/tpm-factory-upd/files/Source/Common/MicroTss/Tpm_1_2/TPM_Marshal.h
f20fd2ebafb6902df603ddbffb97f65655854f7e
[ "BSD-2-Clause" ]
permissive
facebook/openbmc
bef10604ced226288600f55248b7f1be9945aea4
32777c66a8410d767eae15baabf71c61a0bef13c
refs/heads/helium
2023-08-17T03:13:54.729494
2023-08-16T23:24:18
2023-08-16T23:24:18
31,917,712
684
331
null
2023-07-25T21:19:08
2015-03-09T19:18:35
C
UTF-8
C
false
false
29,366
h
TPM_Marshal.h
/** * @brief Declares methods to marshal and unmarshal TPM1.2 structures and types. * @details This module provides marshalling and unmarshalling function for * structures and types needed at the moment. * @file TPM_Marshal.h * @copyright Copyright 2014 - 2018 Infineon Technologies AG ( www.infineon.com ) *...
b0e435bd4132b11d2c75ef01c9ef4d3a0cd62b91
51de1ebe7fa09fb262e015fb454829987ed5fc83
/iothub_service_client/src/iothub_devicemethod.c
60365528ed89420f163c8d1d61572dc3b3065826
[ "MIT" ]
permissive
Azure/azure-iot-sdk-c
54bf46938f5b8089ba06081cb4d7967fa3a8f777
1f3d95b4dae09927ae4bbe479e52d48acef1f93c
refs/heads/main
2023-08-31T03:36:13.694208
2023-08-30T23:56:13
2023-08-30T23:56:13
70,934,373
629
902
NOASSERTION
2023-09-06T17:41:38
2016-10-14T17:54:57
C
UTF-8
C
false
false
20,397
c
iothub_devicemethod.c
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. #include <stdlib.h> #include <ctype.h> #include "azure_c_shared_utility/gballoc.h" #include "azure_c_shared_utility/crt_abstractions.h" #include "azure_c_shared_utility...
1623833ddf446ba9c7edf10d30e7200d1d8cf6b1
e1d9c54e9925e30e388a255b53a93cccad0b94cb
/kubernetes/model/v1_node_condition.h
848626828fa913d8275f485b816c0bc59d7147f9
[ "Apache-2.0", "curl" ]
permissive
kubernetes-client/c
dd4fd8095485c083e0f40f2b48159b1609a6141b
5ac5ff25e9809a92a48111b1f77574b6d040b711
refs/heads/master
2023-08-13T10:51:03.702497
2023-08-07T19:18:32
2023-08-07T19:18:32
247,958,425
127
47
Apache-2.0
2023-09-07T20:07:00
2020-03-17T11:59:05
C
UTF-8
C
false
false
1,080
h
v1_node_condition.h
/* * v1_node_condition.h * * NodeCondition contains condition information for a node. */ #ifndef _v1_node_condition_H_ #define _v1_node_condition_H_ #include <string.h> #include "../external/cJSON.h" #include "../include/list.h" #include "../include/keyValuePair.h" #include "../include/binary.h" typedef struct v...
4aace28f2928d46ec2ab555f345d487217096ff7
4ed2d6d3646dbcc3676aed7ed6297cc827048876
/Core/printer.c
005f452b27bbf07455cd3ad60c8e0b2f58045558
[ "MIT" ]
permissive
LIJI32/SameBoy
6ece0d745887e66078ae71080eb52415fbb872fb
7542de74e750738d3405f496eca0c5fbc6108c5b
refs/heads/master
2023-08-29T05:10:29.296103
2023-08-19T14:05:02
2023-08-19T14:05:02
55,260,928
1,424
233
MIT
2023-09-04T18:53:12
2016-04-01T20:39:14
C
UTF-8
C
false
false
8,945
c
printer.c
#include "gb.h" #include <string.h> /* TODO: Emulation is VERY basic and assumes the ROM correctly uses the printer's interface. Incorrect usage is not correctly emulated, as it's not well documented, nor do I have my own GB Printer to figure it out myself. It also does not currently emula...
045fc07b26338a3e9773c0f6a0721cb599ab0b5b
3c6e1e35f38421273f92dd25055dccc6f632fd93
/app/include/rtc/rtcaccess.h
92f81f5c49c9d3ebd1191ad9b3a703af219e4d99
[ "MIT" ]
permissive
nodemcu/nodemcu-firmware
fd907ddf01bf17fdc55dd352d6987ee91d8b95e3
f25dc56d3c6213b8ac7ce46d1293466137746eae
refs/heads/release
2023-08-22T21:46:10.995686
2021-12-30T07:46:20
2021-12-30T07:46:20
26,917,568
8,077
3,888
MIT
2023-07-25T09:20:45
2014-11-20T15:06:45
C
UTF-8
C
false
false
1,401
h
rtcaccess.h
#ifndef RTC_ACCESS_H #define RTC_ACCESS_H #include <stdint.h> #define RTC_MMIO_BASE 0x60000700 #define RTC_USER_MEM_BASE 0x60001200 #define RTC_USER_MEM_NUM_DWORDS 128 #define RTC_TARGET_ADDR 0x04 #define RTC_COUNTER_ADDR 0x1c static inline uint32_t rtc_mem_read(uint32_t addr) { return ((uint32_t*)RTC_USER_MEM_BAS...
f14fad9401505ea555b9407510564827cbba507b
88ae8695987ada722184307301e221e1ba3cc2fa
/third_party/ffmpeg/libavcodec/dfpwmenc.c
5318b04a390deee40612c5aa2242c60c132d7630
[ "LGPL-2.1-only", "LGPL-3.0-only", "LGPL-2.0-or-later", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.1-or-later", "GPL-3.0-or-later", "LGPL-3.0-or-later", "IJG", "LicenseRef-scancode-other-permissive", "MIT", "GPL-2.0-or-later", "Apache-2.0", "GPL-3.0-only", "BSD-3-Clause" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C
false
false
3,563
c
dfpwmenc.c
/* * DFPWM encoder * Copyright (c) 2022 Jack Bruienne * Copyright (c) 2012, 2016 Ben "GreaseMonkey" Russell * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Found...
48b0b27147d59b3d4ebc8f04e73c764fa849367a
99bdb3251fecee538e0630f15f6574054dfc1468
/bsp/imx6sx/iMX6_Platform_SDK/sdk/common/usb_stack/Device/app/dfu/flash.h
a60b14b7f6e1420abfbb45dc17ccbe321987ecee
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0", "Zlib", "LicenseRef-scancode-proprietary-license", "MIT", "BSD-3-Clause", "X11", "BSD-4-Clause-UC" ]
permissive
RT-Thread/rt-thread
03a7c52c2aeb1b06a544143b0e803d72f47d1ece
3602f891211904a27dcbd51e5ba72fefce7326b2
refs/heads/master
2023-09-01T04:10:20.295801
2023-08-31T16:20:55
2023-08-31T16:20:55
7,408,108
9,599
5,805
Apache-2.0
2023-09-14T13:37:26
2013-01-02T14:49:21
C
UTF-8
C
false
false
1,650
h
flash.h
/******************************************************************************** * * Freescale Semiconductor Inc. * (c) Copyright 2004-2010 Freescale Semiconductor, Inc. * ALL RIGHTS RESERVED. * **************************************************************************//*! * * @file flash.h * * @author * * @vers...
3e74ab95f469ae373992d044a16eeae0e3849633
7eaf54a78c9e2117247cb2ab6d3a0c20719ba700
/SOFTWARE/A64-TERES/linux-a64/arch/mips/sibyte/common/cfe_console.c
1ad2da103fe9016f95207500d4c0b7def5c1fe61
[ "Linux-syscall-note", "GPL-2.0-only", "GPL-1.0-or-later", "LicenseRef-scancode-free-unknown", "Apache-2.0" ]
permissive
OLIMEX/DIY-LAPTOP
ae82f4ee79c641d9aee444db9a75f3f6709afa92
a3fafd1309135650bab27f5eafc0c32bc3ca74ee
refs/heads/rel3
2023-08-04T01:54:19.483792
2023-04-03T07:18:12
2023-04-03T07:18:12
80,094,055
507
92
Apache-2.0
2023-04-03T07:05:59
2017-01-26T07:25:50
C
UTF-8
C
false
false
1,737
c
cfe_console.c
#include <linux/init.h> #include <linux/errno.h> #include <linux/console.h> #include <asm/sibyte/board.h> #include <asm/fw/cfe/cfe_api.h> #include <asm/fw/cfe/cfe_error.h> extern int cfe_cons_handle; static void cfe_console_write(struct console *cons, const char *str, unsigned int count) { int i, last, wr...
5ef70fcbd0fc3edb8f1864f927f8a276b9ff1747
42ab733e143d02091d13424fb4df16379d5bba0d
/third_party/libpng/contrib/mips-msa/linux.c
c6cdf7a59bea54c6d2a2b34bac1280b8b3c5847e
[ "Libpng", "Apache-2.0", "CC0-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
google/filament
11cd37ac68790fcf8b33416b7d8d8870e48181f0
0aa0efe1599798d887fa6e33c412c09e81bea1bf
refs/heads/main
2023-08-29T17:58:22.496956
2023-08-28T17:27:38
2023-08-28T17:27:38
143,455,116
16,631
1,961
Apache-2.0
2023-09-14T16:23:39
2018-08-03T17:26:00
C++
UTF-8
C
false
false
1,484
c
linux.c
/* contrib/mips-msa/linux.c * * Copyright (c) 2020 Cosmin Truta * Copyright (c) 2016 Glenn Randers-Pehrson * Written by Mandar Sahastrabuddhe, 2016. * * This code is released under the libpng license. * For conditions of distribution and use, see the disclaimer * and license in png.h * * SEE contr...
793ba276b096ad690cab319fdfae3cd795a77ce8
d169de4c5c6b281984df35536430dcc931a957a9
/source/component/mal/driver/scsi_mal/vsf_scsi_mal.c
ebdbff68c82c48cfd0fcb6c154a86d0f5a17498b
[ "LGPL-2.1-only", "Apache-2.0" ]
permissive
vsfteam/vsf
2ba968ba2ef53b036668019c6c6746149a63c38a
522a52ff2ee4ed149b52789a5bd366f80c08c458
refs/heads/master
2023-08-27T07:32:08.339123
2023-08-26T17:46:07
2023-08-26T17:46:07
181,911,464
273
83
Apache-2.0
2023-08-29T03:08:36
2019-04-17T14:43:42
C
UTF-8
C
false
false
8,442
c
vsf_scsi_mal.c
/***************************************************************************** * Copyright(C)2009-2022 by VSF Team * * * * Licensed under the Apache License, Version 2.0 (the "License"); * ...
ef39663e6b324bf5518b710587b205adbcbe432e
5eff7a36d9a9917dce9111f0c3074375fe6f7656
/lib/mesa/src/freedreno/vulkan/tu_util.h
a93b83bd3e75ce23dabca8f75307c260b66bc988
[]
no_license
openbsd/xenocara
cb392d02ebba06f6ff7d826fd8a89aa3b8401779
a012b5de33ea0b977095d77316a521195b26cc6b
refs/heads/master
2023-08-25T12:16:58.862008
2023-08-12T16:16:25
2023-08-12T16:16:25
66,967,384
177
66
null
2023-07-22T18:12:37
2016-08-30T18:36:01
C
UTF-8
C
false
false
12,454
h
tu_util.h
/* * Copyright 2020 Valve Corporation * SPDX-License-Identifier: MIT * * Authors: * Jonathan Marek <jonathan@marek.ca> */ #ifndef TU_UTIL_H #define TU_UTIL_H #include "tu_common.h" #include "util/u_math.h" #include "util/format/u_format_pack.h" #include "util/format/u_format_zs.h" #include "compiler/shader_...
2563f03093b5ba6f0daea675051328abf5b525a7
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/chrome/browser/policy/value_provider/value_provider_util.h
1251b41c5aad3ae8950034a7f2175a74c2886441
[ "BSD-3-Clause" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C
false
false
564
h
value_provider_util.h
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_POLICY_VALUE_PROVIDER_VALUE_PROVIDER_UTIL_H_ #define CHROME_BROWSER_POLICY_VALUE_PROVIDER_VALUE_PROVIDER_UTIL_H_ #include "chrome/browser/profiles/profi...
79b5f22cb2460b7fec3f36792ca9f22572b7546c
7eaf54a78c9e2117247cb2ab6d3a0c20719ba700
/SOFTWARE/A64-TERES/linux-a64/drivers/iio/gyro/st_gyro_spi.c
b37fc9e077066b48e5e21a2a1c40ae7f0c781a17
[ "LicenseRef-scancode-free-unknown", "Apache-2.0", "Linux-syscall-note", "GPL-2.0-only", "GPL-1.0-or-later" ]
permissive
OLIMEX/DIY-LAPTOP
ae82f4ee79c641d9aee444db9a75f3f6709afa92
a3fafd1309135650bab27f5eafc0c32bc3ca74ee
refs/heads/rel3
2023-08-04T01:54:19.483792
2023-04-03T07:18:12
2023-04-03T07:18:12
80,094,055
507
92
Apache-2.0
2023-04-03T07:05:59
2017-01-26T07:25:50
C
UTF-8
C
false
false
1,773
c
st_gyro_spi.c
/* * STMicroelectronics gyroscopes driver * * Copyright 2012-2013 STMicroelectronics Inc. * * Denis Ciocca <denis.ciocca@st.com> * * Licensed under the GPL-2. */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/slab.h> #include <linux/spi/spi.h> #include <linux/iio/iio.h> #include <linux/ii...
4741e31761369a6b8a7c2c173966f6c0e9492bb9
f7bfe5b0e91285b5db7fbce3b0a6bbb9085dce99
/examples/SI47XX_KITS/IU4ALH_Antonino/examples/Xavier_V4_1_1_Mod_IU4ALH_ESP32_ili9341/TFT_Colors.h
974de1969c62cf67f119e18c216292b7e85b39c9
[ "MIT" ]
permissive
pu2clr/SI4735
f4f0e01b054c0a28c71bb980de6f1070be4f81f0
f5e702112dc47e0456563869d00c8e47a53808d2
refs/heads/master
2023-08-10T02:28:30.769337
2023-08-03T23:26:13
2023-08-03T23:26:13
215,525,713
485
160
MIT
2023-07-20T03:42:04
2019-10-16T10:55:29
HTML
UTF-8
C
false
false
2,565
h
TFT_Colors.h
// Default color definitions //#define TFT_BLACK 0x0000 /* 0, 0, 0 */ //#define TFT_NAVY 0x000F /* 0, 0, 128 */ //#define TFT_DARKGREEN 0x03E0 /* 0, 128, 0 */ //#define TFT_DARKCYAN 0x03EF /* 0, 128, 128 */ //#define TFT_MAROON 0x7800 /* 128, 0, 0...
1a46b2690c5bb75e46d724ee3792598f505c167e
f47cb02269307e83d86373d9ab4bfb8b46283d22
/src/protocols/rdp/client.h
943d39abb5c81ccfc4d1b1a1daee5cf5f2f6e442
[ "Apache-2.0" ]
permissive
apache/guacamole-server
7c8adf3f389f0539df353ef8f7ea6d44144ffb16
fe24e2d45ac0ac90588f64b43da6e0d518e59177
refs/heads/master
2023-09-04T02:42:34.907413
2023-08-30T22:57:11
2023-08-30T22:57:11
54,452,627
2,019
580
Apache-2.0
2023-09-13T00:15:57
2016-03-22T07:00:06
C
UTF-8
C
false
false
3,084
h
client.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 ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0e4df6886bccac4df51f5b95f532a8ff6e87ec30
d2253070a3a64b14dee5ca0b3d311919178e590c
/src/union_room.c
9160fc16ae41709452d98c5a62fdff07326959e5
[]
no_license
pret/pokeemerald
ce232eccdde78502f3c251d672b26af3e1d7e508
d67914e114c937c4c80ce128ddc5523d4dc2cd40
refs/heads/master
2023-08-31T11:23:13.877932
2023-08-27T23:40:59
2023-08-27T23:40:59
43,677,244
1,944
1,903
null
2023-09-12T22:48:06
2015-10-05T10:09:22
C
UTF-8
C
false
false
163,412
c
union_room.c
#include "global.h" #include "malloc.h" #include "battle.h" #include "berry_crush.h" #include "bg.h" #include "cable_club.h" #include "data.h" #include "decompress.h" #include "dodrio_berry_picking.h" #include "dynamic_placeholder_text_util.h" #include "easy_chat.h" #include "event_data.h" #include "event_object_lock.h...
a97524a8c0bc2ab634b898edf831d511ff7f640b
5ab69c8644a936a3d9dec1669a86c7369c911bf8
/arch/platform/zoul/dev/mp3-wtv020sd.h
294157ca84751bdeb57866e6cefb33339a53b02e
[ "BSD-3-Clause" ]
permissive
contiki-ng/contiki-ng
393d36f68b98f5ee3544ea32502cf662ffb2fe9f
31fcaadf7a0dc8ceea07f438cd69db73174879e6
refs/heads/develop
2023-09-01T20:10:30.000765
2023-09-01T14:37:12
2023-09-01T14:37:12
91,191,972
1,242
788
BSD-3-Clause
2023-09-14T19:08:35
2017-05-13T17:37:59
C
UTF-8
C
false
false
6,303
h
mp3-wtv020sd.h
/* * Copyright (c) 2015, Zolertia * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions...
5a152959bbddb7f96185ae66c73c4659b0f5b5dd
f3eed0234b4d0ad2bbb2abd700cf1e2c7a0e8a1d
/AKWF-c/AKWF_0007/AKWF_0604.h
3da160e050ad30864234291652aa73dcf4f4cd49
[ "CC0-1.0" ]
permissive
KristofferKarlAxelEkstrand/AKWF-FREE
b2defa1a2d389d309be6dd2e9f968923daf80d1b
cf8171df36e9fec25416b5f568b72a6e2cb69194
refs/heads/master
2023-07-23T18:22:36.939705
2023-07-10T17:14:40
2023-07-10T17:14:40
145,817,187
359
59
CC0-1.0
2023-07-10T17:14:41
2018-08-23T07:26:56
null
UTF-8
C
false
false
4,672
h
AKWF_0604.h
/* Adventure Kid Waveforms (AKWF) converted for use with Teensy Audio Library * * Adventure Kid Waveforms(AKWF) Open waveforms library * https://www.adventurekid.se/akrt/waveforms/adventure-kid-waveforms/ * * This code is in the public domain, CC0 1.0 Universal (CC0 1.0) * https://creativecommons.org/publicdom...
77dd60f58fa8b5e38ebc5ae6c5ec9baea0a5f5dc
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/third_party/libxml/src/testThreads.c
d1535944946840e3e949df9858c184df54144b3a
[ "BSD-3-Clause", "MIT", "GPL-1.0-or-later", "LGPL-2.0-or-later", "Apache-2.0" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C
false
false
5,144
c
testThreads.c
#include "libxml.h" #include <stdlib.h> #include <stdio.h> #if defined(LIBXML_THREAD_ENABLED) && defined(LIBXML_CATALOG_ENABLED) #include <libxml/globals.h> #include <libxml/threads.h> #include <libxml/parser.h> #include <libxml/catalog.h> #ifdef HAVE_PTHREAD_H #include <pthread.h> #elif defined(_WIN32) #include <win...
d1c64f0d4c9aa744e37dd5235ef7c492da9b0b43
e1cddfd754d952134e72dfd03522c5ea4fb6008e
/src/plugins/crypto_sw_scheduler/main.c
2b08cba6dbcd038d60ab383f579e0fcff0abc700
[ "Apache-2.0" ]
permissive
FDio/vpp
0ad30fa1bec2975ffa6b66b45c9f4f32163123b6
f234b0d4626d7e686422cc9dfd25958584f4931e
refs/heads/master
2023-08-31T16:09:04.068646
2022-03-14T09:49:15
2023-08-31T09:50:00
96,556,718
1,048
630
Apache-2.0
2023-06-21T05:39:17
2017-07-07T16:29:40
C
UTF-8
C
false
false
23,182
c
main.c
/* * Copyright (c) 2020 Intel and/or its affiliates. * 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 applicabl...
3607ed69ca44f1c4b6a0fd917196f0ad33f4785c
aa5c1a530f95d629e686ac9124caf1a49a9f23e9
/runtime/src/iree/hal/local/loaders/static_library_loader.h
63ed4c4bcdf7ed30a0ef60c7ac7a848de3a602a9
[ "Apache-2.0", "LLVM-exception", "LicenseRef-scancode-unknown-license-reference" ]
permissive
openxla/iree
eacf5b239559e1d3b40c38039ac4c26315b523f7
13ef677e556d0a1d154e45b052fe016256057f65
refs/heads/main
2023-09-06T01:19:49.598662
2023-09-04T07:01:30
2023-09-04T07:01:30
208,145,128
387
110
Apache-2.0
2023-09-14T20:48:00
2019-09-12T20:57:39
C++
UTF-8
C
false
false
1,789
h
static_library_loader.h
// Copyright 2021 The IREE Authors // // Licensed 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 #ifndef IREE_HAL_LOCAL_LOADERS_STATIC_LIBRARY_LOADER_H_ #define IREE_HAL_LOCAL_LOADERS_STATIC_LIB...
16323dcb2ca74e2635d1fe57a7294288525cdf21
6432ea7a083ff6ba21ea17af9ee47b9c371760f7
/stage0/stdlib/Lean/Elab/Deriving/DecEq.c
ee5ccf1643d67e773f8481d5baf280f2e417a65c
[ "Apache-2.0", "LLVM-exception", "NCSA", "LGPL-3.0-only", "LicenseRef-scancode-inner-net-2.0", "BSD-3-Clause", "LGPL-2.0-or-later", "Spencer-94", "LGPL-2.1-or-later", "HPND", "LicenseRef-scancode-pcre", "ISC", "LGPL-2.1-only", "LicenseRef-scancode-other-permissive", "SunPro", "CMU-Mach"...
permissive
leanprover/lean4
4bdf9790294964627eb9be79f5e8f6157780b4cc
f1f9dc0f2f531af3312398999d8b8303fa5f096b
refs/heads/master
2023-08-30T01:57:45.786981
2023-08-29T23:14:28
2023-08-29T23:14:28
129,571,436
2,827
311
Apache-2.0
2023-09-14T18:29:16
2018-04-15T02:49:20
Lean
UTF-8
C
false
false
378,101
c
DecEq.c
// Lean compiler output // Module: Lean.Elab.Deriving.DecEq // Imports: Init Lean.Meta.Transform Lean.Meta.Inductive Lean.Elab.Deriving.Basic Lean.Elab.Deriving.Util #include <lean/lean.h> #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" #pragma clang diagnostic ignored "-Wunused-label" #eli...
0b1d6be335028a5c59b48896dc364d1815316a1a
9874716bc2f2dea03b9163a575ce383855508731
/thcrap_tsa/src/th06_pngsplit.c
4edc44ebf649066868b5b70f3f51d19845759584
[ "Unlicense", "LicenseRef-scancode-public-domain" ]
permissive
thpatch/thcrap
d135f6ddb8f5c4fc8b560e69e1f644fb096203e6
dec6e6e4d3e505feb55353f78dc1d5d9e770b6ee
refs/heads/master
2023-07-20T04:13:29.900439
2023-07-17T14:26:04
2023-07-17T14:26:15
11,221,712
510
57
Unlicense
2023-09-11T18:10:08
2013-07-06T17:29:28
C++
UTF-8
C
false
false
6,160
c
th06_pngsplit.c
/** * Touhou Community Reliant Automatic Patcher * Team Shanghai Alice support plugin * * ---- * * Png splitter for th06 png files. */ #include <thcrap.h> #include <stdlib.h> #include <stdio.h> #include <png.h> #define ABS(x) ((x) >= 0 ? (x) : (x) * -1) typedef enum { PNGSPLIT_ALLOC_READ, PNGSPLIT_ALLOC_WRITE } pn...
4515db3905a3225e881e66c3ca0c2ec9ede31eed
f9e7d65cb784c01a0200145ba8d289afe41d4a56
/core/nds32/atomic.h
d93d1e7b06e787ced6192f8a86bbfe389267ed8e
[ "BSD-3-Clause" ]
permissive
FrameworkComputer/EmbeddedController
ad7086769e87d0a4179eae96a7c9ff5e383ff54e
f6d6b927eed71550d3475411cfc3e59abe5cef2a
refs/heads/hx20-hx30
2023-08-08T20:45:10.621169
2023-05-26T07:03:59
2023-05-26T07:03:59
447,021,040
846
48
BSD-3-Clause
2023-05-26T07:04:59
2022-01-12T00:11:14
C
UTF-8
C
false
false
1,516
h
atomic.h
/* Copyright 2013 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* Atomic operations for Andes */ #ifndef __CROS_EC_ATOMIC_H #define __CROS_EC_ATOMIC_H #include "common.h" #include "cpu.h" #include "task.h" /...
d9954e1080bfba7b4bfa04f59b80b58102f7d86f
fdbb74a95924e2677466614f6ab6e2bb13b2a95a
/test/net/http/escapejsstringliteral_test.c
70a16cf7effe95467258ad02ec9620cbb3bb1e27
[ "ISC" ]
permissive
jart/cosmopolitan
fb11b5658939023977060a7c6c71a74093d9cb44
0d748ad58e1063dd1f8560f18a0c75293b9415b7
refs/heads/master
2023-09-06T09:17:29.303607
2023-09-02T03:49:13
2023-09-02T03:50:18
272,457,606
11,887
435
ISC
2023-09-14T17:47:58
2020-06-15T14:16:13
C
UTF-8
C
false
false
3,802
c
escapejsstringliteral_test.c
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2021 Justine Alexandra Roberts Tunney ...
9e3349bebdc3e158bde9e2165611f417f8ab3fc1
c0bfd93cd7f26a271268e504959256f1e02c6806
/components/wpa_supplicant/src/ap/hostapd.h
5bedf09d0ad4034d0cb62c62b9b1e080447939a6
[ "Apache-2.0", "BSD-3-Clause" ]
permissive
espressif/ESP8266_RTOS_SDK
606f396e92d2675d9854f0fabd88587fbbbaf267
af0cdc36fa2600033d0a09301c754008cf1503c1
refs/heads/master
2023-08-24T22:40:15.373553
2023-05-06T02:04:24
2023-05-06T02:04:24
27,584,181
3,163
1,749
Apache-2.0
2023-08-09T10:48:13
2014-12-05T09:27:12
C
UTF-8
C
false
false
2,745
h
hostapd.h
/* * hostapd / Initialization and configuration * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef HOSTAPD_H #define HOSTAPD_H #include "common/defs.h" #include "ap/ap_config.h" struct wpa_driver_...
d81ac73e67fcc751cec34118039d6202c2b6ece6
b0dd7779c225971e71ae12c1093dc75ed9889921
/tools/build/v2/engine/hcache.h
cf11429f03299958f22dbfa456c1952e39dc0ec4
[ "LicenseRef-scancode-warranty-disclaimer", "BSL-1.0" ]
permissive
blackberry/Boost
6e653cd91a7806855a162347a5aeebd2a8c055a2
fc90c3fde129c62565c023f091eddc4a7ed9902b
refs/heads/1_48_0-gnu
2021-01-15T14:31:33.706351
2013-06-25T16:02:41
2013-06-25T16:02:41
2,599,411
244
154
BSL-1.0
2018-10-13T18:35:09
2011-10-18T14:25:18
C++
UTF-8
C
false
false
318
h
hcache.h
/* * This file is not part of Jam */ /* * hcache.h - handle #includes in source files */ #ifndef HCACHE_H # define HCACHE_H # include "regexp.h" # include "lists.h" void hcache_init( void ); void hcache_done( void ); LIST * hcache( TARGET *t, int rec, regexp * re[], LIST * hdrscan ); #endif
95efd3d81968b7236cd48b77ff26d2014317fafc
7eaf54a78c9e2117247cb2ab6d3a0c20719ba700
/SOFTWARE/A64-TERES/linux-a64/arch/arm/mach-dove/irq.c
bc4344aa10092dc8568ed8fe3890073e22147b53
[ "Linux-syscall-note", "GPL-2.0-only", "GPL-1.0-or-later", "LicenseRef-scancode-free-unknown", "Apache-2.0" ]
permissive
OLIMEX/DIY-LAPTOP
ae82f4ee79c641d9aee444db9a75f3f6709afa92
a3fafd1309135650bab27f5eafc0c32bc3ca74ee
refs/heads/rel3
2023-08-04T01:54:19.483792
2023-04-03T07:18:12
2023-04-03T07:18:12
80,094,055
507
92
Apache-2.0
2023-04-03T07:05:59
2017-01-26T07:25:50
C
UTF-8
C
false
false
3,084
c
irq.c
/* * arch/arm/mach-dove/irq.c * * Dove IRQ handling. * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. */ #include <linux/kernel.h> #include <linux/init.h> #include <linux/ir...
5f4171cedda289502b009d10deabe3b0c723da18
5ff4b6986e6799bc0e143e060bafc14369030d8b
/toolchain/riscv-isa-sim/riscv/insns/pv_insert_b.h
5575e79671ae77d5bbf6c0c1e8ef3ae41eda7d1d
[ "MIT", "LicenseRef-scancode-unknown-license-reference", "GPL-1.0-or-later", "LLVM-exception", "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-bsd-3-clause-jtag", "GPL-3.0-or-later" ]
permissive
pulp-platform/mempool
7583204b2436cfc12ed95599463e51ad4df51557
c98fb3ada4f255623eaf9b09861f397a60c3d96b
refs/heads/main
2023-08-08T09:07:56.696580
2023-07-27T17:24:38
2023-07-27T17:24:38
223,218,149
178
28
Apache-2.0
2023-07-27T17:24:39
2019-11-21T16:34:37
C
UTF-8
C
false
false
237
h
pv_insert_b.h
uint32_t ins_rd = RD; uint8_t i = insn.p_zimm6() & 0x03; /* select to which rd half to write the 16-bit value */ ins_rd = (ins_rd & ~(0xFF << ((xlen >> 2) * i))) | ((RS1_H(0) & 0xFF) << ((xlen >> 2) * i)); WRITE_RD(sext_xlen(ins_rd));
9ada633c27c64996820450121d969362caf7079b
f7dc806f341ef5dbb0e11252a4693003a66853d5
/thirdparty/freetype/src/psaux/psintrp.c
6c640eebd5a5056a4a41d53305f4798361184e6a
[ "GPL-2.0-only", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown", "LicenseRef-scancode-unknown-license-reference", "Zlib", "BSD-3-Clause", "MIT", "GPL-3.0-only", "GPL-1.0-or-later", "FTL", "LicenseRef-scancode-warranty-disclaimer", "OFL-1.1", "JSON", "LicenseRef-scancode-...
permissive
godotengine/godot
8a2419750f4851d1426a8f3bcb52cac5c86f23c2
970be7afdc111ccc7459d7ef3560de70e6d08c80
refs/heads/master
2023-08-21T14:37:00.262883
2023-08-21T06:26:15
2023-08-21T06:26:15
15,634,981
68,852
18,388
MIT
2023-09-14T21:42:16
2014-01-04T16:05:36
C++
UTF-8
C
false
false
105,884
c
psintrp.c
/**************************************************************************** * * psintrp.c * * Adobe's CFF Interpreter (body). * * Copyright 2007-2014 Adobe Systems Incorporated. * * This software, and all works of authorship, whether in source or * object code form as indicated by the copyright notice(s) i...
3c79e34c0def26a3b7b00ebea46ce5e1deb0d9db
6432ea7a083ff6ba21ea17af9ee47b9c371760f7
/stage0/stdlib/Init/Data/Array/Subarray.c
352bf7f13cd482af8694ddda5c377cad6874b82f
[ "Apache-2.0", "LLVM-exception", "NCSA", "LGPL-3.0-only", "LicenseRef-scancode-inner-net-2.0", "BSD-3-Clause", "LGPL-2.0-or-later", "Spencer-94", "LGPL-2.1-or-later", "HPND", "LicenseRef-scancode-pcre", "ISC", "LGPL-2.1-only", "LicenseRef-scancode-other-permissive", "SunPro", "CMU-Mach"...
permissive
leanprover/lean4
4bdf9790294964627eb9be79f5e8f6157780b4cc
f1f9dc0f2f531af3312398999d8b8303fa5f096b
refs/heads/master
2023-08-30T01:57:45.786981
2023-08-29T23:14:28
2023-08-29T23:14:28
129,571,436
2,827
311
Apache-2.0
2023-09-14T18:29:16
2018-04-15T02:49:20
Lean
UTF-8
C
false
false
150,652
c
Subarray.c
// Lean compiler output // Module: Init.Data.Array.Subarray // Imports: Init.Data.Array.Basic #include <lean/lean.h> #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" #pragma clang diagnostic ignored "-Wunused-label" #elif defined(__GNUC__) && !defined(__CLANG__) #pragma GCC diagnostic ignore...
da364a6ade3eed5277321f18b5bbec887b281a24
5741e4e7e3fedc3ae03996843b2bcfec70e17049
/c/meterpreter/source/metsrv/zlib.c
156c6a1a2aa3690e7bea6911444e3ca6c33e0c2e
[ "BSD-3-Clause", "PSF-2.0", "Python-2.0", "Zlib", "BSD-4-Clause", "BSD-2-Clause" ]
permissive
rapid7/metasploit-payloads
5981b44a1054d307d97b9cffcdbb559bfc690625
dcaad10486e22885d0cbcbce508e3e763ce689e9
refs/heads/master
2023-09-01T01:27:12.834909
2023-07-11T13:27:41
2023-07-11T13:27:41
18,418,533
1,674
743
NOASSERTION
2023-09-14T16:58:38
2014-04-03T21:18:24
C
UTF-8
C
false
false
181,024
c
zlib.c
/* * This file is derived from various .h and .c files from the zlib-1.0.4 * distribution by Jean-loup Gailly and Mark Adler, with some additions * by Paul Mackerras to aid in implementing Deflate compression and * decompression for PPP packets. See zlib.h for conditions of * distribution and use. * * Changes t...
2904fc0e93a8e295500a635b12f50156131845d3
88ae8695987ada722184307301e221e1ba3cc2fa
/third_party/dav1d/libdav1d/src/x86/ipred.h
160be90c68b76060c36ac9e22995bf00ab129080
[ "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0", "LGPL-2.0-or-later", "MIT", "GPL-1.0-or-later", "BSD-3-Clause" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C
false
false
6,796
h
ipred.h
/* * Copyright © 2018-2021, VideoLAN and dav1d authors * Copyright © 2018, Two Orioles, LLC * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retai...
2f926963c46c91a4518448a487a6b732940ae163
321d11eaee885ceb3a74db0a062f9bbdf282148c
/crypto/evp/e_des.c
6eb49c0339102c2df3206533ee41aaedb5b10c60
[ "Apache-2.0", "OpenSSL", "LicenseRef-scancode-proprietary-license" ]
permissive
openssl/openssl
75691ebaae957793f2ff0673f77545277dfb3988
5318c012885a5382eadbf95aa9c1d35664bca819
refs/heads/master
2023-09-03T15:22:52.727123
2023-09-01T07:10:49
2023-09-02T14:30:01
7,634,677
24,148
11,569
Apache-2.0
2023-09-14T19:48:11
2013-01-15T22:34:48
C
UTF-8
C
false
false
8,280
c
e_des.c
/* * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/l...
5d845f5ef8e6cc445d74e3e65aa8c8122190d2be
ca10e5645aa2e8152d6219d31ac77d3ed50096c0
/cstool/cstool_riscv.c
fcd60d09a95e687d1540df3b8d76d88de35a9a51
[ "BSD-3-Clause", "NCSA" ]
permissive
capstone-engine/capstone
fc4f1b14eded800818f2ed64eafaf342e6046f9b
f036d2dbb6a9f0d1e0dc9c14b4f44878aeed260a
refs/heads/next
2023-09-02T14:38:15.356818
2023-08-30T03:13:17
2023-08-30T03:13:17
14,735,429
1,390
292
NOASSERTION
2023-09-14T20:47:20
2013-11-27T02:32:11
C
UTF-8
C
false
false
1,167
c
cstool_riscv.c
/* Capstone Disassembler Engine */ /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */ #include <stdio.h> #include <capstone/capstone.h> #include "cstool.h" void print_insn_detail_riscv(csh handle, cs_insn *ins) { cs_riscv *riscv; int i; // detail can be NULL on "data" instruction if SKIPDATA option is turned...
500fefe88c81b104ed5d12662171992036e08a33
07327b5e8b2831b12352bf7c6426bfda60129da7
/Include/10.0.16299.0/um/mfreadwrite.h
dbd2241fbcdc10af11babe8fdea81d48b3188c12
[]
no_license
tpn/winsdk-10
ca279df0fce03f92036e90fb04196d6282a264b7
9b69fd26ac0c7d0b83d378dba01080e93349c2ed
refs/heads/master
2021-01-10T01:56:18.586459
2018-02-19T21:26:31
2018-02-19T21:29:50
44,352,845
218
432
null
null
null
null
UTF-8
C
false
false
68,988
h
mfreadwrite.h
/* this ALWAYS GENERATED file contains the definitions for the interfaces */ /* File created by MIDL compiler version 8.01.0622 */ /* @@MIDL_FILE_HEADING( ) */ /* verify that the <rpcndr.h> version is high enough to compile this file*/ #ifndef __REQUIRED_RPCNDR_H_VERSION__ #define __REQUIRED_RPCNDR...
17c0484692ea92b915eb74601f7148244302aee8
9ceacf33fd96913cac7ef15492c126d96cae6911
/sys/arch/macppc/dev/wdc_obio.c
8f4291e64bce5385e2e606bf2141c59dbf36e75a
[]
no_license
openbsd/src
ab97ef834fd2d5a7f6729814665e9782b586c130
9e79f3a0ebd11a25b4bff61e900cb6de9e7795e9
refs/heads/master
2023-09-02T18:54:56.624627
2023-09-02T15:16:12
2023-09-02T15:16:12
66,966,208
3,394
1,235
null
2023-08-08T02:42:25
2016-08-30T18:18:25
C
UTF-8
C
false
false
17,462
c
wdc_obio.c
/* $OpenBSD: wdc_obio.c,v 1.31 2022/03/13 12:33:01 mpi Exp $ */ /* $NetBSD: wdc_obio.c,v 1.15 2001/07/25 20:26:33 bouyer Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Charles M. Hannum and by On...
fe52eda761f105e27c7b4274911f7ffee704fb7d
c6759b857e55991fea3ef0b465dbcee53fa38714
/rtos/pmsis/tests/api/quick/hello/test.c
7b6fc0f8747d59e10a55056eb4fafa1daa955c1d
[ "Apache-2.0" ]
permissive
GreenWaves-Technologies/gap_sdk
1b343bba97b7a5ce62a24162bd72eef5cc67e269
3fea306d52ee33f923f2423c5a75d9eb1c07e904
refs/heads/master
2023-09-01T14:38:34.270427
2023-08-10T09:04:44
2023-08-10T09:04:44
133,324,605
145
96
Apache-2.0
2023-08-27T19:03:52
2018-05-14T07:50:29
C
UTF-8
C
false
false
1,202
c
test.c
/* * Copyright (C) 2017 ETH Zurich, University of Bologna and GreenWaves Technologies * All rights reserved. * * This software may be modified and distributed under the terms * of the BSD license. See the LICENSE file for details. * * Authors: Germain Haugou, ETH (germain.haugou@iis.ee.ethz.ch) */ #include "...
aaf79f6117fef8a6b50002d76ded7d8e8c45ae73
fdbb74a95924e2677466614f6ab6e2bb13b2a95a
/third_party/tidy/utf8.h
089874939684106f48212ba67c681c96998a1628
[ "ISC", "LicenseRef-scancode-unknown-license-reference", "W3C", "Apache-2.0" ]
permissive
jart/cosmopolitan
fb11b5658939023977060a7c6c71a74093d9cb44
0d748ad58e1063dd1f8560f18a0c75293b9415b7
refs/heads/master
2023-09-06T09:17:29.303607
2023-09-02T03:49:13
2023-09-02T03:50:18
272,457,606
11,887
435
ISC
2023-09-14T17:47:58
2020-06-15T14:16:13
C
UTF-8
C
false
false
1,415
h
utf8.h
#ifndef __UTF8_H__ #define __UTF8_H__ /* clang-format off */ /* utf8.h -- convert characters to/from UTF-8 (c) 1998-2006 (W3C) MIT, ERCIM, Keio University See tidy.h for the copyright notice. */ #include "third_party/tidy/tidyplatform.h" #include "third_party/tidy/access.h" #include "third_party/tidy/tidybuffio...
edabbeff5ecafbefb0b8d3bc105e79911526bb62
55540f3e86f1d5d86ef6b5d295a63518e274efe3
/components/network/httpd/include/httpd_opts.h
438282fe52b7a993ef48e9d2e17689d9fdb2bb3b
[ "Apache-2.0" ]
permissive
bouffalolab/bl_iot_sdk
bc5eaf036b70f8c65dd389439062b169f8d09daa
b90664de0bd4c1897a9f1f5d9e360a9631d38b34
refs/heads/master
2023-08-31T03:38:03.369853
2023-08-16T08:50:33
2023-08-18T09:13:27
307,347,250
244
101
Apache-2.0
2023-08-28T06:29:02
2020-10-26T11:16:30
C
UTF-8
C
false
false
15,681
h
httpd_opts.h
/** * @file * HTTP server options list */ /* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of s...
64511e1e6833e69df15e229531d9b2e846f72173
a5a99f646e371b45974a6fb6ccc06b0a674818f2
/CondFormats/DataRecord/interface/SiPhase2OuterTrackerLorentzAngleRcd.h
e9b6372ec6c5321fbde0c3fa62ab0bf85ea29e11
[ "Apache-2.0" ]
permissive
cms-sw/cmssw
4ecd2c1105d59c66d385551230542c6615b9ab58
19c178740257eb48367778593da55dcad08b7a4f
refs/heads/master
2023-08-23T21:57:42.491143
2023-08-22T20:22:40
2023-08-22T20:22:40
10,969,551
1,006
3,696
Apache-2.0
2023-09-14T19:14:28
2013-06-26T14:09:07
C++
UTF-8
C
false
false
82
h
SiPhase2OuterTrackerLorentzAngleRcd.h
#include "CondFormats/DataRecord/interface/SiPhase2OuterTrackerCondDataRecords.h"