blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
268
content_id
stringlengths
40
40
detected_licenses
listlengths
0
58
license_type
stringclasses
2 values
repo_name
stringlengths
5
118
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
816 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
2.31k
677M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
151 values
src_encoding
stringclasses
33 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
3
10.3M
extension
stringclasses
119 values
content
stringlengths
3
10.3M
authors
listlengths
1
1
author_id
stringlengths
0
228
578e6fde09e3a1998cd23e790fd8c4a3972c3361
6196ec0f6b9a08cfa51924c54b0fcfd370a736c8
/1/1-17/main.c
e38742279a2fae4e706e71ac111f3ec5c3f48c0f
[]
no_license
xiangjs6/The-C-Programming-Language-solution
e1d0f0420afe953ba5fb73f8f5c01ea0ccb2bc4b
d596fd224f47076c4afff922b06efa7b478da917
refs/heads/master
2022-04-06T10:16:38.157973
2020-02-22T03:04:05
2020-02-22T03:04:05
null
0
0
null
null
null
null
UTF-8
C
false
false
519
c
#include <stdio.h> #define MAXLINE 1000 int getline(char line[], int maxline); int main(void) { int len; char line[MAXLINE]; while ((len = getline(line, MAXLINE)) > 0) if(len > 80) printf("length:%d\tstring:%s", len, line); return 0; } int getline(char s[],int lim) { ...
[ "951425301@qq.com" ]
951425301@qq.com
dec8990c52d8cae2f074de3b025ab1bbf9077f95
4835dccbafda29223a80ef43be70213e4494b37d
/MLIB/GETC.C
32dd05866834fca0ff12cdabed103a68932177b1
[]
no_license
ebisawa/elara
c39d6c3aac6cc9e785b8b870574420f4cd71707b
47a850c9ae72d8f6e85103b84a164c54a77c987f
refs/heads/master
2020-04-15T01:36:35.770269
2019-01-07T15:19:19
2019-01-07T15:19:19
164,283,509
1
0
null
null
null
null
UTF-8
C
false
false
125
c
#include "klib.h" int getc(int handle) { char c; if (read(&c, 1, handle) == 0) return -1; return c; }
[ "ebisawa@gmail.com" ]
ebisawa@gmail.com
2442b337f89879b3273c1c2ecd9330d9764309b0
1bb19d41f6f5748830b92481c5e51252255fe053
/BLE_GW_PP_Device/GPIO_Task.h
31a7c19ec5c81993d88a92cfe9ba99a37640fae8
[]
no_license
PCTuinoTomShare/BLE_GW_Pripheral_Device_Test_1
0425064133a4a06061bdad6a176cccf97bc28165
8faf461dba1ff5b60d14186935b282b01681254b
refs/heads/master
2021-01-09T20:20:20.932383
2016-08-05T03:41:12
2016-08-05T03:41:12
64,986,616
0
0
null
null
null
null
UTF-8
C
false
false
205
h
/* * GPIO_Task.h * * Created: 2016/7/29 下午 12:49:10 * Author: tom hsieh */ #ifndef GPIO_TASK_H_ #define GPIO_TASK_H_ // GPIO initialize. void GPIO_Init( void ); #endif /* GPIO_TASK_H_ */
[ "tom.hsieh@pct.com.tw" ]
tom.hsieh@pct.com.tw
a5ff9b8cda0aa29149b925c3f899aa053f9001b9
5465b9d78e204786002243fdbeb85a0176199f68
/lab8/Lab8/Lab8/definiciones.h
028de70428efb05d3d4d28de215b4e9d4fe4d66c
[]
no_license
josedan10/Laboratorios-de-CO2112
3e20a3a317c4624866a9caeb8674a10944e6b178
b76a5e1e517ec302bf49c565afba6140c4b04cdf
refs/heads/master
2020-12-24T06:28:12.952841
2016-12-03T06:20:33
2016-12-03T06:20:33
73,485,832
0
0
null
null
null
null
UTF-8
C
false
false
221
h
#include <stdlib.h> #include <stdio.h> typedef struct { double a, b; int num_intervalos; double error_max; double error; }datos_integral; typedef double (*fdd)(double); typedef double(*fint)(fdd, datos_integral *);
[ "josedanq100@gmail.com" ]
josedanq100@gmail.com
9e478b7d3122052b25c06d24a95cd8b1bd099651
f6db09ed4a3b28976e6a73a1f7467297263d7b1e
/altro/alessia ciatti/SO/SistemiOperativi2CeRiprovamo/es01.c
c2152c1179ff161c2e48601768a1bff9217a5de5
[]
no_license
barabash97/so2020
472b6ed3d36e16fb4bdf0b5f0c5a69c9544b0fcd
223790952b52340cc78fe458a0a0175ef1f92798
refs/heads/master
2020-12-20T19:40:11.665073
2020-01-27T11:08:12
2020-01-27T11:08:12
236,189,349
0
0
null
null
null
null
UTF-8
C
false
false
1,649
c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <signal.h> #include <sys/wait.h> //si crea una variabile globale int int val = 10; //questo è un handler void handler(int sig) { val = val + 8; } int main() { //si crea una variabile pid pid_t pid; /*si invoca la funzione signal(), la quale cat...
[ "barabash97@gmail.com" ]
barabash97@gmail.com
95e3a7a98cbfc979b84b27ca0144a8d912c38c28
a9a591fc3964117db3b16583c3bfa5a24cfc0114
/src/afSTFT/fft4g.h
afed7eba32dd6dadd9e49adb25b649a7327d9f1b
[ "BSD-2-Clause", "MIT" ]
permissive
grz0zrg/fas
9cd0a55c7e86fcf5cafffd44ebdf633f3ee5fefa
07b08a77b78781dd5ed7984117f294fe4fcbe3fd
refs/heads/master
2022-09-18T05:29:27.983761
2022-08-30T19:53:19
2022-08-30T19:53:19
78,288,048
142
10
BSD-2-Clause
2021-05-25T01:43:22
2017-01-07T15:53:24
C
UTF-8
C
false
false
1,233
h
/* FFT library adopted from http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html Original copyright: Copyright(C) 1996-2001 Takuya OOURA email: ooura@mmm.t.u-tokyo.ac.jp download: http://momonga.t.u-tokyo.ac.jp/~ooura/fft.html You may use, copy, modify this code for any purpose and without fee. You may distribute th...
[ "grz.zrg@gmail.com" ]
grz.zrg@gmail.com
17754fc3f859a76abb83984d325d16b9131b0005
16a6b6ea7c05e632810c1ce8f2f6088dc318f785
/search/recursive_binary_search.c
8c5a9c45d683d885c7fc5a87cdbf81d7605f9c03
[ "MIT" ]
permissive
coherent17/search-algorithm
0735596d31515ec34cbf3e54aa7dc9078089584c
6e901471ec41350219e6bef028322c69ec71a99e
refs/heads/main
2023-07-01T23:38:16.992944
2021-08-01T08:37:26
2021-08-01T08:37:26
387,357,874
2
0
null
null
null
null
UTF-8
C
false
false
897
c
#include <stdio.h> #define SIZE 10 int recursive_binary_search(int *, int, int, int); int main(){ int array[SIZE]={1,2,3,4,5,6,7,8,9,10}; int index; printf("recursive_binary_search:"); index=recursive_binary_search(array,0,SIZE-1,3); printf("%d\n",index); return 0; } int recursive_binary_se...
[ "mnb51817@gmail.com" ]
mnb51817@gmail.com
d160c037823f8c6ad3d36ea90fcec5cfb5991ba4
68ba3e7ef061dc205e54df042b1387f745cc77ae
/apilib/src/stblit/src/hal/blt_gam/blt_job.c
c1dde2a5bc77d8981b5221c47ddee38bc0c0db7e
[]
no_license
huangyt/beijing-7101
1d731f91f070f036a9181f761aa973aa2237eef1
ca19376a2035d7c39a0093b949b18f381844c92b
refs/heads/master
2020-12-26T10:29:58.879751
2013-09-20T07:42:12
2013-09-20T07:42:12
null
0
0
null
null
null
null
UTF-8
C
false
false
54,597
c
/******************************************************************************* File name : blt_job.c Description : job source file COPYRIGHT (C) STMicroelectronics 2000. Date Modification Name ---- ------------ ...
[ "hechuan13397@163.com" ]
hechuan13397@163.com
8e4891df48cf8517e4728b0efc389a445433916c
cc49413d53d984052578ea1fa05d856192174904
/openairinterface5g-develop/openairinterface5g-develop/openair3/MME_APP/mme_app.c
5a32ddc98cc26ce390d5905dd20c5c698faffd85
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-generic-cla" ]
permissive
542537372/5g_saveback_2021_0301
578fc639a4b861d705aea9363fe00485f5a8d289
e406e2bcce7a3690a6d013d06dfb8374c78ed22b
refs/heads/main
2023-06-03T21:13:38.030641
2021-06-17T09:30:17
2021-06-17T09:30:17
377,680,536
1
1
null
null
null
null
UTF-8
C
false
false
22,477
c
/* * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The OpenAirInterface Software Alliance licenses this file to You under * the OAI Public Lic...
[ "542537372@qq.com" ]
542537372@qq.com
ec0260c7be6bb28e0abe2a22acecd9fb1942af6a
e7503de05713df8f92b2d3ef6be4575c99cd8cf3
/WorkSpace/HW3/src/integrator.c
6e0352eb75aa2e253873056c3d6b0616cd6971ab
[]
no_license
chaunceychason/SC3260
cf7b75e38188a22229c0d4a6e1a9e3b1e09b07d8
7faf2982ac23edac8d69a575aecaa3fc0f2def23
refs/heads/master
2021-01-10T13:35:41.076624
2016-04-11T05:39:09
2016-04-11T05:39:09
49,441,032
0
0
null
null
null
null
UTF-8
C
false
false
4,290
c
#include "params.h" #include "atoms.h" #include "integrator.h" #include "timer.h" #include "mpi.h" //********************************************************************** // update_positions() function // - Update particle positions by numerical integration. // - Arguments: // - myatoms: struct containing a...
[ "chaunceychason@gmail.com" ]
chaunceychason@gmail.com
2dd70d658ff025aaa1695b29a9e150ae5d649727
687ec0586ee03442a97d1c7c1ba7c624c33fbe3f
/Exam/code/ex49-1/49-1-2-2.c
2f7e3a1b175ce06fdc40f2e6d6a074bb46626830
[]
no_license
gtfarng/LabIntroC
8e19d44fabc041c9cafbaf65d645e021c05e7620
2120e903afb41c38a3aa3d411c1b6da9062746dd
refs/heads/master
2020-04-16T14:46:20.043580
2019-04-30T00:48:44
2019-04-30T00:48:44
165,678,658
1
0
null
null
null
null
UTF-8
C
false
false
1,182
c
#include<stdio.h> int main() { int std,i=0,sum[5]={0,0,0,0,0}; printf("--------------------------------------------\n"); printf("Type\tlist\n"); printf("--------------------------------------------\n"); printf("1\tIce-Cream\n"); printf("2\tIce\n"); printf("3\tWedge\n"); printf("4\tMock Pomegranate in Coconut Sy...
[ "5735512002@psu.ac.th" ]
5735512002@psu.ac.th
8eb81134baef769ec861f8e92e3b9d710016d259
7d5decc90192d6d1c84cc827071f1b1adf0d44a1
/operacje-na-plikach/zad7.c
75da8cbe05207831028d2867cf5767931b12d0aa
[]
no_license
czplwsk/PSW
2f5a152534cac77da712f9e6e0cd3ed3482520c2
e0b35c29dcfcac6a00ff4e1990d6dcac549a0f3b
refs/heads/master
2020-08-24T08:17:12.356280
2019-11-25T07:27:01
2019-11-25T07:27:01
216,791,906
0
0
null
null
null
null
UTF-8
C
false
false
422
c
#include <stdio.h> #include <stdbool.h> #include <unistd.h> #include <ctype.h> #include <fcntl.h> int main(int argc, char* varg[]) { int fd1; bool tekst = true; char x; fd1 = open(varg[1],O_RDWR); while (read(fd1,&x,1)>0) { if (isascii(x)!=true) {tekst = false;} } if (te...
[ "czaplewska.eliza@gmail.com" ]
czaplewska.eliza@gmail.com
45759c5479914680631675fb07d71ec82c9d2b47
6f3fa27113b59f5f725366473db461c5fab5a766
/测试代码/IAR/my ku/src/SPI.h
04027adc5b880473e59615a91cce62fbcfd90a39
[]
no_license
authuir/AI-Car
938b94da62eca633c48083a21a0c37d486cd7a48
2ed82d35d3f6f3b6886bafdb6d555f2b5992b00f
refs/heads/master
2021-01-10T21:39:38.498377
2016-12-30T06:25:00
2016-12-30T06:25:00
32,663,264
3
5
null
null
null
null
GB18030
C
false
false
3,068
h
#ifndef __SPI_H__ #define __SPI_H__ #include "common.h" #define SPI0 0 #define SPI1 1 #define SPI2 128 #define SPI_MCR_BASE 0X4002C000 #define SPI_TCR_BASE 0X4002C008 #define SPI_CTAR0_BASE 0X4002C00C #define SPI_CTAR1_BASE 0X4002C010 #define SPI_CTAR_SLAVE_BASE 0X4002C00C #defin...
[ "496663398@qq.com" ]
496663398@qq.com
c44323bf68b13ec8722796a0f566b6848e47cb49
99bdb3251fecee538e0630f15f6574054dfc1468
/bsp/microchip/same54/bsp/hal/include/hpl_spi.h
a5652e50612d88291328bff4de86934578b230e7
[ "Apache-2.0", "Zlib", "LicenseRef-scancode-proprietary-license", "MIT", "BSD-3-Clause", "X11", "BSD-4-Clause-UC", "LicenseRef-scancode-unknown-license-reference" ]
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
4,680
h
/** * \file * * \brief SPI related functionality declaration. * * Copyright (c) 2014-2018 Microchip Technology Inc. and its subsidiaries. * * \asf_license_start * * \page License * * Subject to your compliance with these terms, you may use Microchip * software and any derivatives exclusively with Microchip ...
[ "noreply@github.com" ]
RT-Thread.noreply@github.com
0b6b8bf062a6891870603cd5dbede4752617abc4
a4bc8ebd2965f0362075434af04be3167044d72a
/src/LGL/lgl.h
a07d07fcdeca23cea41de17d67f3464a126a6ef4
[]
no_license
chsc/LightGL
31c70075f1b3a7a26a54443171dfcc7eeecd32c0
57b8258f346522495a07401b862d5a541b0ea664
refs/heads/master
2016-09-06T05:55:33.389186
2010-11-23T19:02:21
2010-11-23T19:02:21
1,105,670
5
1
null
null
null
null
UTF-8
C
false
false
5,193
h
/* * * LightGL - Core Library * A small and simple software rasterization library with vertex and fragment shader support. * Copyright(c) 2010 by Christoph Schunk. All rights reserved. * */ #ifndef LGL_H_INCLUDED #define LGL_H_INCLUDED #define LGL_MAX_TEXTURES 8 #define LGL_MAX_UNIFORMS 1...
[ "schunk.christoph@googlemail.com" ]
schunk.christoph@googlemail.com
89844610d7f9268eae88a55ba506ea155a6fdfaf
10b9a99600c2f83e06fbdef51045e83c23e66b7f
/uEZ/Source/Library/GUI/SEGGER/emWin/GUIDRV_FlexColor_Private.h
f2a9e1c42f6a0b13cf57b9698e6ec268cf6ce132
[]
no_license
FutureDesigns/uEZ
e85d76a77ca85b032e573769ed07fc8de2f7f502
6bf821fdab7d3d4f1749de1dbdc3e2609391dc14
refs/heads/master
2022-07-06T13:00:58.870371
2022-07-01T13:46:16
2022-07-01T13:46:16
9,175,014
7
9
null
2022-07-01T13:46:16
2013-04-02T16:51:45
C
UTF-8
C
false
false
11,311
h
/********************************************************************* * SEGGER Microcontroller GmbH * * Solutions for real time microcontroller applications * ********************************************************************** * ...
[ "33694589+agrutter@users.noreply.github.com" ]
33694589+agrutter@users.noreply.github.com
e7890e67bbbcf0ddd46c1d5b2b25221e8fd9f7c2
6b35d7fc2ab3c018b79d4b6dfe97834858904c17
/AppuiSudoku.c
aedc4f109da8919dd7c20fc42bf7244c3cc17c41
[]
no_license
ParentBenjamin/Algo-Projet
e0a3507ddc3b019a2d515cedd33f27b0fd9f38d7
6ed0b61e3092e864842dddb7655e2155340d533a
refs/heads/master
2020-08-05T18:06:14.345773
2019-12-13T08:25:12
2019-12-13T08:25:12
212,647,276
0
0
null
2019-12-10T20:53:48
2019-10-03T18:12:44
C
UTF-8
C
false
false
1,911
c
#include <stdlib.h> #include <stdio.h> #include <SDL/SDL.h> #include "InterfaceSudoku.h" #include "Grille.h" /**Fonction qui donne les coordonnes du tableau par rapport au clic precedent*/ Coordonees appuiTouche(SDL_Rect positionFond){ Coordonees c; if(positionFond.y<=130 || positionFond.y>580 || po...
[ "noreply@github.com" ]
ParentBenjamin.noreply@github.com
50d371b16ee74bc59793bb340d3bf18af976708b
93a36f5962622e31b0dc4ff2ffa66209b33d91e5
/libft/src/ft_strstr.c
6826bfefedfc04ab64f311615cd23189a9d8c5b5
[]
no_license
Tyraen1er/wolf3d
157656680734b68594ccecc9e6ce1d9324439ac6
49a4befeb45247afdb66376bcecccb227ba62cc7
refs/heads/master
2021-01-18T16:56:38.174335
2018-02-12T11:44:03
2018-02-12T11:44:03
100,474,550
0
0
null
null
null
null
UTF-8
C
false
false
1,298
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strstr.c :+: :+: :+: ...
[ "emmanuel.ferrandini@yahoo.fr" ]
emmanuel.ferrandini@yahoo.fr
041a00be6f70c39ec8b6a6fa2da5b143944dd005
e77252d253f971bac25e5dc82c9cc74947c40fc8
/Temp/StagingArea/Data/il2cppOutput/mscorlib_System_Text_EncoderFallbackExceptionMethodDeclarations.h
c7895e287f5c353d76a54f60767da3b6a9b2e0b9
[]
no_license
zpsaras/RemoteAssociatesTest
47435babb962ba98a6bbd78d2a0c54b0410f2338
4199c7abcc14593d53370a8d135630d176235ff1
refs/heads/master
2021-01-18T15:08:17.660623
2015-12-05T21:36:30
2015-12-05T21:36:30
47,208,339
1
0
null
null
null
null
UTF-8
C
false
false
1,365
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include <assert.h> #include <exception> // System.Text.EncoderFallbackException struct EncoderFallbackException_t1_643; // System.String struct String_t; #include "codegen/il2cpp-co...
[ "zach.psaras@gmail.com" ]
zach.psaras@gmail.com
cae05436084a700b10b29277d8f9775265b9a323
6c27004b70cee845cd18aad11af1c34bed8e0bbf
/Code-DM/game/bg_pmove.c
b51f4ad20996f796d471bbe729526b44e9761a6c
[]
no_license
neural-link/eliteforce
a68ec0525757845c3068f79ad53c5b7e2d676f5e
4d21877b6163b2cec0eab1bb9873588ef8305a26
refs/heads/master
2022-11-12T20:22:01.596188
2020-07-02T00:30:21
2020-07-02T00:30:21
276,508,815
0
0
null
null
null
null
UTF-8
C
false
false
52,744
c
// Copyright (C) 1999-2000 Id Software, Inc. // // bg_pmove.c -- both games player movement code // takes a playerstate and a usercmd as input and returns a modifed playerstate #include "q_shared.h" #include "bg_public.h" #include "bg_local.h" pmove_t *pm; pml_t pml; // movement parameters const float...
[ "noreply@github.com" ]
neural-link.noreply@github.com
4a53f3c60629de413344195b66681aa1476df438
eb0e67d094a3284677d9838231c23bedc461c466
/Assignment2/A2.c
662724778310831fadfdbbf7f883115be22f0ddb
[]
no_license
SadiaSaeed/SPAssignment
3af83243ba0c2f741993c987a2d61a5e0f65bd15
3fffb2ff322cfca4ce118af69c718a5bfad8d446
refs/heads/master
2021-03-21T13:30:36.971373
2020-06-02T17:37:16
2020-06-02T17:37:16
247,298,410
0
0
null
null
null
null
UTF-8
C
false
false
1,577
c
#include <stdio.h> //Swap Function /*int main(){ int num1 = 5, num2 = 10; // address of num1 and num2 is passed swap( &num1, &num2); printf("num1 = %d\n", num1); printf("num2 = %d\n", num2); return 0; } // pointer n1 and n2 stores the address of num1 and num2 respectively void swap(int* n1, int* n2) { int temp; temp...
[ "sadiasayeed1997@gmail.com" ]
sadiasayeed1997@gmail.com
6808c4cda36bd3aaa476bb4c86e1955a903f989a
ac75558b13b1eb5a220ea7b84739c87ad50f6da5
/OthersAll/ebrahim.c
efa7da6d00bd826fc249087e53e074c01452a097
[]
no_license
Anik-Modak/CompetitiveProgramming
670a53f323292b16484ca28f340e123e8da8fcff
3fa0b9712f6bb4879d53a066fa16274e480b31a4
refs/heads/master
2022-03-22T06:21:30.654964
2019-12-10T12:58:35
2019-12-10T12:58:35
184,308,402
1
0
null
null
null
null
UTF-8
C
false
false
192
c
#include<stdio.h> int main() { int i,j; for(i=1;i<=4;i++) { for(j=i;j<4+i;j++) { printf(" %d ",j); } printf("\n"); } return 0; }
[ "anikmodak.rucse@gmail.com" ]
anikmodak.rucse@gmail.com
a24e00f35efa5212277c71edfeff1b93a9e4258d
6c14a70724ba96eb0a2436a0ed7324ffa690918f
/csi/libs/trace/include/trcConfig_rhino.h
a579055355d86cc753e00739596be1917016ac57
[]
no_license
diskman88/ble_sdk_v1.1.2
771658dbe2874a48767cf96f60b9a3cd9add72c7
ad0b12ae961e01c7fe6e82e54d064f89fc328e80
refs/heads/master
2022-12-28T03:46:10.340005
2020-09-22T03:58:35
2020-09-22T04:11:44
297,527,303
0
1
null
null
null
null
UTF-8
C
false
false
18,230
h
#ifndef __TRCCONFIG_H__ #define __TRCCONFIG_H__ /****************************************************************************** * SELECTED_PORT * * Macro that specifies what hardware port that should be used. * Available ports are: * * Port Name Code * PORT_CSKY_ABIV1 1 *****************...
[ "diskman88@163.com" ]
diskman88@163.com
9626c03c62f2066a5a001e9589b34f16805178cb
9714edd27090ea32edfa95a9f53602930bed854a
/SimonSays/SimonSays/state_handler.h
96c67ad43e84cb00d9915d3b74f135de4e4c28ba
[]
no_license
ejarte/Spacefighters
9026a79cec924fd418af641e565ed4cd1a483fdb
dd87121b1128026a661bb50e544ff689b68e1d15
refs/heads/master
2020-03-13T14:08:20.648693
2017-05-30T16:45:21
2017-05-30T16:45:21
null
0
0
null
null
null
null
UTF-8
C
false
false
322
h
/* Author(s): Tiago Redaelli * Modified: 14-04-2017 * Version: 0.01 */ #pragma once #include "libraries.h" #define STATE_EXIT 0 #define STATE_GAME_RUNNING 1 #define STATE_MAIN_MENU 2 #define STATE_NETWORK_MENU 3 #define STATE_COUNT 4 void executeNextState(); void setNextState(int state); int getNextState(...
[ "tiago.redaelli@gmail.com" ]
tiago.redaelli@gmail.com
143d21313e7ef6ab3343bb5a80f62f5f035950e8
42c59fe0e6b6a3604555990ca0b871f10d5f32f7
/YetiOS_v1.0/Net/Src/packetbuffer.c
6f47fe6c98900d217f49eaf4981b204cf660d733
[]
no_license
ManuelSimal/hapticARM
c764af03a920596bde241b06fd6af08842fa8330
c418ba87d4c9d403c88dae2774b0fec3b4adc429
refs/heads/master
2022-07-28T02:24:53.831266
2020-05-23T15:54:45
2020-05-23T15:54:45
266,163,666
0
0
null
null
null
null
UTF-8
C
false
false
10,120
c
/* * Copyright (c) 2019, Universidad Politecnica de Madrid - B105 Electronic Systems Lab * 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 abo...
[ "msimal@b105.upm.es" ]
msimal@b105.upm.es
e7e7daa0ee0469ef5ec465f400a7346ca0ac770f
5a35bbffab235ff1fe1ff0c3d907e18226c43b28
/tests/build/scipy/scipy/special/cephes/i1.c
5933ab1ae5522542bf73548e28526d0a45fb13ce
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
crougeux/Dadi_v1.6.3_modif
3e1f184b1325f86278edeee44fba896d5d9b18c3
b499a812e79f335d082d3f9b1070e0465ad67bab
refs/heads/master
2020-05-22T10:24:52.731138
2019-05-12T23:29:41
2019-05-12T23:29:41
186,309,223
3
0
null
null
null
null
UTF-8
C
false
false
10,639
c
/* i1.c * * Modified Bessel function of order one * * * * SYNOPSIS: * * double x, y, i1(); * * y = i1( x ); * * * * DESCRIPTION: * * Returns modified Bessel function of order one of the * argument. * * The function is defined as i1(x) = -i j1( i...
[ "clementrougeux@iMac-clement.local" ]
clementrougeux@iMac-clement.local
598f1ec7378449734a3f9e9446acfc33820f7366
70900e0af85e280db5351eb42affc93bda4358ae
/clang/test/CodeGen/RISCV/rvv-intrinsics-autogenerated/non-policy/overloaded/vdiv.c
701323c1a5a2237f0a3cdc2b02dca72a1c42a0d3
[ "NCSA", "LLVM-exception", "Apache-2.0" ]
permissive
Yannic/llvm-project
00e5d747f4b4d0c0e93053181f166babd08ac0f2
544f8c7f3959f21fa7d85768c3bbb5402bf15ea6
refs/heads/main
2023-08-30T23:03:46.928248
2023-01-27T04:45:02
2023-01-27T04:45:11
247,752,144
0
0
NOASSERTION
2023-01-27T15:47:01
2020-03-16T15:48:18
null
UTF-8
C
false
false
41,154
c
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py // REQUIRES: riscv-registered-target // RUN: %clang_cc1 -triple riscv64 -target-feature +v -disable-O0-optnone \ // RUN: -emit-llvm %s -o - | opt -S -passes=mem2reg | \ // RUN: FileCheck --check-prefix=CHECK-RV64 %s #include <riscv_vecto...
[ "yueh.ting.chen@gmail.com" ]
yueh.ting.chen@gmail.com
b2c28b0ecacd9b182fc698535466566587fc8dd6
73c4e66b8e2dc993ee5e9146d171e43d252ee9f5
/src/populate_simulation_hod.c
253ab5db10b9ba66f6d6068182c6e4f3c68ed98f
[]
no_license
malpaslan/QPM_mocks
f444cffdbfb2191a47fad7df3516e6cea8487504
76983ecbccf00b4fd50e8499e1fc481dbf5ff86f
refs/heads/master
2020-03-29T17:11:09.908461
2017-02-06T16:02:48
2017-02-06T16:02:48
null
0
0
null
null
null
null
UTF-8
C
false
false
10,968
c
#include <stdlib.h> #include <stdio.h> #include <string.h> #include <math.h> #include <time.h> #include "header.h" #define NBINLOOKUP 10000 /* This function reads in a halo file and creates a mock galaxy distribution * by populating the dark matter halos with galaxies with the currently specified * HOD functions....
[ "cameron.mcbride@gmail.com" ]
cameron.mcbride@gmail.com
b815f2bbc43acd22a7f02b5e6468348ddf6187fd
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/d1ac62b6-895c-4073-b3fc-d5de0f3d0a1f.c
b306eb2e2b4583ad01b1d00e6b2e2cd8f4188e63
[]
no_license
nmharmon8/Deep-Buffer-Overflow-Detection
70fe02c8dc75d12e91f5bc4468cf260e490af1a4
e0c86210c86afb07c8d4abcc957c7f1b252b4eb2
refs/heads/master
2021-09-11T19:09:59.944740
2018-04-06T16:26:34
2018-04-06T16:26:34
125,521,331
0
0
null
null
null
null
UTF-8
C
false
false
612
c
#include <string.h> #include <stdio.h> int main() { int i=0; int j=12; int k; int l; k = 533; l = 64; k = i/j; l = i/j; l = l/j; l = l/j; l = i-j; l = i%j; l = l-j; k = k-k*i; //variables //random /* START VULNERABILITY */ int a; int b[43]; int c[5...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
fcf19d72bc59e535623f6d57090bb1279c4dbc0e
1dbb33183427e319b18d57a4c543dddb6f52702f
/K210/src/fd_cam/ai_engine/include/ai_engine.h
91a9aa35436ec7f8ac1428abf47dfd39d0a61ae3
[ "Apache-2.0" ]
permissive
alighofrani95/Fall_detect
44bcae2d7fab6344031d5666487a8eaf9fe6befc
e4e90a1e4c96c98f6c0a78c2da8bda5c480ee058
refs/heads/main
2023-07-10T02:53:28.088438
2021-08-20T12:42:00
2021-08-20T12:42:00
null
0
0
null
null
null
null
UTF-8
C
false
false
332
h
#ifndef _AI_ENGINE_H #define _AI_ENGINE_H #include <kpu.h> // #include "image_process.h" enum ai_status { AI_READY, AI_RUNNING, AI_DONE, }; int sigmoid(const float *src); void ai_done(void *ctx); void ai_infer(kpu_model_context_t *task, uint8_t *in, float **output, size_t *output_size); int is_ai_runnin...
[ "noahzhy@gmail.com" ]
noahzhy@gmail.com
e899157f643adea6380e9810c3360d3c553a6e80
c4c0a1987e4e2ba91ca716458db45800bb0ee78f
/trunk/Kernel/Scaler/RL6432_Series_Scaler/Header/RL6432_Series_DualLinkDVICommonInclude.h
d1622e79ea412746e6b6607cde2d808a8d10ac05
[]
no_license
Kiloland/2785t
72ff1be1373d1d3fae530102f6f993066686ff46
810e9cc00261812fece24731b60492ba5337622b
refs/heads/master
2020-12-09T22:04:41.754792
2019-11-13T14:44:26
2019-11-13T14:44:26
233,428,134
3
0
null
2020-01-12T17:09:20
2020-01-12T17:09:20
null
UTF-8
C
false
false
2,115
h
/********************************************************************************/ /* The Software is proprietary, confidential, and valuable to Realtek */ /* Semiconductor Corporation ("Realtek"). All rights, including but not */ /* limited to copyrights, patents, trademarks, trade secrets, mas...
[ "lonn.tw@gmail.com" ]
lonn.tw@gmail.com
7e5f17409aa2a88ee3f6c519089c9a52f48ad623
bcb45e5edd66d1ca0033103d4624b66996b0523b
/Simple/half-triange.c
72114d4fd49c4cf9116e91a8007bd242b92b5fed
[]
no_license
neeraj11789/c-progamming
114bf84b46bc9a26b1547da0fca42ddb3c7c8a35
b63228618f0ee6bd5e5eb4d2e68e59fca1dc68b0
refs/heads/master
2020-12-24T14:56:56.292437
2015-01-22T22:04:05
2015-01-22T22:04:05
28,209,212
0
0
null
null
null
null
UTF-8
C
false
false
250
c
#include <stdio.h> void main(){ int row, height; int trip; printf("Please Enter the Height for the Triange\n"); scanf("%d", &height); for(row=0; row<height; row++){ for (trip = 0; trip <= row; trip++){ printf("*"); } printf("\n"); } }
[ "neeraj.g@collegedunia.com" ]
neeraj.g@collegedunia.com
bdc2a737d57f3eb00f78af2d9fea7a1d6fac89b2
eeca312a2b9a926ab62bee3e93a373feac53530d
/lib/dpif-netdev-private-dpif.c
84d4ec156e24223b7a7682ec08d28ac6c1078579
[ "Apache-2.0", "BSD-3-Clause", "ISC", "SISSL", "LicenseRef-scancode-unknown-license-reference", "GPL-2.0-only", "BSD-2-Clause" ]
permissive
vasu-dasari/ovs
b081d456bf8abdaf7bc46501a1b8f743deca42d8
4a7b58163f08b102fb0e1e07a137d8bdc4648aaa
refs/heads/master
2021-12-10T09:31:43.853045
2021-11-23T14:00:23
2021-12-07T14:10:36
191,272,183
1
0
Apache-2.0
2019-06-11T01:38:56
2019-06-11T01:38:55
null
UTF-8
C
false
false
4,432
c
/* * Copyright (c) 2021 Intel Corporation. * * 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 o...
[ "ian.stokes@intel.com" ]
ian.stokes@intel.com
da08652e9b7961e4b8bc84232a47b93aa450cb2c
7d7a02cd755980c90c883bf789f976014f0fe3cf
/custom_libraries/baresip/baresip/modules/aac/decode.c
446a33ee7bc9ee0859d8ecb858c2dc9a0cfb8fb7
[ "BSD-3-Clause" ]
permissive
andreaswatch/espbell
0971bed01ee0c8b246b6f77749d13bb16750e6ad
5b3b5aac2ba167777682769a2bf388a51244ec4c
refs/heads/master
2023-01-08T19:02:44.096610
2020-11-04T21:28:12
2020-11-04T21:28:12
310,115,460
0
0
null
null
null
null
UTF-8
C
false
false
2,449
c
/** * @file aac/decode.c AAC Decoder * * Copyright (C) 2010 Creytiv.com */ #include <string.h> #include <re.h> #include <rem.h> #include <baresip.h> #include <fdk-aac/aacdecoder_lib.h> #include "aac.h" struct audec_state { HANDLE_AACDECODER dec; }; static void destructor(void *arg) { struct audec_state *ads ...
[ "andreas@andreas-surfacebook.fritz.box" ]
andreas@andreas-surfacebook.fritz.box
fe53e0e3499c2e02dd72e42ada9b3bfbfc512c1c
a78b4255c76bb1e292c17c86a50816473dfd6006
/src/langinfo/ABMON_2.h
98737148a435c36df93a3c587a4304ac17f053c0
[ "MIT" ]
permissive
ung-org/libc
be61b73696766d8ca003dd3e2e94d57ea695e151
55fc64c7ffd7792bc88451a736c2e94e5865282f
refs/heads/master
2022-12-01T22:24:51.479128
2020-08-17T19:39:58
2020-08-17T19:39:58
null
0
0
null
null
null
null
UTF-8
C
false
false
132
h
#include <langinfo.h> #define ABMON_2 ((nl_item)35) /* XOPEN(4) POSIX(200809) */
[ "jkk@ung.org" ]
jkk@ung.org
23d74ae02b20ae98f5d73910918b435ca08c19fe
ae6315382fafb3bd04d433a3ab8e9b0d1058e32b
/Projects/STM32L073RZ-Nucleo/Templates/Src/Comble.c
3a0dd00a8f99306d3fad94970529fd38e36af12b
[]
no_license
shevachen2008/XGLOCK
9b50488a8754d0ee91aa3ef1c8e452abc544c6f5
0913de503cad67059122e2be898ef54a0bef8454
refs/heads/master
2022-04-16T23:49:10.261446
2020-04-15T09:16:06
2020-04-15T09:16:06
255,864,542
2
0
null
null
null
null
GB18030
C
false
false
24,644
c
/**************************************************************************************** 文件: Comble.c 说明: STM32 与 52832 通信业务协议 ****************************************************************************************/ //头文件. #include "main.h" //uint8_t com_sendbuff[PROTO_COMM_BRG_LENTH]; static uint8_t com_g...
[ "52744108+shevachen2008@users.noreply.github.com" ]
52744108+shevachen2008@users.noreply.github.com
b2c916ce992f78474aac01818e658f6c06829189
a763f6505331d1c1823d0e8620cc2d5f83048486
/published/ddk/inc/mcd.w
ae8eed71c9f4f0794ec46ab5dbe754b84c5fedda
[]
no_license
KernelPanic-OpenSource/Win2K3_NT_drivers
1dc9ccd83e38299f6643ecfd996a5df1357cc912
1b5d2672673ff31b60ee4a5b96922ddbcc203749
refs/heads/master
2023-04-11T08:18:29.881663
2021-04-14T04:30:34
2021-04-14T04:30:34
357,772,205
12
5
null
null
null
null
UTF-8
C
false
false
8,410
w
/*++ Copyright (C) Microsoft Corporation, 1996 - 1998 Module Name: mcd.h Abstract: These are the structures and defines that are used in the changer class drivers. The changer class driver is separated into two modules. Mcd.c contains code common to all medium changer drivers including the dri...
[ "polarisdp@gmail.com" ]
polarisdp@gmail.com
ebf9a5207507266d92d6116aa497bbf69da5b96f
ccc12225211fb5ecc1851127d4d14ed67c2900f2
/USER/inc/JY901B.h
cb537faa7d92acc815d1800943dae8cdb18e9027
[]
no_license
jianginterest/stm32f407
cdfbe05cfbc5b5ae458fd8fd8bd729191e7fa8b1
1de2ae33a484468ef7856081ac8f17c6e5a32d22
refs/heads/master
2020-03-08T02:22:31.078686
2018-05-28T00:49:25
2018-05-28T00:49:29
127,858,051
0
0
null
null
null
null
UTF-8
C
false
false
401
h
#ifndef JY901B_H #define JY901B_H #ifdef __cplusplus extern "C"{ #endif #include "include.h" #define JY901B_SlaveAddress 0XA0 void JY901B_Getdata(void); extern float Angle[3]; extern float Angle_speed[3]; extern float h[3]; extern float w[3]; extern float A[3]; extern float JSD[3]; extern float c[3]; extern u...
[ "18847162723@163.com" ]
18847162723@163.com
c7e18513fb6bca013029f5fffc5dae1f1a90878d
a10a3972f62c1d9711c2654d7b3b6ca8ee003300
/src/machserver/src/lib/c.orig/unixSyscall/wait.c
fbc4d29af2705db93fe396984344b44d0bd4ab21
[]
no_license
takeharukato/sprite
5913f74a08ce6c76e5107ede92bf4f44806f5b7d
e96c03abb319964e69cd21577d724ee83a950a9c
refs/heads/master
2020-08-04T02:40:31.702805
2015-10-05T03:49:13
2015-10-05T03:49:13
null
0
0
null
null
null
null
UTF-8
C
false
false
4,967
c
/* * wait.c -- * * Procedure to map from Unix wait system call to Sprite. * * Copyright (C) 1986 Regents of the University of California * All rights reserved. */ #ifndef lint static char rcsid[] = "$Header: wait.c,v 1.5 88/07/29 18:54:36 ouster Exp $ SPRITE (Berkeley)"; #endif not lint #include <sprite.h> #i...
[ "noah.evans@gmail.com" ]
noah.evans@gmail.com
ae76b2f35789505107d4f7622996d5feaa7cab65
b62dbabb72f3e6a8ad5d7831f7a8e836962c820d
/HZZlljj/HZZlljjAnalyzer/test/analysis/computeBGyields.C
4fc53cf361d6664dfa3e0f029500fd2d76598543
[]
no_license
amarini/pandolf
53465357b74a300f66a8dd0107e399c53ac06e22
d0820d62c922e00a8e02ea46da3765180b2682c9
refs/heads/master
2016-09-10T09:05:53.910922
2013-07-05T15:29:01
2013-07-05T15:29:01
null
0
0
null
null
null
null
UTF-8
C
false
false
6,713
c
#include "TFile.h" #include "TH1D.h" void computeBGyields() { TFile* fileDY = TFile::Open("HZZlljjRM_DYJetsToLL_TuneZ2_M-50_7TeV-madgraph-tauola_Summer11-PU_S4_START42_V11-v1_optLD_looseBTags_v2_ALL.root"); TFile* fileVV = TFile::Open("HZZlljjRM_VVtoAnything_TuneZ2_7TeV-pythia6-tauola_Spring11_v2_optLD_looseBT...
[ "" ]
950c896349f3126580615e215949a28f513fa861
c51e2502e7b8768142cd44776c14a41784706328
/Trabajo individual/pddl/cbp-roller/seq-sat-cbp/ff.h
bf116f08c0259897e9f87d970b3afe6beab574b6
[]
no_license
akua21/IngenieriaConocimiento
c4e8b7ef698673add5b410825fc1b604b6fd0ece
42f5cdd95924ce9481fc939bdb0ee45ae9ef44ad
refs/heads/main
2023-03-21T23:06:53.140138
2021-03-14T23:03:59
2021-03-14T23:03:59
309,311,299
0
0
null
null
null
null
UTF-8
C
false
false
34,459
h
/* * THIS SOURCE CODE IS SUPPLIED ``AS IS'' WITHOUT WARRANTY OF ANY KIND, * AND ITS AUTHOR AND THE JOURNAL OF ARTIFICIAL INTELLIGENCE RESEARCH * (JAIR) AND JAIR'S PUBLISHERS AND DISTRIBUTORS, DISCLAIM ANY AND ALL * WARRANTIES, INCLUDING BUT NOT LIMITED TO ANY IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS...
[ "albareinders@gmail.com" ]
albareinders@gmail.com
3342a442f14ade2f6a9bbe10162f2208578a55c1
f927b6ed283ecc96189a9c275936b98babd7d938
/Computer_Network/socket/print_s.c
4225f1795f3f49e0ec24f512a5c76b45d2641475
[]
no_license
Jeonghwan-Yoo/Uni
afc2408b0f7f17b87133118a7f71624371337708
9ae7e29fe8dcba4ec778e5025c8091307099b3e1
refs/heads/master
2021-07-16T07:39:48.226162
2020-09-11T14:34:49
2020-09-11T14:34:49
208,796,304
0
0
null
null
null
null
UTF-8
C
false
false
1,474
c
#include <stdio.h> #include <netinet/in.h> #include <sys/socket.h> #include <string.h> //memset #include <unistd.h> //close read write #define PORT 9000 char buffer[BUFSIZ]="hello, world\n"; char rBuffer[BUFSIZ]; //initialization int main(){ int c_socket, s_socket; struct sockaddr_in s_addr, c_addr; int len; int...
[ "dwgbjdhks2@gmail.com" ]
dwgbjdhks2@gmail.com
b53273608ebaf315d7bf20afd09094a087e8a0e6
a4a3059351f5a92017fc8d28e7934fa20bb6c26a
/libft/src/ft_tolower.c
03de3f0fee84489bd6dc6f66767f719d27841bf4
[]
no_license
lachgarlahcen/42sh
c016c96be6319c3140fd2e5b2ce9aaf5715afcaf
3233fa2c6f54a9c37d5c976a55703ab55aff2cd1
refs/heads/master
2020-12-14T01:10:48.059924
2020-06-24T23:05:16
2020-06-24T23:05:16
234,585,788
1
1
null
null
null
null
UTF-8
C
false
false
985
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_tolower.c :+: :+: :+: ...
[ "hastid@e2r8p12.1337.ma" ]
hastid@e2r8p12.1337.ma
f7ad39217711bd49a9b53fe7fb4b9640b0968807
d4ef16bb0b5cf3217d8050f18a8d017fdc9c441d
/libstb/tss2/ibmtpm20tss/utils/ibmtss/Duplicate_fp.h
97693be533e13212a2ad5a042170ae34016d683d
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
open-power/skiboot
4e9fbb97d3bd90a8378191e355dce3b55e7003c7
3d634a147b49ecb93a9a851433140f91d1efd74a
refs/heads/master
2023-08-17T13:17:31.961906
2023-07-19T05:07:58
2023-08-09T20:56:01
21,414,075
92
156
Apache-2.0
2023-07-11T14:56:23
2014-07-02T06:42:26
C
UTF-8
C
false
false
4,179
h
/********************************************************************************/ /* */ /* */ /* Written by Ken Goldman */ /* IBM Thomas J. Watson Research Center */ /* $Id: Duplicate_fp.h 1257 2018-06-27 20:52:08Z kgoldman $ */ /* */ /* Licenses and Notice...
[ "oohall@gmail.com" ]
oohall@gmail.com
69be24b827d6068696a2103484c8482c48ddad43
d01e7b264b920fbcf4151ea4339694b0f8dc9336
/Files/sd/stm324xg_eval.c
441a26bafa55c06fdfc50a79c6833375bcb7575f
[]
no_license
hrsiqb/OpenLucid
127cdd8360705575211c894cae0ff88484cfadf7
5cb96c5ce1bfbd3d6361e3871cb5dbae63e1948f
refs/heads/master
2023-06-13T22:51:30.257478
2021-07-30T18:09:04
2021-07-30T18:09:04
391,147,195
0
1
null
null
null
null
UTF-8
C
false
false
25,688
c
/** ****************************************************************************** * @file stm324xg_eval.c * @author MCD Application Team * @version V1.1.2 * @date 19-September-2013 * @brief This file provides * - set of firmware functions to manage Leds, push-button and COM ports * ...
[ "hrsiqb@gmail.com" ]
hrsiqb@gmail.com
ddc17458428d1d17f013932b62ebccc30f418349
264cc34d1d5322c9c955f351e5ed710836f6a1a5
/cmake_targets/basic_simulator/enb/CMakeFiles/S1AP_R14/S1AP_CompletedCellinTAI-Item.c
902de73183462edcf4643bea74eb048a32556458
[ "BSD-3-Clause", "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-generic-cla" ]
permissive
mr-ytseng/openairinterface5g
8d40a768b2046da8c521f58d34c0466226f1c154
54d541c22cdfcb774774089291c93e4e79294a1d
refs/heads/master
2021-10-27T20:56:33.843199
2019-04-19T15:37:55
2019-04-19T15:37:55
177,127,103
0
1
null
null
null
null
UTF-8
C
false
false
2,530
c
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "S1AP-IEs" * found in "/home/user/openairinterface5g/openair3/S1AP/MESSAGES/ASN1/R14/s1ap-14.5.0.asn1" * `asn1c -pdu=all -fcompound-names -fno-include-deps -gen-PER -no-gen-OER -no-gen-example -D /home/user/openairinterface5g/cmake_targ...
[ "yuchia.tseng@irt-systemx.fr" ]
yuchia.tseng@irt-systemx.fr
c7a9d771b3758d77ad02c3b30214581c33df8784
adb5239723a26da9d7ce61fe8f93bb8b58592212
/EASY/singlenumbers.c
1f67531f737e19e8ad1b7f4f3550dc37ec960b03
[]
no_license
johnnguyen1997/GeekForGeeks
2f001d05b923b189774da1929eaa7492def137e7
b9ea964a6d86575ae9be8650e414943fc7c8dfaa
refs/heads/master
2021-09-10T16:35:48.191081
2018-03-29T11:58:02
2018-03-29T11:58:02
105,429,181
0
0
null
null
null
null
UTF-8
C
false
false
771
c
#include<stdio.h> //O(n) solution. Example of bit manipulation. In short. a xor a xor b = 0 xor b //which is equal to b. Also other stuff such as associativity and commutitivity //of xor //This could be a medium problem if O(n) is required. I can easily see //an nlogn solution where you use your favourite sort and th...
[ "john.nguyen1997@outlook.com" ]
john.nguyen1997@outlook.com
df052d94dbab4ad30ca8dd497be89c3d98909d1d
de8209754b85d0bfb88cf321e9ac809af2b1a98f
/5.Bootloader应用示例/Bootloader/User/boot_loader/boot_loader.c
25801999f4fa821fb8240d2d487fab9772561af3
[]
no_license
LONGZR007/IAP-STM32
f2cb114d3e28a3ccdf54268ce996c59ca25d0a14
f7b988df83f5ade5891cb8a7533d092fe138755c
refs/heads/master
2022-09-02T04:35:33.767591
2022-08-28T15:08:59
2022-08-28T15:08:59
222,193,331
18
22
null
null
null
null
GB18030
C
false
false
3,862
c
/** ****************************************************************************** * @file boot_loader.c * @author fire * @version V1.0 * @date 2019-xx-xx * @brief 跳转实现 ****************************************************************************** * @attention * * 实验平台:野火 STM32 F429 开发板 ...
[ "1558193230@qq.com" ]
1558193230@qq.com
5184694b90ca73a685144faff8e06dfc27be9121
51635684d03e47ebad12b8872ff469b83f36aa52
/external/binutils-2.38/ld/testsuite/ld-elf/pr18718.c
bbf8e037c132ab0b02af7f4d1ba62e4785772e1a
[ "FSFAP", "Zlib", "LicenseRef-scancode-public-domain", "GPL-3.0-only", "GPL-2.0-only", "LGPL-3.0-only", "GPL-1.0-or-later", "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-other-copyleft", "LGPL-2.0-only", "LicenseRef-scancode-other-permissive", "GPL-2.0-o...
permissive
zhmu/ananas
8fb48ddfe3582f85ff39184fc7a3c58725fe731a
30850c1639f03bccbfb2f2b03361792cc8fae52e
refs/heads/master
2022-06-25T10:44:46.256604
2022-06-12T17:04:40
2022-06-12T17:04:40
30,108,381
59
8
Zlib
2021-09-26T17:30:30
2015-01-31T09:44:33
C
UTF-8
C
false
false
628
c
#include <stdio.h> #include <stdint.h> extern void foo (void); extern void check_ptr_eq (void (*) (void), void (*) (void)); void new_foo (void) { } __asm__(".symver new_foo, foo@@VERS_2.0"); #if defined __powerpc64__ && defined _CALL_AIXDESC && !defined _CALL_LINUX __asm__(".symver .new_foo, .foo@@VERS_2.0"); #endif...
[ "rink@rink.nu" ]
rink@rink.nu
dd81aaa1422cb6aa881ea27a8a7cc31f8c54c079
050a67f4fafd58c7eeaf9e27aedc1773d0d1617a
/B2-Graphic/my_defender/src/tower_menu_init.c
b96c9a80306caffab45d1a3d12c934eb73ade8ef
[]
no_license
LucieII/Epitech_archived_project_tek1
c23842112edaa42f792ba5a2c1ecffe23292bc09
0ff6796b8949ee527eb9ce4c3d02b6050db36467
refs/heads/master
2023-04-01T16:08:09.772495
2021-04-13T15:49:01
2021-04-13T15:49:01
null
0
0
null
null
null
null
UTF-8
C
false
false
3,045
c
/* ** EPITECH PROJECT, 2020 ** tower ** File description: ** tower_menu.c */ #include "my_defender.h" sfIntRect set_intrect(int left, int top, int width, int height) { sfIntRect temp; temp.left = left; temp.top = top; temp.width = width; temp.height = height; return (temp); } struct select_s ...
[ "nathan.chiodin@epitech.eu" ]
nathan.chiodin@epitech.eu
82a95969e2896e867656923d342e5109c53d09ea
485fe501d40904ce31b8fce2bc6ad547b7e472fa
/17_i2c/bsp/delay/bsp_delay.c
6286059a54237adf9b8c93ac7537293b1fd7d696
[]
no_license
phanirajkiran/I.MX6U_Trial
60e18e9697e4fb12126c506ad2871c025f3cb509
f89d7824fe909746ce63b60b95030a1a18045d3f
refs/heads/master
2022-04-04T20:45:43.329678
2020-02-16T13:05:05
2020-02-16T13:05:05
null
0
0
null
null
null
null
UTF-8
C
false
false
4,331
c
/** ****************************************************************************** * @file bsp_delay.c * @brief bsp_delay function * @author Xli * @email xieliyzh@163.com * @version 1.0.0 * @date 2020-02-06 * @copyright 2020, XIELI Co.,Ltd. All rights reserved *****************************...
[ "xieliyzh@163.com" ]
xieliyzh@163.com
63c09a9aec28aca9ace1536acc78d81d598f3a1a
eb0de2729ea5e0e76c02c6cd56971165f76ef459
/trunk/SW_InkerSys/code/DevDriver/lamp/lamp.h
4251b52654cd846232a3dcac1612cea1f78d0bc8
[]
no_license
zhang00956/C51Dbg
9364a5e1b5a6bce6f16785b1fd83a98af9305c04
16619cf037345efcc4f4c92b247b30e733d879ed
refs/heads/master
2020-03-10T05:32:11.469843
2018-04-11T06:02:15
2018-04-11T06:02:15
null
0
0
null
null
null
null
UTF-8
C
false
false
131
h
#ifndef _LAMP_H #define _LAMP_H GLOBAL void ProF_10mS_Lamper(void); GLOBAL void SetLamp(u8 num,u8 time_on,u8 time_off); #endif
[ "dongmaowan99@163.com" ]
dongmaowan99@163.com
c6415268c97e71441a147a82d2768e1f97c228d4
33a92640233e7963fefc1997f9a70198e6a99959
/src/sbmv/BLAS_zsbmv_d_d_x.c
2e7308c45b089213e9effc87dc303d6069cfa128
[ "BSD-3-Clause" ]
permissive
gaming-hacker/lib_xblas_osx
dd1f4da9219e873ee5916bd77753d496214dc530
33dd2b29b2e5f1b74df609103c9eeed36dea4a0c
refs/heads/master
2021-01-09T20:29:17.739679
2016-07-21T17:29:11
2016-07-21T17:29:11
63,882,875
0
0
null
null
null
null
UTF-8
C
false
false
40,624
c
#include "blas_extended.h" #include "blas_extended_private.h" void BLAS_zsbmv_d_d_x(enum blas_order_type order, enum blas_uplo_type uplo, int n , int k, const void *alpha, const double *a, int lda, const double *x, int incx, const void *beta, void *y, int incy, enum blas_pr...
[ "vzoft@outlook.com" ]
vzoft@outlook.com
bddcb1b8157430fa1ec36c0b369d6daea5305e5c
947e3388fc32fe75c2009806dc12c4c59320f97a
/bit.c
8bc622a9d7e35957944373f479b9990a8386b25c
[]
no_license
aashikarajasekar/aashi
67bf6603ba7e2cdb0136d685eada5ad288b217aa
3462b5312bcab854d20a951aefade2c6ac39a62c
refs/heads/master
2021-05-11T00:56:06.531403
2018-02-28T10:38:07
2018-02-28T10:38:07
118,315,740
0
1
null
null
null
null
UTF-8
C
false
false
242
c
#include <stdio.h> int main() { int i = 65; int k = 120; printf(" value of i=%d k=%d before swapping", i, k); i = i ^ k; k = i ^ k; i = i ^ k; printf("value of i=%d k=%d after swapping", i, k); return 0; }
[ "noreply@github.com" ]
aashikarajasekar.noreply@github.com
311cb9a09baa42f060e591f7aad225dc13c23eda
a3ee0f3338644ca2a783a18c5fad2dae41fc57d6
/unit_cfz.h
aca95061ae68683b80f3db942088f7bbf3a01735
[]
no_license
lexszero/multilink_prog
41f678b3938167e55de78042829628f35547ca69
01a3ff49e712467264b46161a786791b85e03a48
refs/heads/master
2016-08-07T03:07:33.375076
2011-07-21T00:03:30
2011-07-21T00:03:30
2,078,375
1
0
null
null
null
null
UTF-8
C
false
false
10,888
h
#ifndef __unit_cfz_h #define __unit_cfz_h #include <stdbool.h> #define DEBUG(fmt, ...) fprintf(stderr, fmt, ##__VA_ARGS__) #define _cdecl __attribute__((cdecl)) extern int unit_cfz_load(const char *path); extern int unit_cfz_unload(); /* THESE ARE THE CALLS YOU CAN MAKE TO THIS FILE NOTE: YOU MUST CALL load_dll()...
[ "lexszero@gmail.com" ]
lexszero@gmail.com
6b59c5b81257fdded80f7e366120ebc8f9a0f1e6
1302ea9d143e0a112d0a0eb14c76bf2a1804a68e
/testprograms/1637.c
fe799ec663d8d554b8d2736bb774f024ec6fb677
[]
no_license
tangyixuan01/DIPROM
14d8d582f3c2dec511a58704d231b537f81aa4fb
668ccc49bc170280878cd0310d782f5ea7725fb7
refs/heads/master
2023-06-23T21:03:50.172828
2021-08-05T09:31:09
2021-08-05T09:31:09
390,763,124
1
0
null
null
null
null
UTF-8
C
false
false
1,561,280
c
#include <stdint.h> #include <stdarg.h> #include <stdlib.h> static volatile int64_t li_0 = 0xF09D3D4457FC3DE2; static int32_t i_1 = 0x6FC43AC5; static volatile uint16_t us_2 = 0xE17D; static volatile int16_t s_3 = 0xB5DF; static int16_t s_4 = 0x69EA; static int64_t li_5 = 0x0; static int32_t i_6 = 0x621264C2; static vo...
[ "1332822759@qq.com" ]
1332822759@qq.com
1dfd1eceeaa46483325436bc97de78c6bcd557ad
45a26f28a29ab6dd9d3bcf315117d814f50808b1
/src/samba/samba-59/pdb_ods/pdb_ods.c
bab4f7ac713c1cc8c6f9f7f5e9685732ac45f7c7
[]
no_license
zeborrego/opensource.apple.com
0eb9161029ce8440dbdc4b5157b3927a6e381f8d
88cbaab4a42e97cbbfe6b660f2f0945536821be6
refs/heads/master
2021-07-06T17:16:28.241638
2017-10-02T11:58:56
2017-10-02T11:58:56
null
0
0
null
null
null
null
UTF-8
C
false
false
73,829
c
/* Unix SMB/CIFS implementation. passdb opendirectory backend 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 (at your option) any later version...
[ "mattl@cnuk.org" ]
mattl@cnuk.org
003a50dbd97eb31e7d0ec6afdd9db56fc00efb11
7abcc82f0fbe6dd9ab270d09ae892594d579ea51
/UART-DMX512.c
0f85c95340f149ed92dfb868c56dcac575356288
[]
no_license
AlessioSocci/EDUCATIONAL-FRDM-KL25Z
b977a7b6667f29da07fcab5847bd6d04c81af916
944a345eed64de46b0d8bd84bcad22f3b8389bf8
refs/heads/master
2022-04-04T08:51:39.933006
2020-02-13T13:23:01
2020-02-13T13:23:01
null
0
0
null
null
null
null
UTF-8
C
false
false
1,059
c
/* * UART-RS485.c * * Created on: 14 giu 2019 * Author: Alessio */ #include <UART-DMX512.h> void UART_DMX512_init(void) { PORTE->PCR[22] |= (1 << 10); // ALT2 mode UART1 TX PORTE->PCR[23] |= (1 << 10); // ALT2 mode UART1 RX SIM->SCGC4 |= (1 << 12); // UART0 clock enable UART2->BD...
[ "noreply@github.com" ]
AlessioSocci.noreply@github.com
facd2bfda104a47c98ee093d5b2948b5d903204a
89f66fd2d5a80af6148c07d724f420026d24742e
/app/src/main/cpp/test/RtmpPushClient.c
c13988530e6e6035dee65d8fe030e581ccfec65a
[]
no_license
kelinlang/StreamMedia
52cf7a45c9e8bba67dbc3888ae90feb4997d89b7
e231db0f8125249b5b10987ca9df73f97290e0d5
refs/heads/master
2020-04-06T17:03:06.784730
2019-04-26T07:03:39
2019-04-26T07:03:39
157,644,384
0
1
null
null
null
null
UTF-8
C
false
false
13,003
c
// // Created by dengjun on 2019/3/12. // #include <librtmp/rtmp.h> #include <malloc.h> #include <CommonLib/log/cl_sdl_log.h> #include <librtmp/rtmp-helpers.h> #include <StreamMedia/model/sm_video_data.h> #include <StreamMedia/buffer/sm_video_data_buffer.h> #include "RtmpPushClient.h" #include <stdarg.h> #...
[ "jun.deng@yunva.com" ]
jun.deng@yunva.com
81f52cbc64bfd807208de5d66901f0b204789ab0
5460429b76744051e960f7530e67a08cb913102d
/4.0/winevent.h
1206f58c37c750bd734cff97429150e64d6bfb91
[]
no_license
hstraub/eventlog-to-syslog
63d3775c762ad1825a10f07a7d079f02dc479f37
bce70b8bb60860c46a8c55d59995fe7a6bc42950
refs/heads/master
2021-01-20T09:41:03.977109
2014-07-22T09:55:23
2014-07-22T09:55:23
22,099,051
1
1
null
null
null
null
UTF-8
C
false
false
1,933
h
/* Copyright (c) 2009, Rochester Institute of Technology All rights reserved. Redistribution and use in source and binary forms are permitted provided that: (1) source distributions retain this entire copyright notice and comment, and (2) distributions including binaries display the followi...
[ "herbert@linuxhacker.at" ]
herbert@linuxhacker.at
1304a734b603138e6a9a1a5c1d2d2b91dd78cfc7
bbcf9e896f276aa638481bfc2f1dc05912cb1bef
/3CMForUser/Pods/Headers/Public/CQTNetworkKit/CDataScanner_Extensions.h
03cd8a0203eb8fce9e200f9e32981a4f448d6617
[]
no_license
CoderA9/ThreeCM
341be4a0ac0e03b6d83308711b59714eb8e14c3f
5921379793e5147e49094aa5923d63a17a01c296
refs/heads/master
2020-04-06T02:29:25.372531
2015-07-28T03:12:07
2015-07-28T03:12:07
39,764,997
0
0
null
null
null
null
UTF-8
C
false
false
82
h
../../../CQTNetworkKit/CQTNetworkKit/Class/CQTNetworkKit/CDataScanner_Extensions.h
[ "apple@ANines-MacBook-Pro.local" ]
apple@ANines-MacBook-Pro.local
c1dfac565105a016efd87f8ff8208c7373efd279
09a5be4ce5eddc4b3af8e023fc1a09d40099c669
/src/fullnode/include/clientversion.h
157ceae224e312a67d4912d3dcc0be0c48ea195e
[]
no_license
rongwl/btclite
a48e5076dd8bfad80eb2b4de8fc024830529fa5b
5f7eb6fc2a51320a4dac9ea898c6fb3d62892fd3
refs/heads/master
2021-07-04T02:01:08.688741
2020-08-31T09:59:10
2020-08-31T09:59:10
158,512,773
1
0
null
null
null
null
UTF-8
C
false
false
262
h
#ifndef BTCLITE_CLIENTVERSION_H #define BTCLITE_CLIENTVERSION_H #if defined(HAVE_CONFIG_H) #include "config/btclite-config.h" #else #define PACKAGE_NAME "btclite" #define PACKAGE_STRING "btclite" #endif // HAVE_CONFIG_H #endif // BTCLITE_CLIENTVERSION_H
[ "michael_air_rong@163.com" ]
michael_air_rong@163.com
d39ee936eb6523bed322f718ffa4382635d4f1b2
c6e14f68ba25b6c8a8699bebd14b6146793e59ab
/RRC/code/asn1c/DRB-CountMSB-Info.c
7a0c2b11ae8a37793e067ac3bbb380712958d9f4
[]
no_license
Captain-One/C_Programe
2a049e0530b863c5ffa53fc55e4f0d96b1ce116f
2c2bc608a1f42f7ecf95e049cf48e45fdf090889
refs/heads/master
2021-07-13T14:49:09.308017
2020-06-16T06:49:46
2020-06-16T06:49:46
136,001,747
0
3
null
null
null
null
UTF-8
C
false
false
4,249
c
/* * Generated by asn1c-0.9.28 (http://lionet.info/asn1c) * From ASN.1 module "EUTRA-RRC-Definitions" * found in "36331-b00.asn" * `asn1c -S /usr/local/share/asn1c -fcompound-names -fskeletons-copy -gen-PER -pdu=auto` */ #include "DRB-CountMSB-Info.h" static int memb_countMSB_Uplink_constraint_1(asn_TYPE_descr...
[ "pxqjoe@sina.com" ]
pxqjoe@sina.com
a9c8cba731acaaca2a16c0b12e4de145b80d742d
0731715108211767d589e9b8e537d3478a079fcb
/Libft/ft_toupper.c
2804144d5a088919487ec69524a2ec17f787c8e7
[]
no_license
rloulizi42/Push_Swap
edbc88d328b121f6d32824d134bcc0dfa0733e55
394bb478874f820c488bafdf78b7b7e990e19835
refs/heads/master
2021-08-30T10:53:37.598599
2017-12-17T15:20:42
2017-12-17T15:20:42
114,546,736
0
0
null
null
null
null
UTF-8
C
false
false
1,005
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_toupper.c :+: :+: :+: ...
[ "rloulizi@e1r8p16.42.fr" ]
rloulizi@e1r8p16.42.fr
b35d8e4f201999c1f647647af9d8f553f4f38a5c
f2f89480a85229780bec440452bf0ae5eb781317
/src/areaTest/boundary.c
bd657cd95fee75f9dbed604c631936b039bae09d
[]
no_license
sgazagnes/DCF-2D
d52336cfaf3aa5ef8257c31ffdd9241f69f9f2b9
6c51308b7e2882ec50c7995fe6da1103c217210a
refs/heads/main
2022-12-23T23:44:59.691709
2020-10-09T14:12:28
2020-10-09T14:12:28
302,035,938
0
0
null
null
null
null
UTF-8
C
false
false
25,904
c
#include <math.h> #include <stddef.h> #include <stdio.h> #include <stdbool.h> #include <mpi.h> #include "boundary.h" #include "communication.h" #include "mpihelper.h" #include "writefile.h" #include "cmdline.h" #include "types.h" #include "constants.h" #include "logc.h" #include "checks.h" extern MPI_Datatype mpi_ma...
[ "sgazagnes@gmail.com" ]
sgazagnes@gmail.com
863cfd99cb21a17d043d9045dac9c0841d5e1d41
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/base/busdrv/acpi/driver/amlinew/debugger.c
dc1dd08b50ce69f7265ce974fa3e29f804431f77
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C
false
false
2,359
c
/*** debugger.c - Debugger functions * * This module contains all the debug functions. * * Copyright (c) 1996,1997 Microsoft Corporation * Author: Michael Tsang (MikeTs) * Created 09/18/96 * * MODIFICATION HISTORY */ #include "pch.h" #ifdef DEBUGGER /*** Miscellaneous Constants */ #define MAX...
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
93499a2bc02e77be446365e7d0fed8b1f1ba5113
af9b7a49f5912142ff4e7cb35fd11b1e9635154d
/sdk/include/rtl8363nb/port.h
3e8eb2f039783b37ef4384bd04ad40eaec2e7a58
[]
no_license
YuHsinShi/2430personal
528ff02226102af77a006fef80fe7c35139fa7bb
83e1ce53a7d872ed27bad4ba5549953975c0be3b
refs/heads/master
2023-03-06T14:44:31.607663
2020-07-25T15:55:28
2020-07-25T15:55:28
340,536,248
1
0
null
null
null
null
UTF-8
C
false
false
30,905
h
/* * Copyright (C) 2013 Realtek Semiconductor Corp. * All Rights Reserved. * * This program is the proprietary software of Realtek Semiconductor * Corporation and/or its licensors, and only be used, duplicated, * modified or distributed under the authorized license from Realtek. * * ANY USE OF THE SOFTWARE OTH...
[ "lawrence.shi@ite.com.tw" ]
lawrence.shi@ite.com.tw
06ae7a373207bab6226d29a98bfa02cb2fc4384a
1b523bf1b3bfd9782227ca394ac20143baf4974c
/official/chapter05/phoneme/phoneme_feature-mr3-rel-src-b01-17_jul_2008/javacall/interface/common/javacall_dir.h
2156a0ad1a8f4755bee6654f6b2195f4090c272e
[]
no_license
Joyounger/armlinuxbook
66c80192a2d4ea068bba2e21c92067705da08949
b7fea1d8c235cbd1f4551b5495bbacc777d91916
refs/heads/master
2021-05-06T10:17:58.433025
2018-03-31T09:14:02
2018-03-31T09:14:02
114,165,147
1
1
null
null
null
null
UTF-8
C
false
false
6,103
h
/* * * Copyright 1990-2008 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free Softwa...
[ "942510346@qq.com" ]
942510346@qq.com
701c72a23bc60daeec8e821b6244b720bda9c869
5b5d1a5839ea9453d4f000d853430d0817f9c5ee
/stm-spirit1-rf-driver/radio_spi.h
df3ac4acb6a552ec4d3cf846cc8d8e811137008b
[]
no_license
ndiggle/stm-spirit1-rf-driver
729126a2182b966fd00bc98953bf28427821d478
0ff4ca7537f0f2e9137c61ac21251ac06ca42bc3
refs/heads/master
2021-05-07T08:59:57.626270
2017-09-01T06:51:04
2017-09-01T06:51:04
109,464,559
1
0
null
2017-11-04T03:41:28
2017-11-04T03:41:28
null
UTF-8
C
false
false
7,840
h
/** ****************************************************************************** * @file radio_spi.h * @author System Lab - NOIDA * @version V1.0.0 * @date 15-May-2014 * @brief This file contains all the functions prototypes for SPI . **************************************************************************...
[ "wolfgang.betz@st.com" ]
wolfgang.betz@st.com
b30a1f55b651aab5aaa5af84ff66c7e459fd8ae1
cebf6db6959d5d079aee3f0ec6e28ee9836f50fe
/libs/libmuslc/arch_include/arm/arch/syscall_stubs_sel4.h
7191c1fdac4983a3345e1eead20b33e8f12b6e61
[ "MIT", "LicenseRef-scancode-other-permissive", "BSD-3-Clause", "LicenseRef-scancode-mit-nagy", "LicenseRef-scancode-public-domain", "BSD-2-Clause" ]
permissive
glen-mac/DreamyOS-seL4-Operating-System-AOS
bcf7c3d4be691f1d1993ad4f8a92219dde7516ee
44122f3d7a94e8ae95c4100b6fd498659ecc006b
refs/heads/master
2021-09-07T23:36:34.222666
2018-03-03T08:47:31
2018-03-03T08:47:31
99,069,273
9
4
null
null
null
null
UTF-8
C
false
false
25,287
h
/* @LICENSE(NICTA) */ #ifndef _SYSCALL_STUBS_SEL4_ARM_H_ #define _SYSCALL_STUBS_SEL4_ARM_H_ #include <stdarg.h> #include <syscall_sel4.h> long sys_restart_syscall(va_list ap); long sys_exit(va_list ap); long sys_fork(va_list ap); long sys_read(va_list ap); long sys_write(va_list ap); long sys_open(va_list ap); long ...
[ "Alexander.Kroh@nicta.com.au" ]
Alexander.Kroh@nicta.com.au
c0645ec5d8985a925497b30e342ddbc592c36d04
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/6728933b-c0c1-4202-8ba9-216936eff4a4.c
b71b3a4c329602b8e50a59e512104b591578fe7a
[]
no_license
nmharmon8/Deep-Buffer-Overflow-Detection
70fe02c8dc75d12e91f5bc4468cf260e490af1a4
e0c86210c86afb07c8d4abcc957c7f1b252b4eb2
refs/heads/master
2021-09-11T19:09:59.944740
2018-04-06T16:26:34
2018-04-06T16:26:34
125,521,331
0
0
null
null
null
null
UTF-8
C
false
false
592
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=12; int k; int l; j = 63; l = 64; k = i/j; l = i/j; l = l/j; l = l%j; l = l-j; k = k-k*i; //variables /* START VULNERABILITY */ int a; char b[26]; char c[38]; a = 0; while (( a - 1 ) ...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
6e4e2700c72af314e293f7369abf89af1c41db5f
0eee5e17477360fc8d3f326d799960fcf0525ea4
/DevApp/Tizen/Phone/src/managed/src/view/uib_views.c
e1c6ff9e6c447f3c53a3c7ca07d576e52fab44a4
[ "MIT" ]
permissive
cjpark87/LibAcousticSensing
beedfb57fa40f7d5901cb878187ffc779882ae5e
d3d83d939f3113d570fb4223a1bed096e694b3d3
refs/heads/master
2021-02-06T01:42:36.172809
2020-02-28T21:56:00
2020-02-28T21:56:00
243,861,559
0
0
MIT
2020-02-28T21:57:47
2020-02-28T21:57:46
null
UTF-8
C
false
false
21,098
c
/******************************************************************************* * This file was generated by UI Builder. * This file will be auto-generated each and everytime you save your project. * Do not hand edit this file. ********************************************************************************/ #includ...
[ "ducbui@duke.eecs.umich.edu" ]
ducbui@duke.eecs.umich.edu
2dfc626d527da7e18faf4098b28833751f84fdae
6b74d3ca834e7c0ddbfb633a6655e68065f37fe2
/16_Data_Structures/Searching/perf_lab1_binary_search.c
70e88f0b885e5af7a51972654ec68895e195b27b
[]
no_license
ghydric/08-C-Programming
3e4c986f7a875e078d90a29ac14f386bcdb8fd0e
5b5473513512fe98768e0a60efbacd29ac78c3ba
refs/heads/master
2020-12-06T05:01:48.835599
2020-02-28T16:49:12
2020-02-28T16:49:12
232,351,682
0
0
null
2020-01-07T15:15:18
2020-01-07T15:15:17
null
UTF-8
C
false
false
2,073
c
/* Author: Mitch Hydrick Date: 02/10/2020 Title: Performance Lab: Binary Searching Synopsis: - Write a C program that implements a binary search algorithm. - Example output: Array: 5 10 15 20 25 26 34 56 77 Please enter the searched key: 26 The key 26 was found at 5 ( Starting from 0) *...
[ "gary.hydrickm@gmail.com" ]
gary.hydrickm@gmail.com
68dd0069a0dec962ac4bf0d49fd632637de497d7
f43e5b5766ed6325902f01f834abee4f477d9386
/src/memory.c
edc2d33889eef8402e0ff9dcaa7cfe37715d4507
[]
no_license
roddux/fffz
5619f95c13c213efb819af76a6608b820da7e063
39cdc5ab5597212a7eda6b86d58d2e4b527ec050
refs/heads/master
2023-06-16T01:39:36.711446
2021-07-05T16:25:02
2021-07-05T16:25:02
377,134,248
10
2
null
null
null
null
UTF-8
C
false
false
5,973
c
#define __SRCFILE__ "memory" #include <errno.h> // pid_t #include <inttypes.h> // PRI*X #include <limits.h> // IOV_MAX #include <stdint.h> // uintx_t #include <sys/uio.h> // process_vm_* #include <unistd.h> // pid_t // clang-format off #include <sys/ptrace.h> // this needs to come first, clang-format...
[ "roddux@gmail.com" ]
roddux@gmail.com
9b7ca8107082bd663d5abbe8564bbf21e2cbbf2f
2abe3ea1617c6235cd94fbb6ebb4986132c9732f
/projects/adobe-leak-fun/brute_force_adobe_locked.c
67787cfaffc2b1d46ed89ba941632d3cf8f70d88
[]
no_license
berkantaydin/miscellaneous
789040523dcb31427501735670f9bcf75100ce79
5bbe5878a668a9081444de330e4f321c78fdedfe
refs/heads/master
2021-01-20T14:34:27.637458
2017-02-22T04:11:34
2017-02-22T04:11:34
82,759,509
0
0
null
2017-02-22T04:10:52
2017-02-22T04:10:52
null
UTF-8
C
false
false
6,981
c
/* brute_force_adobe.c: Brute force the 3DES key used to encrypt passwords in * the recently leaked Adobe database. * * In practice, this is pretty useless. However, if enough people run this, * somebody will *eventually* find the key. Maybe. Actually, probably not. * * Copyright (C) 2013 Calvin Owens * * Th...
[ "jcalvinowens@gmail.com" ]
jcalvinowens@gmail.com
29d68b0ca85c067fc605829dcff8db99b39da865
3d0b66f39b6b869f84ce0094b660707b7859702d
/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_Generic_KeyValuePair_2_gen_10.h
1e64e604fe9372e60f8a59d15ef7c696ab6289e1
[]
no_license
choirdesign/hack-slash
b12b2e86de09b2eec62685d40eec3856df619077
3754f5af407a783bfaf9d9eedbb61148cc50672c
refs/heads/master
2021-01-10T13:40:37.011080
2015-11-24T09:14:57
2015-11-24T09:14:57
45,164,312
0
0
null
null
null
null
UTF-8
C
false
false
614
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // System.String struct String_t; // UnityEngine.GUIStyle struct GUIStyle_t550; #include "mscorlib_System_ValueType.h" // System.Collections.Generic.KeyValuePair`2<System.String,Uni...
[ "wataruyamakawa@gmail.com" ]
wataruyamakawa@gmail.com
6208db4a4205033d897fb7b0d7b4290e59540e93
9948bd582c59569bb2620915ba777ed02dc54296
/lib/vquic/ngtcp2.c
9fa04b4c7e1ba6708281c778f9a7c7efd495f652
[ "curl" ]
permissive
gitchenxiaojie/curl
e10469e67fa876469b7b23ce418c97dc450565bf
44c9884552ad740fcec60d334f9601b205bf5b25
refs/heads/master
2020-07-12T16:42:41.220679
2019-08-26T21:36:39
2019-08-27T22:03:12
204,864,763
1
0
null
2019-08-28T14:36:50
2019-08-28T06:36:50
null
UTF-8
C
false
false
50,240
c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\...
[ "daniel@haxx.se" ]
daniel@haxx.se
4822e0a302e7cb80eb4e8aee875d4c8cd892d9a3
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/libgit2/tests/network/remote/extr_local.c_test_network_remote_local__push_to_non_bare_remote.c
096fa0fc243bb699baee54cbb563f8119a829724
[]
no_license
isabella232/AnghaBench
7ba90823cf8c0dd25a803d1688500eec91d1cf4e
9a5f60cdc907a0475090eef45e5be43392c25132
refs/heads/master
2023-04-20T09:05:33.024569
2021-05-07T18:36:26
2021-05-07T18:36:26
null
0
0
null
null
null
null
UTF-8
C
false
false
2,922
c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward d...
[ "brenocfg@gmail.com" ]
brenocfg@gmail.com
3a50f5e1320c5cc7e443b7aa045897f1d045da7c
5cb2f7a60a5731052874c9db825a3e217f0e7df9
/lsiq.c
3d1a235fd5593e56a819c298101fed209d6f8d52
[]
no_license
scollis/SimRadar
06a28aaaee1ea3ef903f8085f90bff0f018cbbdf
5fab68bdea8fa2297c93d81cd2aa86abc14b1d9f
refs/heads/master
2021-10-20T04:25:34.048249
2019-02-25T15:53:43
2019-02-25T15:53:43
208,925,215
1
0
null
2019-09-17T00:42:44
2019-09-17T00:42:43
null
UTF-8
C
false
false
2,731
c
// // lsiq.c // List IQ files // // Created by Boon Leng Cheong. // Copyright (c) 2016 Boon Leng Cheong. All rights reserved. // // #include "rs.h" #include "iq.h" #include <errno.h> #include <dirent.h> #define MAX_FILELIST 16384 int cstring_cmp(const void *a, const void *b) { const char **ia = (const cha...
[ "boonleng@ou.edu" ]
boonleng@ou.edu
599f5f31e6e6a584e82ac8b5b2bc28595ab28959
a2f797eecd0d43a8f41abd27cf39a9079839c392
/include/chesslib/movelist.h
ad5f24c47c550b9c9b0b4420ef87141f433c126b
[ "MIT" ]
permissive
thearst3rd/chesslib
3c49b3ded1f22d2a3ab92b2948f047ba3d736c8e
665bfa742c4f2ce348feb95b02655d2e552aeefb
refs/heads/main
2023-07-12T10:01:20.326586
2021-02-17T04:27:56
2021-02-17T04:27:56
321,171,206
1
0
null
null
null
null
UTF-8
C
false
false
789
h
/* * Move list definitions * Created by thearst3rd on 9/09/2020 */ #pragma once #include <stddef.h> #include "chesslib/move.h" typedef struct _moveListNode { move move; struct _moveListNode *next; } moveListNode; typedef struct _moveList { moveListNode *head; moveListNode *tail; size_t size; } moveList; /...
[ "thearst3rd@gmail.com" ]
thearst3rd@gmail.com
179d8f81c962f891fc9ec524e3faa7a14d87c9c5
5af5a29ae1a20bca81285ab036dfbb2af9b66ba1
/System/Library/PrivateFrameworks/iWorkImport.framework/Frameworks/PagesQuicklook.framework/PagesQuicklook-Structs.h
1a1945d4a20371a946230b012fdedcb3a0e1a694
[ "MIT" ]
permissive
corbie11/iOS14Headers
9f2fe98b91577dc33c5e2e9e055d8fa9e9a284cb
c0b7e9f0049c6b2571358584eed67c841140624f
refs/heads/master
2023-01-10T21:11:48.861588
2020-11-03T19:54:40
2020-11-03T19:54:40
null
0
0
null
null
null
null
UTF-8
C
false
false
946
h
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 12:31:20 PM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/PrivateFrameworks/iWorkImport.framework/Frameworks/PagesQuicklook.framework/PagesQuicklook * classdump-dyld is license...
[ "kevin.w.bradley@me.com" ]
kevin.w.bradley@me.com
ae32704d5e30ebe58e908bd4910dc6914190d9ef
1390cb4f58bd09087184a64fe2838dec29600d8a
/3520.c
388d137ffd2f4401c3346806a381370ba141afb4
[]
no_license
imasker/obfuscatorTestCases
bf21352be1dbd6c8bdd868b093af03f315d92a45
5f5561846ec09a040b42dc12842c9581e7be6b4d
refs/heads/master
2023-03-27T11:35:21.843689
2021-03-25T07:38:05
2021-03-25T07:38:05
351,342,479
0
0
null
null
null
null
UTF-8
C
false
false
4,202
c
/* * This is a RANDOMLY GENERATED PROGRAM. * * Generator: csmith 2.3.0 * Git version: 30dccd7 * Options: -o /home/x/obfuscator/data/programs/3520.c * Seed: 2227683886 */ #include "csmith.h" static long __undefined; /* --- Struct/Union Declarations --- */ /* --- GLOBAL VARIABLES --- */ static volatile ...
[ "13277988207@163.com" ]
13277988207@163.com
08eeb763ca88d99dc2c3d518458f57a15116ccb4
1d8394d4790fd3d048f150b625a706152297a8f1
/src/constants.h
73529b454730298bbfff33b9f81179c5741e626c
[ "MIT" ]
permissive
majesco/vgai2c
a6a32c4bb6d80851fa07d9e84d4b465f012fdb0d
112bc3f0438db2db6733b35e45e375bcf0b3f4db
refs/heads/master
2021-03-19T17:43:27.325363
2017-12-10T18:59:13
2017-12-10T18:59:13
93,577,274
0
0
null
2017-12-10T18:59:14
2017-06-07T01:05:51
C
UTF-8
C
false
false
1,150
h
#ifndef _CONSTANTS_H #define _CONSTANTS_H /*numbers*/ extern uint8_t one[8]; extern uint8_t two[8]; extern uint8_t three[8]; extern uint8_t four[8]; extern uint8_t five[8]; extern uint8_t six[8]; extern uint8_t seven[8]; extern uint8_t eight[8]; extern uint8_t nine[8]; extern uint8_t zero[8]; /*letters*/ extern uin...
[ "kevgiso@hotmail.com" ]
kevgiso@hotmail.com
940600f5a0bdaa997ac1c049c0267f1efa9a09ea
c4afbfe1885e8d0c7a1c8b928563f7bb8ab6a683
/GreenDemonstrator/src/Track/Generated_Code/KCG-Raspberry/Msg159ConsistencyChecker__HasConsistentPackets_RBC_Messaging_Pkg_RBC_Consistency_Pkg.c
fe01b0b4b6e8b6fc01497dc3d06dd34f8777f25b
[]
no_license
VladislavLasmann/srcAndBinary
cd48ebaa2f1f7f697ba5df9f38abb9ed50658e10
13aa76e545b9596f6dac84fb20480dffae7584d8
refs/heads/master
2021-05-08T15:04:05.709079
2016-01-22T12:40:10
2016-01-22T12:40:10
null
0
0
null
null
null
null
UTF-8
C
false
false
3,210
c
/* $*************** KCG Version 6.1.3 (build i6) **************** ** Command: s2c613 -config R:/Repositories/modeling/model/Scade/System/OBU_PreIntegrations/Demonstrators/GreenTrackside\kcg_s2c_config.txt ** Generation date: 2015-11-10T18:22:11 *************************************************************$ */ #include...
[ "info@stefankarg-it.de" ]
info@stefankarg-it.de
8afdd28b8d07cc33cf95b05e12fedea228c0f390
248fffaadc6e5a5c80e96d150d3c665059e62b9c
/asm/src/write_ld.c
391cac7225112256a5461db8a836803304c5dfcc
[]
no_license
MathisParoissien/CPE_Corewar_2018
00dbf7a647356644471622323ca9ec991f57e229
fcdf6d8c8f257824a7435184a9abd270b14953fb
refs/heads/master
2020-06-17T16:22:54.484225
2019-07-09T10:11:04
2019-07-09T10:11:04
195,975,639
0
0
null
2019-07-09T09:56:29
2019-07-09T09:19:52
C
UTF-8
C
false
false
948
c
/* ** EPITECH PROJECT, 2019 ** asm ** File description: ** write_ld */ #include "../include/corewar.h" int byte_code(char *str) { if (!(str)) exit(84); if (str[0] == DIRECT_CHAR) return (T_DIR); else if (str[0] == 'r') return (T_REG); else return (T_IND - 1); } int wri...
[ "mathis.paroissien@epitech.eu" ]
mathis.paroissien@epitech.eu
4b28e4371b213895bdad340d373f3d876d1e19f5
a7a4e7b3072567b958da4e68d55326e4114ba308
/level01/my_code/ft_swap/ft_swap.c
b124c2c7b2893a95fdc5f62a8a16c0732ae32387
[]
no_license
DZborovsk/exam_prepare
b8a22ef1814438bc73b90de3721cf3aef3d316b3
e38019e1c2c759abf6c39392469f8382603bd352
refs/heads/master
2020-03-18T04:26:17.101484
2018-06-27T16:50:17
2018-06-27T16:50:17
null
0
0
null
null
null
null
UTF-8
C
false
false
81
c
void ft_swap(int *a, int *b) { int temp; temp = *b; *b = *a; *a = temp; }
[ "dzborovk@MacBook-Pro-de-Danyil.local" ]
dzborovk@MacBook-Pro-de-Danyil.local
86cfc8968189e173561c9e139bd1da71820f01ff
54560d42aab27bd862b353d975659cf59411ec87
/COMMON/SRC/SOC/COMMON_TI_V1/COMMON_TI/OAL/OMAP_IOCTL/format.c
b7c7207c9d18ba8f5a89d130da0ebc7d3d869303
[]
no_license
zizilala/projects_wince_BB
306a5c0e33e0b4e11faef61224335c0bd3086e4c
4d7b5717a424354dd6d38a52f9fcb3efa712a906
refs/heads/master
2020-05-17T23:01:14.292063
2013-08-09T09:59:49
2013-08-09T09:59:49
11,998,092
2
0
null
null
null
null
UTF-8
C
false
false
1,924
c
// All rights reserved ADENEO EMBEDDED 2010 /* ================================================================================ * Texas Instruments OMAP(TM) Platform Software * (c) Copyright Texas Instruments, Incorporated. All Rights Reserved. * * Use of this software is controlled by the terms and conditi...
[ "ray.huang@zebex.com" ]
ray.huang@zebex.com
ade7cdd05e1a07109031a0a3b8c407e0d3a40711
93e44afc68bb6c08ed260138094ff7c2f6d64faf
/analysis.C
e4a2cbe754d40e394f4869cb67fa161a0f3c7bb5
[]
no_license
petermic/ProjectMichael
5927f4167a8110f4eae384da66653853a2e0d910
d8768df32876b8efeddfa685c4f6d5fa0db42682
refs/heads/master
2021-05-15T10:42:44.889582
2017-10-25T17:51:00
2017-10-25T17:51:00
108,195,967
0
0
null
2017-10-24T23:42:57
2017-10-24T23:42:57
null
UTF-8
C
false
false
440
c
#include <TROOT.h> #include <TChain.h> #include <TFile.h> #include <iostream> #include <vector> #include "d_jet.C" #include "TH1F.h" #include "TH2F.h" #include "TCanvas.h" #include "TLegend.h" #include "TStyle.h" #include "TLegendEntry.h" using namespace std; void analysis(){ djet* tMC = new djet("DjetFiles_20...
[ "ginnocen@cern.ch" ]
ginnocen@cern.ch
36c8f027f625f44c618e2828796daf0b5b218fd0
fe4f40c794009d2e4e43c73200c934cdce02ed9c
/CASE_Simple_Example_V4/Hardened-VM/HAMR_Simple_V4/CAmkES/slang_libraries/AttestationManager_Impl_SW_AttestationManager_AttestationManager/library/art/Bridge/type-art_Bridge_EntryPoints.h
72a355386c5808dbea597c0d826e6929096c441c
[]
no_license
loonwerks/CASE
204b15f688fd345d231e7d0b1e9df3be00c2855c
a959ce7f89000de3ab288d43746cff822930130f
refs/heads/master
2022-07-08T18:06:54.803247
2022-06-29T21:18:35
2022-06-29T21:18:35
129,441,109
15
8
null
2021-06-03T16:05:21
2018-04-13T18:44:46
C
UTF-8
C
false
false
738
h
#ifndef SIREUM_TYPE_H_art_Bridge_EntryPoints #define SIREUM_TYPE_H_art_Bridge_EntryPoints #ifdef __cplusplus extern "C" { #endif #include <misc.h> // art.Bridge.EntryPoints #include <type-HAMR_Simple_V4_SW_AttestationManager_Impl_SW_AttestationManager_AttestationManager_Bridge_EntryPoints.h> typedef union art_Brid...
[ "" ]
f5ef4947d064c44d93a05ac2c85ba8be0553a778
395510f96b3cc154c4be4a5527f0780220554898
/src/config_file.c
53ac1c86534ef57250a637aa7db57eda16bca3b3
[]
no_license
bdshields/nasstat
7a77b5c4b0665d735bbba123b9af2070560dc7ad
164577cb5a11fe5057cb81189fe42864ca8193d8
refs/heads/master
2023-08-26T22:30:55.777883
2023-08-13T03:45:53
2023-08-13T03:45:53
209,446,202
0
0
null
null
null
null
UTF-8
C
false
false
4,429
c
/* * config_file.c * * Created on: 6 Jun. 2019 * Author: brandon */ #include "config_file.h" #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdarg.h> char config_filename[500]; char *config_buffer=NULL; uint16_t config_length=0; #define CONFIG_...
[ "brandons@edmi.com.au" ]
brandons@edmi.com.au
085abb342532f5a48f757e030a8d3eead7c84d76
4faa0d04821c2df00eddb8295a938fe8e00b4446
/libft/ft_strnequ.c
bdb9aa2c3817a843be5027e21d6900fe90846c3b
[]
no_license
dh4rm4/ft_ls
fdb34277c54f97a7b4858a54db1160415f046e95
457216d0a251cb816503b529801d27105d76ee1d
refs/heads/master
2020-07-01T19:20:20.345034
2017-02-20T14:58:32
2017-02-20T14:58:32
74,263,451
1
0
null
null
null
null
UTF-8
C
false
false
1,333
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strnequ.c :+: :+: :+: ...
[ "kboddez@e1r12p4.42.fr" ]
kboddez@e1r12p4.42.fr
81aa98acdd695a04255202b3e3b5b52f3cf74563
77fb7734adbf6b12b2abd0a48ca2fe7fc00fae5f
/pfPorts/lcm_nexcom_lcdproc_driver/lcm.h
d9b39fa4eaf607065918052e43ab294a3caa9137
[]
no_license
vongrippen/pfsense-tools
39c8954af8779f71096b26e00a373bd26f5f830f
a4f59510a3299054c2c9bbdeaaeef2c2f6ae6205
refs/heads/master
2021-01-18T10:41:10.495342
2011-09-21T17:43:37
2011-09-21T17:43:37
2,439,809
3
0
null
null
null
null
UTF-8
C
false
false
1,397
h
#ifndef LCMMODULE_H #define LCMMODULE_H #define ENTER_KEY 0xA7 #define ESC_KEY 0x87 #define UP_KEY 0x8F #define DOWN_KEY 0xAF #define ENTER_ROKEY 0xE7 #define ESC_ROKEY 0xC7 #define UP_ROKEY 0xCF #define DOWN_ROKEY 0xEF #ifdef LCM_DEBUG #define DPRINT(fmt, args...) printk(KERN_ERR fmt, ## args) #else #define DPR...
[ "sullrich@pfsense.org" ]
sullrich@pfsense.org
903052f4c37fd77b3f84c89c3283cde76fe7968a
c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64
/Engine/Extras/ThirdPartyNotUE/emsdk/emscripten/1.37.19/system/include/AL/al.h
d7234e3265f281eb564898387955aa90b8614605
[ "MIT", "LicenseRef-scancode-proprietary-license", "NCSA", "BSD-3-Clause", "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-mit-nagy", "LicenseRef-scancode-public-domain", "BSD-2-Clause" ]
permissive
windystrife/UnrealEngine_NVIDIAGameWorks
c3c7863083653caf1bc67d3ef104fb4b9f302e2a
b50e6338a7c5b26374d66306ebc7807541ff815e
refs/heads/4.18-GameWorks
2023-03-11T02:50:08.471040
2022-01-13T20:50:29
2022-01-13T20:50:29
124,100,479
262
179
MIT
2022-12-16T05:36:38
2018-03-06T15:44:09
C++
UTF-8
C
false
false
7,264
h
#ifndef OPENAL_AL_H__ #define OPENAL_AL_H__ #ifdef __cplusplus extern "C" { #endif #define AL_BITS 0x2002 #define AL_BUFFER 0x1009 #define AL_BUFFERS_PROCESSED 0x1016 #define AL_BUFFERS_QUEUED 0x1015 #define AL_BYTE_OFFSET 0x1026 #define AL_CHANNELS 0x2003 #define AL_CONE_INNER_ANGLE 0x1001 #define AL_CONE_OUTER_ANGL...
[ "tungnt.rec@gmail.com" ]
tungnt.rec@gmail.com
10e48d8ee6612dcd8dfb131ed80a4a346399375a
693a82cf40705c2ee85816c8e5b98a3eec74137a
/kernel/arch/arm/jetsontk1_uart.c
80b0dd0ff6ac863dc0078fb643b631b912752b3e
[ "LicenseRef-scancode-unknown-license-reference", "MIT", "LicenseRef-scancode-dco-1.1" ]
permissive
lkygithub/barrelfish
106be2fe1707ecb2966fb038508835db075ea67f
3856451ce927942fefe333cf294b798451924d25
refs/heads/master
2020-12-10T05:38:48.659333
2019-03-26T03:51:59
2019-03-26T03:51:59
233,514,654
0
0
null
2020-01-13T05:00:15
2020-01-13T05:00:15
null
UTF-8
C
false
false
4,626
c
/** * \file * \brief Kernel serial driver for the JESTON-TK1 UARTs. */ /* * Copyright (c) 2012-2015, ETH Zurich. * All rights reserved. * * This file is distributed under the terms in the attached LICENSE file. * If you do not find this file, copies can be found by writing to: * ETH Zurich D-INFK, Haldenegg...
[ "759046501@qq.com" ]
759046501@qq.com
362aa458d545f327ca5903c552e46eb1e1d123dc
b58b310e0d141e32232856c89f894eeb0c658e83
/uvm/uvm_glue.c
9eff05e49e9848be0d462229a5caa2e8d83c9c01
[]
no_license
DavidAlphaFox/openbsd-kernel
e59f0f96d8b258ffd4f5b451c820e2cd46a3c26b
85cc0ff55c63ed8b0ba2b99789539666df7731b0
refs/heads/master
2021-05-04T09:44:29.749603
2017-11-09T09:35:50
2017-11-09T09:35:50
45,114,189
2
0
null
null
null
null
UTF-8
C
false
false
12,419
c
/* $OpenBSD: uvm_glue.c,v 1.69 2014/12/15 20:38:22 tedu Exp $ */ /* $NetBSD: uvm_glue.c,v 1.44 2001/02/06 19:54:44 eeh Exp $ */ /* * Copyright (c) 1997 Charles D. Cranor and Washington University. * Copyright (c) 1991, 1993, The Regents of the University of California. * * All rights reserved. * * This code i...
[ "david.alpha.fox@gmail.com" ]
david.alpha.fox@gmail.com
b95361eaa4e5852f3a9db5913d715442f5320d1e
d9507aaff75a0a26590ae6ba5fbadfe8fe15eb92
/recipes-tools/uart-testtool/uart-testtool/serial.h
394886698d6e0dcd33d798e1ea4f8d983cf54489
[ "MIT" ]
permissive
PJfixer/meta-pjdrones
adf473d9acab5cf683bd0147fb85198592a77dfd
1f0cd85c2a88e50d38a2ee5fd9b1509884dfe757
refs/heads/master
2022-12-06T05:22:16.782980
2020-08-29T12:46:46
2020-08-29T12:46:46
260,661,664
0
0
null
null
null
null
UTF-8
C
false
false
501
h
#ifndef SERIAL_H #define SERIAL_H #include <stdio.h> /* Standard input/output definitions */ #include <string.h> /* String function definitions */ #include <unistd.h> /* UNIX standard function definitions */ #include <fcntl.h> /* File control definitions */ #include <errno.h> /* Error number definitions */ #in...
[ "pierre.jeanne96@gmail.com" ]
pierre.jeanne96@gmail.com
a10954d20384325826358c0e011f7c6e30ff1ff4
edb0d524d018041b046b5a6f970282444f63ebeb
/project_files/Linux/ModelProject/MdlClassInclude.h
48786e6334820c9087eee85d05a2a9aced3c49a8
[]
no_license
USEPA/OME
902ead149e923abbf5cb93512e23115b8de10248
33d9c1f2b40daa2ee3414a363e28c0cc9ede56a2
refs/heads/master
2021-01-12T21:27:35.837154
2017-12-22T01:03:18
2017-12-22T01:03:18
58,138,621
3
3
null
2017-05-05T22:44:56
2016-05-05T14:54:21
C++
UTF-8
C
false
false
23
h
#include "TestModel.h"
[ "pwingo@gmail.com" ]
pwingo@gmail.com
5ca0cebb78b00488dcc164f441f602054bf26b36
c2cedcf36667730f558ab354bea4505b616c90d2
/players/traff/examples/sam2.c
4e0d8b7b9d363c68012f14cf7b826379bdf9c800
[]
no_license
wugouzi/Nirvlp312mudlib
965ed876c7080ab00e28c5d8cd5ea9fc9e46258f
616cad7472279cc97c9693f893940f5336916ff8
refs/heads/master
2023-03-16T03:45:05.510851
2017-09-21T17:05:00
2017-09-21T17:05:00
null
0
0
null
null
null
null
UTF-8
C
false
false
2,835
c
inherit "room/room"; reset(arg){ if(!present("guard")) { move_object(clone_object("/players/traff/kguard.c"),this_object()); } if(!arg){ set_light(1); short_desc="Delnoch"; long_desc= "You stand on the grounds of one of the mightiest fortresses ever\n"+ "built, Delnoch Pass. Far to the north you see the Sko...
[ "rump.nirv@gmail.com" ]
rump.nirv@gmail.com
1afaa41699ce186e0110f0503b5b1459ad7bd9b7
e73547787354afd9b717ea57fe8dd0695d161821
/include/mapfs/omo_12_shape.h
d5d7f46f015824272770ca25b91b19dda697566e
[]
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
1,050
h
#define MODEL_Root 0x1B #define MODEL_omo 0x1A #define MODEL_saikoro 0x19 #define MODEL_o385 0x18 #define MODEL_o382 0x17 #define MODEL_o381 0x16 #define MODEL_g152 0x15 #define MODEL_o480 0x14 #define MODEL_o4...
[ "noreply@github.com" ]
pmret.noreply@github.com
ee7a0414c84310dbe1cd2ba39e1d30b6195bd383
4eb983b6f01112f69e75b411764d45515d2ec8e3
/Sem 1/IT/program/string_short/main.c
d46b809cdef51a5451cff06088f95e02c05c488b
[]
no_license
AkshayMungalpara009/Acads
add028e1176ae89040ef4c21b824aa18bfeedc58
3de18efd94563edcc1229b0bd9f7f2e3474cabce
refs/heads/main
2023-05-30T17:55:25.620288
2021-06-07T13:18:14
2021-06-07T13:18:14
374,669,904
0
1
null
null
null
null
UTF-8
C
false
false
450
c
#include <stdio.h> #include<string.h> int main() { char a[500]; int b[500],i,l,j,e; gets(a); l=strlen(a); for(i=0 ; i<l ; i++) b[i]=a[i]; for(j=0 ; j<=100 ; j++) { for(i=0 ; i<l ; i++) { if(b[i]>b[i+1]) { e=b[i]; ...
[ "akshaymungalpara@MAC.local" ]
akshaymungalpara@MAC.local