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
09742e8429c6df86219f3e93d6809703b672d4f8
d153a059bb822e4d1d38b883cb5de96d0929141b
/0x07-recursion/6-is_prime_number.c
3f58ec0b7a697002ab1c19fd1704676aacc56eae
[]
no_license
aDENTinTIME/holbertonschool-low_level_programming
2dc983224800b1558ab051f2dd63470a4e9e7c14
841103e00f247218705ba44630c2c08c95954261
refs/heads/master
2021-09-20T13:50:40.495837
2018-08-10T06:47:27
2018-08-10T06:47:27
117,935,545
0
0
null
null
null
null
UTF-8
C
false
false
557
c
#include "holberton.h" /** * find_prime - Helper function that does the real heavy lifting, * finds whether input number is prime. * @n: Number. * @x: Counter. * Return: Boolean value. */ int find_prime(int n, int x) { if (n <= 1) return (0); if (x > n / 2) return (1); if (n % x > 0) { return (find_prime(...
[ "arixbizz@gmail.com" ]
arixbizz@gmail.com
254ba100f9b701bfbb79757702fd0518dd4b8c34
8b6bd4c0ec859f1f6b2d271710cdf7da2347ca93
/array2.c
e6ab8f6c0aa1bafd967290976ab55b13e197c2ef
[]
no_license
rssharna/c_programming
60ac3780fc983fd3db58a7ce2917f1c60562e6e8
449cfae3504fc47524b9ca794cbc860f0e472e5c
refs/heads/main
2023-08-05T13:05:46.374560
2021-10-10T18:05:58
2021-10-10T18:05:58
415,660,178
0
0
null
null
null
null
UTF-8
C
false
false
368
c
#include <stdio.h> int main (){ //say you are given the following array of integer data type-[-99,45,100,37,89,-327,245]. //Now write a program which will find the biggest integer and print the integer value. int a[7]={-99,45,100,37,89,-327,245}; int max=a[0],i; for(i=1; i<7;i++){ if(a[i]>max) max=a[i]; } pr...
[ "92268184+rssharna@users.noreply.github.com" ]
92268184+rssharna@users.noreply.github.com
a40203e9e7abc440b525f1e7544c33ae844e1ef2
9b7704503a24e8399ef20e331c95ce7faa8ff739
/v1.1/src/cm5/cm5b.h
7959fb5592102cd922dbf1e4ec49bf468eb9c2fa
[]
no_license
iraikov/psi-compiler
8118d80ef416da5f4d66a3128a25bbfd026eaba6
5e533be3cdff957309e5432bcf104deff0f36408
refs/heads/master
2022-01-04T20:05:19.119926
2018-06-08T21:02:00
2018-06-08T21:02:00
null
0
0
null
null
null
null
UTF-8
C
false
false
764
h
#include <cm/cmmd.h> #define SEND(ptr,size,who) \ CMMD_send(who,DEFAULT_TAG,ptr,size) #define RECV(ptr,size,who) \ CMMD_receive(who,DEFAULT_TAG,ptr,size) #define SEND_HOST(ptr,size) \ CMMD_send(host_node,DEFAULT_TAG,ptr,size) #define RECV_HOST(ptr,size) \ CMMD_receive(host_node,DEFAULT_TAG,ptr,size) #define ...
[ "s.shanabrook@gmail.com" ]
s.shanabrook@gmail.com
333945510ef32b68565e15521c351b8f52c2e3bb
dd19651ccb1d87639c78e641b36499d85eff89e8
/1051.c
abd0f1a3a2ad7a6215ebde63871eec1169f824b4
[]
no_license
Capoto/uri-solutions
b4d8f97dbfdb50ad8a0ebe729690665f8b8c2409
b3bc41b3adf413c415f88f93a22307e259af4aea
refs/heads/main
2023-02-22T15:12:34.643660
2021-01-28T16:09:46
2021-01-28T16:09:46
332,748,457
1
0
null
null
null
null
UTF-8
C
false
false
375
c
#include<stdio.h> int main(){ double n; scanf("%lf",&n); if( n >=0.0 && n < 2000.0){ printf("Isento\n");} else if(n>=2000.0 && n <=3000.0){ printf("R$ %.2lf\n",(n-2000)*0.08);} else if(n>=3000.01 && n<=4500.0){ printf("R$ %.2lf\n",(1000.0)*0.08 + (n-3000.0)*0.18);} else if(n>=4500.01){ printf("R$ %.2lf\n",(1000.0)*...
[ "noreply@github.com" ]
Capoto.noreply@github.com
a93587535ee8d683efbc3c57fc3f60e2945d6a72
49a8a49528b8d4a8d95d000a9a17a8226af89e76
/src/ts/adapt/impls/glee/adaptglee.c
f4d4ad14e7e0770eebc0297944c211360a94a9ef
[ "BSD-2-Clause" ]
permissive
govtmirror/petsc
6b373f3820f2e53dbf832b66dc0447ab99dbecb3
3b4e1ac732da5cc72773d14c0f4a53d3559d78df
refs/heads/master
2021-01-12T07:47:26.708887
2016-12-21T02:07:44
2016-12-21T02:07:44
77,015,307
1
0
null
2016-12-21T03:57:52
2016-12-21T03:57:52
null
UTF-8
C
false
false
8,793
c
#include <petsc/private/tsimpl.h> /*I "petscts.h" I*/ typedef struct { PetscBool always_accept; PetscReal clip[2]; /* admissible decrease/increase factors */ PetscReal safety; /* safety factor relative to target error */ PetscReal reject_safety; /* extra safety factor if the last st...
[ "balay@mcs.anl.gov" ]
balay@mcs.anl.gov
8fcc6adabd90126c8ef144699884aa67807d7930
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/gcc/testsuite/gcc.target/aarch64/sve2/acle/asm/logb_f32.c
847e1b13507da3064ca0a4f2bb5484da9ad6b0aa
[ "LGPL-2.1-only", "GPL-3.0-only", "GCC-exception-3.1", "GPL-2.0-only", "LGPL-3.0-only", "LGPL-2.0-or-later", "FSFAP", "Zlib", "LicenseRef-scancode-public-domain" ]
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
1,101
c
/* { dg-final { check-function-bodies "**" "" "-DCHECK_ASM" } } */ #include "test_sve_acle.h" /* ** logb_f32_m_tied1: ** flogb z0\.s, p0/m, z4\.s ** ret */ TEST_DUAL_Z (logb_f32_m_tied1, svint32_t, svfloat32_t, z0 = svlogb_f32_m (z0, p0, z4), z0 = svlogb_m (z0, p0, z4)) /* ** logb_f32_m_untied: ** movprf...
[ "rink@rink.nu" ]
rink@rink.nu
a187183d4d18c7ec2ffab668a6940cd6d3d20cad
47b4ef9a50bffa5635439f2df93d8787acf2216d
/MCFCRT/src/stdc/math/log.c
5e479ab7379b60c67c543ee0d8b9c32398430d13
[]
no_license
cometdlut/MCF
8006b961b0526bca7f10d5214272aa34f6493216
c941376e8b61aee0cf24f8762ac6d51705861145
refs/heads/master
2021-01-18T21:47:36.202225
2016-12-04T15:51:13
2016-12-04T15:51:13
null
0
0
null
null
null
null
UTF-8
C
false
false
496
c
// 这个文件是 MCF 的一部分。 // 有关具体授权说明,请参阅 MCFLicense.txt。 // Copyleft 2013 - 2016, LH_Mouse. All wrongs reserved. #include "../../env/_crtdef.h" #include "_fpu.h" #undef logf #undef log #undef logl static inline long double fpu_log(long double x){ return __MCFCRT_fyl2x(__MCFCRT_fldln2(), x); } float logf(float x){ retur...
[ "lh_mouse@126.com" ]
lh_mouse@126.com
34d6890c8e77abd295c9cd5f23d0da29a596627d
6990724efccc2f1e8dac8fe914347833e04d232d
/tuya_ble_sdk/sdk/src/tuya_ble_event.c
39409a00619f604ae4704737010ab1b021e0c486
[]
no_license
cuda-convnet/tuya_ble_sdk_Demo_Project_PSoC63
8db47a1efe72c520db67e3486d551ff312eef830
0ebe5a19ab6e1d07c8cacf3be63af3b28751d3bd
refs/heads/master
2022-11-27T09:29:05.073526
2020-07-30T03:58:57
2020-07-30T03:58:57
null
0
0
null
null
null
null
UTF-8
C
false
false
6,547
c
/** * \file tuya_ble_event.c * * \brief */ /* * Copyright (C) 2014-2019, Tuya Inc., All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * 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 t...
[ "624459974@qq.com" ]
624459974@qq.com
3aa3d3d722d45cac006f294e23528e3065c5d4ac
01310abe7c05829f3e0428d83487a69de115bded
/vendor/github.com/DataDog/zstd/zstd_ddict.h
0479d11bb032ddcbd9443ca84a16cf83c98cdeb1
[ "BSD-3-Clause", "BSD-2-Clause", "Apache-2.0" ]
permissive
AliyunContainerService/kube-eventer
eb578ce0eabd39b7d50ce2ff6852d5e16b30bdd8
3c70ea5d2519a1866fcaa0a3d9171aa92b370284
refs/heads/master
2023-09-02T00:19:22.575307
2023-08-30T03:33:27
2023-08-30T03:33:27
191,912,898
932
291
Apache-2.0
2023-08-30T03:33:53
2019-06-14T09:13:20
Go
UTF-8
C
false
false
1,308
h
/* * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. * All rights reserved. * * This source code is licensed under both the BSD-style license (found in the * LICENSE file in the root directory of this source tree) and the GPLv2 (found * in the COPYING file in the root directory of this source tree). * Yo...
[ "bushuang.gbs@alibaba-inc.com" ]
bushuang.gbs@alibaba-inc.com
23446e63a6df5cf6348e8c27084b4136e6e383cf
df599954cd39342ce6df7f17a59683db8270c086
/Binary Search/PaintersPartition.c
f0b8fd81bd4162473ae02fd8c9996c4add7fe463
[]
no_license
ParasJuneja/InterviewBit-Questions
def6807ece77a0e117f9bffc96ac7b7bc1e8ac89
ff25a482d0904bf088c1ef9a346877a0268307a3
refs/heads/master
2020-04-17T11:40:33.843420
2019-02-05T18:04:24
2019-02-05T18:04:24
166,550,275
0
0
null
null
null
null
UTF-8
C
false
false
754
c
int paint(int C, int B, int* A, int n1) { if(n1 == 1) { return A[0] * B; } long int left = -1, right, mid, psum, count, i, max; for(i = 0; i < n1; i++) { right += A[i]; left = (A[i] > left) ? A[i] : left; } while(left < right){ psum = 0; ...
[ "noreply@github.com" ]
ParasJuneja.noreply@github.com
15e010313c441f8bfe3709f91834107d5bb94cd2
780c0e5b79027b35ced787ed2ad952af53156687
/BSP/inc/SerialPort.h
ca52cd6b42e85ba5c3a4151dad25f7443f2d3ad1
[]
no_license
adg7660/KingDa-485ConcentratorProgram
4ac2e159d3c5cd8776dda2ec14e78f4fec645a76
897e5fe8dc221185cbe9cc04b8aba1b143a2a91e
refs/heads/master
2021-04-05T02:48:14.880700
2018-10-09T03:45:21
2018-10-09T03:45:21
null
0
0
null
null
null
null
GB18030
C
false
false
6,909
h
/********************************************************************************* //概述: //作者:大胡子书生 时间: 地点: //CPU型号: 系统主频: //版本号:V0.0 *********************************************************************************/ #ifndef __SERIAL_PORT_H #define __SERIAL_PORT_H /*************************...
[ "1397787283@qq.com" ]
1397787283@qq.com
fa0ebec8ad98a57637499546f2c54e177fcfa2b4
42de2e8f0cbc5dac7c960327b35d9e410047505c
/screenmanager/tags/1.0.1/test_source/unittest/suites/StateTest.c
8d2c339c29eb9646ee8eeac67c5eb81abbe6f89b
[ "Zlib" ]
permissive
svn2github/libstem
cdbc9fc034fad62264b7d87a24d173a967645cf7
0b2bc5ff9240e825cc2aed399b57df993c83ba3d
refs/heads/master
2020-04-04T23:13:26.084273
2019-01-19T22:26:05
2019-01-19T22:26:05
50,198,080
4
1
null
null
null
null
UTF-8
C
false
false
766
c
#include "unittest/framework/TestSuite.h" #include "statecontroller/State.h" static void testInit() { State state; memset(&state, 0xFF, sizeof(state)); State_init(&state); TestCase_assert(state.dispose == State_dispose, "Expected %p but got %p", State_dispose, state.dispose); TestCase_assert(state.activate == S...
[ "adiener@d291a34c-4c4d-0410-8556-a73de5c6a500" ]
adiener@d291a34c-4c4d-0410-8556-a73de5c6a500
8533b2aadf1bab83c1ff7462044a6a012c7504bf
74a6914d408e2d437f82bf9213dccea9700d9f87
/tests/test_mark_lettered.c
ce92a761ab9c6311183db3b3cc5e229110f96d7c
[ "Apache-2.0" ]
permissive
adsr/mlbuf
19008aa99ceb7a789adf8b4c6ac80bffac684c86
48f2c5ce7a929ac1c3dd2059b73d730486a6f68c
refs/heads/master
2020-05-21T05:53:08.113192
2018-12-21T02:09:18
2018-12-21T02:09:18
27,909,890
5
1
Apache-2.0
2018-02-26T17:24:23
2014-12-12T07:19:10
C
UTF-8
C
false
false
491
c
#include "test.h" MAIN("hello\nworld", mark_t* lett1; mark_t* lett2; mark_t* lett3; mark_clone_w_letter(cur, 'a', &lett1); ASSERT("neq1", 1, lett1 != cur ? 1 : 0); ASSERT("let", '\0', cur->letter); ASSERT("let", 'a', lett1->letter); mark_clone_w_letter(cur, 'a', &lett2); // lett1 dest...
[ "as@php.net" ]
as@php.net
bd75394409720702fe63821761c6fc80e6b92bec
27fd3be503a42976c73531902af0b7684a4fbb00
/BsAna/ClosureStudies/Closure/ManualCut.C
36b759f6b5ff0e25439b534badb0a4adab8c7a78
[]
no_license
MYOMAO/BsBpPbPb2018
e959e50ee3c04beff331241d1a7b0f77b63eaf0d
7b8d708fe58ad6245f8a8ae1bc61c7bed1c63eb3
refs/heads/master
2023-01-01T11:52:28.276407
2020-10-26T01:27:03
2020-10-26T01:27:03
294,867,512
0
0
null
null
null
null
UTF-8
C
false
false
21,710
c
#include "TROOT.h" #include "TH1.h" #include "TTree.h" #include "TH2.h" #include "TF1.h" #include "TFile.h" #include "TMath.h" #include "TSystem.h" #include "TVector2.h" #include "TLorentzVector.h" #include "TVector3.h" #include "TRandom.h" #include <iostream> #include <fstream> //#include "his.h" using namespace s...
[ "szhaozho@GRENDEL01.MIT.EDU" ]
szhaozho@GRENDEL01.MIT.EDU
ca001e3f8f83f7fd53040b0ef5e0931ea21553dd
47ef4ed8cfa08d52a66b653be1074687b5164521
/Lab2_pt2/main.c
5d058049ba2037f648a1e080aebc0645c073e204
[]
no_license
grantukas/CPSC370-EmbeddedSystems
9dc0a9db61befc6b513678c314821339f36df4e9
7277e9571ac1961aa35f3b37964506ca5810f2ce
refs/heads/master
2020-08-31T08:14:18.909275
2019-12-05T02:01:10
2019-12-05T02:01:10
218,645,402
0
1
null
null
null
null
UTF-8
C
false
false
15,154
c
/* USER CODE BEGIN Header */ /** ****************************************************************************** * @file : main.c * @brief : Main program body ****************************************************************************** * @attention * * <h2><center>&copy; Copyri...
[ "noreply@github.com" ]
grantukas.noreply@github.com
cdc28bd4d785673ba76ecaf993bc166864c65a30
63db0b5f2cf194af907aae2b7930da7bb67c114f
/ft_ls/libft/srcs/ft_memcpy.c
6932e5e5c33364a94aa74d38e2b1ca01c3ee2b53
[]
no_license
lmatshay/N.L-Matshaya
c65250e9350740103ea15991e0ee15aa902c7ed7
499f976d2911e94cfab31d8deb846498d9b92ddf
refs/heads/master
2020-12-21T20:51:16.364783
2017-09-15T17:48:50
2017-09-15T17:48:50
58,559,886
0
0
null
null
null
null
UTF-8
C
false
false
1,187
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memcpy.c :+: :+: :+: ...
[ "lmatshay@e4r2p4.wethinkcode.co.za" ]
lmatshay@e4r2p4.wethinkcode.co.za
3b6088aaa102fbad6c693174ae564ec04ffa87a1
84166f3d249fc58169acfa39620295c53bc9c685
/glutconfig.h
d682bcf448bf213dbd0c79090cea4fd31b8fabf0
[]
no_license
SKB-Hnure/hexopodglut
1e7c4f5614d53ab2feef86b0865eca6e8a801520
fde2d02e0537d9a966b6279ed8d5911921cc8c71
refs/heads/master
2021-01-01T05:50:57.739918
2014-03-10T20:32:25
2014-03-10T20:32:25
null
0
0
null
null
null
null
UTF-8
C
false
false
271
h
#ifndef GLUTCONFIG_H_INCLUDED #define GLUTCONFIG_H_INCLUDED float WinWid=1300.0; float WinHei=800; float WinDeep=800; void draw_string_bitmap(void *font, const char* string) { while (*string) glutBitmapCharacter(font, *string++); } #endif // GLUTCONFIG_H_INCLUDED
[ "diana112358@mail.ru" ]
diana112358@mail.ru
0e7f7773d37854db8408cf7f390dbcb58a4d8b65
69fe376f63cf4347bbda41d69c2d2964e53188d5
/Common/Dundas/Ultimate Toolbox/include/oxcolor.h
4a1e11a9025789d49bed1d3561014c07a9f4634b
[ "Apache-2.0" ]
permissive
radtek/IMClassic
d71875ecb7fcff65383fe56c8512d060ca09c099
419721dacda467f796842c1a43a3bb90467f82fc
refs/heads/master
2020-05-29T14:05:56.423961
2018-01-06T14:43:17
2018-01-06T14:43:17
null
0
0
null
null
null
null
WINDOWS-1252
C
false
false
764
h
// color.h // Copyright © Dundas Software Ltd. 1997 - 1998, All Rights Reserved // This file defines some solid colors for use in CColorBtn and for Windows // color usage in general. #ifndef color_h #define color_h #define COLOR_BLACK 0 #define COLOR_DKBLUE 0x00800000 #define COLOR_DKGREEN 0x00008000 ...
[ "robert.raboud@outlook.com" ]
robert.raboud@outlook.com
e2989452996bf3675e7e9b7af742b951782d4dcb
69e12af0b2ada060c2d3696550f01a4e166efbae
/openblas/build/driver/level3/CMakeFiles/zhemm_LU.c
a400b59edf7068b8fdef003a6affd429475829e2
[]
no_license
ljsetter/ntf_project
d7d27e3eab2cb20724830cdd7b99bba3517ec3be
8b3ea7e6f46625c8dcc4dc750feb64ce45d133f0
refs/heads/master
2020-08-24T17:41:08.766977
2019-11-14T23:50:05
2019-11-14T23:50:05
216,871,010
0
0
null
null
null
null
UTF-8
C
false
false
335
c
#define NN #define ASMNAME zhemm_LU #define ASMFNAME zhemm_LU_ #define NAME zhemm_LU_ #define CNAME zhemm_LU #define CHAR_NAME "zhemm_LU_" #define CHAR_CNAME "zhemm_LU" #define DOUBLE #define COMPLEX #include "/home/lewissetter/Documents/mines/high_performance_computing/ntf_project/openblas/src/OpenBLAS-0.3.6/driver/le...
[ "ljsetter@mines.edu" ]
ljsetter@mines.edu
4bff973ad4c8a0fda0d6de313a1bc2d66dbf8414
14c4ebed96d8edc3e6ad329cdeb9c00c398879d7
/Skeleton_ver2/Project/Demo/src/lowpower.c
f66e16902d817f0035810827992f5eee29cf2e23
[]
no_license
ggoowlgns/MicroProcess
f1788a1185ca6731f5fdb7995d4df760100e0884
c4c3c20a640c36f4fd2b9b71179cb0eae1fda478
refs/heads/master
2020-03-21T15:23:49.840080
2018-06-26T19:10:06
2018-06-26T19:10:06
138,709,790
1
0
null
null
null
null
UTF-8
C
false
false
14,628
c
/******************** (C) COPYRIGHT 2009 STMicroelectronics ******************** * File Name : lowpower.c * Author : MCD Application Team * Version : V2.0.0 * Date : 04/27/2009 * Description : This file includes the low power driver for the * ST...
[ "30282681+ggoowlgns@users.noreply.github.com" ]
30282681+ggoowlgns@users.noreply.github.com
ed4bc38892a3ad3f28b47d966699f8ab51e17ac6
243f946e8f5bf8ca0dbb2dc5ecaad7101530131a
/list.c
668e72a6804487c2149f2e679c2e8aa90d5874f9
[]
no_license
Leftzara/Tarea-2
0d00b302dc61a10f33a4864f145a56b61a27f206
4fae8af7728238a6ad008f954f706033b1fc7a6e
refs/heads/main
2023-04-20T01:27:03.838547
2021-05-10T03:55:41
2021-05-10T03:55:41
361,276,682
0
0
null
null
null
null
UTF-8
C
false
false
3,341
c
#include <string.h> #include <assert.h> #include <stdbool.h> #include <stdlib.h> #include "list.h" // structures typedef struct Node Node; struct Node { void * data; Node * next; Node * prev; }; typedef struct List List; //Creamos una lista struct List{ Node * head; Node * current; Node * tail;...
[ "beatriz.segura.p@mail.pucv.cl" ]
beatriz.segura.p@mail.pucv.cl
848144c209a0d2ff8fc6f00dfd57094ca5160202
cef3847d71d1ee28672e7a0930d4231bb69468e9
/bmd/PKG/chip/bcm56860_a0/bcm56860_a0_tdm_chip_scan.c
0900a6678774b9dff90b60932d9466dc3bdd9a7a
[]
no_license
babyge/OpenMDK
70e4de4ff7176d14040797e2d458d8d238f5bad6
a5d3fc9b12af3eeb68f2ca0ce7ec4056cd14d6c2
refs/heads/master
2022-12-23T18:32:44.037066
2020-09-25T20:48:23
2020-09-28T20:22:12
null
0
0
null
null
null
null
UTF-8
C
false
false
33,697
c
/* * This software is governed by the Broadcom Switch APIs license. * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenMDK/master/Legal/LICENSE file. * * Copyright 2007-2020 Broadcom Inc. All rights reserved. * $All Rights Reserved.$ * * TDM chip data structur...
[ "sdk.releases@broadcom.com" ]
sdk.releases@broadcom.com
8c61e6258701d8b0bf66ed8842a1ea9f0d84195d
dee14e341276cc0c25b658a9b71cf5883129485e
/ex14/ex14a.c
0d332e5cce05fb9916e72a3f1eeb7a7b4308033f
[]
no_license
a-thoma/cTheHardWay
67bdcde76bd66da21455932772871ccad3b27b46
f1b6965c6449f33cae60e59ac67ed3e4f4179bc8
refs/heads/master
2021-01-22T09:40:58.995930
2017-11-07T00:42:42
2017-11-07T00:42:42
null
0
0
null
null
null
null
UTF-8
C
false
false
394
c
#include <stdio.h> int main(int argc, const char *argv[]) { int i = 0; while(i < argc) { printf("arg %d: %s\n", i, argv[i]); i++; } // another array of strings... char *states[] = { "California", "Oregon", "Washington", "Texas" }; int num_states = 4; i = 0; // this is important? while(i < num_st...
[ "thomaa1@unlv.nevada.edu" ]
thomaa1@unlv.nevada.edu
5890526fff7b8b71b2a2b43ec100bf0f42f4c50e
36c559bc62b3ff6dbc575637971f1075b8f1f39e
/rwlock.c
a7539353aed702df008797f32a64629cb130014d
[]
no_license
sargarass/NUP-LAB
89fa2f686f36a9c0a5f8c0de34778c848e1f90f1
de4f9844993be9a4168b368bf689478c56bd9fb9
refs/heads/master
2021-01-25T06:29:59.196600
2017-06-07T01:53:43
2017-06-07T01:53:43
93,580,393
2
0
null
null
null
null
UTF-8
C
false
false
3,593
c
#include "rwlock.h" /* переменная lock - 32 бита * 1) 24-битовый счетчик, показывающий количество потоков, * одновременно читающих защищаемую структуру. Значения счетчика в * дополнительном коде хранится в битах 0—23 этого поля; * 2) флаг "разблокировано", устанавливаемый, когда никакой поток не читает и * не пиш...
[ "sargarass1@gmail.com" ]
sargarass1@gmail.com
4c59ec0a4ee9ab4b292b57a02f60ae4fc5de81fa
3c8d3d8e365f2ce7aafb2c4616b82b440f371f9a
/c08/ex01/ft_boolean.h
c663502dbac22212feb9b56311be3bf660a724c4
[]
no_license
khakaa/42seoul_piscine
cf9d12aee636a6acda7cc05b71478e7f65a394fe
cce02549d2a3c1f4febbfe5fe4efa2b6f98ecef4
refs/heads/master
2023-03-23T15:50:24.013956
2021-03-18T18:52:06
2021-03-18T18:52:06
342,555,335
0
0
null
null
null
null
UTF-8
C
false
false
295
h
#ifndef FT_BOOLEAN_H # define FT_BOOLEAN_H # include <unistd.h> # define TRUE 1 # define FALSE 0 # define SUCCESS 0 # define EVEN_MSG "I have an even number of arguments.\n" # define ODD_MSG "I have an odd number of arguments.\n" # define EVEN(nbr) (nbr % 2 == 0) typedef int t_bool; #endif
[ "phr0210@naver.com" ]
phr0210@naver.com
b785ef9a37274c320f6e056da31b8962a12eac32
25876ebb4eb6334ec419c262dec991676fead1f8
/Utilities/LwIP_drv/ethernetif.h
dbae967280c9e9dfab12887af2534b5d13b44703
[]
no_license
CHETREMBACH/NUCLEO-H743ZI
a452c4228d0f49929eec6aa95b0d340dd27a02cc
a0fc10354f669df5983c04b0627f9c4748aaea5a
refs/heads/master
2023-08-14T18:26:36.305478
2020-10-18T09:28:54
2020-10-18T09:29:02
284,747,164
0
0
null
null
null
null
UTF-8
C
false
false
1,200
h
/** ****************************************************************************** * @file LwIP/LwIP_HTTP_Server_Netconn_RTOS/Inc/ethernetif.h * @author MCD Application Team * @brief Header for ethernetif.c module ****************************************************************************** * @atten...
[ "trembach.d@gmail.com" ]
trembach.d@gmail.com
b559a25a7ea9ab7b8960399d201d6b41375a26b1
c0e0138bff95c2eac038349772e36754887a10ae
/mdk_release_18.08.10_general_purpose/mdk/common/components/kernelLib/MvCV/kernels/thresholdDisparityFp16/shave/include/thresholdDisparityFp16.h
8744ee774075940a82b2660a6d5bd21fcecb81a8
[]
no_license
elfmedy/vvdn_tofa
f24d2e1adc617db5f2b1aef85f478998aa1840c9
ce514e0506738a50c0e3f098d8363f206503a311
refs/heads/master
2020-04-13T17:52:19.490921
2018-09-25T12:01:21
2018-09-25T12:01:21
null
0
0
null
null
null
null
UTF-8
C
false
false
829
h
#ifndef __THRESHOLD_DISPARITY_FP16__ #define __THRESHOLD_DISPARITY_FP16__ #include <mv_types.h> #include <mvcv_macro.h> //!@{ /// mvcvThresholdDisparityFp16 - filters and counts unreliable pixels in the input confidence map /// @param[in] input - confidence map /// @param[in] countThresPixels - number ...
[ "palani.andavan@vvdntech.com" ]
palani.andavan@vvdntech.com
f73b47afe84941517d04d5fc45460cf0514f691b
0401bf94dc71f6a246bbedd8fb3d207e5a00498a
/bluetooth/bdroid_buildcfg.h
5c7edbca203378155d9383b36def5b6e4c54f4cc
[]
no_license
lbdroid/apexq-common
efec4be7b4c974b2591f15c249798cc63f82f476
d32de711e55f419601177a6fa53c3c51efb62cd2
refs/heads/master
2020-05-23T15:34:30.238593
2013-01-30T02:53:12
2013-01-30T02:53:12
null
0
0
null
null
null
null
UTF-8
C
false
false
816
h
/* * Copyright (C) 2012 The Android Open Source Project * Copyright (C) 2012 The CyanogenMod Project <http://www.cyanogenmod.org> * * 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 * * ...
[ "nardholio@gmail.com" ]
nardholio@gmail.com
8345951bb1a7ecd0c8ec15b6653a786b9e805af1
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/net/ethernet/broadcom/bnxt/extr_bnxt_devlink.h_bnxt_get_bp_from_dl.c
ac6eee4c870cd14df50858b03ef6cf7b1c90de18
[]
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
675
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
49378d0985c015ab04d0f34d2b313390d123cbc7
b12069384c2d743ca861f1b8c60f37d60245a09f
/C언어 실습/201827559_서아림_3주차과제/201827559_서아림_3_2번.c
f0d4fab924de546577862bd3d9344aa598946854
[]
no_license
arimSeo/PNU-programming-course
c62513db79bd023935b0a0778c70b914f3eb0f9c
c861f6f8b5958284b851ed04cd4459a8dcd8e38f
refs/heads/master
2023-06-06T23:48:07.522331
2021-06-27T15:04:47
2021-06-27T15:04:47
323,844,253
0
0
null
null
null
null
UHC
C
false
false
821
c
#include <stdio.h> int main(void){ int score,i, sum=0, arr[10]; for(i=0; i<10; ++i){ printf("%d : ",i+1); scanf("%d", &arr[i]); score= arr[i]; //-1 입력 if(score== -1){ i--; break; } //점수가 0~100사이가 아닌경우: 다시입력 while(score<0 || score>100){ printf("%d : ", i+1); scanf("%d"...
[ "arimy981002@likelion.org" ]
arimy981002@likelion.org
953668bca8ac46318381fb39d139bb3dc633d42d
c5278b664bd2b2b3c0387a5633321a8dca045d15
/ext/arangodbclient/cursor.zep.c
1a2739cdefc6d6683a218e465221dbbc8a4fb8f5
[ "Apache-2.0" ]
permissive
DaveM2011/arangodb-zep
44aad24aa8d7b8b47f3f1e9238b516e272f185e8
740dcf7988cc1a33930d6d9a62109e9d6cbcd081
refs/heads/master
2021-08-30T12:31:58.649656
2017-12-18T00:29:25
2017-12-18T00:29:25
94,035,913
0
0
null
null
null
null
UTF-8
C
false
true
41,878
c
#ifdef HAVE_CONFIG_H #include "../ext_config.h" #endif #include <php.h> #include "../php_ext.h" #include "../ext.h" #include <Zend/zend_operators.h> #include <Zend/zend_exceptions.h> #include <Zend/zend_interfaces.h> #include "kernel/main.h" #include "kernel/object.h" #include "kernel/memory.h" #include "kernel/arr...
[ "davem.2011@gmail.com" ]
davem.2011@gmail.com
963acf7f6be2299e4c5f2e9e0d4086081f995ac0
97aab27d4410969e589ae408b2724d0faa5039e2
/SDK/EXES/INSTALL VISUAL 6 SDK/INPUT/6.0_980820/MSDN/VCPP/SMPL/MSDN98/98VSa/1036/SAMPLES/VC98/sdk/dbmsg/mapi/peer.xp/xpoption.h
997d302be59e5f5a02d7c1a83b39422d272936b0
[]
no_license
FutureWang123/dreamcast-docs
82e4226cb1915f8772418373d5cb517713f858e2
58027aeb669a80aa783a6d2cdcd2d161fd50d359
refs/heads/master
2021-10-26T00:04:25.414629
2018-08-10T21:20:37
2018-08-10T21:20:37
null
0
0
null
null
null
null
UTF-8
C
false
false
1,675
h
/* - X P O P T I O N . H - * Purpose: * Defines a wrapped implementation of an IMAPIProp interface * to be used by ScOptionDataCallBack() to wrap the IMAPIProp passed * in. This object is wrapped so we can effect the behavior of the * OpenProperty() call. Specifically, we wish to put up...
[ "david.koch@9online.fr" ]
david.koch@9online.fr
3986fcecace9bb3ea96b4237545976649c89695d
b6fb2dc02bb4e3172a9b14d436d0e1eb1b0f5c58
/DarkSUSY_mH_125/mGammaD_0850/cT_005/DarkSusy_mH_125_mGammaD_0850_cT_005_LHE_dimuon_Phi.C
500d3136e0663a0eb968414764efa7171dacdd17
[]
no_license
cms-tamu/MuJetAnalysis_DarkSusySamples_LHE_13TeV_03
042884aa28ab36f6af7a1c45ff82c6d9c3442f12
fd05337d13f3eb64f295f10ac5c5c6385c0ebec1
refs/heads/master
2020-06-08T15:24:55.002262
2015-03-18T13:59:47
2015-03-18T13:59:47
30,620,043
0
0
null
null
null
null
UTF-8
C
false
false
19,970
c
{ //=========Macro generated from canvas: cnv/cnv //========= (Mon Mar 16 12:43:59 2015) by ROOT version5.34/18 TCanvas *cnv = new TCanvas("cnv", "cnv",1320,22,904,928); gStyle->SetOptFit(1); gStyle->SetOptStat(0); gStyle->SetOptTitle(0); cnv->SetHighLightColor(2); cnv->Range(-5.7,-0.004983531,4.3,0....
[ "bmichlin@rice.edu" ]
bmichlin@rice.edu
c074739d8dfb3777b8d0d585603d7352f8fd0754
a18b2d2509ea99bf551697a9483944c7fd2d3a90
/cbench/cbench.c
6006578e26a204dddc67cdadadcdbd3eff245525
[]
no_license
JackLaiYo/cbench_echo_clean
32e2f3b3a63a6d1d8e001f3afba9f46aa1a0f556
86770e19e328b743d80385ad0cd4f25e7b165219
refs/heads/master
2021-01-15T19:52:20.916150
2017-08-08T03:27:42
2017-08-08T03:27:42
null
0
0
null
null
null
null
UTF-8
C
false
false
14,685
c
#include <assert.h> #include <errno.h> #include <fcntl.h> #include <float.h> #include <getopt.h> #include <math.h> #include <netdb.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <unistd.h> #include <netinet/tcp.h> #include <sys/socket.h> #include <sys/types.h> #include <sys/t...
[ "30776913+Suchangwei@users.noreply.github.com" ]
30776913+Suchangwei@users.noreply.github.com
f2643d93d74ae34b8a39d4d1336e18797a77f43a
2d82b973c7f293c898101b249f17ae5bd5dae8b7
/2017-1/sunnyCc/二叉树的建立/text.c
dcb804d307f8b3ada4d1dfed58afbba22cf7c5ae
[]
no_license
CUCCS/ds
d04df9639a7518e1dbfa1a15f1db7e62eeaf5bee
7e82b306f683f57e033c74455ff2ec248fda215f
refs/heads/master
2020-05-23T12:35:27.127517
2017-06-22T05:07:40
2017-06-22T05:07:40
84,768,944
26
73
null
2017-06-22T05:07:41
2017-03-13T00:50:11
C
UTF-8
C
false
false
659
c
#include"BinaryTree.h" int main() { BiTree T = NULL; Status ret; TElemType str1[50] = "ABDG###EH##I#K##C#F##"; TElemType str2[50] = "ABD#F###CE###"; ret = CreateBiTree(&T, str1);//"ret" is used to text wether the operation of Create succeed or not printf("The First Binary Tree : ABDG###EH##I#K##C#F##\n"); print...
[ "449059453@qq.com" ]
449059453@qq.com
e68b7ac7443b8619157c283f80ffe26994793cbd
e7c70ce349d11b366fd0fb73fd23e649b44befdc
/Embedded Programming/UART/Blinky/test.c
1cc0674576bc7ef7652563e6a7951db61b05796a
[]
no_license
hptruc1004/hvu-semester7
014122c17439151b276e43872e89dd1f24069f6b
db05c9c1dc92600a4ee7091689f81b6ac7f33fae
refs/heads/master
2021-01-10T10:07:53.673517
2009-12-03T13:46:29
2009-12-03T13:46:29
52,258,201
0
0
null
null
null
null
UTF-8
C
false
false
129
c
#include <stdio.h> #include <LPC23xx.H> int cong(); int cong() { int a,b[10]; b[0]=2; a=b[0]; return a; }
[ "hvu.nguyen2007@30b5347a-d09c-11de-8607-c5ce5d18c61a" ]
hvu.nguyen2007@30b5347a-d09c-11de-8607-c5ce5d18c61a
9262383381048f257b00d00ce99f2e760487a473
14ec812232eb41aa0db639655396aa1e4d1a78ad
/src/snes/examples/tutorials/ex9.c
9ecfc3272af6bc6afe9daac3a8b35936d08e740e
[]
no_license
feelpp/debian-petsc
5c36a87c326c474330da7ade47e4e7dc1dc081e7
58a81226b687b0572e01464fcb5d7a7b901739be
refs/heads/master
2020-05-04T04:34:47.078876
2014-08-05T17:44:53
2014-08-05T17:44:53
22,653,167
1
0
null
null
null
null
UTF-8
C
false
false
11,694
c
static const char help[] = "Solves obstacle problem in 2D as a variational inequality.\n\ An elliptic problem with solution u constrained to be above a given function psi. \n\ Exact solution is known.\n"; /*F Solve on a square $R = {-2<x<2,-2<y<2}$: \begin{align*} u_{xx} + u_{yy} &= 0 & \text{on the set} {(x...
[ "christrophime@googlemail.com" ]
christrophime@googlemail.com
bde80de44a3f1c153cc6d159185c7c543ebd357e
a3c3f8c84a4e378214b94b03ba7fcc77555a3f5f
/install/linux/daemontools-0.76/src/fifo.h
5ddee27ae6caca46178b0011e6af995d7a9a9d88
[]
no_license
alexkoltun/logmind
c824f76ae9896527b874f99e1da4a3417c0625a8
4fac2b74ea973b3d4466e2ea643ccc86d4749ac6
refs/heads/master
2020-06-02T20:09:04.722095
2013-08-20T14:21:25
2013-08-20T14:21:25
null
0
0
null
null
null
null
UTF-8
C
false
false
109
h
/* Public domain. */ #ifndef FIFO_H #define FIFO_H extern int fifo_make(const char *,int); #endif
[ "a.koltun@adacom.net" ]
a.koltun@adacom.net
81fc5edfc9696bddce71daee557ede4df4b2ef72
f498b10557a03f41d40c75987953987439e86639
/1548 - Fila do Recreio.c
e17b49508356365b800f303fedea19bb7fbfe63f
[]
no_license
GabrielAndrad/uri-problems
3496c8829518014e3570072198ec5c24fb80594c
1252308c9b17fb3e4a86a9e4d3f06624d7b7ba2c
refs/heads/master
2022-04-06T10:06:43.780543
2020-02-08T20:30:26
2020-02-08T20:30:26
null
0
0
null
null
null
null
UTF-8
C
false
false
679
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <limits.h> #include <time.h> int notas[1001]; int comp(const void *p1, const void *p2){ int *i, *j; i = (int *)p1; j = (int *)p2; if(*i > *j) return -1; else if(*i == *j) return 0; else return 1; } int main (){ ...
[ "gabrandnunes@hotmail.com" ]
gabrandnunes@hotmail.com
9127ee8db741b8e4b7a01e627e150eb325fe6cce
15a4829e93df9b7011b771d17344bbad228139e1
/2019.11.26/2019.11.26/radixsort.h
5626de9cf43b9c626cd270a47fd80cf7f1306a24
[]
no_license
jiwentao/DataStruct
275f52080e37399d307915b4aca771ecadd71814
f1bc3a70e3f012cc025d35b2163e28f308080798
refs/heads/master
2020-08-08T19:20:29.696879
2019-11-28T09:02:09
2019-11-28T09:02:09
213,898,431
0
0
null
null
null
null
GB18030
C
false
false
357
h
#ifndef _RADIXSORT_H_ #define _RADIXSORT_H_ #include<stdio.h> #include<time.h> #define RADIX 10 //初始化时桶的个数 #define K 3 //给定数据最大三位数 void PrintArray(int * arr,int left,int right); void TestSort(int * arr,int left,int right); void RadixSort(int * arr,int left,int right); void TestSortEfficiency(); #endif/*_RADIXSORT_H...
[ "1043238267@qq.com" ]
1043238267@qq.com
bf7487a7bf8c4f973aa7b23bae2661975559affa
864890628de44413d57503b8116abede5f9006a4
/didentd-genanswer-name.c
5847ce9ccb18fabbb39d1d3433aa180b8ec41b96
[]
no_license
mdornseif/didentd
30e0d2a9aeb1f671fad58dbba9757c5f5f260fd2
3ee3af50aa5383cccf4ebc538da6ac00df59ec71
refs/heads/master
2022-01-20T21:12:36.026144
2022-01-18T21:15:32
2022-01-18T21:15:32
473,255
0
0
null
2021-12-17T18:03:54
2010-01-15T08:09:49
C
UTF-8
C
false
false
1,513
c
/* $Id: didentd-genanswer-name.c,v 1.4 2001/10/08 12:51:21 drt Exp $ * --drt@un.bewaff.net * * generate a straightforward RfC 1413 username reply * * You might find more info at http://rc23.cx/ * * I do not belive there is something like copyright. * * $Log: didentd-genanswer-name.c,v $ * Revision 1.4 20...
[ "drt@2d70b15c-62de-0310-b45c-a2b26695ab02" ]
drt@2d70b15c-62de-0310-b45c-a2b26695ab02
ed65c99deeb67b2a50684d3e7cb543daba3c36da
dc46a4de0572f1c01f57e090bd0dc65d8fd06a5d
/Robot-2016/src/CougarLib/CougarWPI/CougarHID/CougarHID.h
7611e87ee507d9efefa4b90d70087745ccc5eea0
[]
no_license
FRC-Team-1403/Robot-2016
51f96a50f51ccefae580a92c15d3ee50d20cf375
65d2af44e9b77862448c7ea250a290114cb74b55
refs/heads/master
2021-01-17T17:26:22.258484
2016-08-28T19:43:42
2016-08-28T19:43:42
49,544,020
0
0
null
null
null
null
UTF-8
C
false
false
305
h
/* * CougarHID.h * * Created on: Mar 31, 2016 * Author: Thejas */ #ifndef SRC_COUGARLIB_COUGARWPI_COUGARHID_COUGARHID_H_ #define SRC_COUGARLIB_COUGARWPI_COUGARHID_COUGARHID_H_ #include "CougarButton.h" #include "CougarJoystick.h" #endif /* SRC_COUGARLIB_COUGARWPI_COUGARHID_COUGARHID_H_ */
[ "thejas.kadur@gmail.com" ]
thejas.kadur@gmail.com
717abf2f242fd06b90f526a5249c3c95b18ca45b
007c62aec4c9b049304e1b33511ee7aaac2dba46
/EFR32BG14P/Include/efr32bg14p_lesense_buf.h
1c5186349cae6aac4e838474dde55f1481889052
[]
no_license
garslanbay/SiliconLabs
f53baaa88f8829274dd61a572429cfdd51e84523
6603f18e32eaf1f2f3eaacea526ef791fcd19ce1
refs/heads/master
2021-08-31T15:23:00.388521
2017-12-21T21:51:57
2017-12-21T21:51:57
115,049,913
0
0
null
null
null
null
UTF-8
C
false
false
2,494
h
/**************************************************************************//** * @file efr32bg14p_lesense_buf.h * @brief EFR32BG14P_LESENSE_BUF register and bit field definitions * @version 5.3.3 ****************************************************************************** * # License * <b>Copyright 2017 Silico...
[ "garslanbay@yahoo.com" ]
garslanbay@yahoo.com
382ec16d13df6f131236cf6c1d9c9845050f1624
43c153573430dec85d060e3934dcda3ac9fab25b
/Firmware/Unused in prototype/On-chip App/onchipsdk-master/src/app/02-gpio_net/app_task_cfg.h
c942a01390d8cc27db27e5cee86227bcfd6bca8a
[ "MIT" ]
permissive
ECE-412-Capstone-Sensor-Suite/Team-20-Sensor-Suite
3a28fcfce392a6fc6b6e10dd246cd566b2e9baee
ac1c1bb5383c0b9fe91caf8646ca2cb8643f607e
refs/heads/main
2023-05-28T08:25:23.317984
2021-06-11T04:31:33
2021-06-11T04:31:33
336,418,932
2
1
null
null
null
null
UTF-8
C
false
false
192
h
#ifndef APP_TASK_CFG_H #define APP_TASK_CFG_H #define TASK_APP_GPIOSAMPLE_NAME "gpioSample" #define TASK_APP_GPIOSAMPLE_PRIORITY 53 #define TASK_APP_GPIOSAMPLE_STK_SIZE 256 #endif
[ "72731760+Yooooos@users.noreply.github.com" ]
72731760+Yooooos@users.noreply.github.com
3fb6ee9527cd983fe5d4ebc5d590b300c3db2b15
4cf8f9b8460ba976c49fcbb7236bd2c1af88c077
/0x0A-multithreading/20-main.c
bb2f5d760c6d2d356de397496e03c55619b6725e
[]
no_license
jicruz96/holbertonschool-system_linux
d3e9f03cad893f210e162744f236168fb04322a1
e10c287f0058b9948362c03b12437fba1a011fd7
refs/heads/main
2023-07-12T02:58:33.899976
2021-08-14T20:53:32
2021-08-14T20:53:32
317,712,133
1
0
null
null
null
null
UTF-8
C
false
false
693
c
#include <stdio.h> #include <stdlib.h> #include <pthread.h> #include "multithreading.h" #define NB_THREADS 10 /** * _thread_entry - Thread entry point. Prints out a string * * @arg: Unused * * Return: NULL */ void *_thread_entry(__attribute__((unused))void *arg) { tprintf("Hello from thread\n"); return...
[ "accounts@jicruz.com" ]
accounts@jicruz.com
a47cab8a1478268f5afeefcee1df510e44299124
c486a0a4764ce76cb3823cf9db56663a4977e57e
/games/quiz/quiz.c
713544f8f551d1f98aeab1d04caf68f17e0814ec
[]
no_license
rofl0r/irix-3.x-src
5a78dec0ec7b88972ad49a6e005d9e6dd5d63966
e5f21f6d1c77aad92583c20f6bf25285077f5fe1
refs/heads/main
2022-04-20T05:25:02.489203
2020-04-21T00:22:43
2020-04-21T00:22:43
null
0
0
null
null
null
null
UTF-8
C
false
false
7,630
c
char _Origin_[] = "System V"; static char ID[] = "@(#)quiz.c 1.1"; #include <stdio.h> #include <signal.h> #define NF 10 #define NL 300 #define NC 200 #define SL 100 #define NA 10 int tflag; int xx[NL]; char score[NL]; int rights; int wrongs; int guesses; FILE *input; int nl = 0; int na = NA; int inc; int ptr = 0; ...
[ "johncvalentine@protonmail.com" ]
johncvalentine@protonmail.com
4bf272ef82c4583c841d9ae9216cdb275cedb82b
dc83c6a458468d27da4d11c9e80771bfcae66328
/Arena_Extended.c4s/Flints.c4d/Halluzinationsflint.c4d/Quartflint.c4d/SO-Quartflint.c4d/Script.c
9d0d088b741a6662bafdd0250d143f26dc94a896
[]
no_license
Deflaktor/Clonk-Content
561321eb52817b8ef250c9dacc48a11cd1e9bb4d
148ca9131a552d5a96846ca7393af839792b09b1
refs/heads/master
2021-08-07T16:20:53.511229
2021-07-28T18:41:21
2021-07-28T18:41:21
247,836,781
0
0
null
null
null
null
UTF-8
C
false
false
313
c
protected Hit: Explode(Sum(Random(45),45)); CastObjects(SPRK,8,50); Smoke(0,0,Sum(Random(4),6)); Smoke(0,0,Sum(Random(4),6)); Smoke(0,0,Sum(Random(4),6)); return(1); /* Produkteigenschaften */ public IsChemicalProduct: return(1); /* Forschung */ public GetResearchBase: return(QTF7);
[ "deflaktor@gmail.com" ]
deflaktor@gmail.com
76730cb3d5642fde0cc44c169bdee7bd36fb84cc
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/fb673923-5a0a-4b0c-bcc7-8bb0b4e66e80.c
ce567a4b691b5f79aedfa7caa89bb3d5e983be2a
[]
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
578
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=12; int k; int l; k = 53; l = 64; k = i/j; l = i/j; l = i/j; l = i/j; l = i-j; l = j-j; k = k-k*i; //variables //random /* START VULNERABILITY */ int a; long b[41]; long c[57]; a =...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
c97846ebc6b61c379ca0d38bbc2a8b2a2f4a0d94
6b3dc5d23f9b7c1e56b1b5cc38980286f069fae2
/def.h
55f89be1e72877b70382b66e00117b75c56f1215
[]
no_license
dushuaihu/51MCU
cae78ba6b1a6526edd00a72e197ed539d422e6fc
d3d7179c4d947a10a9090da4db861bb52266ca9d
refs/heads/master
2021-01-01T04:59:33.961038
2017-07-15T02:56:26
2017-07-15T02:56:26
97,287,968
0
0
null
null
null
null
GB18030
C
false
false
1,099
h
#ifndef __DEF_H_ #define __DEF_H_ // typedef unsigned char U8; /* defined for unsigned 8-bits integer variable 无符号8位整型变量 */ typedef signed char S8; /* defined for signed 8-bits integer variable 有符号8位整型变量 */ typedef unsigned int U16; /* defined for unsigned 16-bit...
[ "noreply@github.com" ]
dushuaihu.noreply@github.com
5e99de996ca19f170d329ed7a791f9b02648b8c8
8ebceb3b721a70eed5f371fda4fde1efa0ab49e7
/test0511/echo_selectserv.c
5cb5e06b99cbb9bc5bee1a98ce5972d7d3634afb
[]
no_license
DustinYook/COURSE_COMPUTER-NETWORK
61d35a1d8c242d9725f7e15c39b074b7986df923
28767c97ed5a02a61c1f9077b4ec3a6556b9c380
refs/heads/master
2020-05-27T19:55:41.206072
2019-05-27T04:14:09
2019-05-27T04:14:09
null
0
0
null
null
null
null
UHC
C
false
false
2,251
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <arpa/inet.h> #include <sys/socket.h> #include <sys/time.h> #include <sys/select.h> // 키보드 입력은 표준입력디스크립터(0) #define BUF_SIZE 100 void error_handling(char *buf); int main(int argc, char *argv[]) { int serv_sock, clnt_sock; struct...
[ "aomorikaitou93@gmail.com" ]
aomorikaitou93@gmail.com
b4f5c16971d95aa442493fa2732a7cc11de3cd98
4c017c553cd55e976cb51c1cb302d09225460026
/vhall_live_core/vhall_media_core/3rdparty/audiomixing/AudioMixing.h
04b848e0b4c21c6c3528023844fcb581dd249fb0
[]
no_license
hongzhuxuke/3rdparty
7f6568fda3c96d8d1fa7bc1cfd4759dc07d6906b
87a621ec1a6997f45042b5085a22507782ee59cb
refs/heads/master
2022-12-13T20:28:14.243288
2020-09-18T03:05:23
2020-09-18T03:05:23
294,416,194
1
0
null
null
null
null
IBM852
C
false
false
3,289
h
/**************************************************************************/ /* VHALL Audio Mixing Project */ /* Used to mixing multi-channels audio signal into one channel. When M */ /* channels are input to this module, up to N channels mixed result could */ /* be output...
[ "ke.xu@vhall.com" ]
ke.xu@vhall.com
ee57addd2faf9e29d1c1a1d00f4ee1d59ba0b618
c26548bc85aba57faa9669136f92090e4ac96cdc
/StealthGame/Intermediate/Build/Win64/FPSGameEditor/Development/UnrealEd/SharedPCH.UnrealEd.ShadowErrors.h
b73247baf4a88a8d1cd544ac18d4bc1ca707f494
[]
no_license
Sterina99/SimpleStealthGame
952fe967f803340a52321b87fb8aa37da277ac04
30085451d33a6b774bf758c271b80d72ee742734
refs/heads/main
2023-08-23T19:07:50.622849
2021-10-16T09:51:55
2021-10-16T09:51:55
null
0
0
null
null
null
null
UTF-8
C
false
false
9,431
h
// PCH for D:\EpicGames\UE_4.27\Engine\Source\Editor\UnrealEd\Public\UnrealEdSharedPCH.h #define IS_PROGRAM 0 #define UE_EDITOR 1 #define ENABLE_PGO_PROFILE 0 #define USE_VORBIS_FOR_STREAMING 1 #define USE_XMA2_FOR_STREAMING 1 #define WITH_DEV_AUTOMATION_TESTS 1 #define WITH_PERF_AUTOMATION_TESTS 1 #define UNICODE 1 #d...
[ "stefanofa@edu.aau.at" ]
stefanofa@edu.aau.at
ad4fbf20e6c3084d2029bcb71cbf7021d611467f
de704f59359bf7bedfc0a3303a7bc54e0e6732aa
/ft_memmove.c
fbec4f78fb03374a5bad1335765b1b13ba43ab6c
[]
no_license
sletlape/libft
96d1fa32023688bf3ee8b27dc8caf5e9d7ee5a0e
44b05e5efb65bc4993278b1b44ba72c87d1da852
refs/heads/master
2020-03-29T08:46:56.871492
2018-09-21T07:35:33
2018-09-21T07:35:33
149,726,901
0
0
null
null
null
null
UTF-8
C
false
false
1,278
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memmove.c :+: :+: :+: ...
[ "sletlape@42.FR" ]
sletlape@42.FR
ab58f20d6bb56e0f613fa9d5bd81a12bf5920719
f3520541b533555d8436f7cd6c94b1436dc26397
/ezlib/readn.c
fb5652acc4761f9f895336296640a5db26bbfe9a
[]
no_license
sunliang711/ezlib
e7aeac3b783b31dc098e735602d77fa15a5ddc08
9a1dfe1a3fd999fcd8d155c525e0d0a5bdf6ea2e
refs/heads/master
2022-11-04T23:33:39.782438
2020-06-21T08:38:12
2020-06-21T08:38:12
271,439,237
0
0
null
null
null
null
UTF-8
C
false
false
577
c
#include <sys/types.h> #include <unistd.h> #include <errno.h> #include "readn.h" ssize_t readn(int fd, void *buf, size_t n) { char *ptr = buf; size_t nleft = n; ssize_t nread; while (nleft > 0) { if ((nread = read(fd, ptr, nleft)) < 0) { if (errno == EINTR) ...
[ "sunliang711@163.com" ]
sunliang711@163.com
39c5f830d8e3087217d844107ac0a971e0854c98
5e9f34bf2797a6fbc02dfb0235e94e0f2d6c1d4d
/Project/DemoKit/SrcCode/UIWnd/SPORTCAM/Resource/DemoKit_String_RU.c
6144dba08696667bb40447bd9225b898d06d27ca
[]
no_license
7956968/C90
dbbcd6cca7188413c3134262644734210853d4fd
0e21855e89e687ee488879133d901f7abdab746c
refs/heads/master
2023-03-19T10:16:29.443942
2021-03-10T02:49:50
2021-03-10T02:49:50
null
0
0
null
null
null
null
UTF-8
C
false
false
151,872
c
/*////////////////////////////////////////////////////////////////////////////// ---------- Document Info --------------- Author : Anonymous Created : 17:00:03, Sep 7 2009 Last modified : 15:18:11, Mar 22 2013 Making tool : UI Designer Studio File format : C language source file ----------- ...
[ "focus_feng@163.com" ]
focus_feng@163.com
c6da238c36aeaa91b75d9b97df8c9978f4ecea8b
becf54dd8789aa93514a53e4817a064897d4e820
/devel/arsdk/out/Unix-base/build/libressl/libressl-2.2.1/crypto/comp/c_rle.c
5f4abaa85b1c4d19b63e9192e34dfc5a8fa4e8c7
[]
no_license
MasashiAso/bebop
14c269a0892f320fc3b563e25dfdd358bcb6a641
1822d1cbc6664c75f6c5acdb5fecc335fb48e9a4
refs/heads/master
2020-03-14T21:33:40.263369
2017-02-14T13:59:03
2017-02-14T13:59:03
null
0
0
null
null
null
null
UTF-8
C
false
false
122
c
/home/mech-user/bebop_ws/devel/.private/bebop_driver/arsdk/out/Unix-base/build/libressl/libressl-2.2.1/crypto/comp/c_rle.c
[ "searchmyiphone@icloud.com" ]
searchmyiphone@icloud.com
cc5843c713b03dce0fb58433d36053d7ed8b2a27
c3e3b6fed28c14c7bcf2a4b442a94be3ab90cb93
/source/openvx/slice.c
9325fc4417723c6786c0cf2980c8d5faa74715b3
[ "Apache-2.0" ]
permissive
akarasulu/csi-nn2
87a45d302039ac0735f15d8ca7431791ad6ec4ee
f797193706c75d03edb77700abe6295805c31673
refs/heads/main
2023-08-15T21:20:26.868838
2021-10-18T08:48:33
2021-10-18T08:48:33
null
0
0
null
null
null
null
UTF-8
C
false
false
3,842
c
/* * Copyright (C) 2016-2020 C-SKY Limited. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * 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 * * www.apache.org/licenses/LIC...
[ "zhangwenmeng@linux.alibaba.com" ]
zhangwenmeng@linux.alibaba.com
934f8121a745a675d8cdcbc7c286929f0001d1ad
2e779e84d920d301cf86a5b4464ae893a4c9248d
/Preproc.c
171b6d9eeae168c75fa49620b62139882f042935
[]
no_license
JRS1986/SV_Parser
ede31fa220f81c4c7a04de24d32d713156d94cdd
5307ed6ef7572aef13357d32b27732cf176f4506
refs/heads/master
2021-01-21T06:55:08.831672
2012-05-02T08:23:28
2012-05-02T08:23:28
null
0
0
null
null
null
null
UTF-8
C
false
false
20,347
c
/* * This file was generated automatically by ExtUtils::ParseXS version 2.21 from the * contents of Preproc.xs. Do not edit this file, edit Preproc.xs instead. * * ANY CHANGES MADE HERE WILL BE LOST! * */ #line 1 "Preproc.xs" #/* Verilog.xs -- Verilog Booter -*- C++ -*- #***************************************...
[ "Jan.Seyler@gmail.com" ]
Jan.Seyler@gmail.com
266707409b3b25f56b8293209900247d1029c94a
683853bd5be07d66858d4990cd74a2d71144c4b2
/src/obj/build.h
b1ac2684c10ec4d88d1a6066bfd1975b56a8174c
[ "MIT" ]
permissive
xenox-project/xenox
f616110a287f75ac9e42482cdec15980ed035938
398e211aa8f4d49d4dc7fe854ad6f3fd1eb8b6e5
refs/heads/master
2016-09-06T06:47:43.892735
2014-09-03T03:08:17
2014-09-03T03:08:17
null
0
0
null
null
null
null
UTF-8
C
false
false
81
h
// No build information available #define BUILD_DATE "2014-09-02 21:03:03 -0400"
[ "xenox" ]
xenox
e4887de52401e9b31e5ba678ab868ccb11d16015
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/php-src/Zend/extr_zend_compile.c_init_op.c
c8a3151de54b7943d49b0016afc3f0eae7f8e406
[]
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
792
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
34d727871dad08cb39156834f75ae5e35dab6156
b328b7a8d028df0c461f89f987ed847a70c8437f
/prog/prog_fourier_smooth/fourier.h
ffc5180476ab38398c7eed6b37d1ecde052b1b29
[ "Unlicense" ]
permissive
YannChemin/distRS
d3c629a9c627d900b16e2faf8db869a81809ad7f
e853c0bf940abc662a2f8d889cd9fec26d36cd92
refs/heads/master
2022-08-19T15:27:02.454602
2022-08-19T15:26:17
2022-08-19T15:26:17
14,230,612
4
0
null
null
null
null
UTF-8
C
false
false
75
h
void fourier(double *t_sim,double *t_obs,int length,int harmonic_number);
[ "ychemin@gmail.com" ]
ychemin@gmail.com
bdfc19d6d0e36778b14ff86ffb6175500d7c75ac
adf4c0c5f66a31b0949a69f850c837de20fb3668
/Pods/Headers/Private/Makemoji-SDK/MEUserManager.h
051db87c349cf0a3196d6ac36105dac8a6bd599d
[ "MIT" ]
permissive
ReverseScale/MakemojiDemo
ee01947de2739001f36dcb507da0ddecb7f3fcee
390f5f9b11292a2bf2f1e2caee81f509f770877e
refs/heads/master
2021-09-29T01:11:32.189858
2018-11-22T05:31:42
2018-11-22T05:31:42
112,452,643
2
0
null
null
null
null
UTF-8
C
false
false
49
h
../../../Makemoji-SDK/Pod/Classes/MEUserManager.h
[ "Stevens@Stevens-MacBook-Air.local" ]
Stevens@Stevens-MacBook-Air.local
60e6a0d7711887c3c237745bffc2ebdcbcbb8eef
db7ec228050c371225b7ec481c252d8762fa1813
/src/kernel/driver/hpet.c
b1595d1282bfa3be8f96fe24a0fecdd364641f04
[ "MIT" ]
permissive
Oyami-Srk/Venlafaxos
363ba0400add63117814eca12cd95fb302f10b9b
808e4538095cac91561c3f448bcb41fe1d991445
refs/heads/master
2021-05-21T03:49:41.383445
2020-06-19T15:03:38
2020-06-19T15:03:38
252,529,190
2
0
null
null
null
null
UTF-8
C
false
false
4,644
c
#include "driver/hpet.h" #include "core/acpi.h" #include "driver/misc.h" #include "generic/asm.h" #include "driver/graphic.h" void *hpet_base; // from linux typedef unsigned long long u64; typedef long long i64; static u32 divide_64_by_32(u64 *n, u32 base) { u64 rem = *n; u64 b = b...
[ "hhx.xxm@gmail.com" ]
hhx.xxm@gmail.com
f81b3ade1d0a02d0353bda0e8282a49d6247852b
1ee6e27a1de14af16017e31e78c3132efa31b043
/C/Projetos/Exercícios/Propostos/01 - Estrutura Sequencial/circulo/main.c
8f9c2c8401e63ad5d1585adbcb4aaee673df077a
[]
no_license
Djalma447/ProgramationBasic
eb17a1fcae794ce3d9411b6bc192aed6e36b49ad
4bb75c18f5632c04878849914aa21b670fa4e479
refs/heads/main
2023-03-16T11:04:05.591774
2021-03-16T17:43:36
2021-03-16T17:43:36
306,959,016
0
0
null
null
null
null
UTF-8
C
false
false
268
c
#include <stdio.h> #include <stdlib.h> #include <math.h> int main() { double r, pi, area; pi = 3.14159; printf("Digite o valor do raio do circulo: "); scanf("%lf", &r); area = pi * pow(r, 2); printf("AREA = %.3lf", area); return 0; }
[ "djalma.ant@gmail.com" ]
djalma.ant@gmail.com
760cef67581da1d011610bfa6fbb7446ac1791dc
38be6da813f2d230a90d1ac4c7deb81ca6221be0
/data_structure/stack/codeforces/F5C/Solution.c
4570e18610c1d57a22b36422a4f619223abdafe1
[ "MIT" ]
permissive
MdAman02/problem_solving
c8c0ce3cd5d6daa458cb0a54ac419c7518bdbe1f
1cb731802a49bbb247b332f2d924d9440b9ec467
refs/heads/dev
2022-09-13T09:40:51.998372
2022-09-04T14:15:17
2022-09-04T14:15:17
256,194,798
0
0
MIT
2020-04-16T19:08:24
2020-04-16T11:27:57
Java
UTF-8
C
false
false
2,212
c
// problem name: Longest Regular Bracket Sequence // problem link: https://codeforces.com/problemset/problem/5/C // contest link: https://codeforces.com/contest/5 // author: reyad // time: (?) #include<stdio.h> #define MAX 1000002 struct st_bracket{ char container[MAX]; int top; } bstack; str...
[ "reyadussalahin@gmail.com" ]
reyadussalahin@gmail.com
3e10f1eeab45834447fddde5d900234ff5d56fb4
429bdd2eb12c7a644201d9a6a4ce359284c5d8a6
/libft/ft_putstr_fd.c
0607695730d454f4e0e0032d5264b1a557044980
[]
no_license
AmDogma/42Cub3D
5f7cf7a246fb3647a5d7cd48e32d949b78d3bbac
6420a4b8edc0c6b87904637e81df501f3f17e6b1
refs/heads/master
2023-08-22T07:54:13.815893
2021-10-05T15:59:48
2021-10-05T15:59:48
null
0
0
null
null
null
null
UTF-8
C
false
false
1,026
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr_fd.c :+: :+: :+: ...
[ "sawden@mail.ru" ]
sawden@mail.ru
5b19b9da0bfe46e90d131832abb7e0ea02fbef7e
f556220345ee211e751b135dcd4bc61d6a5bf199
/tkimg1.3/libtiff/tools/ppm2tiff.c
56ac0882ea55a63275dfd2e5fadc34902a0fa378
[ "libtiff", "TCL" ]
permissive
AenBleidd/rappture-runtime
622cf775ae0975149772630c766529284113300c
38dae5b811be1b002abb2952568681c24f9dc44d
refs/heads/master
2021-02-26T15:09:29.547822
2017-12-20T21:13:16
2017-12-20T21:13:16
245,534,406
0
0
null
null
null
null
UTF-8
C
false
false
7,263
c
/* $Header: /cvsroot/tkimg/tkimg/libtiff/tools/ppm2tiff.c,v 1.1 2004/08/13 22:02:20 andreas_kupries Exp $ */ /* * Copyright (c) 1991-1997 Sam Leffler * Copyright (c) 1991-1997 Silicon Graphics, Inc. * * Permission to use, copy, modify, distribute, and sell this software and * its documentation for any purpose is...
[ "mmc@6fc65d03-c400-0410-8875-c44a5c2d0901" ]
mmc@6fc65d03-c400-0410-8875-c44a5c2d0901
3c636c91f5f995b315910413fbc129ffcf4ba21b
ba098d7c5546b55eebf4cdca6fec19836a292918
/kernel/src/string.c
398c9d1650787da05da90b4f59ae9f949d5c2335
[]
no_license
Lailouezzz/lexos
440d497079b66bb080d876d2e3f8abd3cef95e70
49728968754f18ef44bfc2f9b5f247775a099d65
refs/heads/master
2023-04-12T16:36:50.544801
2021-04-10T14:47:08
2021-04-10T14:47:08
313,093,090
5
1
null
2020-11-30T08:54:44
2020-11-15T18:09:43
C
UTF-8
C
false
false
492
c
#include "lexos/string.h" int memcmp(const void *ptr1, const void *ptr2, size_t size) { for (size_t i = 0; i < size; i++) { if (((const uint8_t *)ptr1)[i] != ((const uint8_t *)ptr2)[i]) { return ((const uint8_t *)ptr1)[i] - ((const uint8_t *)ptr2)[i]; } } return 0; ...
[ "alanlebouder@gmail.com" ]
alanlebouder@gmail.com
7d6686a4e098f9a5e33297d6334db71631741b7a
06c9bc5af0edf3eb7f3daefbc0cf96d463fe6daf
/src/drivers/fuukifg3.c
0f0495c85f5831380ba96f9fcd8c15931a64a64e
[]
no_license
lantus/mame-nx
c4c96bb1125ceb6f7f348211dac5b63175accb22
e4f042da1a7a2164a58d7b1fc3db1d9229e4b690
refs/heads/master
2022-11-08T19:48:33.984389
2022-08-22T15:08:22
2022-08-22T15:08:22
140,345,004
100
8
null
2022-10-03T22:13:13
2018-07-09T21:39:46
C
UTF-8
C
false
false
23,955
c
/*************************************************************************** -= Fuuki 32 Bit Games (FG-3) =- driver by Paul Priest and David Haywood based on fuukifg2 by Luca Elia Hardware is similar to FG-2 used for : "Go Go! Mile Smile", "Susume! Mile Smile (Japan)" & "Gyakuten!! Puzzle Bancho (Jap...
[ "jimgiannakis@sbcglobal.net" ]
jimgiannakis@sbcglobal.net
eeac2035339e7511fb00689615735ea4262fd870
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/61fbcd9f-75d8-4fe6-b75a-c6e7bde6a8a2.c
94db5089105c4ef9360a36a74d6887cd2fec2032
[]
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
575
c
#include <string.h> #include <stdio.h> int main() { float i; float j; float k; float l; i = 6; j = 9; //variables /* START VULNERABILITY */ int a; long b[92]; long c[19]; a = 0; while (( a - 1 ) < strlen(b)) { a++; //random /* START BUFFER SET ...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
690acf03ef59d13df0261c02fae7d4bbf83069ac
54bf6d78a31e50e9610eaac7c47af82356a7b9eb
/LU/read_input.DVMH.c
3aae3444f991151a0b90fc17a6867c30e18b3e16
[]
no_license
okhokhlov/NPB_CDVMH
35cdd2128925a1c63bc277b6013a40ddef844359
5994b0875f4df3a1a3dff58ad8af0b4cd4206594
refs/heads/master
2021-04-06T12:43:03.540999
2018-02-26T22:32:42
2018-02-26T22:32:42
125,275,194
0
0
null
2018-09-12T07:56:32
2018-03-14T21:23:23
C
UTF-8
C
false
false
11,067
c
#include <cdvmh_helpers.h> //-------------------------------------------------------------------------// // // // This benchmark is a serial C version of the NPB LU code. This C // // version is developed by the Center for Manycore Progra...
[ "olegish@gmail.com" ]
olegish@gmail.com
07413e8524c8ea682ac55c76e7d6b87ae46c2b75
858ddb112c1641b0fa4d4cdf3965e6e492afdb75
/custom_images/limits/mu_combined.C
b52926e2edbb6c03679ce4e99bf7ee1d616f522e
[]
no_license
davidchall/dphil-thesis
17436f1f5167b96f3240a6659795aaa91dc198af
88fc8894df2fc57aab6daf48d95134c00b3c428f
refs/heads/master
2021-06-16T22:06:42.050234
2015-01-29T11:42:29
2015-01-29T11:42:29
81,452,485
0
0
null
null
null
null
UTF-8
C
false
false
14,582
c
{ //=========Macro generated from canvas: c1/c1 //========= (Sun Aug 10 10:34:22 2014) by ROOT version5.34/19 TCanvas *c1 = new TCanvas("c1", "c1",0,0,1024,768); c1->Range(91.496,-1.998101,212.456,7.052532); c1->SetFillColor(0); c1->SetBorderMode(0); c1->SetBorderSize(2); c1->SetTickx(1); ...
[ "dhcrawley@gmail.com" ]
dhcrawley@gmail.com
d699076e01809472abdf9c91399a5a7a81e08e51
694853d550031ed54384726ede748568cda4355e
/HOMEWORK/binary/binary/binary.c
a674ce5a8d33ff3ccb4f50cf637ddd7386904848
[]
no_license
cheng1212y/C
cf890dda8e7ec1c02c647909cb8dd2d26d10cc09
03037f5282ab326a6fa0f242ba7102ae5d26ecfc
refs/heads/master
2021-03-23T09:53:45.406538
2020-04-10T14:04:17
2020-04-10T14:04:17
247,444,266
1
0
null
null
null
null
GB18030
C
false
false
1,352
c
#define _CRT_SECURE_NO_WARNINGS 1 #include <stdio.h> //int main () //{ // int a = 0; //计算1的个数 // int i = 0; // int count = 0; // scanf("%d", &a); // // for (i = 0; i < 32; i++) // { // if ((a & (1 << i)) == (1 << i)) //左移00000000000000000000000000000001 // count++; //中的1分别和数字 & ,因为全1为1, // ...
[ "cheng12y@yeah.net" ]
cheng12y@yeah.net
ef27cd8dcb22399601e6077b6194cc250802de13
1efb7f36d436a0bffb5730e59e6461f7d2da648a
/bch.h
100a262ad723678d874f8a62c5ceeee9903b08b0
[ "MIT" ]
permissive
zwdong1994/trace_running
189df57b2465ae38eebd84cecd780dfc59812b5b
5d93f34bb1001a62e9ade16d0dfd0ff5ae3095b9
refs/heads/master
2020-12-05T05:42:25.164097
2020-01-11T17:49:19
2020-01-11T17:49:19
232,023,793
0
0
null
null
null
null
UTF-8
C
false
false
2,795
h
/* * Generic binary BCH encoding/decoding library * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHO...
[ "weidong@Weidongs-MacBook-Pro.local" ]
weidong@Weidongs-MacBook-Pro.local
b64104eeebbab95d0b472d3dc40e83e043ed103f
5cfe1d8a117bc3889bff5d8b99a746ed672111d5
/ParesImpares/ParesImpares/Funciones.c
4b7e05e221d3a163bb06dafd8f137ee84adb26dc
[]
no_license
giria/IronHack
57a9f8933643534dcbe87beddb1fb6efc604156d
56c09674ddba4718c523ef9235cc600a1476bd0d
refs/heads/master
2016-09-10T02:08:28.861031
2015-02-03T13:28:23
2015-02-03T13:28:23
null
0
0
null
null
null
null
UTF-8
C
false
false
1,117
c
// // Funciones.c // ParesImpares // // Created by Filippo Aresu on 2/2/15. // Copyright (c) 2015 Filippo Aresu. All rights reserved. // #include "Funciones.h" #include <stdlib.h> #include <time.h> int crearArrayAleatorio(int array1000[], int size){ //cambia la "semilla" que usa rand() para generar los nume...
[ "fili.aresu@gmail.com" ]
fili.aresu@gmail.com
75f1014b4115ff0309cc41ed2e60f1620095ba39
311ec091930ded88225bfc9aeff66fe182da0da3
/clib/include/printf.h
6b459197eb981bc8b5f2b1e3f779657ff04db297
[ "MIT" ]
permissive
weimingtom/EasyUSB
b9dbdaf5357999474230c574ecc93c44f06109da
a605b8dd76d6b3a796ffde0111c7f7a4afd2e8ba
refs/heads/master
2023-04-19T06:10:24.699449
2020-07-03T00:24:56
2020-07-03T00:24:56
null
0
0
null
null
null
null
UTF-8
C
false
false
4,076
h
/////////////////////////////////////////////////////////////////////////////// // \author (c) Marco Paland (info@paland.com) // 2014-2018, PALANDesign Hannover, Germany // // \license The MIT License (MIT) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this softwar...
[ "sinian742654264@foxmail.com" ]
sinian742654264@foxmail.com
814c980280ffc58d28ca140f30eecf59dfd26a41
65f9576021285bc1f9e52cc21e2d49547ba77376
/adsp_proc/core/pmic/pm/rpmh/src/pm_rpmh.c
65ac0cd431fa5370efc782aa59c13b5f04c0635c
[]
no_license
AVCHD/qcs605_root_qcom
183d7a16e2f9fddc9df94df9532cbce661fbf6eb
44af08aa9a60c6ca724c8d7abf04af54d4136ccb
refs/heads/main
2023-03-18T21:54:11.234776
2021-02-26T11:03:59
2021-02-26T11:03:59
null
0
0
null
null
null
null
UTF-8
C
false
false
4,820
c
/*! \file * * \brief pm_rpmh.c ----This file contains driver functions for rpmh * communication * * Copyright (c) 2017 QUALCOMM Technologies, Inc. (QTI). All Rights Reserved. * QUALCOMM Proprietary. Export of this technology or software is regulated * by the U.S. Government. Diversion c...
[ "jagadeshkumar.s@pathpartnertech.com" ]
jagadeshkumar.s@pathpartnertech.com
a35932dc6707a143181447a44f23b89f19bee251
54f352a242a8ad6ff5516703e91da61e08d9a9e6
/Source Codes/AtCoder/arc074/D/4663991.c
7870b93e22235107f6a15461e4346415b0652d02
[]
no_license
Kawser-nerd/CLCDSA
5cbd8a4c3f65173e4e8e0d7ed845574c4770c3eb
aee32551795763b54acb26856ab239370cac4e75
refs/heads/master
2022-02-09T11:08:56.588303
2022-01-26T18:53:40
2022-01-26T18:53:40
211,783,197
23
9
null
null
null
null
WINDOWS-1250
C
false
false
5,310
c
#include<stdio.h> #include<stdlib.h> #include<stdint.h> #include<inttypes.h> #include<string.h> typedef int32_t flow_type; const flow_type flow_inf = 200; typedef struct flow_edge { int32_t vertex; int32_t next; flow_type capacity; } flow_edge; typedef struct maxFlowGraph { flow_edge *edge;...
[ "kwnafi@yahoo.com" ]
kwnafi@yahoo.com
51001af08aff1dd739c1e551e30f4eaad18a2f29
385175cbb90f53d383c90d5efb8b9bf9dc5bd9ba
/CN Lab/Day I/5.c
7ff929b6ee91a0ae081114ab304792bf66c8a00a
[]
no_license
kumarjeetray/C_Programs
51ee9d3894e28ff08bd7398ccacb2d6838ff4751
b782c8abd5cde488f28d75d6b2a00e7835ce9bb6
refs/heads/main
2023-07-03T10:16:57.316596
2021-08-11T04:02:48
2021-08-11T04:02:48
387,330,234
0
0
null
null
null
null
UTF-8
C
false
false
1,113
c
/* Write a C program to check whether the Host machine is in Little Endian orBig Endian. Enter a number, print the content of each byte location andConvert the Endianness of the same i.e. Little to Big Endian and vice-versa. */ #include <stdio.h> int main(void) { unsigned int value = 0x1; char *r = (c...
[ "noreply@github.com" ]
kumarjeetray.noreply@github.com
8477ce61ba266de54c293c0132c036111d38c297
8a0f1278e9aa888af8f9db3e65ad804611ac0ea4
/Lab No.11 Task.2.c
b25cf2ddb2a42586ae12b464d200aea222889965
[]
no_license
saad143412/LAB-11
7929392dd2c232a942680969343bc29ea2b3e015
9e0e619263e0560165744be9d03bbbfb62726700
refs/heads/main
2023-06-27T20:06:02.940766
2021-08-01T13:56:07
2021-08-01T13:56:07
391,641,271
0
0
null
null
null
null
UTF-8
C
false
false
1,328
c
#include<stdio.h> float function(float cel); float function2(float feran); void main() { printf("Programmer Name : Muhammad Saad\nRegistration No : 20MDELE163\n\n"); int option; float cel, feran, k; printf("\n\t***If you wanna enter temperature in celcius degree press 1 ***\n"); printf("\t***If you w...
[ "noreply@github.com" ]
saad143412.noreply@github.com
5d590891d5c77585f83177b88f82b2091ff821bd
32e85e34fcf22141cac1fccc4d2038de85b3917f
/merged/EQ_oddEQ_UnchLoop/back/old.c
414297082b272825542347c80f1b581d7b24c233
[]
no_license
vhui/CC2_examples
c1f717fb98cc0596cb5dd6b5a9c660bc36c6ee7e
d71528d740160ad2becb5b7cb54b6d52dd0a194f
refs/heads/master
2020-05-31T22:31:56.876823
2019-06-12T18:58:22
2019-06-12T18:58:22
190,508,097
0
0
null
null
null
null
UTF-8
C
false
false
276
c
int foo(int a, int b); int client(int x, void) { int ret; if (foo(x, x) == 0) { ret = 1; } else { ret = 0; } ret; return ret + foo(5, 900); } int foo(int a, int b) { int c = 1; for (int i = 0; i < a; ++i) { c = c + b; } return c; }
[ "vhui@alumni.ubc.ca" ]
vhui@alumni.ubc.ca
e39c9629f8664c0f609f6307c3d3aa75a645d857
d6819ad545546e03b90d23788d720ab8ffad25d7
/catkin_ws/devel/include/gazebo_msgs/ModelStates.h
7aa941d55e7088328bc9603c5607d18b064a5cd7
[]
no_license
i-tick/EYANTRA-2020-21-VARGI-BOT
e4acb901143cdbfa2e8819a017989fab69109415
b634157b56f78ada54793e43717ca00389e0ce1a
refs/heads/main
2023-05-08T08:28:31.737912
2021-06-05T14:14:30
2021-06-05T14:14:30
374,123,829
0
0
null
null
null
null
UTF-8
C
false
false
82
h
/home/aitik/catkin_ws/devel/.private/gazebo_msgs/include/gazebo_msgs/ModelStates.h
[ "aitikdandapat@gmail.com" ]
aitikdandapat@gmail.com
33a897cd2b13916da3205236405b367bf1cafc86
5ef0733de5048d3ee72b1a5a01897c234483a89d
/Corewar/libft/srcs/get_next_line/ft_getline.c
6684432436001026f3ec49d1ab9fdfdc008f5760
[]
no_license
kcosta42/Corewar
ab1ec53e45246f09dcb76daa5ab22e12ee76d658
b490c5e5b8e87a5a8f7303e2523b334e5c5ed2c6
refs/heads/master
2021-01-22T07:52:44.492489
2017-05-30T17:16:51
2017-05-30T17:16:51
92,584,067
20
10
null
null
null
null
UTF-8
C
false
false
1,200
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_getline.c :+: :+: :+: ...
[ "kcosta@student.42.fr" ]
kcosta@student.42.fr
67d93ad6a8faee7ffb1e18f66376ad19da46f0f4
2d5fd32185ec7dcad3ee1089c50e6e5821dafe44
/firmware/src/config/default/peripheral/evic/plib_evic.c
e3dedc47e204f378818a94f5a7ad94a82b94d446
[ "MIT" ]
permissive
AJKnabenbauer/PIC32MEZ-STEPPER-CONTROLLER
2ea710701a6f11c8cb1a81c7fb1ef320301c1004
b0cb89b7b496b6fd36c0834d53ecac871dbebd5d
refs/heads/main
2023-05-12T16:59:11.076395
2021-05-28T03:05:58
2021-05-28T03:05:58
367,944,578
0
0
null
null
null
null
UTF-8
C
false
false
4,675
c
/******************************************************************************* EVIC PLIB Implementation Company: Microchip Technology Inc. File Name: plib_evic.c Summary: EVIC PLIB Source File Description: None ****************************************************************************...
[ "131114@live.com" ]
131114@live.com
c00ddae44a25ce5fc3c794dff6082d7e60073379
49fddc2c662cd3dd4f80cce5441db1c77a53b403
/Ortalamanın aldında kalan sayı bulma/ders32.c
3080e2781d9d36fa46e34a9bd73865d88c854612
[]
no_license
Enesctnts/C-Programlama
b4b42ba15f171d0a05dc35a3cdfc4fd6df41ef48
14dc6fbe03bf2fef4fa827f4b729f2ea9c322d68
refs/heads/main
2023-09-01T22:12:49.092359
2021-10-29T14:34:02
2021-10-29T14:34:02
422,216,463
3
0
null
null
null
null
UTF-8
C
false
false
1,197
c
#include<stdio.h> #include<stdlib.h> #include<stdbool.h> #include<conio.h> #include<math.h> //6.Kullanıcımız, float tipinde 10 adet değer girsin. Önce bu değerlerin ortalaması bulunsun, //ardından kaç adet elemanın ortalamanın altında kaldığı ve kaç adet elemanın ortalamanın üstünde olduğu gösterilsin. int main() { ...
[ "enesctnts@gmail.com" ]
enesctnts@gmail.com
dfa7a050e7f0b59593ad25ea1a32b97d03468694
e25c8b65c0115053b14f8ecffaea94a964eefa1f
/ds/u/j/jsh/sk/combat_backstab.c
d5608d263f16146678e8bc1024fe539e2686236a
[]
no_license
zwshen/mudos-game-ds
c985b4b64c586bdc7347bd95d97ab12e78a2f20f
07ea84ebdff5ee49cb482a520bdf1aaeda886cd0
refs/heads/master
2022-03-01T14:55:10.537294
2022-02-15T15:41:26
2022-02-15T15:41:26
244,925,365
4
1
null
2022-02-15T15:41:27
2020-03-04T14:44:49
C
BIG5
C
false
false
4,773
c
#include <ansi.h> #define SKILL_NAME "戰鬥背刺" inherit SKILL; inherit SSERVER; int exert(object me, object target,string dir) { string msg; int damage,sk,c; object weapon; if(!me) return 0; if(!me->is_fighting()) return notify_fail(SKILL_NAME+"要在戰鬥中才能使用!\n"); if( !target ) ...
[ "zwshen0603@gmail.com" ]
zwshen0603@gmail.com
67d429ec1dc30589fc2153b8633e393330dbdb08
78cce4eada4f96c45b6bbc0b1adb047427e9f3fd
/two_axis/MPU_6050_registers.h
c44f4c8ae6863497324d32b61282106691f0aa93
[]
no_license
nomclawson/drone_project
59857f12bd7c945335d64657715a50290c72e97f
acb20ffd1d9315414dfe56ff96bf85cac30cc24f
refs/heads/master
2023-08-28T20:20:46.436278
2021-11-09T08:06:51
2021-11-09T08:06:51
424,042,038
0
0
null
null
null
null
UTF-8
C
false
false
6,348
h
// Register name Address I/F Bit7 Bit6 Bit5 Bit4 Bit3 Bit2 Bit1 Bit0 #define MPU_6050_SELF_TEST_X 0x0D // R/W XA_TEST[4-2] XG_TEST[4-0] #define MPU_6050_SELF_TEST_Y 0x0E // R/W YA_TEST[4-2] YG_TEST[4-0] #define MPU_6050_SELF_TEST_Z 0x0F // R/W ZA_TEST[4-2] ZG_TEST[4-0] #define MPU_6050_SELF_TE...
[ "bjthompson17@byui.edu" ]
bjthompson17@byui.edu
19f08e49270c2c33b6e96cb7302d6ab63ff9eeb3
cd542efd4738cc5c3064c55d13c847e4e5bedfad
/instructionAnalyzed.h
debb9b0c5ffa4a00bf7adc2a05211646d1585a02
[]
no_license
neven-h/assmbler90
336cd060f5995486cb63ada5b749376cecb8d988
6f05f0c3713f0c91378d5bb1385e767c09e4b4ca
refs/heads/master
2023-07-14T11:40:34.495744
2021-08-18T10:20:25
2021-08-18T10:20:25
393,053,542
0
1
null
2021-08-15T16:33:12
2021-08-05T13:31:17
C
UTF-8
C
false
false
1,771
h
// // Created by ronia on 05/08/2021. // #ifndef RONIPROJECT_INSTRUCTIONANALYZED_H #define RONIPROJECT_INSTRUCTIONANALYZED_H #include "inputAnalyzed.h" #include "firstPass.h" #include "default.h" #include "EntryAndExtern.h" InstructionWordType commandGroup (int instructionNum); Bool isInstructionFirstPass(char *be...
[ "ronialon2008@gmail.com" ]
ronialon2008@gmail.com
4f1234e9e2c2827591816b2431b5eb8378457eaa
fb5d048562a851f3debe44899e7ad41af7e54a6d
/libhilti/threading.old.h
cc38e9d9a81e3fdd1fbb430ad7c8e0daadee2d83
[ "BSD-2-Clause" ]
permissive
jjchromik/hilti-104-total
1503b60544bf03cc5ec43a9e530981ffffdcfa01
0f9e0cb7114acc157211af24f8254e4b23bd78a5
refs/heads/master
2021-09-19T11:39:55.088380
2018-07-27T12:46:58
2018-07-27T12:46:58
123,906,685
1
0
null
null
null
null
UTF-8
C
false
false
12,051
h
// $id$ /// /// \addtogroup threading /// @{ /// /// Functions for manipulating threads. /// /// Note that if not otherwise noted, all the ``hlt_mgr_thread_*`` function /// is thread-safe. They must only be called from the main control thread. #ifndef HLT_THREADING_H #define HLT_THREADING_H #include <pthread.h> #incl...
[ "robin@icir.org" ]
robin@icir.org
bdf07f4e916c7c62488e40975b7e93af5c69d321
45e8c30fbcd754e780230c3afd8a587f0833f4b0
/blender_2.03_tree/src/ipo.c
bca53fd44eb8eac66ca3d29bbec4b91890efc8c5
[]
no_license
daar/bare-blender
2fdfb312a1d8f3048346bfa504aa863a61cfe814
3306d88a2ac9f78bcc7830c4bcafb4f2c7db7897
refs/heads/master
2021-01-16T17:47:42.303184
2015-05-19T21:33:46
2015-05-19T21:33:46
32,135,666
1
1
null
null
null
null
UTF-8
C
false
false
33,435
c
/** * $Id:$ * ***** BEGIN GPL/BL DUAL LICENSE BLOCK ***** * * The contents of this file may be used under the terms of either the GNU * General Public License Version 2 or later (the "GPL", see * http://www.gnu.org/licenses/gpl.html ), or the Blender License 1.0 or * later (the "BL", see http://www.blender.org/B...
[ "dhkblaszyk@zeelandnet.nl" ]
dhkblaszyk@zeelandnet.nl
1f77ebd29f6fbbb24fa976989293e9edd3b146db
62b87700bf45fb6454af2bda85e6d77e2a3772d0
/unit_test.h
0efa53c6673e9266fb0036bc1ea582fcff7af6e0
[ "BSD-3-Clause" ]
permissive
ilansmith/rsa
c297985ffe8e950eea31b852e4f4cd6913c0e4e2
027e865926605ddd5b73cb4f917237e8161cc14b
refs/heads/master
2021-01-21T01:56:48.222693
2018-07-15T00:42:06
2018-07-20T22:51:03
17,516,443
36
19
null
null
null
null
UTF-8
C
false
false
1,851
h
#ifndef _UNIT_TEST_H_ #define _UNIT_TEST_H_ #include <stdio.h> #include <stdarg.h> /* unit_test.h should be included after the tested code's header files so that * if it defines any of the following definitions it should get precedence */ #ifdef RSA_COLOURS #undef C_CYAN #define C_CYAN "\033[01;36m" #undef C_RED #d...
[ "lunnys@gmail.com" ]
lunnys@gmail.com
2878aa00c60274805c4d1acd4fe8f6c248f0d6e8
f3bace73f4d0ef95173c0130d3331a4db7214e2b
/main.c
65631a27ad8117ca08c7cd870d312630f96ac21a
[ "BSD-3-Clause" ]
permissive
sprhawk/stm32l1-freertos-template
6e120a2c39eec739e731392b4931b6240c1917f8
ad03baea919d35d3d38a7e0f186625eb75d076b2
refs/heads/master
2020-12-04T06:44:41.015641
2016-10-28T10:07:06
2016-10-28T10:07:06
67,856,445
0
0
null
null
null
null
UTF-8
C
false
false
9,635
c
/** ****************************************************************************** * @file Templates/Src/main.c * @author MCD Application Team * @version V1.6.0 * @date 01-July-2016 * @brief Main program body ****************************************************************************** ...
[ "hongbo@yang.me" ]
hongbo@yang.me
c502479614a5a900bb64ae7de5902e7fd4a1714f
c67190fc200f2c16c9119bb82956f29f6a51e984
/server/inc/lzpl/lp_bt.h
06f8b3ab7d6268d1e27dd625b4095a6a03d75117
[]
no_license
zeroweek/ProgramGroup
313481b29f7fed89485eeeda505588ea39c283b0
0f9a4d72d5d1ec29c269bf1f0fef25ec3a0f2351
refs/heads/master
2020-01-23T21:11:40.124703
2017-07-15T16:05:16
2017-07-15T16:05:18
73,174,954
0
0
null
null
null
null
GB18030
C
false
false
2,225
h
//****************************************************************************/ // author: caihy // date: November 12, 2015 // description: // //****************************************************************************/ #ifndef _LP_BT_H_ #define _LP_BT_H_ #include "lp_base.h" //begin声明所处的名字空间 NS_LZPL_BE...
[ "1003217929@qq.com" ]
1003217929@qq.com
2a69c596151cbdce0b0d8e77064eff720de59870
7d761dcd9263ac6e5b9daede963f5e56c4fb3a36
/sys/dev/pci/pccbb.c
988c1e5e2417245b950ec2e3d70bc1aea5930cdf
[ "Apache-2.0" ]
permissive
execunix/vinos
dcb063eb045292c48f33362299e8398a0429777b
d2ecdb6a4f937fbce3bd82d2136b97e456ef4741
refs/heads/master
2022-11-05T19:45:46.443487
2022-10-09T01:08:00
2022-10-09T01:08:00
45,656,899
0
1
null
null
null
null
UTF-8
C
false
false
92,523
c
/* $NetBSD: pccbb.c,v 1.206.4.1 2014/12/01 11:38:42 martin Exp $ */ /* * Copyright (c) 1998, 1999 and 2000 * HAYAKAWA Koichi. 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. Red...
[ "execunix@xmtlinux1" ]
execunix@xmtlinux1
b7e06ec4a9c6979b675e0b6e06ceae7da6b8bfa8
0bc34b716cbe585c93508c91488817d8c129e3be
/libs/aicorelib/include/aicore/aidebug.h
06bbe771d890a2d4187c7ffb204b9d77f8d1cbea
[]
no_license
tstaples/VGP220
5cc2d6ce948a1b0435c81a806e87b379f6412296
6843f452fea40410329dde8be8b8538069413464
refs/heads/master
2020-05-31T03:17:56.297102
2014-10-20T09:11:10
2014-10-20T09:11:10
23,381,788
0
0
null
null
null
null
UTF-8
C
false
false
1,062
h
// File: aidebug.h // Created 15/04/2014 // (c)2014 by Tyler #ifndef _AIDEBUG_H #define _AIDEBUG_H #pragma once #ifdef _DEBUG void AIDebugPrintf( bool writeCon, const char *pFormat, ... ); #define dbPrintf AIDebugPrintf // Sets a breakpoint #define BREAKPOINT do { void __cdecl :: __debugbreak(void); __debugbrea...
[ "Tyler.A.Staples@gmail.com" ]
Tyler.A.Staples@gmail.com
c84302102d7960770f02d516422ed700c2f37b58
d68af4165d7c81f584a6227ec1fd235b37d45a0b
/target/include/qapi/qapi_ble_gap.h
19ed4fa0aaec242ac546553f0e8fe4322d334499
[]
no_license
canyudeguang/Zigbee_lamp
245f078a7afe4a5cfa9fe00e00eee37cb0eb8595
2a48f426b0206bf35f3d5f7c4ba81900d958abbf
refs/heads/master
2020-03-29T15:51:40.720790
2018-09-28T07:00:01
2018-09-28T07:00:01
150,084,054
3
1
null
null
null
null
UTF-8
C
false
false
268,413
h
/* * Copyright (c) 2016-2018 Qualcomm Technologies, Inc. * All Rights Reserved. */ // Copyright (c) 2018 Qualcomm Technologies, Inc. // All rights reserved. // Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) // provi...
[ "yanggh0703@thundersoft.com" ]
yanggh0703@thundersoft.com
0570ea4a31e47f089e30d1658300ba974efaa7a6
74a42d20a727264bffc7088422360e507c5ba01c
/arch/arm/arch_ptbl_lpae.c
79c13137858bbbabca006da46a47b6c0b94ed9e9
[ "BSD-2-Clause" ]
permissive
sjbiwa/bwos
bf23742048c5faf9ffe918bb79105822c0d0e2ad
e10e7bba1fe56b98de1703e7c0b7f52ecc1b104d
refs/heads/develop
2020-05-21T22:27:38.896257
2019-05-02T08:29:41
2019-05-02T08:29:41
25,146,911
1
0
null
2014-11-25T07:45:53
2014-10-13T06:55:17
C
UTF-8
C
false
false
10,855
c
/* * Copyright (C) 2015 sjbiwa All rights reserved. */ /* * arch_ptbl_lpae.c * support ARMv7-A LPAE(LargePhysicalAddressExtension) * * Created on: 2015/10/07 * Author: biwa */ #include "kernel.h" #include "arm.h" #include "mpcore.h" #include "cp15reg.h" #include "memmgr.h" /*************************...
[ "sjbiwa@dream.com" ]
sjbiwa@dream.com
04915300aca4e8890917e55aa5a56b37085e8707
78071285f36ff96fe14e927bd9a6d30ada3e83f4
/world/obj/npc/jiashen.c
7fff4cea9605eb26ef8006cde9aad5f9fa7a7efa
[]
no_license
voidest1/xyj45
3dbd9059c62fcd7e4015780d1413722610a7f65d
134e96cf103dfbd355fbd2007d0679efd0d1e6ac
refs/heads/master
2023-07-22T16:12:21.537797
2021-09-03T06:30:52
2021-09-03T06:30:52
402,380,664
1
0
null
null
null
null
UTF-8
C
false
false
4,855
c
// 神话世界·西游记·版本4.50 /* <SecCrypt CPL V3R05> */ // jia-shen.c 假身 #include <ansi.h> inherit NPC; void create() { set_name("假身",({"jiashen"})); set("gender","男性"); set("age",30); set("str",30); set("per",20); set("combat_exp",1000); set("attitude", "friendly"); set_skill("dodge",10); set...
[ "leon@bitkan.com" ]
leon@bitkan.com
8724299ec890999db3bc986c0da811577199cbca
0e19bfa64653b4c0bff6c7b975d3d3d130fe958c
/高级语言程序设计/实验9 函数的引用/1084_十进制数转二进制数.c
9eae7477f8b154d0edcdcc6bb8626ac81bde1e23
[ "Apache-2.0" ]
permissive
SmRobots/scau_computer
d943e66c63147a1b053453ec268a4525b285cdb2
3818328192e46fbb021a9f941e9b181d257773c7
refs/heads/main
2023-02-12T03:20:43.262211
2021-01-10T02:51:15
2021-01-10T02:51:15
323,112,750
1
0
null
null
null
null
UTF-8
C
false
false
310
c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> // 采用递归的方式进行遍历 void binary(int n) { if (n == 0) { return ; } // 获取余数 int a = n % 2; binary(n / 2); printf("%d", a); } int main() { int n; scanf("%d", &n); binary(n); return 0; }
[ "noreply@github.com" ]
SmRobots.noreply@github.com
44e2a8cb3ebca48d6cbcb5f0105aec83f72ea5eb
94b067291d7d089f38ce3f0db989d2dbb2127c9e
/src/lua/src/loslib.c
28fb0d427fa930b908b4b7cb90f197fd525c799b
[ "MIT" ]
permissive
cigumo/cocos2d-x-external
273edc5b8aabdbdf2952e0b7b9c1cdb7fb28eb7e
ff987f432cac6ea7b14039cf40206cf3ed36041a
refs/heads/master
2022-03-18T11:07:01.570283
2019-11-26T02:40:45
2019-11-26T02:40:45
null
0
0
null
null
null
null
UTF-8
C
false
false
6,260
c
/* ** $Id: loslib.c,v 1.19.1.3 2008/01/18 16:38:18 roberto Exp $ ** Standard Operating System library ** See Copyright Notice in lua.h */ #include <errno.h> #include <locale.h> #include <stdlib.h> #include <string.h> #include <time.h> #define loslib_c #define LUA_LIB #include "lua.h" #include "lauxlib.h" #include ...
[ "li_cheng_zhe@163.com" ]
li_cheng_zhe@163.com