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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
708fd5e8c150b4e80dbaf0022a821d07af246a4c | decd7531321b9aff2dd3373383e46a0c9d615f2c | /大一上作业/第四章7/第四章7/源.c | d8bdcf705467dc097f280799d7a3a38702add97f | [] | no_license | laincarl/cpp-backup | a8b5c3e1a99b6b61dd442dcb25c6604279d6d876 | 673603c9c79c0c6534e919cd4ebdde801bb62bb4 | refs/heads/master | 2020-03-07T14:15:14.232301 | 2018-03-31T10:42:21 | 2018-03-31T10:42:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 182 | c | #include<stdio.h>
int main()
{
int x, y;
printf("enter x:");
scanf_s("%d", &x);
y = -1;
if (x!=0)
if (x > 0)
y = 1;
else
y = 0;
printf("x=%d,y=%d\n", x, y);
return 0;
} | [
"1047972853@qq.com"
] | 1047972853@qq.com |
b220b9980a807051e4f2fc1910d8286e261ba3ac | 6f224b734744e38062a100c42d737b433292fb47 | /polly/lib/External/isl/isl_stream_read_with_params_templ.c | 59111c6a08c8414193a62f2748d8d1af6f755585 | [
"MIT",
"LGPL-2.0-or-later",
"Apache-2.0",
"NCSA",
"LLVM-exception"
] | permissive | smeenai/llvm-project | 1af036024dcc175c29c9bd2901358ad9b0e6610e | 764287f1ad69469cc264bb094e8fcdcfdd0fcdfb | refs/heads/main | 2023-09-01T04:26:38.516584 | 2023-08-29T21:11:41 | 2023-08-31T22:16:12 | 216,062,316 | 0 | 0 | Apache-2.0 | 2019-10-18T16:12:03 | 2019-10-18T16:12:03 | null | UTF-8 | C | false | false | 1,101 | c | /*
* Copyright 2011 Sven Verdoolaege
*
* Use of this software is governed by the MIT license
*
* Written by Sven Verdoolaege.
*/
#define xCAT(A,B) A ## B
#define CAT(A,B) xCAT(A,B)
#undef TYPE
#define TYPE CAT(isl_,TYPE_BASE)
/* Read an object of type "TYPE" from "s".
*
* In particular, first read the pa... | [
"llvm-project@meinersbur.de"
] | llvm-project@meinersbur.de |
3aca34474d6519bc5627ed020714912c80d99217 | 51a452d2d3996523dc5bf25d7fbbdf79b604433c | /chap7_quick_sort/quick_sort3.c | f4c928c3275307e6976456184953a8424da1a837 | [] | no_license | cheerayhuang/BOOK_ITA | 3f83ddebab77294959a23dc8af2e873fd4a405e6 | 1092434ba68a765de6a979f2948574344ae2f367 | refs/heads/master | 2020-05-18T01:17:57.613066 | 2013-11-18T07:13:52 | 2013-11-18T07:13:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,002 | c | #include <stdio.h>
#include <stdlib.h>
#include <memory.h>
#include <sys/time.h>
#define MAXSIZE 50000
int locate(int array[], int begin, int end)
{
// randomize quick sort, get a sign value in a random pos.
int rand_pos = rand() % (end-begin+1) + begin;
int sign_value = array[rand_pos];
array[... | [
"cheney@T410.(none)"
] | cheney@T410.(none) |
b5f43e0d812a933ac63e0a0d534ccd4c46eb5588 | 12dc2e351da6c6360be8aebcf7a251fe586faa5b | /app/uart.h | 4cb14962ce7ec9f753e5f6b087f2a8e1e336d709 | [] | no_license | xiangww00/heaterctrl | 5f8fdd74974c3a15b47bca5f9b320fd7a29b40cb | 03631bdb8ebe348ff33e71b1a2b5c5212d7c269b | refs/heads/master | 2020-05-09T20:23:20.302366 | 2019-04-24T06:27:50 | 2019-04-24T06:27:50 | 181,406,142 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 537 | h |
#ifndef _UART_H_
#define _UART_H_
#define USART_RX_SIZE 256
#define USART_TX_SIZE 128
#define USART1_TX_DMA_CHANNEL DMA1_Channel2
#define USART1_RX_DMA_CHANNEL DMA1_Channel3
int __io_putchar(int ch);
void Usart_StdioInit(void);
void Usart_CommInit(void);
void Usart_Comm_TxDone(void);
void U... | [
"xiangww00@yahoo.com"
] | xiangww00@yahoo.com |
6c4d40c9987e1626489f68a595e08f6f4e52fad1 | c08ee79f8eccb9c0de6488966588071abfb54924 | /src/libmrubyc_config.h | 6a6d905c33f69f03c16291b7176490e4c7179dd8 | [] | no_license | kirikak2/nodemcu_meets_mrubyc | 04f5932ecb67ee2c6db7937ab7ba48efb1df18a1 | a846629b683dd5f589c827a3fc47f0205a11a0fd | refs/heads/master | 2020-03-23T05:22:09.262563 | 2018-07-24T02:29:00 | 2018-07-24T02:29:00 | 141,139,825 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 578 | h | /*
libmrubyc_config.h
Header file for Arduino application
Copyright (c) 2018, katsuhiko kageyama All rights reserved.
*/
#ifndef __LIBMRUBYC_CONFIG_H__
#define __LIBMRUBYC_CONFIG_H__
#define ESP8266MRBC_VERSION "0.1.0"
/* Specific Devices */
//#define USE_GPS_NEO6M
//#define USE_RTC
//#define ENABLE_RMIRB
/... | [
"kirika.k2@gmail.com"
] | kirika.k2@gmail.com |
74e4a58336dfd1392c781f11ebf1e5e6f1df96d4 | 687db60cafaee66cbdab05d62d06f39599b81782 | /Firmware/src/interrupts.h | 3737169993d054e604987054a26da8af55268105 | [] | no_license | SethDrake/StMon | 8cf511c425fbbb10b79e2fc62e2fd6f5f0db1c36 | fc82a164073e47548fc96dcbe9aba4fc334fdef6 | refs/heads/master | 2021-05-15T20:43:02.819550 | 2017-10-22T10:35:57 | 2017-10-22T10:35:57 | 107,788,568 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 683 | h |
#pragma once
#ifndef __INTERRUPTS_H
#define __INTERRUPTS_H
#ifdef __cplusplus
extern "C" {
#endif
extern void SystemInit();
void NMI_Handler(void);
void HardFault_Handler(void);
void MemManage_Handler(void);
void BusFault_Handler(void);
void UsageFault_Handler(void);
//void SVC_Handler(void);
void DebugMon_Handler... | [
"sergeyms@corepartners.ru"
] | sergeyms@corepartners.ru |
a4694792a721a65ab1fdef512bab8044881bdc02 | 7f3f56f2bc2ccb6e6e614a6e139b7c60c393ff73 | /src/example_1/exor2.h | 7730c9232b96f859544d88e1d605fab4d83ff6ce | [] | no_license | gustavosobral/systemc-exercises | a22c8eb5c2fb7dd798ced9bbaa219ea2a8c30768 | c3558ed7c32da964cb3ca1749acf951ef5353c05 | refs/heads/master | 2020-04-12T08:52:45.526759 | 2016-11-02T14:00:59 | 2016-11-02T14:00:59 | 65,681,983 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 350 | h | #include "systemc.h"
#include "nand2.h"
SC_MODULE(exor2) {
sc_in<bool> A, B;
sc_out<bool> F;
nand2 n1, n2, n3, n4;
sc_signal<bool> S1, S2, S3;
SC_CTOR(exor2): n1("N1"), n2("N2"), n3("N3"), n4("N4") {
n1.A(A); n1.B(B); n1.F(S1);
n2.A(A); n2.B(S1); n2.F(S2);
n3.A(S1); n3.B(B); n3.F(S3);
n4.A(S... | [
"ghsobral@gmail.com"
] | ghsobral@gmail.com |
469a77266f57efe04c38a580867750f567728a76 | e9d68be09428f7f6f558e1ae9755c3bf319816d4 | /asn1-e30-1/SL-CP-Len-r12.c | 023ae15ea81884cb0b3c28003e24bf154f12e591 | [] | no_license | zgbgit/LTE-CELL-RRC-ANALYSIS | 8368b60c9f69be09b4b117fef0b8d1aa71985761 | e5c19c2444d5115fd8fcb8ebb11c1893d2db514b | refs/heads/master | 2020-03-09T09:54:22.094062 | 2018-04-09T06:21:50 | 2018-04-09T06:21:50 | 128,723,880 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 5,408 | c | /*
* Generated by asn1c-0.9.27 (http://lionet.info/asn1c)
* From ASN.1 module "EUTRA-RRC-Definitions"
* found in "36331-e30.asn"
* `asn1c -S /usr/local/share/asn1c -fcompound-names -fskeletons-copy -gen-PER`
*/
#include "SL-CP-Len-r12.h"
int
SL_CP_Len_r12_constraint(asn_TYPE_descriptor_t *td, const void *sptr,... | [
"zhengaobin@jiantongtech.com"
] | zhengaobin@jiantongtech.com |
fc67d813d06a9e80e2cfa2b49cdfd62b953e6e90 | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/gcc-12.1.0/gcc/testsuite/g++.dg/expr/cond4.C | fff5c8b185dc7e66f4ec512c1e2e067e6e7747f6 | [
"Zlib",
"LicenseRef-scancode-public-domain",
"LGPL-2.1-only",
"FSFAP",
"LGPL-3.0-only",
"GPL-3.0-only",
"GPL-2.0-only",
"GCC-exception-3.1",
"LGPL-2.0-or-later"
] | 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 | 250 | c | // PR c++/13971
struct QChar {
static const QChar null;
};
struct QCharRef {
operator QChar() const;
};
struct QString {
QCharRef operator[](int i);
};
QChar fillParagraph(QString s, int psi) {
return psi ? QChar::null : s[psi];
}
| [
"rink@rink.nu"
] | rink@rink.nu |
dbe14b35c118ce049d484b6cfa88d31060f78b1a | 4c21dedbf4eab6e5125811285345e2cd3afcc969 | /Assignment 3/p8``.c | 8ab073c3f6bbeeadc0a816c027918da66ffab91a | [] | no_license | vamseems/C | 1e40c9c9eff954e2343597be61d59124528bf0bf | 22d772cc72ac4194cbcf0d45e2ec6b07205d0272 | refs/heads/master | 2016-09-06T17:20:10.495973 | 2014-11-30T11:57:24 | 2014-11-30T11:57:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 845 | c | #include<stdio.h>
#include<string.h>
int main()
{
int t,k=1;
int i,j,l,lena,lenb;
scanf("%d",&t);
char a[10050];
char b[1050];
while (t>0)
{
scanf("%s%s",a,b);
lena=strlen(a);
lenb=strlen(b);
// printf("lenb=%d\n",lenb);
for (i=0;i<lena;i++)
{
if (a[i]==b[0] || a[i]=='?')
{
k=1;
for (j=i... | [
"vamseems@gmail.com"
] | vamseems@gmail.com |
fd25c1f58881b651f245019dd9dbc7c72181def6 | bce13199cf228a54077e7786e776fdd787761673 | /DA1468x_SDK_BTLE_v_1.0.6/projects/dk_apps/demos/ble_adv/ldscripts/sections.ld.h | 6d2a524d8a506d309898e7da411630fb86910b93 | [] | no_license | wgy504/ihu | 86ee543fe487bc5cce8faa3f1c51f905eca1de50 | e060247dc4ca58540ba85fd4ec3bc242ab70bee8 | refs/heads/dev | 2021-01-01T04:36:49.704316 | 2017-07-13T17:38:22 | 2017-07-13T17:38:22 | 97,207,999 | 1 | 0 | null | 2017-07-14T07:48:57 | 2017-07-14T07:48:57 | null | UTF-8 | C | false | false | 10,799 | h | /* Linker script to place sections and symbol values. Should be used together
* with other linker script that defines memory regions ROM, RetRAM0 and RAM.
* It references following symbols, which must be defined in code:
* Reset_Handler : Entry of reset handler
*
* It defines following symbols, which code can us... | [
"smdzjl@sina.cn"
] | smdzjl@sina.cn |
800052121074fc3f4fb8ac324b7981ed73313feb | 82a7ae58802527ef4728b7842eaad654c65333fe | /C/TheHuxley/Lista 03/calibrando_sensores/main.c | 0be605d2099ce28aaaeaff80de80cea33e3d2ac1 | [] | no_license | Alhenri/Codigos | 77929651091d2af63fe689e2a90758126f8ffb5c | 681ef7abeee61e843e6a6717ca5f0be8d9ce0eb5 | refs/heads/master | 2022-12-19T23:39:02.773176 | 2020-10-07T19:30:22 | 2020-10-07T19:30:22 | 259,753,395 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,101 | c | #include <stdio.h>
int main(){
int n, a; // n: sensores, a: amostras
scanf("%d %d", &n, &a);
int sensor[a][n];// cada amostra por sensor
int valor[n][2]; // pega o maximo e o minimo de cada um
int amostras[n];// amostras para ser normalizada
int valorNorm[n]; // valores normalizados
long p... | [
"ahssf@cin.ufpe.br"
] | ahssf@cin.ufpe.br |
ed619b93a13fd67a5f8251fc8e6e3f29b6416e9c | 4463a4482f44a007d37dc5ab9aac5a4d5bd37300 | /include/cddutil.h | f5bbc7cefb28256053d724c6ff698ff3a5970837 | [] | no_license | gpertea/mgblast | e25cb219ac4c7fa123ceee4156be1e9c4f87997f | d06af0c2b3e72a8209f958d2b64510c83bf2a4a1 | refs/heads/master | 2021-01-22T05:01:00.918428 | 2017-02-10T21:45:26 | 2017-02-10T21:45:26 | 81,608,439 | 5 | 2 | null | null | null | null | UTF-8 | C | false | false | 25 | h | ../biostruc/cdd/cddutil.h | [
"geo.pertea@gmail.com"
] | geo.pertea@gmail.com |
8754992aff9b14fbf63245748ac871d5dc38d28a | 5999474eb6a5d12efe7ca7bafc7e6e4048c65fc0 | /src/sound.h | 9356768ad6acf8d416bbd01a6107141d6a1b4bde | [
"MIT"
] | permissive | PetoiCamp/OpenCat | dd1c4bf857f7831f902aef812763581aeedb5d8e | 335e0fe529f1acb405f879c5b6012398c835d953 | refs/heads/main | 2023-09-05T10:27:06.631580 | 2023-09-03T17:21:02 | 2023-09-03T17:21:02 | 326,441,188 | 2,374 | 315 | MIT | 2023-09-14T12:26:31 | 2021-01-03T15:42:00 | C++ | UTF-8 | C | false | false | 2,011 | h | #define LENGTH_FACTOR 2
#define BASE_PITCH 1046.50
// tone: pause,1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4
// code: 0, 8, 10, 12, 13, 15, 17, 19, 20, 22,24,25
byte melodyNormalBoot[] = {8, 13, 10, 13, 8, 5, 8, 3, 5, 8, //tone
4, 4, 8, 8, 4, 8, 8, 8, 8, 4, //relative duration, 8 means ... | [
"rzlib2l@gmail.com"
] | rzlib2l@gmail.com |
5cf0b0ae9b24bc650aba6233f6c530f74fff9f05 | 8695cd73fe18fc02388dd2d7b712ce3697d1c21a | /C++课堂学习/作业/sy6_9/sy6_9/6_9.c | 50014aee49d7d15a5ca983d3f2f3f00ca8fd9296 | [] | no_license | little0brother/C-C-Study | 4a6e1adeb2308d7f7ba71bc5212d1a53d865d4d1 | d461d7b35c13b81e9393321cdcdc25a46c1dc434 | refs/heads/master | 2023-04-07T01:17:28.488015 | 2021-04-08T15:14:47 | 2021-04-08T15:14:47 | 355,953,389 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C | false | false | 523 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
int f(char s[])
{
int m, n, i, j, L = strlen(s);
for (i = 0, j = 0; j < L; j++)
{
if (s[j] >= '0' && s[j] <= '9')
s[i++] = s[j];
}
s[i] = '\0';
L = i;
m = 0;
n = 0;
for (i = 0; i < L; i += 2)
{
m += (s[i] - '0') * 1;
n += (s[i + 1] - '0') ... | [
"1964610426@qq.com"
] | 1964610426@qq.com |
4e55ab67ca3faec33a7d8aa78617466ab588cd1f | d5f16b8570879ab527c4cd3a8662305e6156da77 | /Game_Demo/powerup.h | eeb1c66b1b6dc36b5e8846062afef19395c1aa96 | [] | no_license | dibya404/IGraphics-Project | 90da9a2527590097fa27cc2905d7437841b3155a | c7098f5287c8f27dcd3e018413c0bd67c2fedec8 | refs/heads/main | 2023-08-06T09:42:10.081522 | 2021-09-18T16:07:02 | 2021-09-18T16:07:02 | 407,905,088 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,593 | h | #ifndef POWERUP_H_INCLUDED
#define POWERUP_H_INCLUDED
int gems; //variable for load picture of gem
int chaoscontrollpic; //variable for load picture of chaoscontroll
double gemX = 200, gemY = 400; //coordinate of gem picture
int gemdx =0 , gemdy = 0; //controll gem coordinate
int powerbarwidth = 0; //width of po... | [
"you@example.com"
] | you@example.com |
ed96856ec30c414922fcbe59e9564a1ab325385e | 598737b786a20889dc6acd468478baf4972535b3 | /src/sys/arch/powerpc/powerpc/ipkdb_glue.c | 1c095ece7870034ab484220b6d78ea865af388dd | [] | no_license | shisa/shisa-netbsd | 5c8e289de2a48b6d8f39bd3add9ca4ea48fec1da | 28d999d1c25107c126e0a458a97b9397aae592ef | refs/heads/master | 2021-01-01T05:33:32.619808 | 2008-05-26T04:27:54 | 2008-05-26T04:27:54 | 32,793,680 | 1 | 2 | null | null | null | null | UTF-8 | C | false | false | 3,472 | c | /* $NetBSD: ipkdb_glue.c,v 1.6 2003/09/27 04:44:42 matt Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
* Copyright (C) 1995, 1996 TooLs GmbH.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditio... | [
"keiichi@mobilegravity.sfc.wide.ad.jp"
] | keiichi@mobilegravity.sfc.wide.ad.jp |
5b85fae84c104714479df33925b6752839b24d90 | c0ceedaf49ce193e541dafca72952737813e2d81 | /Carthage/Checkouts/web_components/Pods/Headers/Public/HMAccountSDK/HMPEPhoneBindRequestTask.h | c6fcd753058cd650c37d358c5f8e83d41f29801d | [] | no_license | dingdaojun/HMUIComponentsSDK | dee722566ff3321c5ad1a99d5d60f1f67aacaa99 | 60bc33d240ad9fb79481df50d00736b0f0a0153d | refs/heads/master | 2020-04-29T02:45:48.805207 | 2019-03-08T08:44:15 | 2019-03-08T08:44:15 | 175,782,778 | 0 | 0 | null | 2019-03-15T08:49:51 | 2019-03-15T08:49:49 | Objective-C | UTF-8 | C | false | false | 90 | h | ../../../HMAccountSDK/HMAccountSDK/HMPhoneEmailSDK/RequestTasks/HMPEPhoneBindRequestTask.h | [
"dingdaojun@smartdevices.com.cn"
] | dingdaojun@smartdevices.com.cn |
3c27519f6cfc2f61478ee5422dd5be5388f8e500 | 273f5ed2d3fdda9b6e15a5cda4286b9b81c40ba4 | /yfig/common/ydw/ydw-objedit.c | 7d20e7890581274893b7e39ee4f939b79867f1ae | [] | no_license | corentinjuvigny/yfig | 45c7a8b2b4d472e8880b23322d16872e421c4c82 | ef8d428f823b57fd62b2b51d99a442ee278226b4 | refs/heads/master | 2020-08-04T00:44:12.695492 | 2019-09-30T19:45:10 | 2019-09-30T19:45:10 | 211,940,738 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 17,925 | c | /*======================================================================
* Copyright 2017 Ivan Augé
*
* This file is part of the YFIG software.
*
* YFIG 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 Fo... | [
"cojuvigny@gmail.com"
] | cojuvigny@gmail.com |
f390bd06ffd0ffb0dab9f7571ad8246d99ff128a | 565fcb5c72eb641de24b0fb874bf143f7b973aad | /ble-profiles/sources/services/svc_cte.h | e7a62786d20df5d9a77907cb8619c95564ff5ff1 | [
"Apache-2.0"
] | permissive | tuyafei/cordio | 9b5b743a409559fcd714f6213410ac580af2570b | eb18d61b2c139963cb9b67c0057f5be5c6fb5521 | refs/heads/master | 2022-03-14T16:08:34.458416 | 2019-07-29T23:42:07 | 2019-07-29T23:42:07 | 269,545,011 | 3 | 2 | Apache-2.0 | 2020-06-05T06:10:14 | 2020-06-05T06:10:13 | null | UTF-8 | C | false | false | 5,618 | h | /*************************************************************************************************/
/*!
* \file
*
* \brief Example Constant Tone Extension Service implementation.
*
* Copyright (c) 2018 Arm Ltd.
*
* Copyright (c) 2019 Packetcraft, Inc.
*
* Licensed under the Apache License, Version 2.0 (t... | [
"john.yi@packetcraft.io"
] | john.yi@packetcraft.io |
4313f122d3a67579634754f39c56cbf17aef48bc | a045a7ddf651f9360851f713687e827fe93ca789 | /demo/sledsrc/defs.h | f8a07d367bb2f8119de4641900505e16059a15dd | [
"HPND"
] | permissive | LegalizeAdulthood/xgks | 2a95279dc9ce0a80a8da53b542df01ae724f6fb7 | 7d71792e7c56b8c7e35d7ee4224e2c4487a7cb27 | refs/heads/master | 2023-03-16T13:47:23.965736 | 2021-03-04T05:58:13 | 2021-03-04T05:58:13 | 344,363,854 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,751 | h | /*
* Copyright IBM Corporation 1989
*
* All Rights Reserved
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted,
* provided that the above copyright notice appear in all copies and that
* b... | [
"legalize@xmission.com"
] | legalize@xmission.com |
0de3fb7c436f3b2d025d2a1dfee5dcfbb21f02c2 | ce0c1d3626a601ce13c6d60c68ed840e5a825b54 | /libft/src/ft_strsub.c | 3bc1f43f53a2bfef425fe462191c616ce6967ae6 | [] | no_license | Denis-shl/21sh | 3c9b0e7cebed1d3eff5419d94e67594285a3db23 | 953c1ca32bde3e860118c069da1172adc3e883b3 | refs/heads/master | 2021-07-11T13:18:54.900763 | 2020-11-09T11:58:45 | 2020-11-09T11:58:45 | 217,490,699 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,246 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strsub.h :+: :+: :+: ... | [
"denish13@live.ru"
] | denish13@live.ru |
ce369320fef97d8536a04e660f8d848a1b2a6f44 | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/106e25ea-2e45-4082-816d-cfdfb9d364f0.c | fed7a3c7cb2251429b1f64ff5493523ab3a61a39 | [] | 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 | 230 | c | #include <stdio.h>
int main() {
int i=0;
int j=124;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = k%j;
l = i-j;
k = k-k*i;
printf("vulnerability");
printf("%d%d\n",k,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
38492cf25662a0cfba4f613c00ecd9c67d35a710 | 51cafe40f95173c37f38dac2e4aef852f5a8dea6 | /src/utils.h | 6cd8fcd180f8140f03fa11869282148f85fe7b47 | [] | no_license | amiryeshurun/windows-system-calls-attacking | b07a9de8089e94c7bb00089e69acf988eeab5ded | f45df79aa0579d636d75f125e7fcf9d85ceffbae | refs/heads/master | 2022-12-14T20:26:03.325831 | 2020-08-04T09:14:25 | 2020-08-04T09:14:25 | 241,667,986 | 2 | 3 | null | null | null | null | UTF-8 | C | false | false | 470 | h | #ifndef __UTILS_GLOBAL_H
#define __UTILS_GLOBAL_H
#include "fptr.h"
#include <tlhelp32.h>
#define NT_SUCCESS(x) ((x)>=0)
#define FILE_CREATE 0x00000002
#define FILE_NON_DIRECTORY_FILE 0x00000040
#define OBJ_CASE_INSENSITIVE 0x00000040L
int GetPidFromName(wchar_t str[]);
PVOID AllocateVirtualMemory(SIZE_T size, int p... | [
"amiryeshooroon@gmail.com"
] | amiryeshooroon@gmail.com |
a0db388065a6e68b0ce825d6b93bde739d8d0476 | 2bcd7dd224968ac73fded9c9441b5b5c4d2385cf | /hmc5883.h | badb5f87f8d781695357e54db5d52031a4dba20f | [] | no_license | Workshopshed/AzureSphereBitBangI2C | 00a795f237e7de70d6dc1699971209adca84ff58 | 933f124c314b6a5d7fe1cdd272b117db92a59287 | refs/heads/main | 2021-09-25T06:14:26.568613 | 2019-11-06T22:32:06 | 2019-11-06T22:32:06 | 162,761,553 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,256 | h | #pragma once
//Some details thanks to AdaFruit library for the HMC5883 magnentometer/compass written by Kevin Townsend for Adafruit Industries.
//I2C ADDRESS / BITS
//I2C Address 8 - bit read address 0x3D
// 8 - bit write address 0x3C
#define HMC5883_ADDRESS_MAG (0x3C >> 1) /... | [
"noreply@github.com"
] | Workshopshed.noreply@github.com |
036a3d2c8ed0b0976ab0368a49b9536706ac8cf5 | 0c5d3b088080577388f5766431487534f93a2c40 | /Github-Projects-Origin/linux-master/drivers/gpu/drm/drm_panel.c.bak.c | d407a612dfdadf9fd6e69a2d5e4f86549a4d9d6f | [] | no_license | zhiyuanjia/WoBench | 878255ce45e76ef57f88743c7f43acdfa59e93e7 | 6b337780cbd598de98fc0eabd19efaf1a01b6012 | refs/heads/master | 2021-09-23T03:12:08.091319 | 2018-06-14T10:17:59 | 2018-06-14T10:17:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,576 | c | #include <assert.h>
#include <string.h>
#define INCLUDEMAIN
/*
* Copyright (C) 2013, NVIDIA Corporation. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without r... | [
"wangcong15@mails.tsinghua.edu.cn"
] | wangcong15@mails.tsinghua.edu.cn |
5185b6989181f130f21ab064539ed88faaabea39 | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/binutils-2.38/bfd/elf32-wasm32.c | 999ab58d7dbfe4db5e6912959e2b8eb7968fa2e0 | [
"FSFAP",
"GPL-3.0-only",
"Zlib",
"LicenseRef-scancode-public-domain",
"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 | 4,488 | c | /* 32-bit ELF for the WebAssembly target
Copyright (C) 2017-2022 Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
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 Fre... | [
"rink@rink.nu"
] | rink@rink.nu |
42281838dcb1a8eba2e30462ed19f84651139b75 | 756b146a40be6a2b67fd54ed07fc66c69d7d9181 | /test/IO/fileIOtest.c | 626c3d770edabed963b4d982331568c97cc8a82b | [] | no_license | wobushishenqiang/linux_other | f3149f7766813abbf248e72d56c0240cd108e142 | 4d08259e995c587989cfdc28615fcefdf8f0c19a | refs/heads/master | 2023-01-07T08:39:07.567400 | 2020-11-12T03:52:33 | 2020-11-12T03:52:33 | 308,163,467 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 573 | c | #include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<sys/types.h>
#include<unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
int main(int argc,char* argv[]){
//open file
int fd = open(argv[1], O_RDWR | O_CREAT , 0755);
if(fd<0){
perror("open error");
return -1;
}
//write something
write(fd, "hel... | [
"719660015@qq.com"
] | 719660015@qq.com |
8feb5bd69175f513ff50029dd84c459ffaca7530 | eb3ac600ea4b09cec61f0c993820035099e58716 | /嵌入式作业4.h | 40900c3c6307e2d15b8063d8861985c0f10a8a66 | [] | no_license | 74237423/QianRuShi | 60031703eb44c535ef965b388e80741c64f2561b | 16587ac07bea48a669e4818065724cb24996c9ea | refs/heads/master | 2020-04-07T13:05:23.000070 | 2018-12-06T07:49:54 | 2018-12-06T07:49:54 | 158,392,956 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,844 | h | /*以按键单击(表示为0),长击(表示为1)为输入,统计连续1出现的状态总共的次数。*/
static int count=0;//count用来保存连续的1
static int num=0;//保存连续1出现的次数
unsigned int t1 = 10;//去抖动时间
unsigned int t2 = 700;//长按时间的阈值
int currentt1=0,currentt2=0;
int key_state=HIGH;
const int Buttonpin = 2;//设置按钮为2号口
unsigned int stateFlag = 0;
//中断处理程序,处理连续的1
void carr... | [
"noreply@github.com"
] | 74237423.noreply@github.com |
bce746d436b20d7bc1a5de1f346f011bdc8d3966 | dc3d1541d795652de7e35729e53da97eeb042a66 | /NES/Deprecated/dev/EMUs/mame/src/mame/drivers/carpolo.c | fe413f64324fa9bd15f4af42a8ee75840af12225 | [] | no_license | no-carrier/playpower | 41a3040dad00a1f5dba9de008b824d06d149c993 | 6e670930ee6e9c919572f38af98227e1aedbdc87 | refs/heads/master | 2021-01-18T15:18:55.725944 | 2010-09-12T13:14:02 | 2010-09-12T13:14:02 | 32,271,580 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,483 | c | /***************************************************************************
Exidy Car Polo hardware
driver by Zsolt Vasvari
Games supported:
* Car Polo
Known issues:
* sound
Original Bugs:
* if you insert a coin too fast (before the GAME OVER sign appears)... | [
"vivekfitkariwala@38caf8bc-9974-11dd-b31e-5b0f3c431db7"
] | vivekfitkariwala@38caf8bc-9974-11dd-b31e-5b0f3c431db7 |
ffe520aab2288a3a4688f81ea467fd035c000ef4 | 6ac9bfbba3b728ab1e509aa6289b2c9c77577602 | /AutonomousRobotics/Summer 2016 Backups/Team 1/Computer 2/USB/SummerAcademy/following_tape.c/following_tape.c | f9ba8e4cef5233769d63ae35c432f8fe7d60866e | [] | no_license | cotyembry/CollegeProgramming | ae249a41045d3521ac90d70725fef8f44d2856ec | f8ff9aab98981d700754c32388a7bddbb1ced34b | refs/heads/master | 2020-05-21T11:02:21.008134 | 2017-03-11T03:35:02 | 2017-03-11T03:35:02 | 84,621,188 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 937 | c | int turnLeft() {
printf("left found BLACK\n");
clear_motor_position_counter(0);
clear_motor_position_counter(3);
//mtp(0, 800, -500);
//mtp(3, 800, -500);
msleep(50);
mrp(3,200,20);
//bmd(0);
//bmd(3);
msleep(50);
}
int turnRight(){
printf("right found BLACK\n");
//clear_motor_position_counter(... | [
"cotyembry@gmail.com"
] | cotyembry@gmail.com |
448ff915d9ae3e5cf3b4443024c905a4b8f245ce | ca4216f227d388d8dfbc59e2811272b9f1f77f86 | /COM7-Sonvico/listasRecursivas/main.c | 413a2c2e8adabfe3060cc1d7cae2f6bb0a02914d | [] | no_license | micac88/Programacion-Laboratorio2-2020-UTN | 968f84d338e365f2b47f543fc4b2c0ea9eabf9e8 | d830d2976c5fa348cb4ba460bdfb015236aa4d15 | refs/heads/master | 2023-01-23T01:35:53.357643 | 2020-11-14T13:18:11 | 2020-11-14T13:18:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,330 | c | #include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "lista.h"
void mostrarRecursiva(nodo * lista);
int sumaRecursiva(nodo * lista);
nodo * cargaListaRandom(nodo * lista, int cant);
nodo * borraUnNodo(nodo * lista, int dato);
nodo * agregarEnOrden(nodo * lista, nodo * nuevo);
int main()
{
printf("He... | [
"gsonvico@gmail.com"
] | gsonvico@gmail.com |
e36cd4bfc3b0b921e0cfc99adda492c2a758af8d | bade93cbfc1f25160dfbe9493bfa83f853326475 | /mwc/romana/relic/b/STREAMS/io.386/haiCt.c | e12cea9f9e95949ede08cc5df1dea94a02cfc45f | [
"BSD-3-Clause"
] | permissive | gspu/Coherent | c8a9b956b1126ffc34df3c874554ee2eb7194299 | 299bea1bb52a4dcc42a06eabd5b476fce77013ef | refs/heads/master | 2021-12-01T17:49:53.618512 | 2021-11-25T22:27:12 | 2021-11-25T22:27:12 | 214,182,273 | 26 | 6 | null | null | null | null | UTF-8 | C | false | false | 38,120 | c | /***********************************************************************
* Module: haict.c
*
* Unix device driver functions for accessing SCSI tape drives as
* character devices. Conforms to Mark Williams Coherent definition
* of the Unix Device Driver interface for Coherent v4.0.1.
*
* The philosophy of t... | [
"gspurki@gmail.com"
] | gspurki@gmail.com |
26be42485f297047a92ac9a4f4ce83e0087aaef6 | 5cb1fc773440e402ec051740c7609ef0f6fc6fa5 | /ffmpeg04.c | 789a846027a3807569ed65b2585429f75701cdc1 | [] | no_license | ggubuk97/ffmpeg-hanbit | d4e499448880103b9e58bca8774667e8c02771b9 | 3f0aa202a637c1670829db18318416dedc5d4476 | refs/heads/master | 2021-08-31T18:03:34.341352 | 2017-12-22T09:13:08 | 2017-12-22T09:13:08 | 113,537,767 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,419 | c | #include <libavformat/avformat.h>
#include <libavcodec/avcodec.h>
#include <libavutil/common.h>
#include <libavutil/avutil.h>
#include <stdio.h>
typedef struct _FileContext
{
AVFormatContext* fmt_ctx;
int v_index;
int a_index;
} FileContext;
static FileContext inputFile;
static int open_decoder(AVCodecContext* co... | [
"jaden@Jadenui-MacBook-Pro.local"
] | jaden@Jadenui-MacBook-Pro.local |
cd4bdc8c8bd39ea98813f2fed745627162126da4 | 251c2c0bfacebc316c7cd1833ee187d9c9a9fe73 | /project 2 - 8051 C/leds.h | a183e6b9b1cd67d849b65f501793f308bbbd85c3 | [] | no_license | swizrc/Various-Projects | bd4b3f7f136adb98859ac62d201bf65edcc47a69 | 6ab1445beceefbc3a3b10a8306ea62dbaad17a51 | refs/heads/master | 2021-01-20T12:49:25.422371 | 2017-05-06T01:06:11 | 2017-05-06T01:06:11 | 90,410,266 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 390 | h | #ifndef LEDS_H
#define LEDS_H
//------------------------------
// TL_|T__|TR_ 2.4|0.5|2.7
// L__|M__|R__ 0.6|1.6|0.4
// BL_|B__|BR_ 2.5|0.7|2.6
//------------------------------
sbit TL_ = P2^4;
//sbit T__ = P0^5; // We don't use this one. Saving memory.
sbit TR_ = P2^7;
sbit L__ = P0^6;
sbit M__ = P1^6;
sbit ... | [
"swizrc@mst.edu"
] | swizrc@mst.edu |
e8ade7ccb4dd2f07893112f7c1d751c8640e1278 | 3bc3f080f46a6897c6d88f036c784c63b3673979 | /src/mame/video/kan_pand.h | 7692c9276f88ad766f4a3127b4c731b3e8fef6d5 | [] | no_license | vikke/mame_0145 | bec0f81aba918c8ca5579a13f72e3c8efc7d0065 | e9b4636543b017c2a6cdd6cddeab4afc02740241 | refs/heads/master | 2021-07-04T03:00:14.861010 | 2021-06-02T10:07:17 | 2021-06-02T10:07:17 | 4,586,522 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,716 | h | /*************************************************************************
kan_pand.h
Implementation of Kaneko Pandora sprite chip
**************************************************************************/
#ifndef __KAN_PAND_H__
#define __KAN_PAND_H__
#include "devlegcy.h"
/*****************... | [
"vikke.bsd@gmail.com"
] | vikke.bsd@gmail.com |
eff66e819c15e94475408de13553e7bdbc5da34f | 75bc948f21807a59207d510747fd5641a2dc9f59 | /modules/VMS_DBAccess/Resource.h | bc025f71251c6a5727e6ce3795a35a381a9e95c9 | [] | no_license | EmbeddedSystemClass/U24 | 665a7211b790cd08035d7719775c58f0bc15072b | de2ef2884ad1a8a07df3a444d1db9f13a921a774 | refs/heads/master | 2021-06-15T09:40:47.079680 | 2016-09-14T12:29:57 | 2016-09-20T06:53:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 439 | h | //{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by VMS_DBAccess.rc
//
#define IDS_APP_TITLE 103
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 101
#define _APS_NEXT_COMMAND_VALU... | [
"Lion.Wu@Qisda.com"
] | Lion.Wu@Qisda.com |
b26b59e34d2e0cbda19cd592986caa8434eb3125 | 1ca11b43572673ef6cd82044f761ce386b9eef40 | /Assignment 11 (Array)/Q.8/myheader.h | ffbc208ac22ebdb799756c0edebb4c8e6785055d | [] | no_license | Maggi87/C-Programming | 388646e8a324264bf6a049653160ca164a621448 | 6a6312d56cb9f1ffff2a098e5b354750148392c9 | refs/heads/master | 2022-12-21T04:15:25.427261 | 2018-11-28T13:08:36 | 2018-11-28T13:08:36 | 146,735,389 | 0 | 1 | null | 2020-09-28T19:35:38 | 2018-08-30T10:43:12 | C++ | UTF-8 | C | false | false | 231 | h | /*
8. Accept array of characters from user and accept one character.
Return occurrence of that character without considering case.
Input : b N e B R b A i G i B
b
Output : 4
*/
int Search(char *,int,char);
void Display(int); | [
"dattaprasad.ingle@rlard.com"
] | dattaprasad.ingle@rlard.com |
6bfc4c0c5738590982d526e78da0729e595e902d | bd31d14c2da97aac9a216f243b5a3b6ab2cb4f75 | /comma.c | 9d135be355a4d7bdd2116159a50cb4e0f4c373b5 | [] | no_license | younghyun97/Project_calculator | e029469df97913ff0a05ad423202b708f76de818 | a2c5a1e2c626c468b96c09409b43586016cfa7f9 | refs/heads/master | 2021-05-31T17:21:22.351218 | 2016-06-13T15:24:45 | 2016-06-13T15:24:45 | 294,914,060 | 0 | 1 | null | 2020-09-12T09:41:52 | 2020-09-12T09:41:51 | null | UTF-8 | C | false | false | 327 | c | #include <stdio.h>
#include <string.h>
int main(void)
{
char input[100];
int len=0,i;
printf("입력: ");
scanf("%s",input);
for(i=0;input[i]!='\0';i++)
len++;
printf("출력: ");
for(i=len;i>0;i--)
{
if((i!=len)&&(i%3==0))
{
printf(",");
}
printf("%c",input[len-i]);
}
printf("\n");
return 0;
}
| [
"m2j9702@naver.com"
] | m2j9702@naver.com |
fec3c43ccc13a8b68c1de0b648be054b20b6430c | 926b4b93fb60ad9afa1df2471ace473a8ceb49b7 | /CS 445/Complier/src/semantic.c | cc6159c92a10b72af8009933b45a8a847eb3f57c | [] | no_license | durkinza/csClasses | 9182d0235e8761669aa8fb005a4eee5f32ea2004 | f1911a2c181d926f4a75d9bce1b81292faa85ed5 | refs/heads/master | 2021-04-26T22:20:17.045699 | 2019-11-07T03:17:28 | 2019-11-07T03:17:28 | 71,822,697 | 0 | 3 | null | 2019-11-07T03:17:29 | 2016-10-24T19:06:26 | C | UTF-8 | C | false | false | 245 | c | /*
* Author: Zane Durkin <durk7832@vandals.uidaho.edu>
*
*/
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
// include all the things!
#include "nonDet.h"
#include "types.h"
#include "tokenTree.h"
#include "../_build/yacc.tab.h"
| [
"zanedurkin@gmail.com"
] | zanedurkin@gmail.com |
75729d0810243524b55f07245441eeb718b8b751 | db3cd209fb6e94bcb630268de59c35744dc7f028 | /core/config/rtarch_x64_128x1v8.h | 6b26a9518da7b2e562a916bdd3a98374ecbbdb0c | [
"MIT"
] | permissive | wilsonk/UniSIMD-assembler | 5066cfb178363fab6da0e31f4673fe3c2a1fe488 | 553ff4dc1e2b2a718cba498e0859732001109c36 | refs/heads/master | 2020-12-01T01:58:17.769507 | 2019-12-18T08:29:14 | 2019-12-18T08:29:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 86,354 | h | /******************************************************************************/
/* Copyright (c) 2013-2019 VectorChief (at github, bitbucket, sourceforge) */
/* Distributed under the MIT software license, see the accompanying */
/* file COPYING or http://www.opensource.org/licenses/mit-license.php ... | [
"vectorchiefrocks@gmail.com"
] | vectorchiefrocks@gmail.com |
99508029e5451b8d321c1cc0da521035cf9ab92d | 05cd208bfa3ae06a33a2076158ebd63110427dd6 | /inc/UART.h | 3c796db571e830437959ec1bd311ad0bb528f5a5 | [] | no_license | uvic-auvic/Bootloader_STM32F4 | fd403d9ae7bd74b39546cfa8b2d8144726164faa | ec939d167581eb60dec09fb49a6b26d02a8fa2ef | refs/heads/master | 2020-03-26T06:49:28.505293 | 2018-11-05T04:13:40 | 2018-11-05T04:13:40 | 144,623,431 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 761 | h | /*
* UART.h
*
* Created on: Aug 13, 2018
* Author: Poornachander
*/
#ifndef UART_H_
#define UART_H_
#include "User_Defines.h"
#define INPUT_BUFFER_SIZE_BYTES 32
#define OUTPUT_BUFFER_SIZE_BYTES 64
typedef struct commBuffer {
uint8_t isRecivingHeader;
uint8_t isRecivingPayload;
uint8... | [
"poornakalidas@gmail.com"
] | poornakalidas@gmail.com |
789bb5ff98d9bfcd5186c8bedbd1e4e631c209e4 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/net/ethernet/hisilicon/extr_hip04_eth.c_hip04_alloc_ring.c | f7678fc985a1967c063a4e8a4f18381db0a3d825 | [] | 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 | 1,592 | 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 |
715c6f0a12fe07b326b51c3a6b96c975d53d0b36 | 374c847533a76c62bc1a96c2ea9170c81d99884e | /whitelist.h | b0451a8ee6d1c2a522549524fde2192e3a60bb42 | [] | no_license | ZZIQIN/whitelist | 02cd80a06341b44dba03bda7868667bf0c970de0 | 165b25a7c83e13298c22b8b7ed8ee0bef8bdb6f0 | refs/heads/master | 2021-01-18T03:42:02.389554 | 2017-03-27T11:17:28 | 2017-03-27T11:17:28 | 85,797,396 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,451 | h | #ifndef __WHITELIST_H__
#define __WHITELIST_H__
#include <arpa/inet.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <time.h>
#include <unistd.h>
/******************************
Extern declarations
******************************/
#define WHITELIST_ON 1
#def... | [
"noreply@github.com"
] | ZZIQIN.noreply@github.com |
2d902e4ea87e10e0908afaf13e76d15a7f9011e1 | d05dfd73cbfc030bbda2de43c6161f77527d5f1a | /part3.2.C | 3a4dfb0753c6585bdf7ba98ea39854245e8d58c1 | [] | no_license | mtsngr/The-Poisson-Statistics | 3eeea99d2602917de886a81484963b33b7fdcfbb | be19737ab37fabacbf34b5fe1c51602d92cb2c49 | refs/heads/master | 2020-05-23T13:52:40.628994 | 2019-05-15T08:52:49 | 2019-05-15T08:52:49 | 186,787,515 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 497 | c | {
h = new TH1D("h", "; Time (sec) ; Number of Counts", 10, 0, 4.5);
std::ifstream file("par3_n=1.txt");
float datum;
while(file>>datum) {
h->Fill(datum);
}
h->SetFillColor(kBlue-6);
h->SetMaximum(40);
TF1 *f = new TF1("f","[0]*exp(-[1]*x)*x*pow([1],2)",0,25);
f->SetParamet... | [
"noreply@github.com"
] | mtsngr.noreply@github.com |
d83734a83225481585274df0e94c39f6b2addd93 | b9b24c85e06dd02918c1c5335ef8889251d06913 | /7-Using Linux Tools and Libraries/7.1.2.c | 273435e863a763a32f7e09bcd6dc772b539ea7a1 | [] | no_license | kirtap7/edX_C_programming_course | c2842a06d0bc394a8451f07bcdc60af316460085 | 24537d330057f4240eb13fee6ef07fc928bed51b | refs/heads/master | 2020-06-09T01:48:57.471701 | 2019-09-28T18:56:11 | 2019-09-28T18:56:11 | 193,346,709 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,048 | c | /*Petra lives in the United States, where temperature is measured in Fahrenheit, whereas Rémi lives in France, where one
measures in Celsius. During their weekly meetings to discuss the preparation of this course, they often wonder who currently
has the nicer weather.
To help with this important discussion, complete... | [
"patrick.malatesta@ucdconnect.ie"
] | patrick.malatesta@ucdconnect.ie |
8aeec2fd838843553fad61157507d8103133ed6b | 89536decaa8798e266e610acdc7a1e843cd9a0b1 | /RTL8370MB/API/rtl8367c_asicdrv_misc.h | 85f9dc6c0e4554fb77e289d38c11cf6b72461017 | [] | no_license | windd/RTL8370SmallDemo | 64c41b50d618d194c01543dfad42ca303837958a | 76e8d878c77dbb2012d2f74bf5d5b5689c0cc7df | refs/heads/master | 2021-09-21T11:46:39.304197 | 2018-08-25T07:02:07 | 2018-08-25T07:02:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 893 | h | #ifndef _RTL8367C_ASICDRV_MISC_H_
#define _RTL8367C_ASICDRV_MISC_H_
#ifdef __cplusplus
extern "C" {
#endif
#include <rtl8367c_asicdrv.h>
//extern ret_t rtl8367c_setAsicMacAddress(ether_addr_t mac);
//extern ret_t rtl8367c_getAsicMacAddress(ether_addr_t *pMac);
//extern ret_t rtl8367c_getAsicDebugInfo(rtk_uint32 port... | [
"757467644@qq.com"
] | 757467644@qq.com |
3c72c46add01d9ae8807811349b15545837254af | b37bd5f2e7216a4f5ea64868e173f87db3527d8b | /STM32Cube_FW_F0_V1.6.0/Projects/STM32F070RB-Nucleo/Examples/IWDG/IWDG_Example/Src/main.c | 1cb3ecde9497c513c02ef089d4c43f5750b8cbec | [
"BSD-2-Clause"
] | permissive | tbec/EmbeddedSystems | 5dfaa7cc096eaf3f0f641116b24d0b6861229d56 | 5bd5bd70b760ed2a19ad99c1ca5656bef806a542 | refs/heads/master | 2020-04-19T07:44:29.797549 | 2019-01-28T23:59:58 | 2019-01-28T23:59:58 | 168,055,981 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,436 | c | /**
******************************************************************************
* @file IWDG/IWDG_Example/Src/main.c
* @author MCD Application Team
* @version V1.6.0
* @date 27-May-2016
* @brief This sample code shows how to use the STM32F0xx IWDG HAL API
* to update at regular... | [
"tbecnel14@gmail.com"
] | tbecnel14@gmail.com |
8f1384794cb4cd26e575e58a5db73bd38442cca5 | 8afe401b84328136b02cade1c9e023a7b8570d18 | /plugins/indi/indi_client_manager.C | 9e26722091d9c636f0566518704e400f96cb1022 | [] | no_license | carsten0x51h/astro_tools | adbb63a2a3363c2927705df91992cbc3fb1ff9c9 | 5c4ee8057beae53c677e3b13871bec5b0f7cc9f5 | refs/heads/master | 2021-01-19T08:56:09.002328 | 2016-05-01T15:48:17 | 2016-05-01T15:48:17 | 26,342,574 | 4 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,079 | c | /*****************************************************************************
*
* AstroTools
*
* Copyright(C) 2015 Carsten Schmitt <c.schmitt51h@gmail.com>
*
* 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... | [
"c.schmitt51h@gmail.com"
] | c.schmitt51h@gmail.com |
1e1e1daddb57b73ea711a0d0362f7e225c729866 | 72702d3cd7284d02c4bfcd56e7109646f499b334 | /servidor_web_banderas.h | c6ccc2858c13c9dbd1b6d2534c1c4773acc1e23a | [] | no_license | felipemcg/PSoC5LP_Anemometro | 8d8e7261020371e22ddf4af2b8c026cfd61218ab | fb9780135071ce7f28f80c4ed98c3d75a4a698e4 | refs/heads/master | 2020-04-25T13:33:50.907379 | 2019-05-07T14:06:57 | 2019-05-07T14:06:57 | 172,813,397 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 441 | h | /* ========================================
*
* Copyright YOUR COMPANY, THE YEAR
* All Rights Reserved
* UNPUBLISHED, LICENSED SOFTWARE.
*
* CONFIDENTIAL AND PROPRIETARY INFORMATION
* WHICH IS THE PROPERTY OF your company.
*
* ========================================
*/
#ifndef SERVIDOR_WEB_BANDERAS_H
#define ... | [
"felipe.ce.n@hotmail.com"
] | felipe.ce.n@hotmail.com |
df12d565ee6d515e6d645beb9824c476fd34fd5e | 473fc28d466ddbe9758ca49c7d4fb42e7d82586e | /app/src/main/java/com/syd/source/aosp/external/vixl/test/aarch32/traces/simulator-cond-rd-rn-operand-rm-shift-amount-1to31-t32-orrs.h | fb4eb0bbaf315c3161564c757ecb0f05a8271d27 | [] | no_license | lz-purple/Source | a7788070623f2965a8caa3264778f48d17372bab | e2745b756317aac3c7a27a4c10bdfe0921a82a1c | refs/heads/master | 2020-12-23T17:03:12.412572 | 2020-01-31T01:54:37 | 2020-01-31T01:54:37 | 237,205,127 | 4 | 2 | null | null | null | null | UTF-8 | C | false | false | 461,603 | h | // Copyright 2015, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions ... | [
"997530783@qq.com"
] | 997530783@qq.com |
63c8175b3b3586bd4c2e597686b035f161b6f7c1 | c0e3ed1c296a71760e782abe91f8f945634b8832 | /hduP2028.c | 2081270220db493af96fb414a05d4151421cdc6d | [] | no_license | goodwell42/ojCode | 4cecf0cce9f7cc84306917e0c18724ad1b0bc14f | f8d351b74ee57b64b442576e809e9f48d1660ed2 | refs/heads/master | 2020-03-28T20:56:11.347839 | 2018-12-13T08:01:11 | 2018-12-13T08:01:11 | 149,115,145 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 487 | c | #include <stdio.h>
#include <stdlib.h>
int gcd(int a,int b)
{
if(a < b) {
int temp;
temp = b;
b = a;
a = temp;
}
if(b == 0)
return a;
return gcd(b, a%b);
}
int main() {
int i,n;
while(scanf("%d", &n)!=EOF) {
int* num = malloc(sizeof(int)*n);
for(i = 0; i < n; i++) {
scanf("... | [
"goodwell1998@gmail.com"
] | goodwell1998@gmail.com |
6d389dd2688bedce24e83e255b9ab9a0167786b9 | cdb281fe5f4d172e8ca899420a7e1cfb05e76398 | /mediatek/custom/s6000_prc_wifi/hal/imgsensor/hi542_raw/camera_isp_regs_hi542raw.h | 033d9bcd3ecb7da7b6493ee1a7f83c9ed00223ed | [] | no_license | lenovo-a3-dev/android_kernel_lenovo_mt8389 | feced2299e2415bd6b2140ff6414c1ed3cff37f8 | 320c9e380542564efdf88554cbde4847c0c0ab53 | refs/heads/master | 2021-01-17T18:43:23.740824 | 2014-11-22T22:12:21 | 2014-11-24T20:42:52 | 27,341,515 | 4 | 4 | null | null | null | null | UTF-8 | C | false | false | 77,445 | h | /* Copyright Statement:
*
* This software/firmware and related documentation ("MediaTek Software") are
* protected under relevant copyright laws. The information contained herein
* is confidential and proprietary to MediaTek Inc. and/or its licensors.
* Without the prior written permission of MediaTek inc. and/or ... | [
"kupyxa4444@gmail.com"
] | kupyxa4444@gmail.com |
909a0eac604149e6e412f14a4880e9000df1f3e8 | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/e32e7891-4921-4695-be3d-598e6d9fb3f1.c | bd14d02ef200b03b81aba6714311cdaba5491c67 | [] | 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 | 241 | c | #include <stdio.h>
int main() {
int i=4;
int j=1.;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = l/j;
l = l%j;
l = l-j;
k = k-k*i;
printf("vulnerability");
printf("%d%d\n",k,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
a35ab0d39452385510051b74f18067cd384b5481 | de8c0ea84980b6d9bb6e3e23b87e6066a65f4995 | /3pp/linux/drivers/staging/rtl8712/rtl8712_ratectrl_regdef.h | a3eaee0e1b69186f85c74c7247bdec0f47578bb9 | [
"MIT",
"Linux-syscall-note",
"GPL-2.0-only"
] | permissive | eerimoq/monolinux-example-project | 7cc19c6fc179a6d1fd3ec60f383f906b727e6715 | 57c4c2928b11cc04db59fb5ced962762099a9895 | refs/heads/master | 2021-02-08T10:57:58.215466 | 2020-07-02T08:04:25 | 2020-07-02T08:04:25 | 244,144,570 | 6 | 0 | MIT | 2020-07-02T08:15:50 | 2020-03-01T12:24:47 | C | UTF-8 | C | false | false | 1,736 | h | /* SPDX-License-Identifier: GPL-2.0 */
/******************************************************************************
*
* Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
*
* Modifications for inclusion into the Linux staging tree are
* Copyright(c) 2010 Larry Finger. All rights reserved.
*
* ... | [
"erik.moqvist@gmail.com"
] | erik.moqvist@gmail.com |
c3a934525659a483da29b14f376cba4a1220f90e | 556b467b0e31835de656c71a8f4e0bfd4acb7442 | /obj/book/luo_book.c | 293a7d2d2ab8947c64126fe174672b35e946050d | [] | no_license | afeizh/txmud | a4a48cb663eccfdf5aa0b951d34e93437a17c9fa | 717c8ef173bff8abe27e00fb8dc150cbf02b3c3a | refs/heads/main | 2023-08-07T20:33:48.154233 | 2021-09-16T15:34:37 | 2021-09-16T15:34:37 | null | 0 | 0 | null | null | null | null | EUC-JP | C | false | false | 594 | c |
// luo_book.c
inherit ITEM;
void create()
{
set_name("ー代慕―", ({"luo book"}));
set_weight(600);
if( clonep() )
set_default_object(__FILE__);
else
{
set("unit", "過");
set("long", "ー代慕―\n");
set("value", 1000);
set(... | [
"i@Mud.ren"
] | i@Mud.ren |
d6bae798d826f18adaa7d58364637a801c4b6501 | 94a9458638b6aad177e543fb441782f40b54e512 | /src/uct/ib/rdmacm/rdmacm_component.c | 082331962df22dc03ae679efad574fd245c896d9 | [
"BSD-3-Clause"
] | permissive | chenyidu/hucx | f9b87c01082e29896e3a7839ba3c9a7f59cba1ad | fae1812b4faeb31cf14fa80172a95f9a89736c33 | refs/heads/master | 2023-08-12T12:28:58.125050 | 2021-05-17T07:40:09 | 2021-05-17T07:56:33 | 308,786,660 | 1 | 1 | NOASSERTION | 2020-10-31T02:17:05 | 2020-10-31T02:17:04 | null | UTF-8 | C | false | false | 2,062 | c | /**
* Copyright (C) Mellanox Technologies Ltd. 2017-2021. ALL RIGHTS RESERVED.
* Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
* See file LICENSE for terms.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "rdmacm_cm.h"
static ucs_config_field_t uct_rdmacm_cm_config_table[] = {
... | [
"evgenylek@mellanox.com"
] | evgenylek@mellanox.com |
e987779e2517d803b3747c3b658e37dec6288491 | c28dfea24f92a937d57ebf9d8ab096a5e1624747 | /daily_practice/wendu.c | ecf5838a9f09263bfe5c8e257a50863d739811fd | [] | no_license | wendyltan/cprogram | fd535c5e02bce9307fe365625c85eb9106ce1651 | 5b07260b716e3b779b74754d82f8626653ec2ebd | refs/heads/master | 2021-01-17T17:19:51.944396 | 2018-02-05T14:58:00 | 2018-02-05T14:58:00 | 61,252,864 | 0 | 0 | null | 2017-02-08T13:46:48 | 2016-06-16T01:34:29 | C | UTF-8 | C | false | false | 209 | c | #include<stdio.h>
int main()
{
float f,c;
printf("please enter a Fahrenheit degree:\n");
scanf("%f",&f);
c=5*(f - 32)/9;
printf("so we can know that the degree is %.2f degree Celsius \n",c);
return 0;
} | [
"youlinai233@gmail.com"
] | youlinai233@gmail.com |
5906372971d043478bc809f6d05f4e6df07ec5fc | df8d750fa8b17b49ddd88b54ca8f77b481c4a490 | /c/array/inserting/evenOddSeparately.c | de1519fc2a67f3065268ada247cea5cd700ab6a8 | [] | no_license | durgeshchourey/c_programming | f41f115dfdf9be3f38c746fd2dd30da2a6a30d8b | 79833ab350219c27c7abdf089f7d3f0e6558c530 | refs/heads/master | 2020-05-17T20:26:30.804653 | 2019-04-28T18:43:11 | 2019-04-28T18:43:11 | 183,945,529 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 658 | c | #include<stdio.h>
int main()
{
int i,j=0,k=0,n;
long int array[10];
long int Earray[10];
long int Oarray[10];
printf("Enter the size of array ");
scanf("%d",&n);
printf("Enter %d elements in array ",n);
for(i=0;i<n;i++)
{
scanf("%ld",&array[i]);
}
for(i=0;i<n;i++)
{
if(array[i]%2=... | [
"durgesh.chourey@yahoo.com"
] | durgesh.chourey@yahoo.com |
20d43782c27f72fe5819ba2824f44eee35b8f8a4 | e4e46b7d01dbd2528da680cc10ba7ad5dab0243d | /Library/USB/SCR/usb_mem.c | 0d87eaec29af74b7af5d2a923d20416a70835957 | [] | no_license | quanhengwen/STM32F1xWorkSpace19 | c41eadb1414dec4469f0750621a5c81020ac102e | 96efa2c337d78ed1a31c948056c67d875cca61e4 | refs/heads/master | 2022-02-18T22:53:05.116417 | 2019-08-24T10:39:54 | 2019-08-24T10:39:54 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 3,619 | c | /******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
* File Name : usb_mem.c
* Author : MCD Application Team
* Version : V2.2.0
* Date : 06/13/2008
* Description : Utility functions for memory transfers to/from PMA
************************... | [
"wegam@sina.com"
] | wegam@sina.com |
1daa1d61f38ac65e8f80a99b8dc6c88ec38c6b5d | a56252fda5c9e42eff04792c6e16e413ad51ba1a | /resources/home/dnanexus/root/etc/dictpch/net/http/inc/LinkDef.h | ad97f11d7ccbf0216e764f006dfe3c112d3247b6 | [
"LGPL-2.1-or-later",
"LGPL-2.1-only",
"Apache-2.0"
] | permissive | edawson/parliament2 | 4231e692565dbecf99d09148e75c00750e6797c4 | 2632aa3484ef64c9539c4885026b705b737f6d1e | refs/heads/master | 2021-06-21T23:13:29.482239 | 2020-12-07T21:10:08 | 2020-12-07T21:10:08 | 150,246,745 | 0 | 0 | Apache-2.0 | 2019-09-11T03:22:55 | 2018-09-25T10:21:03 | Python | UTF-8 | C | false | false | 481 | h | #ifdef __CINT__
#pragma link off all globals;
#pragma link off all classes;
#pragma link off all functions;
#pragma link C++ class THttpEngine;
#pragma link C++ class THttpWSHandler;
#pragma link C++ class THttpCallArg;
#pragma link C++ class THttpServer;
#pragma link C++ class TRootSniffer;
#pragma link C++ class T... | [
"slzarate96@gmail.com"
] | slzarate96@gmail.com |
2fa6dce80952b7eb4a7f4758d453d4f414638583 | a9411da7c851e76e1c6adee7b8f3a1303ad77218 | /set9/8.c | 49a9dbd314cbd133b0088c43ba5816dab978decb | [] | no_license | kumaresan5059/kumarsk | aafa0515a1505797b6d1702aa485776001f478fd | 17f80a98d5f1dbc660c64120a5f219f77a8c74c5 | refs/heads/master | 2021-05-12T13:43:54.288508 | 2018-03-19T11:08:02 | 2018-03-19T11:08:02 | 116,940,916 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 170 | c | #include <stdio.h>
int main(void) {
int a,b,i;
scanf("%d%d",&a,&b);
for(i=2;i<=a;i++)
{
if(a%i==0&&b%i==0)
{
printf("%d",i);
break;
}
}
return 0;
}
| [
"noreply@github.com"
] | kumaresan5059.noreply@github.com |
21cfd2b1b4d57d638cb9758d8b4125ae777876d1 | bb9eac2a989d5018668701a1345c0eb6ce9dda32 | /fmt_fmu/rtos/components/net/uip/apps/webclient/webclient.h | 265e20d60ff7903d12f049463afb7d9f1d73f1ad | [
"Apache-2.0"
] | permissive | yangjion/FMT_Firmware | 0a1b1c460d53bdf385730c79b0b9ed8d3fe7d6f3 | 2152c9c4680bad98bd1c2da9f3b9739c2fd24bb2 | refs/heads/master | 2022-12-26T22:07:10.251958 | 2020-09-30T09:05:32 | 2020-09-30T09:05:32 | 292,263,051 | 0 | 1 | Apache-2.0 | 2020-09-02T11:23:41 | 2020-09-02T11:23:40 | null | UTF-8 | C | false | false | 7,192 | h | /**
* \addtogroup webclient
* @{
*/
/**
* \file
* Header file for the HTTP client.
* \author Adam Dunkels <adam@dunkels.com>
*/
/*
* Copyright (c) 2002, Adam Dunkels.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that t... | [
"zoujiachi666@163.com"
] | zoujiachi666@163.com |
dbb4001dbeaa8a0448ab24c5091ef872d0668a37 | 6bf79af73cce8e80d27fc9f7b3ce2f085c971809 | /luo_db_pool/src/system/luo_thread.c | ffbe13c16fea38d91289ab09912d9a711c7774e8 | [
"Apache-2.0"
] | permissive | wuleying/c-labs | 2a9e7a5054693d4e92e76e5b99c9aa99af9f0b48 | 9c28b177ef39480aa6390ee97b82e85c53d31a1c | refs/heads/master | 2021-01-20T09:00:31.644707 | 2017-11-04T06:31:28 | 2017-11-04T06:31:28 | 90,211,394 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 71 | c | //
// Created by luoliang on 16/7/8.
//
#include "../core/luo_core.h"
| [
"luoliang1@staff.weibo.com"
] | luoliang1@staff.weibo.com |
be79bbf92defeebb546c2dab0032e003695ff6a4 | 527a5187180fa138d2ea8381fb162a42c90b7231 | /S2B-Q/test-cases/kohei-y/Signal_Rout/testout-Goto_From.c | d625597884ad6126af8ac6acbe34f021462046a5 | [] | no_license | ts1413/test | 24ff0c8eb4159e901b6133cae920964634eca30c | d8839067c22f28f7b7bbb318648c345c6c3e5cd2 | refs/heads/master | 2021-01-18T08:29:31.791059 | 2015-10-07T07:28:29 | 2015-10-07T07:28:29 | 35,656,321 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,655 | c | #include <mcos/mcos.h>
#include <mcos/mcos_ds.h>
#include <string.h>
#include <assert.h>
#include <stddef.h>
#include "rtwtypes.h"
#include "Goto_From_types.h"
#include "Goto_From_private.h"
#include "testout-Goto_From_res.c"
#include "testout-Goto_From.h"
/*
* Resource by Core
*/
/* Logical Core task */
#ifndef ... | [
"ts1413@ertl.jp"
] | ts1413@ertl.jp |
0ea2cc1f10b4668caf91092552fd79614877d1fd | 905a3800ad3ea6d3d5b0a397f5cf43c7d96f397a | /8051/StopwatchMode.c | 0e908bd1ef28088fd2b9e29b24dce0a467c50164 | [] | no_license | kgamecarter/DivergenceClock | a93a68980f041bbc026f46225eb456ebb09e1217 | f1f591bb3754144aa7ca6f9145b5f92348925853 | refs/heads/master | 2020-05-19T23:33:23.773576 | 2019-07-13T14:16:24 | 2019-07-13T14:16:24 | 185,269,835 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,963 | c | #include "Display.h"
#include "StopwatchMode.h"
#include "TimeMode.h"
void stopwatch_onEnter();
void stopwatch_onExit();
void scanStopwatch();
void stopwatch_Button1Press();
void stopwatch_Button1Hold();
void stopwatch_Button2Press();
void stopwatch_Button3Press();
code ModeLink stopwatchMode =
{
... | [
"kgamecarter@gmail.com"
] | kgamecarter@gmail.com |
682fc2aa1e1f2f57bae18c06d4f3292a0c9c6e3f | f07f1dd7a77695e7f856859f06f648f3a8721429 | /master/math/Contact_GJac_math.h | 4368467d3c9ea530d4df07564dabe47cfb47bb60 | [] | no_license | wonjsohn/sarcos | c56cbc8b84c769d7ff94f7297560a55adf5cb919 | 979c5fb164fb08856eb78b490d29481c0e4a3f43 | refs/heads/master | 2021-01-19T02:01:55.736941 | 2016-07-14T20:28:19 | 2016-07-14T20:28:19 | 38,901,604 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 26 | h | master_Contact_GJac_math.h | [
"wonjsohn@gmail.com"
] | wonjsohn@gmail.com |
882af30710671a23d6382e66772c9a710a404768 | bf195b9d811ffc40650479e9d81a031b0b673602 | /cmp/afl-2.52b/read-bitmap.c | be8f9de02d9073a3c95eb666e4d6a4282db4bf14 | [
"Apache-2.0"
] | permissive | Leonardo-DiCaprio/fileFuzz | 37ff4ecffde9130ff59e1f830540938772e072ed | 681fb86fb18ccb077a15ffd1d5ab8f0b196d53c2 | refs/heads/master | 2022-12-28T06:13:12.723699 | 2020-10-13T06:19:31 | 2020-10-13T06:19:31 | 303,592,950 | 3 | 1 | null | 2020-10-13T06:14:39 | 2020-10-13T05:01:31 | C | UTF-8 | C | false | false | 1,040 | c | #include <stdio.h>
#include <stdlib.h> // atoi()
#include <string.h>
#include <sys/stat.h> // lstat()
#include <sys/file.h>
#include <unistd.h> // access()
#include "alloc-inl.h" // ck_alloc()
#include "types.h"
u8 trace_bits[MAP_SIZE];
u8 virgin_bits[MAP_SIZE];
void read_bitmap(u8* vname, ... | [
"liutianpeng@bytedance.com"
] | liutianpeng@bytedance.com |
15571e18c4fd4393e186e571807e0cd01b843f14 | fbdb3e4df3925b330739e599d7f539a5aea4f163 | /kungfu/skill/dagou-bang/feng.c | bc42cb05658eb9e57153d1ab0ff0cc03b6dbb72f | [] | no_license | MudRen/ZHLib | 2be4566998800d1a8ed50bf379d0e43a7c97e8ac | 73111626fed37f302ca433dd1628730ca07e7dc2 | refs/heads/master | 2020-04-04T15:43:26.136616 | 2018-11-04T04:42:20 | 2018-11-04T04:42:20 | 156,049,634 | 2 | 3 | null | null | null | null | GB18030 | C | false | false | 5,428 | c | // feng.c 打狗棒封字决
// Rama 2001/11/11
// 提高了命中率
#include <ansi.h>
#include <combat.h>
inherit F_SSERVER;
inherit F_DBASE;
int perform(object me, object target)
{
string* msghit, msg;
object weapon;
int feng_busy;
int feng_addspeed;
int feng_cost;
int feng_duration;
... | [
"i@oiuv.cn"
] | i@oiuv.cn |
feb87d9ac9a68c372b4382eb6c235d17364d7a5e | 3eb3f75b96f7d05733e0309d3cd1adb0ef0b33e0 | /libft/ft_strcpy.c | 12e8b87cb762c0145ffa22991b010e6739f4ad5e | [] | no_license | cmarouan/lem_in | cd70801209bd6ac7f08646d36588e0e253a3b190 | 09fd8df625a20e284ee551291df7a9e8be7bcc4c | refs/heads/master | 2021-01-02T02:40:39.977467 | 2019-10-04T13:52:47 | 2019-10-04T13:52:47 | 239,456,984 | 1 | 0 | null | 2020-02-10T07:57:41 | 2020-02-10T07:57:41 | null | UTF-8 | C | false | false | 1,065 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strcpy.c :+: :+: :+: ... | [
"kmoussai@e1r2p13.1337.ma"
] | kmoussai@e1r2p13.1337.ma |
43b728abb1f2abe0180a545f97b51033d2f2eede | c580be49153f0f6f05c286f19350d6d49b9f6e9a | /Gas_calc.h | c8fb14888254e83cef4dbebc029010be3483484a | [] | no_license | AlexChuk/0D_Discharge | 21b210bd32810dc969dd3ae46000ad5f65963929 | 6d80de50be903c9a75f805dff55478f4b85c8ba3 | refs/heads/master | 2021-01-19T02:56:42.365736 | 2016-11-14T16:25:06 | 2016-11-14T16:25:06 | 73,549,366 | 1 | 0 | null | null | null | null | WINDOWS-1251 | C | false | false | 238 | h | //Защита от повторного включения заголовка
#ifndef GAS_CALC_H
#define GAS_CALC_H
void gas_HCpSi_calc(double);
void gas_TP_calc(double *,double,double,double,int,int);
void gas_print(int);
#endif
| [
"aachukalovsky@gmail.com"
] | aachukalovsky@gmail.com |
08e0feb3ee0be83280638187cc8c2ea74f03ce22 | 3f725d3994045503b853ee2d7d73bfdc07790c3c | /ft_isalnum.c | 8bf93de532986030b49c06d943a68f4d5ac1c365 | [] | no_license | morch21/morch | ee525e3f61dae56b3d66b1c72c157402d14b51e2 | f2213c939568e66f94caae0c33f2efde1ee801fd | refs/heads/master | 2020-08-24T19:54:38.956832 | 2020-03-04T02:56:45 | 2020-03-04T02:56:45 | 216,894,742 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,021 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalnum.c :+: :+: :+: ... | [
"mshchego@e1z3r7p9.42.us.org"
] | mshchego@e1z3r7p9.42.us.org |
79cacc1394a0ab481c7201ff65d61e0d91e62559 | 52e58c4a6f2a293aff1eb46d52abfd36521c148f | /NumberOfOccurences.c | 1afba45c79ca6676a9f21844307ca4b69f13fc18 | [] | no_license | SamuelSanthosh/C-Programs | df454cadec2d29df0da8011cefc2a4bca7a452ed | 1d1310bd1a66efd4dac9fedd720e86a5ded97b10 | refs/heads/master | 2021-01-24T08:22:08.753219 | 2018-04-07T13:20:02 | 2018-04-07T13:20:02 | 122,978,764 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 492 | c | #include<stdio.h>
#include <stdlib.h>
int main()
{
int n,a[10],freq[10],i,j;
scanf("%d",&n);
for(i=0;i<n;i++)
{
scanf("%d",&a[i]);
}
for(i=0;i<n;i++)
{
for(j=i+1,freq[i]=1;j<n;j++)
{
if(a[i]==a[j]&&a[j]!=-1)
{
freq[i]++;
... | [
"noreply@github.com"
] | SamuelSanthosh.noreply@github.com |
39ecd657867da57415e27e94dc96eac3f8ec9aa2 | 0641d87fac176bab11c613e64050330246569e5c | /tags/cldr-24-d04/source/common/unicode/urename.h | a6dac6b81068df7a13ad71078ea8aacffe5a4f56 | [
"ICU",
"BSD-3-Clause",
"LicenseRef-scancode-unicode",
"NAIST-2003",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
] | permissive | svn2github/libicu_full | ecf883cedfe024efa5aeda4c8527f227a9dbf100 | f1246dcb7fec5a23ebd6d36ff3515ff0395aeb29 | refs/heads/master | 2021-01-01T17:00:58.555108 | 2015-01-27T16:59:40 | 2015-01-27T16:59:40 | 9,308,333 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 127,022 | h | /*
*******************************************************************************
* Copyright (C) 2002-2013, International Business Machines
* Corporation and others. All Rights Reserved.
*******************************************************************************
*
* file name: urename.h
* encoding: US... | [
"emmons@251d0590-4201-4cf1-90de-194747b24ca1"
] | emmons@251d0590-4201-4cf1-90de-194747b24ca1 |
69d1e36f160fcd205ef53dffd0cc0edfd2bc6779 | 96cc59afa74d90cca06fa69f37c9c0bd9bc7fae3 | /libsandcall/sandcall.c | 1c5bfbacfd3c303c78e90ffe1da7c03c448820db | [] | no_license | davilla/XNUSandbox | 174da8bd6355efbc3b166811bcd96c362d329e15 | f0135d273acf62fcaf00c6db98b7f688696513e9 | refs/heads/master | 2021-01-18T05:28:03.590532 | 2011-01-19T14:59:10 | 2011-01-19T14:59:10 | 1,275,380 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,406 | c | #include <sys/types.h>
#include <stddef.h>
/*
* This is included in libSystem
*/
int __sandbox_ms(const char *policyname, int call, void *arg);
int sandbox_init_bytecode(void *buff, size_t len, void *unk)
{
struct {
user_addr_t bytecode;
user_size_t bytecode_len;
user_addr_t unknown;
} args;
args... | [
"dion@semantiscope.com"
] | dion@semantiscope.com |
48b59fadfbbdabd5cc7f6930a5b184836330599a | b2d48aac47dc3a3050f9cb562808f0e6f19a36e4 | /mohansai/kd/sampk1/doc.c | 3fe06c57966f44fd57a1b691c55a95538f3885fb | [] | no_license | bhagavansprasad/students | 7f7df2f4c2350025d58406794a7d94d9c8a9d7be | 2822fb81cfb6714d48dea1e4957d6011ffa6198b | refs/heads/master | 2023-08-04T04:44:11.346963 | 2023-07-24T06:09:00 | 2023-07-24T06:09:00 | 193,177,404 | 0 | 0 | null | 2022-11-30T23:33:00 | 2019-06-22T01:21:59 | C | UTF-8 | C | false | false | 706 | c | this is my first kernel file
----------------------->
create a file test1. c
#include <linux/kernel.h>
#include <linux/module.h>
int init_module(void)
{
printk("Hello, world\n");
return 0;
}
void cleanup_module(void)
{
printk("Goodbye\n");
}
save it
------------>
... | [
"bhagavan.prasad@blackpeppertech.com"
] | bhagavan.prasad@blackpeppertech.com |
15ef0763f9edfa7377513930336e19faadbf428b | ad08bb60aa6eae97490b9b9bf72e2e3da0708969 | /SO2016/Practica2SO/temp/myFS.h | 0f155319d02d2f749cb716e4d10ebc02f51b9745 | [] | no_license | pedagova/Curso2016 | 1ae232df1a70b347524dab97b0101e692d170636 | 97d2c22156f2d48cb7032465e3302af9786b4441 | refs/heads/master | 2021-01-13T09:51:56.605189 | 2017-01-19T15:38:04 | 2017-01-19T15:38:04 | 72,644,478 | 0 | 0 | null | 2016-11-21T18:50:39 | 2016-11-02T13:51:27 | JavaScript | UTF-8 | C | false | false | 2,522 | h | #ifndef _MYFS_H_
#define _MYFS_H_
#include <stdio.h>
#include <time.h>
#include <fcntl.h>
#include <unistd.h>
#include <assert.h>
#define false 0
#define true 1
#define BIT unsigned
#define BLOCK_SIZE_BYTES 4096
#define NUM_BITS (BLOCK_SIZE_BYTES/sizeof(BIT))
#define MAX_BLOCKS_WITH_NODES 5
#define MAX_BLOCKS_PER_FI... | [
"noreply@github.com"
] | pedagova.noreply@github.com |
9de757baf4ea2385b5053e57fa1297108143aca5 | e96e4465f927953ed95db8f1dc4aaef8caf4a4e0 | /blt/generic/bltGraph.c | 691d7f272c19a13fa9ce9c6cfcc62497309412e1 | [
"TCL",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | js-j/expect-nt | 73b62f8f7faeb72e21983261689c77dac35b1bd8 | 63986978ccd301f996bf0bbab4ae4e1e372e7a62 | refs/heads/master | 2022-03-20T20:58:54.663019 | 2017-02-14T23:20:57 | 2017-02-14T23:20:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 44,369 | c | /*
* bltGraph.c --
*
* This module implements a graph widget for the Tk toolkit.
* Graph widget created by Sani Nassif and George Howlett.
*
* Copyright 1991-1997 by AT&T Bell Laboratories.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL ... | [
"webmaster@crazyws.fr"
] | webmaster@crazyws.fr |
fefdcc8104ddef6343ae17cbe03dfed4a7ba98bb | 3db023edb0af1dcf8a1da83434d219c3a96362ba | /windows_nt_3_5_source_code/NT-782/PRIVATE/NTOS/DD/QIC117/0X15A1B.C | 1c2559852803608f5dac043d92770f90d1073ab5 | [] | no_license | xiaoqgao/windows_nt_3_5_source_code | de30e9b95856bc09469d4008d76191f94379c884 | d2894c9125ff1c14028435ed1b21164f6b2b871a | refs/heads/master | 2022-12-23T17:58:33.768209 | 2020-09-28T20:20:18 | 2020-09-28T20:20:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,434 | c | /*****************************************************************************
*
* COPYRIGHT 1993 - COLORADO MEMORY SYSTEMS, INC.
* ALL RIGHTS RESERVED.
*
******************************************************************************
*
* FILE: \SE\DRIVER\Q117KDI\NT\SRC\0X15A1B.C
*
* FUNCTION: kdi_QueueEmpty
*... | [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
a460ed7e8cf7efaba0f77838ccdac4a9b722feb0 | 1aaabf1ebbf006095256b6d9ed60a347585259da | /src/sender.c | 8f41c0279d6e7884516c5854434b12e150f720f8 | [] | no_license | bastinjul/NetworkGroupe81 | 7b530a3533b9b37588c3e3dd18cab7a3fe08c262 | 951693f16fc0e99ee356c6b94b09ff5e6237e0a1 | refs/heads/master | 2022-02-07T01:55:02.058312 | 2017-11-04T16:08:05 | 2017-11-04T16:08:05 | 107,428,376 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,390 | c | #include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/select.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <fcntl.h>
#include "real_address.h"
#include "create_socket.h"
#include "util.h"
#include "packet_interface.h"
#define... | [
"julienbastin96@hotmail.com"
] | julienbastin96@hotmail.com |
f97ac929dd101d2707fada219d7c4875fc8b75a0 | 57d14ce1d056dcba9a938c2f8e1d954225a6d0c6 | /src/lib/stm32l0x1/lib/core/irq_l053xx.h | c898f2071e97518375d98e2208cae218a20a51b7 | [] | no_license | nihuyaka/libarmpit-cortex | a81d443ef3e953996ecf7f993f41fec69388f521 | eda7700be66d91af0fa83fae6ebe181a11c32488 | refs/heads/master | 2016-09-06T05:40:16.709507 | 2015-10-24T16:42:20 | 2015-10-24T16:42:20 | 44,834,918 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 3,732 | h | typedef enum
{
/****** Cortex-M0 Processor Exceptions Numbers ******************************************************/
NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
HardFault_IRQn = -13, /*!< 3 Cortex-M0+ Hard Fault Interrupt ... | [
"nihuyaka@gmail.com"
] | nihuyaka@gmail.com |
ccc7630f6907eb5321a150fca7de1d4146873e80 | dfff233ff456af11382300f951fdd0f7272ecc0d | /Scripts/Blast.h | a4f6c2a244001d6c054a39e7938373e72c0927d5 | [
"LicenseRef-scancode-public-domain"
] | permissive | Bia10/MSDoggy | 5e01152a4e9738339459b27a3fd450379ef7c4e9 | 8c3a075c54341f7882d8ea04a5592a7198202629 | refs/heads/master | 2020-03-08T06:09:38.822662 | 2015-08-27T19:41:30 | 2015-08-27T19:41:30 | 127,964,314 | 1 | 0 | null | null | null | null | BIG5 | C | false | false | 3,136 | h | int StupidSwitch = 0;
void __declspec(naked) Stupid_asm()
{
#ifdef VMProtectSDK
VMProtectBegin("_Stupid_asm");
#endif
__asm
{
Cmp [StupidSwitch], 00
Je Return
Cmp [THE_VIP], 00
Jne Super
Mov Edx, [0x00e1cab8]
Test Edx, Edx
Je Return
Cmp [Edx+0x2C], 00
Jg Return
Super:
Xor Edx, Edx
Mov Ec... | [
"inndy.mail@gmail.com"
] | inndy.mail@gmail.com |
613dec36939bcea4ff06446156aa4efa6d77a578 | 6f3e0000993816afa03d64c5a02b94fca2931200 | /sys/arch/sparc64/dev/sab.c | db82e05bc96e106fbaaf780f8e8a73bf4327a4d0 | [] | no_license | fallen/NetBSD6 | b6dc7a2593846816b8cb6f47cf26054ca2811667 | 44e0ac4ada812ace1f9ca8ce4792e287d83bd951 | refs/heads/master | 2022-04-09T14:50:47.274147 | 2020-03-08T14:01:38 | 2020-03-08T14:01:38 | 8,187,676 | 2 | 2 | null | 2020-03-08T14:01:39 | 2013-02-13T20:57:45 | null | UTF-8 | C | false | false | 31,751 | c | /* $NetBSD: sab.c,v 1.49 2012/10/03 07:16:49 mlelstv Exp $ */
/* $OpenBSD: sab.c,v 1.7 2002/04/08 17:49:42 jason Exp $ */
/*
* Copyright (c) 2001 Jason L. Wright (jason@thought.net)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided... | [
"yann.sionneau@gmail.com"
] | yann.sionneau@gmail.com |
f763129a320f3016f9243618c6f419de071a7e1b | 0373517d4673eb50ec74388320642663734090ca | /rGIS/src/RGISAnTable.C | af5be448b5ec8ba2f077e2ccdae0bd9476bbfb19 | [] | no_license | nimaehsani/RGIS | 6ba66d987282bb9d53c2b0e54658456e19b06c89 | fd55b17d5c4d4638ddfd6c202a06655d75bce18a | refs/heads/master | 2020-04-03T06:09:42.050657 | 2012-01-13T05:36:17 | 2012-01-13T05:36:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 588 | c | /******************************************************************************
GHAAS RiverGIS V2.1
Global Hydrologic Archive and Analysis System
Copyright 1994-2011, UNH - CCNY/CUNY
RGISAnTable.C
balazs.fekete@unh.edu
*******************************************************************************/
#include <rgis.... | [
"bmfekete@gmail.com"
] | bmfekete@gmail.com |
5e806d439733774e2847903d04844f59a97ee17c | a7f8b9469958cbc4e922ed85320011ba02f72a23 | /arqcp19202nbg01/modulo3/ex08/main.c | abcf42344b0c676c6147ecc7d056f7d9b61050c8 | [] | no_license | joaomfas/ARQCP-2019-2020 | 3cf0ae691967bb7757b2f8d235d811bc41685725 | 4c75fcea5cc6b7530e16c00f24d868da55418a7f | refs/heads/main | 2023-01-03T15:22:04.688912 | 2020-11-03T19:00:48 | 2020-11-03T19:00:48 | 309,780,330 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 445 | c | #include <stdio.h>
#include "test_even.h"
#include "vec_sum_even.h"
int even;
int *ptrvec;
int num;
int main(void) {
even = -3;
int res_test_even = test_even();
printf("Test_even for %d = %d\n",even,res_test_even);
int vec[] = {1,2,3,4,5,-6};
num = 6;
ptrvec = vec;
... | [
"1181436@isep.ipp.pt"
] | 1181436@isep.ipp.pt |
1c62b31770187aede90437ee0d2b8ae956f37edc | ff1a61cc4b57abc513db9f1865c9498b71c6f4d6 | /src/sdlMain.c | 8e0dd2086fd16bce4643d52f53b79fcb45ca9a31 | [] | no_license | SemBi0s/PROJETC_1A_S2 | 441df72b736391b607de1d6594a13fe20bf213cf | 626be3114b86dbfc76b676177030bdf4e2df5f8c | refs/heads/master | 2023-05-05T01:27:05.664403 | 2021-05-23T17:32:40 | 2021-05-23T17:32:40 | 351,371,778 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,231 | c | #include "include/libs.h"
#ifndef FRAMERATE
#define FRAMERATE 60
#endif
void windowMain(){
memset(&app, 0, sizeof(App));
windowConfig();
initSDL();
mainMenu();
mainLevelSelector();
mainGame();
while(true){
void (*prepareScene)();
doInput();
prepareScene = app.currentSCREEN -> scene;
if(!prepareSc... | [
"alexandre.daumard@gmail.com"
] | alexandre.daumard@gmail.com |
452c61a75f577b3b508bc539e7839cfeecb3cc77 | 84a43bf4e9ee337f64ab65fcd7720a7483602509 | /src/format/setita.c | 024ac55ea6616f956c15c4626032b12c89b23c6c | [
"MIT"
] | permissive | tinyplasticgreyknight/icy-list | fa318da705a5b9d635109d739113a7a7402ab11d | be5beececc30e8080b4551106c8e4251820e8a86 | refs/heads/master | 2016-09-05T16:44:52.033908 | 2014-06-15T21:55:21 | 2014-06-15T21:55:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 827 | c |
#include "extern.h"
extern unsigned char ital[], itoff[];
/*****************************************************************************
** **
** SET_IN_ITALICS: set the given line segment in italic type. **
** ... | [
"tinyplasticgreyknight@yahoo.com"
] | tinyplasticgreyknight@yahoo.com |
db343843f41ed887a8a8f2fab20d6cfe8c267291 | 4354767d3b529ae2210a410caf6b2c0eb320e872 | /keyboard_isr.c | feb1e251a429da8d1af82297de3eaf3861e4ea79 | [] | no_license | dlrrb4714/lcfr | 97eb7030c9d54066fd938c4638389c6510d7ce7c | 658d6165f585c14bf8333dbddaf6c37de35cbd66 | refs/heads/master | 2020-05-09T15:58:49.573105 | 2019-04-17T04:56:20 | 2019-04-17T04:56:20 | 181,253,047 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,800 | c | // Part of the file provided by Terasic
#include <stdio.h>
#include "system.h"
#include "io.h"
#include "altera_up_avalon_ps2.h"
#include "altera_up_ps2_keyboard.h"
static QueueHandle_t Q_keydata;
double threshold_freq = 50.0;
int keyboard_isr(void* ps2_device, alt_u32 id)
{
if(ps2_device == NULL){
printf("can'... | [
"dlrrb4714@gmail.com"
] | dlrrb4714@gmail.com |
7b155bcd4d327dc6735761eda32724e27507627a | c4afbfe1885e8d0c7a1c8b928563f7bb8ab6a683 | /Simulation_EnvSim/mergeTIU_Info_input_from_TIU_API_Pkg.c | 46d6a1494de0479ea908ee8bf931b5e30f125dcb | [] | 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 | 2,931 | c | /* $*************** KCG Version 6.1.3 (build i6) ****************
** Command: s2c613 -config S:/model/Scade/System/OBU_PreIntegrations/Testbench_Integration/Simulation_EnvSim\kcg_s2c_config.txt
** Generation date: 2015-11-23T09:24:23
*************************************************************$ */
#include "kcg_const... | [
"info@stefankarg-it.de"
] | info@stefankarg-it.de |
7ed2fa54557dfd54a399c1d03217e412d45692e2 | b7c982393cf7be2e0e6b11597e5eada33e353ec0 | /Greedy/marcs-cakewalk.c | f316ff183903eeb6d00bc0b7dc571f72db9b630a | [] | no_license | alexvatti/HackerRank | 7e9243baac48a4665a67051e55d50d87f7572b9c | 98a30e8234b92ab97f8994a92fa49a8d87ca2cac | refs/heads/master | 2020-07-07T20:59:19.013485 | 2019-09-01T13:55:18 | 2019-09-01T13:55:18 | 203,476,202 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 873 | c | /*
problem description:
https://www.hackerrank.com/challenges/marcs-cakewalk/problem
*/
#include<assert.h>
#include<limits.h>
#include<math.h>
#include<stdbool.h>
#include<stddef.h>
#include<stdint.h>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
char* readline();
char** split_string(char*);
// Complete th... | [
"alexvatti@gmail.com"
] | alexvatti@gmail.com |
1d4425aa8f16a5559e99ac7e964fd8e70b33ecda | 0f4b65bdd99e642402d489fdd662a7dc1d1441f5 | /testsuite/EXP_2/test834.c | 57bf281261585bfcb6fcf51ce2841fca7c1ac0a4 | [
"MIT"
] | permissive | matthiaskrgr/CF3 | 157e4967f12a6e6a0eee0fa9421f7855d24047c5 | 981a49c2b1f0fb80e1d1778beb3f3ce8578338c3 | refs/heads/master | 2021-01-01T06:02:05.773732 | 2017-07-15T20:15:36 | 2017-07-15T20:15:36 | 97,335,407 | 0 | 0 | null | 2017-07-15T18:41:20 | 2017-07-15T18:41:20 | null | UTF-8 | C | false | false | 51,970 | c |
/*
CF3
Copyright (c) 2015 ishiura-lab.
Released under the MIT license.
https://github.com/ishiura-compiler/CF3/MIT-LICENSE.md
*/
#include<stdio.h>
#include<stdint.h>
#include<stdlib.h>
#include"test1.h"
static int8_t x5 = INT8_MAX;
int64_t x10 = INT64_MAX;
uint8_t x13 = 14U;
int32_t x25 = 3;
static volatile uint... | [
"ishiura-compiler@ml.kwansei.ac.jp"
] | ishiura-compiler@ml.kwansei.ac.jp |
cd935a5af8d24afecbbe1cae2a510097fc2f7163 | af50105e9d3ce696af56e84f63238f809d11b14c | /audio/audio_hw.c | 072e87d1acbe2e10e965b2845f4232a5f3c8531b | [] | no_license | LifeDJIK/android_device_qbox_targa_utab_7_6 | 2f3a87c18901cc1026aede938a17a4fc86d3f579 | 1e530531548175ad33af7d1f4a9d1aac84b36fe6 | HEAD | 2016-09-03T07:09:44.804029 | 2014-05-02T09:16:05 | 2014-05-02T09:16:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 23,792 | c | /*
* Copyright (C) 2011 The Android Open Source Project
* Copyright (c) 2014 Ivan Krakhmaliuk (LifeDJIK)
*
* 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... | [
"lifedj27@gmail.com"
] | lifedj27@gmail.com |
24782985dcd44a283e136e8b0427bc98903d47ce | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /third_party/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_gain_swb_tables.h | 7a5abfd26e92de11db27c6d86a36ec3b808bf1f0 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"LicenseRef-scancode-google-patent-license-webm",
"LicenseRef-scancode-google-patent-license-webrtc",
"LicenseRef-scancode-takuya-ooura",
"LicenseRef-scancode-public-domai... | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C | false | false | 1,594 | h | /*
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contribut... | [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
e8ec823de43cee5399b220e92e97927119b71b6e | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/gcc-12.1.0/gcc/testsuite/gcc.dg/vect/vect-simd-2.c | 42bb782a8015ad4dadae1696e2669a8ba43892a0 | [
"LGPL-2.1-only",
"FSFAP",
"LGPL-3.0-only",
"GPL-3.0-only",
"GPL-2.0-only",
"GCC-exception-3.1",
"LGPL-2.0-or-later",
"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 | 441 | c | /* { dg-do compile } */
/* { dg-require-effective-target vect_int } */
/* { dg-additional-options "-fopenmp-simd" } */
#define N 1024
int a[N];
int bar (void);
void
foo (void)
{
#pragma omp simd if (bar ())
for (int i = 0; i < N; ++i)
a[i] = a[i] + 1;
}
/* { dg-final { scan-tree-dump-times "vectorized 1 loop... | [
"rink@rink.nu"
] | rink@rink.nu |
5fc79fabd970d7ff507260ef36a6e5abb70aa9b4 | 1aa6feab8eaee03c52cb8ad1cb2e738e40aaf08d | /05.07.2019/logic/main.c | bba25eefaf5cb08c8eb741186c3dbb217b83ab55 | [] | no_license | Nakibaman/C-for-4th-batch-Students | a88a1430b387c99d7ae41250e5928356be90bdfd | c24a486e986486ea8aeb11c84f008aeb4414d396 | refs/heads/master | 2020-06-15T16:32:45.349376 | 2019-10-04T06:15:43 | 2019-10-04T06:15:43 | 195,342,130 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 171 | c | #include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
scanf("%d",&a);
if(a%2==0)
printf("Even");
else
printf("Odd");
return 0;
}
| [
"nakibaman@gmail.com"
] | nakibaman@gmail.com |
f2a8d66b8b4c366a2f110cf808234718bb20bfd9 | 758e7e1b12a0155885ae48bc6772398c6a54910a | /complex.c | b8b9e339ade89885a3153553b3327d94a58aa302 | [] | no_license | astl100/LearningC | a26195d6ea3edad53989a7c7c68e7a994fe8b5a3 | 607ec7a7bf0824bb3dbd6085a917611dcd7956a9 | refs/heads/master | 2016-08-12T03:13:16.940622 | 2015-12-09T08:39:55 | 2015-12-09T08:39:55 | 45,083,138 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,403 | c | #include <stdio.h>
#include <stdlib.h>
#include "complex.h"
//functions
COMPLEX setting(const long double x, const long double y)
{
COMPLEX a;
a.x = x;
a.y = y;
return a;
}
COMPLEX mult2(const COMPLEX *a, const COMPLEX *b)
{
COMPLEX c;
c.x = (*a).x*(*b).x - (*a).y*(*b).y;
c.y = (*a)... | [
"astl100@mail.chapman.edu"
] | astl100@mail.chapman.edu |
8b388f5412c01d0024ff9ff03572a1c56f2e896d | ff159b9b5d0e2f33083822fb701a3766383c4081 | /C/ft_minishell/srcs/ft_cd.c | 1d884fb975a36bcc9d46fca917fa1214f8405757 | [] | no_license | Aeners/ft_projects | 57cdd590d8d9c0f2db43306d59e4693863d28199 | 7572cbdbe9233f5321ce65b3dae2fef8fcd60daa | refs/heads/master | 2023-01-24T23:03:54.259922 | 2020-08-25T07:51:07 | 2020-08-25T07:51:07 | 240,475,791 | 0 | 0 | null | 2023-01-23T20:06:09 | 2020-02-14T09:47:46 | C | UTF-8 | C | false | false | 2,109 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_cd.c :+: :+: :+: ... | [
"arlecomt@student.42.fr"
] | arlecomt@student.42.fr |
6f4624371c2de36de955a388f767b3473d35ed00 | b2ce9a394c82a891842620f61f0fd1b3dded4458 | /SYSTEMS/tunez/song.c | 75694878c3375b859a4ecf6f3e7878f2ec1bbddc | [] | no_license | angela97lin/Senior-Year-Projects | 00fc3ef1eef330b64ebfa42d0b2929c8e956098e | 63ec99bf001704a1649225e9f9aab78e19447104 | refs/heads/master | 2020-07-10T03:59:46.404984 | 2016-02-02T20:55:57 | 2016-02-02T20:55:57 | 26,330,583 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,510 | c | #include <stdio.h>
#include <stdlib.h>
#include <strings.h>
#include <string.h>
#include <time.h>
#include "song.h"
//returns the size of the linked list
int size_of_ll(song_node *n){
int size = 0;
while (n){
size++;
n = n->next;
}
return size;
}
//prints song title and artist name
void print_list(s... | [
"angela97lin@gmail.com"
] | angela97lin@gmail.com |
59bf75e7cd2f97525da30379ffd89d75d1c8d72e | 433f038686eb13575a19c254a567051067f39a03 | /BST/bst.h | 4c0618efeae764174d41d04e514be1867296a4c7 | [] | no_license | igorvanderlei/aed_2020_4 | 87f324035b031965fb9656119b416de6922bc9c3 | 62373bf414fd35813d939123119ccc75c27e4cfa | refs/heads/master | 2023-03-04T02:00:57.293199 | 2021-02-19T21:53:55 | 2021-02-19T21:53:55 | 318,661,550 | 4 | 0 | null | null | null | null | UTF-8 | C | false | false | 247 | h | #ifndef _BST_H
#define _BST_H
typedef struct no {
struct no *esq, *dir;
int valor;
} no;
no* inserir(no* raiz, int valor);
no* remover(no* raiz, int valor);
void preorder(no* raiz);
int altura(no* raiz);
int max(int a, int b);
#endif
| [
"igor.vanderlei@gmail.com"
] | igor.vanderlei@gmail.com |
4456b867ef606bec7829b0dc8841a58e26e83104 | a364f5e25e4ec3563c2a6e366069488786927948 | /sys/dev/sbus/lpviio.h | 28681a688807a0bff7f4e787be0a5ba3ef141daa | [] | no_license | noud/mouse-bsd | b044db5ba4085794b94ea729eb4148e1c86d73b5 | a16ee9b253dbd25c931216ef9be36611fb847411 | refs/heads/main | 2023-02-24T06:22:20.517329 | 2020-08-25T20:21:40 | 2020-08-25T20:21:40 | 334,500,331 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,596 | h | #ifndef _LPVIIO_H_5f3adef3_
#define _LPVIIO_H_5f3adef3_
/* This file is in the public domain. */
#include <sys/ioccom.h>
/* LPVIIOC_GSIZE argument structure */
struct lpvi_pagesize {
int lp_wid;
int lp_hgt;
} ;
/* LPVIIOC_{G,S}SETUP argument structure */
/*
* For _SSETUP, LPVI_NOCHANGE means "no change", exc... | [
"mouse@Rodents-Montreal.ORG"
] | mouse@Rodents-Montreal.ORG |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.