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
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/luasocket.h
null
null
null
null
null
null
C
2026-05-04T19:34:56.270159
#ifndef LUASOCKET_H #define LUASOCKET_H /*=========================================================================*\ * LuaSocket toolkit * Networking support for the Lua language * Diego Nehab * 9/11/1999 * * RCS ID: $Id: luasocket.h,v 1.25 2007/06/11 23:44:54 diego Exp $ \*============================================...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/luasocket.c
null
null
null
null
null
null
C
2026-05-04T19:34:56.276358
/*=========================================================================*\ * LuaSocket toolkit * Networking support for the Lua language * Diego Nehab * 26/11/1999 * * This library is part of an effort to progressively increase the network * connectivity of the Lua language. The Lua interface to networking *...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/io.h
null
null
null
null
null
null
C
2026-05-04T19:34:56.279420
#ifndef IO_H #define IO_H /*=========================================================================*\ * Input/Output abstraction * LuaSocket toolkit * * This module defines the interface that LuaSocket expects from the * transport layer for streamed input/output. The idea is that if any * transport implements this in...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/options.h
null
null
null
null
null
null
C
2026-05-04T19:34:56.673335
#ifndef OPTIONS_H #define OPTIONS_H /*=========================================================================*\ * Common option interface * LuaSocket toolkit * * This module provides a common interface to socket options, used mainly by * modules UDP and TCP. * * RCS ID: $Id: options.h,v 1.4 2005/10/07 04:40:59 dieg...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/select.c
null
null
null
null
null
null
C
2026-05-04T19:34:56.675037
/*=========================================================================*\ * Select implementation * LuaSocket toolkit * * RCS ID: $Id: select.c,v 1.22 2005/11/20 07:20:23 diego Exp $ \*=========================================================================*/ #include <string.h> #include "lua.h" #include "lauxlib...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/select.h
null
null
null
null
null
null
C
2026-05-04T19:34:56.676209
#ifndef SELECT_H #define SELECT_H /*=========================================================================*\ * Select implementation * LuaSocket toolkit * * Each object that can be passed to the select function has to export * method getfd() which returns the descriptor to be passed to the * underlying select funct...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/mime.c
null
null
null
null
null
null
C
2026-05-04T19:34:56.677271
/*=========================================================================*\ * MIME support functions * LuaSocket toolkit * * RCS ID: $Id: mime.c,v 1.28 2005/11/20 07:20:23 diego Exp $ \*=========================================================================*/ #include <string.h> #include "lua.h" #include "lauxlib....
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/tcp.h
null
null
null
null
null
null
C
2026-05-04T19:34:57.158100
#ifndef TCP_H #define TCP_H /*=========================================================================*\ * TCP object * LuaSocket toolkit * * The tcp.h module is basicly a glue that puts together modules buffer.h, * timeout.h socket.h and inet.h to provide the LuaSocket TCP (AF_INET, * SOCK_STREAM) support. * * Three ...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/socket.h
null
null
null
null
null
null
C
2026-05-04T19:34:57.164273
#ifndef SOCKET_H #define SOCKET_H /*=========================================================================*\ * Socket compatibilization module * LuaSocket toolkit * * BSD Sockets and WinSock are similar, but there are a few irritating * differences. Also, not all *nix platforms behave the same. This module * (and th...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/timeout.c
null
null
null
null
null
null
C
2026-05-04T19:34:57.254748
/*=========================================================================*\ * Timeout management functions * LuaSocket toolkit * * RCS ID: $Id: timeout.c,v 1.30 2005/10/07 04:40:59 diego Exp $ \*=========================================================================*/ #include <stdio.h> #include "lua.h" #include "...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/unix.c
null
null
null
null
null
null
C
2026-05-04T19:34:57.361299
/*=========================================================================*\ * Unix domain socket * LuaSocket toolkit * * RCS ID: $Id: unix.c,v 1.13 2006/03/13 07:16:39 diego Exp $ \*=========================================================================*/ #include <string.h> #include "lua.h" #include "lauxlib.h"...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/udp.c
null
null
null
null
null
null
C
2026-05-04T19:34:57.362456
/*=========================================================================*\ * UDP object * LuaSocket toolkit * * RCS ID: $Id: udp.c,v 1.29 2005/10/07 04:40:59 diego Exp $ \*=========================================================================*/ #include <string.h> #include "lua.h" #include "lauxlib.h" #includ...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/mime.h
null
null
null
null
null
null
C
2026-05-04T19:34:57.418871
#ifndef MIME_H #define MIME_H /*=========================================================================*\ * Core MIME support * LuaSocket toolkit * * This module provides functions to implement transfer content encodings * and formatting conforming to RFC 2045. It is used by mime.lua, which * provide a higher level...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/usocket.c
null
null
null
null
null
null
C
2026-05-04T19:34:57.769982
/*=========================================================================*\ * Socket compatibilization module for Unix * LuaSocket toolkit * * The code is now interrupt-safe. * The penalty of calling select to avoid busy-wait is only paid when * the I/O call fail in the first place. * * RCS ID: $Id: usocket.c,v 1.38...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/unix.h
null
null
null
null
null
null
C
2026-05-04T19:34:57.880356
#ifndef UNIX_H #define UNIX_H /*=========================================================================*\ * Unix domain object * LuaSocket toolkit * * This module is just an example of how to extend LuaSocket with a new * domain. * * RCS ID: $Id: unix.h,v 1.9 2006/03/13 07:16:39 diego Exp $ \*=======================...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/wsocket.c
null
null
null
null
null
null
C
2026-05-04T19:34:57.996405
/*=========================================================================*\ * Socket compatibilization module for Win32 * LuaSocket toolkit * * The penalty of calling select to avoid busy-wait is only paid when * the I/O call fail in the first place. * * RCS ID: $Id: wsocket.c,v 1.36 2007/06/11 23:44:54 diego Exp $ ...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/etc/all.c
null
null
null
null
null
null
C
2026-05-04T19:34:57.998435
/* * all.c -- Lua core, libraries and interpreter in a single file */ #define luaall_c #include "lapi.c" #include "lcode.c" #include "ldebug.c" #include "ldo.c" #include "ldump.c" #include "lfunc.c" #include "lgc.c" #include "llex.c" #include "lmem.c" #include "lobject.c" #include "lopcodes.c" #include "lparser.c" #i...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/timeout.h
null
null
null
null
null
null
C
2026-05-04T19:34:58.113754
#ifndef TIMEOUT_H #define TIMEOUT_H /*=========================================================================*\ * Timeout management functions * LuaSocket toolkit * * RCS ID: $Id: timeout.h,v 1.14 2005/10/07 04:40:59 diego Exp $ \*=========================================================================*/ #include "l...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/udp.h
null
null
null
null
null
null
C
2026-05-04T19:34:58.211919
#ifndef UDP_H #define UDP_H /*=========================================================================*\ * UDP object * LuaSocket toolkit * * The udp.h module provides LuaSocket with support for UDP protocol * (AF_INET, SOCK_DGRAM). * * Two classes are defined: connected and unconnected. UDP objects are * originally u...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/etc/min.c
null
null
null
null
null
null
C
2026-05-04T19:34:58.409917
/* * min.c -- a minimal Lua interpreter * loads stdin only with minimal error handling. * no interaction, and no standard library, only a "print" function. */ #include <stdio.h> #include "lua.h" #include "lauxlib.h" static int print(lua_State *L) { int n=lua_gettop(L); int i; for (i=1; i<=n; i++) { if (i>1) pr...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/etc/noparser.c
null
null
null
null
null
null
C
2026-05-04T19:34:58.505684
/* * The code below can be used to make a Lua core that does not contain the * parsing modules (lcode, llex, lparser), which represent 35% of the total core. * You'll only be able to load binary files and strings, precompiled with luac. * (Of course, you'll have to build luac with the original parsing modules!) * * To ...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/lapi.h
null
null
null
null
null
null
C
2026-05-04T19:34:58.659943
/* ** $Id: lapi.h,v 2.2.1.1 2007/12/27 13:02:25 roberto Exp $ ** Auxiliary functions from Lua API ** See Copyright Notice in lua.h */ #ifndef lapi_h #define lapi_h #include "lobject.h" LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o); #endif
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/wsocket.h
null
null
null
null
null
null
C
2026-05-04T19:34:58.782768
#ifndef WSOCKET_H #define WSOCKET_H /*=========================================================================*\ * Socket compatibilization module for Win32 * LuaSocket toolkit * * RCS ID: $Id: wsocket.h,v 1.4 2005/10/07 04:40:59 diego Exp $ \*=========================================================================*/...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/lauxlib.h
null
null
null
null
null
null
C
2026-05-04T19:34:58.896073
/* ** $Id: lauxlib.h,v 1.88.1.1 2007/12/27 13:02:25 roberto Exp $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ #ifndef lauxlib_h #define lauxlib_h #include <stddef.h> #include <stdio.h> #include "lua.h" #if defined(LUA_COMPAT_GETN) LUALIB_API int (luaL_getn) (lua_State *L...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/lapi.c
null
null
null
null
null
null
C
2026-05-04T19:34:58.897318
/* ** $Id: lapi.c,v 2.55.1.5 2008/07/04 18:41:18 roberto Exp $ ** Lua API ** See Copyright Notice in lua.h */ #include <assert.h> #include <math.h> #include <stdarg.h> #include <string.h> #define lapi_c #define LUA_CORE #include "lua.h" #include "lapi.h" #include "ldebug.h" #include "ldo.h" #include "lfunc.h" #inc...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/lbaselib.c
null
null
null
null
null
null
C
2026-05-04T19:34:59.074356
/* ** $Id: lbaselib.c,v 1.191.1.6 2008/02/14 16:46:22 roberto Exp $ ** Basic library ** See Copyright Notice in lua.h */ #include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #define lbaselib_c #define LUA_LIB #include "lua.h" #include "lauxlib.h" #include "lualib.h" /* ** If your syst...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/lcode.c
null
null
null
null
null
null
C
2026-05-04T19:34:59.141881
/* ** $Id: lcode.c,v 2.25.1.3 2007/12/28 15:32:23 roberto Exp $ ** Code generator for Lua ** See Copyright Notice in lua.h */ #include <stdlib.h> #define lcode_c #define LUA_CORE #include "lua.h" #include "lcode.h" #include "ldebug.h" #include "ldo.h" #include "lgc.h" #include "llex.h" #include "lmem.h" #include "...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/lauxlib.c
null
null
null
null
null
null
C
2026-05-04T19:34:59.363251
/* ** $Id: lauxlib.c,v 1.159.1.3 2008/01/21 13:20:51 roberto Exp $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ #include <ctype.h> #include <errno.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> /* This file uses only the official API of Lua...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/ldebug.c
null
null
null
null
null
null
C
2026-05-04T19:34:59.550847
/* ** $Id: ldebug.c,v 2.29.1.6 2008/05/08 16:56:26 roberto Exp $ ** Debug Interface ** See Copyright Notice in lua.h */ #include <stdarg.h> #include <stddef.h> #include <string.h> #define ldebug_c #define LUA_CORE #include "lua.h" #include "lapi.h" #include "lcode.h" #include "ldebug.h" #include "ldo.h" #include ...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/ldebug.h
null
null
null
null
null
null
C
2026-05-04T19:34:59.569343
/* ** $Id: ldebug.h,v 2.3.1.1 2007/12/27 13:02:25 roberto Exp $ ** Auxiliary functions from Debug Interface module ** See Copyright Notice in lua.h */ #ifndef ldebug_h #define ldebug_h #include "lstate.h" #define pcRel(pc, p) (cast(int, (pc) - (p)->code) - 1) #define getline(f,pc) (((f)->lineinfo) ? (f)->lineinfo...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/ldblib.c
null
null
null
null
null
null
C
2026-05-04T19:34:59.682272
/* ** $Id: ldblib.c,v 1.104.1.3 2008/01/21 13:11:21 roberto Exp $ ** Interface from Lua to its debug API ** See Copyright Notice in lua.h */ #include <stdio.h> #include <stdlib.h> #include <string.h> #define ldblib_c #define LUA_LIB #include "lua.h" #include "lauxlib.h" #include "lualib.h" static int db_getregi...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/ldo.h
null
null
null
null
null
null
C
2026-05-04T19:34:59.786036
/* ** $Id: ldo.h,v 2.7.1.1 2007/12/27 13:02:25 roberto Exp $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ #ifndef ldo_h #define ldo_h #include "lobject.h" #include "lstate.h" #include "lzio.h" #define luaD_checkstack(L,n) \ if ((char *)L->stack_last - (char *)L->top <= (n)*(int)sizeof(T...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/ldo.c
null
null
null
null
null
null
C
2026-05-04T19:34:59.816881
/* ** $Id: ldo.c,v 2.38.1.3 2008/01/18 22:31:22 roberto Exp $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ #include <setjmp.h> #include <stdlib.h> #include <string.h> #define ldo_c #define LUA_CORE #include "lua.h" #include "ldebug.h" #include "ldo.h" #include "lfunc.h" #include "lgc.h" #...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/ldump.c
null
null
null
null
null
null
C
2026-05-04T19:35:00.028750
/* ** $Id: ldump.c,v 2.8.1.1 2007/12/27 13:02:25 roberto Exp $ ** save precompiled Lua chunks ** See Copyright Notice in lua.h */ #include <stddef.h> #define ldump_c #define LUA_CORE #include "lua.h" #include "lobject.h" #include "lstate.h" #include "lundump.h" typedef struct { lua_State* L; lua_Writer writer; ...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/lfunc.c
null
null
null
null
null
null
C
2026-05-04T19:35:00.172322
/* ** $Id: lfunc.c,v 2.12.1.2 2007/12/28 14:58:43 roberto Exp $ ** Auxiliary functions to manipulate prototypes and closures ** See Copyright Notice in lua.h */ #include <stddef.h> #define lfunc_c #define LUA_CORE #include "lua.h" #include "lfunc.h" #include "lgc.h" #include "lmem.h" #include "lobject.h" #include ...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/io.c
null
null
null
null
null
null
C
2026-05-04T19:35:01.800272
/*=========================================================================*\ * Input/Output abstraction * LuaSocket toolkit * * RCS ID: $Id: io.c,v 1.6 2005/09/29 06:11:41 diego Exp $ \*=========================================================================*/ #include "io.h" /*======================================...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/tcp.c
null
null
null
null
null
null
C
2026-05-04T19:35:02.294099
/*=========================================================================*\ * TCP object * LuaSocket toolkit * * RCS ID: $Id: tcp.c,v 1.41 2005/10/07 04:40:59 diego Exp $ \*=========================================================================*/ #include <string.h> #include "lua.h" #include "lauxlib.h" #includ...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/src/src/lcode.h
null
null
null
null
null
null
C
2026-05-04T19:35:04.507784
/* ** $Id: lcode.h,v 1.48.1.1 2007/12/27 13:02:25 roberto Exp $ ** Code generator for Lua ** See Copyright Notice in lua.h */ #ifndef lcode_h #define lcode_h #include "llex.h" #include "lobject.h" #include "lopcodes.h" #include "lparser.h" /* ** Marks the end of a patch list. It is an invalid value both as an absol...
damonkohler/sl4a
https://github.com/damonkohler/sl4a
null
null
null
null
2,473
null
null
apache-2.0
null
null
null
null
null
null
null
lua/luasocket/src/usocket.h
null
null
null
null
null
null
C
2026-05-04T19:35:04.748489
#ifndef USOCKET_H #define USOCKET_H /*=========================================================================*\ * Socket compatibilization module for Unix * LuaSocket toolkit * * RCS ID: $Id: usocket.h,v 1.7 2005/10/07 04:40:59 diego Exp $ \*=========================================================================*/ ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/jpeg_turbo/include/jerror.h
null
null
null
null
null
null
C
2026-05-04T19:35:08.688231
/* * jerror.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1994-1997, Thomas G. Lane. * Modified 1997-2009 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2014, 2017, 2021-2022, D. R. Commander. * For conditions of distribution and use, see the accompanyin...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/allocator/dma/dma_alloc.h
null
null
null
null
null
null
C
2026-05-04T19:35:08.689973
/* * Copyright (C) 2022 Rockchip Electronics Co., Ltd. * Authors: * Cerf Yu <cerf.yu@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/l...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/fftw/include/fftw3.h
null
null
null
null
null
null
C
2026-05-04T19:35:08.696492
/* * Copyright (c) 2003, 2007-14 Matteo Frigo * Copyright (c) 2003, 2007-14 Massachusetts Institute of Technology * * The following statement of license applies *only* to this header file, * and *not* to the other files distributed with FFTW or derived therefrom: * * Redistribution and use in source and binary f...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/jpeg_turbo/include/jconfig.h
null
null
null
null
null
null
C
2026-05-04T19:35:08.699110
/* Version ID for the JPEG library. * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60". */ #define JPEG_LIB_VERSION 62 /* libjpeg-turbo version */ #define LIBJPEG_TURBO_VERSION 2.1.3 /* libjpeg-turbo version in integer form */ #define LIBJPEG_TURBO_VERSION_NUMBER 2001003 /* Support arithmetic encodin...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/allocator/drm/drm_fourcc.h
null
null
null
null
null
null
C
2026-05-04T19:35:08.700564
/* * Copyright 2011 Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publi...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/allocator/drm/drm_alloc.h
null
null
null
null
null
null
C
2026-05-04T19:35:08.707311
/* * Copyright (C) 2022 Rockchip Electronics Co., Ltd. * Authors: * Randall zhuo <randall.zhuo@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://ww...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/jpeg_turbo/include/jmorecfg.h
null
null
null
null
null
null
C
2026-05-04T19:35:08.717822
/* * jmorecfg.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1997, Thomas G. Lane. * Modified 1997-2009 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2009, 2011, 2014-2015, 2018, 2020, D. R. Commander. * For conditions of distribution and use, see t...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/allocator/drm/xf86drm.h
null
null
null
null
null
null
C
2026-05-04T19:35:08.719310
/** * \file xf86drm.h * OS-independent header for DRM user-level library interface. * * \author Rickard E. (Rik) Faith <faith@valinux.com> */ /* * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All Rights Reserved. * * Perm...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/allocator/drm/drm.h
null
null
null
null
null
null
C
2026-05-04T19:35:08.720592
/** * \file drm.h * Header for the Direct Rendering Manager * * \author Rickard E. (Rik) Faith <faith@valinux.com> * * \par Acknowledgments: * Dec 1999, Richard Henderson <rth@twiddle.net>, move to generic \c cmpxchg. */ /* * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linu...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/allocator/drm/drm_mode.h
null
null
null
null
null
null
C
2026-05-04T19:35:08.749291
/* * Copyright (c) 2007 Dave Airlie <airlied@linux.ie> * Copyright (c) 2007 Jakob Bornecrantz <wallbraker@gmail.com> * Copyright (c) 2008 Red Hat Inc. * Copyright (c) 2007-2008 Tungsten Graphics, Inc., Cedar Park, TX., USA * Copyright (c) 2007-2008 Intel Corporation * * Permission is hereby granted, free of char...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/jpeg_turbo/include/jpeglib.h
null
null
null
null
null
null
C
2026-05-04T19:35:09.367720
/* * jpeglib.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1998, Thomas G. Lane. * Modified 2002-2009 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2009-2011, 2013-2014, 2016-2017, 2020, D. R. Commander. * Copyright (C) 2015, Google, Inc. * For co...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/kaldi_native_fbank/include/kaldi-native-fbank/csrc/feature-window.h
null
null
null
null
null
null
C
2026-05-04T19:35:09.373838
// kaldi-native-fbank/csrc/feature-window.h // // Copyright (c) 2022 Xiaomi Corporation (authors: Fangjun Kuang) // This file is copied/modified from kaldi/src/feat/feature-window.h #ifndef KALDI_NATIVE_FBANK_CSRC_FEATURE_WINDOW_H_ #define KALDI_NATIVE_FBANK_CSRC_FEATURE_WINDOW_H_ #include <sstream> #include <stri...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/jpeg_turbo/include/turbojpeg.h
null
null
null
null
null
null
C
2026-05-04T19:35:09.375140
/* * Copyright (C)2009-2015, 2017, 2020-2021 D. R. Commander. * All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code mu...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/kaldi_native_fbank/include/kaldi-native-fbank/csrc/feature-mfcc.h
null
null
null
null
null
null
C
2026-05-04T19:35:09.381279
/** * Copyright 2009-2011 Karel Vesely; Petr Motlicek; Saarland University * 2014-2016 Johns Hopkins University (author: Daniel Povey) * Copyright 2024 Xiaomi Corporation (authors: Fangjun Kuang) * * See LICENSE for clarification regarding multiple authors * * Licensed under the Apache Licens...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/kaldi_native_fbank/include/kaldi-native-fbank/csrc/feature-fbank.h
null
null
null
null
null
null
C
2026-05-04T19:35:09.382949
/** * Copyright (c) 2022 Xiaomi Corporation (authors: Fangjun Kuang) * * See LICENSE for clarification regarding multiple authors * * 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 * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/kaldi_native_fbank/include/kaldi-native-fbank/csrc/mel-computations.h
null
null
null
null
null
null
C
2026-05-04T19:35:09.411842
/** * Copyright (c) 2022 Xiaomi Corporation (authors: Fangjun Kuang) * * See LICENSE for clarification regarding multiple authors * * 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 * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/kaldi_native_fbank/include/kaldi-native-fbank/csrc/kaldi-math.h
null
null
null
null
null
null
C
2026-05-04T19:35:09.452504
// kaldi-native-fbank/csrc/kaldi-math.h // // Copyright (c) 2024 Brno University of Technology (authors: Karel Vesely) // This file is an excerpt from kaldi/src/base/kaldi-math.h #ifndef KALDI_NATIVE_FBANK_CSRC_KALDI_MATH_H_ #define KALDI_NATIVE_FBANK_CSRC_KALDI_MATH_H_ #include <cmath> // logf, sqrtf, cosf #incl...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/kaldi_native_fbank/include/kaldi-native-fbank/csrc/feature-functions.h
null
null
null
null
null
null
C
2026-05-04T19:35:09.919131
/** * Copyright (c) 2022 Xiaomi Corporation (authors: Fangjun Kuang) * * See LICENSE for clarification regarding multiple authors * * 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 * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/kaldi_native_fbank/include/kaldi-native-fbank/csrc/rfft.h
null
null
null
null
null
null
C
2026-05-04T19:35:09.952441
/** * Copyright (c) 2022 Xiaomi Corporation (authors: Fangjun Kuang) * * See LICENSE for clarification regarding multiple authors * * 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 * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/kaldi_native_fbank/include/kaldi-native-fbank/csrc/whisper-feature.h
null
null
null
null
null
null
C
2026-05-04T19:35:10.036866
/** * Copyright (c) 2023 Xiaomi Corporation (authors: Fangjun Kuang) * * See LICENSE for clarification regarding multiple authors * * 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 * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/RgaApi.h
null
null
null
null
null
null
C
2026-05-04T19:35:10.052582
/* * Copyright (C) 2016 Rockchip Electronics Co., Ltd. * Authors: * Zhiqin Wei <wzq@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/GrallocOps.h
null
null
null
null
null
null
C
2026-05-04T19:35:10.149858
/* * Copyright (C) 2016 Rockchip Electronics Co., Ltd. * Authors: * Zhiqin Wei <wzq@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/li...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/im2d.h
null
null
null
null
null
null
C
2026-05-04T19:35:10.685348
/* * Copyright (C) 2020 Rockchip Electronics Co., Ltd. * Authors: * PutinLee <putin.lee@rock-chips.com> * Cerf Yu <cerf.yu@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the Licen...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/kaldi_native_fbank/include/kaldi-native-fbank/csrc/log.h
null
null
null
null
null
null
C
2026-05-04T19:35:10.786613
/** * Copyright (c) 2022 Xiaomi Corporation (authors: Fangjun Kuang) * * See LICENSE for clarification regarding multiple authors * * 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 * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/im2d_common.h
null
null
null
null
null
null
C
2026-05-04T19:35:10.787869
/* * Copyright (C) 2022 Rockchip Electronics Co., Ltd. * Authors: * Cerf Yu <cerf.yu@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/l...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/RgaSingleton.h
null
null
null
null
null
null
C
2026-05-04T19:35:11.101640
/* * Copyright (C) 2016 Rockchip Electronics Co., Ltd. * Authors: * Zhiqin Wei <wzq@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/im2d_expand.h
null
null
null
null
null
null
C
2026-05-04T19:35:11.342731
/* * Copyright (C) 2022 Rockchip Electronics Co., Ltd. * Authors: * Cerf Yu <cerf.yu@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/l...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/im2d_single.h
null
null
null
null
null
null
C
2026-05-04T19:35:11.427784
/* * Copyright (C) 2022 Rockchip Electronics Co., Ltd. * Authors: * Cerf Yu <cerf.yu@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/l...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/im2d_task.h
null
null
null
null
null
null
C
2026-05-04T19:35:12.076860
/* * Copyright (C) 2022 Rockchip Electronics Co., Ltd. * Authors: * Cerf Yu <cerf.yu@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/l...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/im2d_mpi.h
null
null
null
null
null
null
C
2026-05-04T19:35:12.415658
/* * Copyright (C) 2022 Rockchip Electronics Co., Ltd. * Authors: * Cerf Yu <cerf.yu@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/l...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/im2d_type.h
null
null
null
null
null
null
C
2026-05-04T19:35:12.533674
/* * Copyright (C) 2022 Rockchip Electronics Co., Ltd. * Authors: * Cerf Yu <cerf.yu@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/l...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/im2d_buffer.h
null
null
null
null
null
null
C
2026-05-04T19:35:12.588178
/* * Copyright (C) 2022 Rockchip Electronics Co., Ltd. * Authors: * Cerf Yu <cerf.yu@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/l...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/opencl/libopencl-stub/include/CL/cl.h
null
null
null
null
null
null
C
2026-05-04T19:35:13.212517
/******************************************************************************* * Copyright (c) 2008-2020 The Khronos Group Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/opencl/libopencl-stub/include/CL/cl_d3d10.h
null
null
null
null
null
null
C
2026-05-04T19:35:13.223440
/******************************************************************************* * Copyright (c) 2008-2020 The Khronos Group Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/opencl/libopencl-stub/include/CL/cl_d3d11.h
null
null
null
null
null
null
C
2026-05-04T19:35:13.959196
/******************************************************************************* * Copyright (c) 2008-2020 The Khronos Group Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/libsndfile/include/sndfile.h
null
null
null
null
null
null
C
2026-05-04T19:35:14.066086
/* ** Copyright (C) 1999-2016 Erik de Castro Lopo <erikd@mega-nerd.com> ** ** This program 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.1 of the License, or ** (at your option) any...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/opencl/libopencl-stub/include/CL/cl_dx9_media_sharing_intel.h
null
null
null
null
null
null
C
2026-05-04T19:35:14.630376
/******************************************************************************* * Copyright (c) 2008-2020 The Khronos Group Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/opencl/libopencl-stub/include/CL/cl_egl.h
null
null
null
null
null
null
C
2026-05-04T19:35:14.685007
/******************************************************************************* * Copyright (c) 2008-2020 The Khronos Group Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/kaldi_native_fbank/include/kaldi-native-fbank/csrc/online-feature.h
null
null
null
null
null
null
C
2026-05-04T19:35:14.746976
/** * Copyright (c) 2022 Xiaomi Corporation (authors: Fangjun Kuang) * * See LICENSE for clarification regarding multiple authors * * 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 * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/opencl/libopencl-stub/include/CL/cl_dx9_media_sharing.h
null
null
null
null
null
null
C
2026-05-04T19:35:14.961899
/******************************************************************************* * Copyright (c) 2008-2020 The Khronos Group Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/opencl/libopencl-stub/include/CL/cl_ext.h
null
null
null
null
null
null
C
2026-05-04T19:35:15.235355
/******************************************************************************* * Copyright (c) 2008-2020 The Khronos Group Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/opencl/libopencl-stub/include/CL/cl_ext_intel.h
null
null
null
null
null
null
C
2026-05-04T19:35:15.292461
/******************************************************************************* * Copyright (c) 2008-2020 The Khronos Group Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/RgaUtils.h
null
null
null
null
null
null
C
2026-05-04T19:35:15.322483
/* * Copyright (C) 2016 Rockchip Electronics Co., Ltd. * Authors: * Zhiqin Wei <wzq@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/li...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/opencl/libopencl-stub/include/CL/cl_gl.h
null
null
null
null
null
null
C
2026-05-04T19:35:15.594901
/******************************************************************************* * Copyright (c) 2008-2020 The Khronos Group Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/opencl/libopencl-stub/include/CL/cl_gl_ext.h
null
null
null
null
null
null
C
2026-05-04T19:35:15.623165
/******************************************************************************* * Copyright (c) 2008-2020 The Khronos Group Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/drmrga.h
null
null
null
null
null
null
C
2026-05-04T19:35:16.011656
/* * Copyright (C) 2016 Rockchip Electronics Co., Ltd. * Authors: * Zhiqin Wei <wzq@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/li...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/im2d_version.h
null
null
null
null
null
null
C
2026-05-04T19:35:17.496538
/* * Copyright (C) 2022 Rockchip Electronics Co., Ltd. * Authors: * Cerf Yu <cerf.yu@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/l...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/rga.h
null
null
null
null
null
null
C
2026-05-04T19:35:18.110627
/* * Copyright (C) 2016 Rockchip Electronics Co., Ltd. * Authors: * Zhiqin Wei <wzq@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/RgaMutex.h
null
null
null
null
null
null
C
2026-05-04T19:35:20.259093
/* * Copyright (C) 2020 Rockchip Electronics Co., Ltd. * Authors: * PutinLee <putin.lee@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.or...
airockchip/rknn_model_zoo
https://github.com/airockchip/rknn_model_zoo
null
null
null
null
2,444
null
null
apache-2.0
null
null
null
null
null
null
null
3rdparty/librga/include/RockchipRga.h
null
null
null
null
null
null
C
2026-05-04T19:35:21.397228
/* * Copyright (C) 2016 Rockchip Electronics Co., Ltd. * Authors: * Zhiqin Wei <wzq@rock-chips.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/li...
robotmedia/RMStore
https://github.com/robotmedia/RMStore
null
null
null
null
2,411
null
null
apache-2.0
null
null
null
null
null
null
null
RMStore/Optional/RMStoreTransactionReceiptVerifier.h
null
null
null
null
null
null
C
2026-05-04T19:35:24.979666
// // RMStoreTransactionReceiptVerifier.h // RMStore // // Created by Hermes Pique on 7/31/13. // Copyright (c) 2013 Robot Media SL (http://www.robotmedia.net) // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obta...
robotmedia/RMStore
https://github.com/robotmedia/RMStore
null
null
null
null
2,411
null
null
apache-2.0
null
null
null
null
null
null
null
RMStore/Optional/RMStoreTransaction.h
null
null
null
null
null
null
C
2026-05-04T19:35:24.981366
// // RMStoreTransaction.h // RMStore // // Created by Hermes on 10/16/13. // Copyright (c) 2013 Robot Media. 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 /...
robotmedia/RMStore
https://github.com/robotmedia/RMStore
null
null
null
null
2,411
null
null
apache-2.0
null
null
null
null
null
null
null
RMStore/Optional/RMAppReceipt.h
null
null
null
null
null
null
C
2026-05-04T19:35:24.982946
// // RMAppReceipt.h // RMStore // // Created by Hermes on 10/12/13. // Copyright (c) 2013 Robot Media. 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 // // ...
robotmedia/RMStore
https://github.com/robotmedia/RMStore
null
null
null
null
2,411
null
null
apache-2.0
null
null
null
null
null
null
null
RMStore/Optional/RMStoreUserDefaultsPersistence.h
null
null
null
null
null
null
C
2026-05-04T19:35:24.984146
// // RMStoreUserDefaultsPersistence.h // RMStore // // Created by Hermes on 10/16/13. // Copyright (c) 2013 Robot Media. 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 ...
robotmedia/RMStore
https://github.com/robotmedia/RMStore
null
null
null
null
2,411
null
null
apache-2.0
null
null
null
null
null
null
null
RMStore/Optional/RMStoreAppReceiptVerifier.h
null
null
null
null
null
null
C
2026-05-04T19:35:24.985396
// // RMStoreAppReceiptVerifier.h // RMStore // // Created by Hermes on 10/15/13. // Copyright (c) 2013 Robot Media. 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 Licen...
robotmedia/RMStore
https://github.com/robotmedia/RMStore
null
null
null
null
2,411
null
null
apache-2.0
null
null
null
null
null
null
null
RMStore/Optional/RMStoreKeychainPersistence.h
null
null
null
null
null
null
C
2026-05-04T19:35:24.986506
// // RMStoreKeychainPersistence.h // RMStore // // Created by Hermes on 10/19/13. // Copyright (c) 2013 Robot Media. 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 Lice...
robotmedia/RMStore
https://github.com/robotmedia/RMStore
null
null
null
null
2,411
null
null
apache-2.0
null
null
null
null
null
null
null
RMStore/Optional/openssl-1.0.1e/include/openssl/aes.h
null
null
null
null
null
null
C
2026-05-04T19:35:24.987786
/* crypto/aes/aes.h -*- mode:C; c-file-style: "eay" -*- */ /* ==================================================================== * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that t...
robotmedia/RMStore
https://github.com/robotmedia/RMStore
null
null
null
null
2,411
null
null
apache-2.0
null
null
null
null
null
null
null
RMStore/Optional/openssl-1.0.1e/include/openssl/asn1t.h
null
null
null
null
null
null
C
2026-05-04T19:35:24.989110
/* asn1t.h */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2000. */ /* ==================================================================== * Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without ...
robotmedia/RMStore
https://github.com/robotmedia/RMStore
null
null
null
null
2,411
null
null
apache-2.0
null
null
null
null
null
null
null
RMStore/Optional/openssl-1.0.1e/include/openssl/asn1.h
null
null
null
null
null
null
C
2026-05-04T19:35:24.990181
/* crypto/asn1/asn1.h */ /* 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 library is free for commercial and non-c...
robotmedia/RMStore
https://github.com/robotmedia/RMStore
null
null
null
null
2,411
null
null
apache-2.0
null
null
null
null
null
null
null
RMStore/Optional/openssl-1.0.1e/include/openssl/bio.h
null
null
null
null
null
null
C
2026-05-04T19:35:25.748492
/* crypto/bio/bio.h */ /* 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 library is free for commercial and non-com...
robotmedia/RMStore
https://github.com/robotmedia/RMStore
null
null
null
null
2,411
null
null
apache-2.0
null
null
null
null
null
null
null
RMStore/Optional/openssl-1.0.1e/include/openssl/bn.h
null
null
null
null
null
null
C
2026-05-04T19:35:25.767049
/* crypto/bn/bn.h */ /* Copyright (C) 1995-1997 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 library is free for commercial and non-comme...