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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
219bde1269486934439c89be85a236ff8470fef8 | 3510e4a071f251e8af884fa63d05c55eed727dfa | /1-binary_tree_insert_left.c | 1316e1c3525ef7f55828e46e257ada3874e110eb | [] | no_license | luismvargasg/binary_trees | 4bb8228fa44f78623203f14782b8b61fd7976dc8 | b8e0cc904694c22f6e1eb10697fb273f734e279e | refs/heads/master | 2022-11-19T20:35:24.836694 | 2020-07-23T05:39:28 | 2020-07-23T05:39:28 | 281,251,561 | 0 | 0 | null | 2020-07-23T05:39:30 | 2020-07-21T00:00:54 | C | UTF-8 | C | false | false | 676 | c | #include "binary_trees.h"
/**
* binary_tree_insert_left - Function that inserts a node as the left-child
* of another node.
*
* @parent: Pointer to the node to insert the left-child in.
* @value: Value to store in the new node.
*
* Return: Pointer to the new node, or NULL on failure.
*/
binary_tree_t *binary_... | [
"1610@holbertonschool.com"
] | 1610@holbertonschool.com |
0c31cb4992b313678ae19c1697812330879fede1 | 14f70c29a8628564462df3d5429d1033e99fc695 | /extract/ExtTech.c | 217db7d9ee61ec71bb6b343f939345be77903bd1 | [
"LicenseRef-scancode-other-permissive"
] | permissive | RTimothyEdwards/magic | 629ca50242500e596982dd19670cbdc6111435c1 | d624b76712c1a3960c705a6a6a050ff117291617 | refs/heads/master | 2023-09-05T15:25:43.242392 | 2023-08-29T19:50:38 | 2023-08-29T19:50:38 | 177,686,465 | 364 | 87 | NOASSERTION | 2023-09-06T12:45:18 | 2019-03-26T00:35:46 | C | UTF-8 | C | false | false | 111,687 | c | /*
* ExtTech.c --
*
* Circuit extraction.
* Code to read and process the sections of a technology file
* that are specific to circuit extraction.
*
* *********************************************************************
* * Copyright (C) 1985, 1990 Regents of the University of California. *
* * Per... | [
"tim@opencircuitdesign.com"
] | tim@opencircuitdesign.com |
4f212bc301379a25132901541038ad522f9910bc | 18bcf690bfd10e6436dfc20acccf7138216b6921 | /20160223-linkedlist.c | 1aebb235dcdf0d24cbba382cedad47ccb72d2c45 | [
"MIT"
] | permissive | guyhughes/comp2401 | 1a0ab2295e6a504130399a56316dfbba8e3af919 | b6b1a6bd6b173306d4a9e7533d9c97c026834120 | refs/heads/master | 2021-01-10T11:03:20.215949 | 2016-04-21T19:18:40 | 2016-04-21T19:18:40 | 51,108,597 | 4 | 2 | null | 2016-04-06T14:17:25 | 2016-02-04T21:56:35 | C | UTF-8 | C | false | false | 1,318 | c | #include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#define MAX_NODES 100
/*
* This is Christine's (annoying) singly-linked list that defies everything we
* know about life and programming.
*/
typedef struct node node_t; // forward reference
struct node {
char *data;
node_t *next;
}... | [
"g@gxg.me"
] | g@gxg.me |
9e603bacb8783239d87db7dd07d4c8ea8d68cdb8 | d3ab6f74c19d11469c8ee611b6cf7388e18804ce | /sort/heap.c | 78357d572137d497ece43a3e3b2d79e38343af8b | [] | no_license | wsy2220/Playground | 01d55adb289249840be5cb3420619212e96a21b5 | 6acde44413deed047cde5047c49375867632e24b | refs/heads/master | 2021-01-10T02:20:53.158250 | 2016-02-28T06:00:58 | 2016-02-28T06:00:58 | 43,959,634 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,475 | c | /* heap sort related operations */
#include "sys.h"
#define HEAP_PARENT(i) ((i+1)/2 - 1)
#define HEAP_LEFT(i) ((i)*2 + 1)
#define HEAP_RIGHT(i) ((i)*2 + 2)
#define HEAP_MAX(A) ((A)[0])
size_t heap_level(size_t index)
{
index++;
size_t i, mask = ~0, flag = 1;
for(i = 0; i < sizeof(index)*8; i++){
if(((mask ... | [
"wsy2220@gmail.com"
] | wsy2220@gmail.com |
9a752cef028cd2f2b699ee42cbe1665b563fa63d | e77252d253f971bac25e5dc82c9cc74947c40fc8 | /Temp/StagingArea/Data/il2cppOutput/Mono_Security_Mono_Security_Protocol_Tls_RSASslSignatureDefo.h | 591995e18471cd121c6948c8524799e6c1f1b467 | [] | no_license | zpsaras/RemoteAssociatesTest | 47435babb962ba98a6bbd78d2a0c54b0410f2338 | 4199c7abcc14593d53370a8d135630d176235ff1 | refs/heads/master | 2021-01-18T15:08:17.660623 | 2015-12-05T21:36:30 | 2015-12-05T21:36:30 | 47,208,339 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,110 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.Security.Cryptography.RSA
struct RSA_t1_117;
// System.Security.Cryptography.HashAlgorithm
struct HashAlgorithm_t1_558;
// System.Collections.Generic.Dictionary`2<System.Str... | [
"zach.psaras@gmail.com"
] | zach.psaras@gmail.com |
be8aabdf2da7e9a9fa2f34458dc534269f5ecd36 | 7aa75215614411567b89382cd79e076b3360b654 | /.history/tpfinal-estructuras1/libs/list_20201209182228.c | 72cc045480037cff17d81a095e2a56e9d5e8ff50 | [
"Apache-2.0"
] | permissive | IgnacioKase/estructura-datos-1 | 7060173b2ddb7853bd68f199bd3b39048242c482 | 2a0be56a6546a214c011ccc38774b7625885cfd5 | refs/heads/master | 2021-04-17T11:29:00.419081 | 2020-12-10T02:06:21 | 2020-12-10T02:06:21 | 249,441,692 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,595 | c | #include "list.h"
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include "registro.h"
// #include <unistd.h>
/*
- Devuelve una lista vacia
*/
List list_crear() {
return NULL;
}
/*
- Toma una Lista (@list) Y una función del tipo Destruir
y destruye la lista.
*/
void list_destruir(List lista... | [
"ignacio@kasevich.com.ar"
] | ignacio@kasevich.com.ar |
525878c16160f8c949652b7a4af9cd38becaec6b | 8b3c6ba80a5ed449ed26ab84e7c4cb4e9a3fa3a1 | /C/ifj08/istacka.c | 26293b457af077fb6523a68d0dd39cf51771d676 | [] | no_license | Toncek/projects-fit | 6a72cf927c7c6f4d92cfc008d9be3df733a35897 | 21e65e7a41abf15eb6f48b7e3bb6bb2f2a90fcd7 | refs/heads/master | 2021-01-19T18:14:06.285159 | 2012-09-10T17:57:09 | 2012-09-10T17:57:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,065 | c | /*****************************
* Prekladac jazyka IF2008
* Matus Kontra (xkontr00) (veduci)
* Jozef Kobrtek (xkobrt00)
* Patrik Seben (xseben00)
* Matej Smetana (xsmeta02)
******************************/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "istacka.h"
//vytvorenie a zniceni... | [
"Kontra.Matus@gmail.com"
] | Kontra.Matus@gmail.com |
947fa02251e8e92e393b6e0be7f1a1c462db420f | 188c10fd250197db353e911cdf095db0d3eddec2 | /c/secp256k1_lock.h | 16012745183fab16b207128e5d509f78327da841 | [] | no_license | bitrocks/ckb-anyone-can-pay-to-multisig | ab56504085fafe4b12ca4e089fade81c033eedfb | 4ef7d8ff9cd00025d3d53afbc55d0b5e1850acec | refs/heads/master | 2022-12-05T16:35:39.583802 | 2020-08-18T02:48:16 | 2020-08-18T02:48:16 | 288,337,842 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,339 | h | #ifndef CKB_LOCK_UTILS_H_
#define CKB_LOCK_UTILS_H_
#define BLAKE2B_BLOCK_SIZE 32
#define BLAKE160_SIZE 20
#define PUBKEY_SIZE 33
#define TEMP_SIZE 32768
#define RECID_INDEX 64
/* 32 KB */
#define MAX_WITNESS_SIZE 32768
#define SCRIPT_SIZE 32768
#define SIGNATURE_SIZE 65
#if (MAX_WITNESS_SIZE > TEMP_SIZE) || (SCRIPT_... | [
"jjyruby@gmail.com"
] | jjyruby@gmail.com |
976b2191ae309359589c8a4ff1f7c0c924a12b78 | 5d8585498c10cf2af5c3f367df81dc724fa9824f | /vendor/bundle/ruby/2.4.0/gems/nokogiri-1.8.5/ext/nokogiri/xml_node.h | ba15506f94f4fdfbd81c561cc3646f007587a207 | [] | no_license | tiernano/jekyllsites-docker | 659946223273b2363aeeefb9da62c32a02d35d5c | eb325505ea2305ea9fdacd6dd0ac31b3df4a0f40 | refs/heads/master | 2023-04-27T20:02:56.885112 | 2023-04-14T21:57:40 | 2023-04-14T21:57:40 | 65,498,184 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 128 | h | version https://git-lfs.github.com/spec/v1
oid sha256:d20db9b366c47e6a7412688253621425d81224df83c3793e4e2f76e8dde662ce
size 305
| [
"tiernan@tiernanotoole.ie"
] | tiernan@tiernanotoole.ie |
759f7b868fa6add95486fc30078938314a2be29d | dd80a584130ef1a0333429ba76c1cee0eb40df73 | /external/webrtc/src/system_wrappers/interface/fix_interlocked_exchange_pointer_win.h | d85c724729076b36f6613efb0f11d2cbd3732a34 | [
"MIT",
"LicenseRef-scancode-google-patent-license-webrtc",
"BSD-3-Clause",
"LicenseRef-scancode-boost-original",
"LicenseRef-scancode-takuya-ooura",
"LicenseRef-scancode-google-patent-license-webm",
"BSL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | karunmatharu/Android-4.4-Pay-by-Data | 466f4e169ede13c5835424c78e8c30ce58f885c1 | fcb778e92d4aad525ef7a995660580f948d40bc9 | refs/heads/master | 2021-03-24T13:33:01.721868 | 2017-02-18T17:48:49 | 2017-02-18T17:48:49 | 81,847,777 | 0 | 2 | MIT | 2020-03-09T00:02:12 | 2017-02-13T16:47:00 | null | UTF-8 | C | false | false | 1,502 | h | // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file under third_party_mods/chromium directory of
// source tree or at
// http://src.chromium.org/viewvc/chrome/trunk/src/LICENSE
// Various inline fun... | [
"karun.matharu@gmail.com"
] | karun.matharu@gmail.com |
c4a6f26cfb1942317a2de0ac253645cb86dfd1f1 | 1ecb49dcd7efd9c5b3caa61c5c67078a1f0446ae | /0x0E-infinite_multiplication/char_functions.c | 0f825d69f9921bf12dae445a2391aba1ab06b7e0 | [] | no_license | dbconfession78/holbertonschool-interview_prep | 98e60bff786ce9e4ab3e8aff1dd90b83caaffe09 | f726b663ccc07d544e5030f1877a2723b376ed6d | refs/heads/master | 2021-07-13T18:03:59.584920 | 2018-11-03T22:53:01 | 2018-11-03T22:53:01 | 133,449,382 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 467 | c | #include "holberton.h"
/**
* char_to_int - converts a digit char to it's actual integer representation
* @c: the character to convert
* Return: integer representation of digit character
*/
int char_to_int(char c)
{
return (c - 48);
}
/**
* int_to_char - converts a single digit integer to it's char representatio... | [
"sgkur04@gmail.com"
] | sgkur04@gmail.com |
b2d41d7e9559c863d03893d2ffcde6ec8d77c333 | d7906e84bda2bd386e074eab9f05479205e7d2a9 | /SDK/Extras/Quesa Model Viewer/Custom Source/CarbonPrefix.h | a2cf764c477ce6dd901dc5ff7e280cce039cad3c | [
"BSD-3-Clause"
] | permissive | jwwalker/Quesa | 6fedd297a5a4dd1c21686e71bba3c68228f61724 | 1816b0772409c2faacdb70b40d5c02a55d643793 | refs/heads/master | 2023-07-27T16:36:55.757833 | 2023-07-06T23:55:10 | 2023-07-06T23:55:10 | 204,233,833 | 33 | 7 | BSD-3-Clause | 2023-09-09T23:17:36 | 2019-08-25T01:59:21 | C++ | UTF-8 | C | false | false | 280 | h | // Prefix file -- included before all others.
//
// Here, I'm using this to define that this is a Carbon target.
// This causes conditional compilation of various headers and
// Moof code.
#define TARGET_API_MAC_CARBON 1
// Then, include the usual headers.
#include <Carbon.h>
| [
"dair@b7bc8a59-ec99-4242-a7c6-685af75001c2"
] | dair@b7bc8a59-ec99-4242-a7c6-685af75001c2 |
bcc1754f825fa719cd6ade3916ed851fecef0a0a | 1c4e8308aef8228b50865e16ca20e2859ea99fb5 | /OSAL/include/osal_event.h | 98bc2520328adfc5a1991b3d9dda2f5e92eef506 | [] | no_license | yao2015lin/osal-1 | e294d77af4c16a5dfd2b297b394089fe37134136 | 20b0381a22b702688a6c6c20ba150b9a9217868e | refs/heads/master | 2022-01-04T05:45:25.259479 | 2017-12-29T09:33:44 | 2017-12-29T09:33:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,109 | h | #ifndef OSAL_EVENT_H
#define OSAL_EVENT_H
#include "type.h"
#include "osal_timer.h"
typedef void (*pTaskInitFn)( uint8 task_id );
typedef uint16 (*pTaskEventHandlerFn)(uint8 task_id,uint16 task_event);
//任务链表
typedef struct OSALTaskREC
{
struct OSALTaskREC *next;
pTaskInitFn pfnInit; ... | [
"524485436@qq.com"
] | 524485436@qq.com |
f15ebd7227031f0e81f5e60f584f3ba5da2bef1a | 402056905dbdbcad5d2db8ebf9ba183b9632762e | /Firmware/te.c | c5e2a63d445e0d6a2929d8888bf30bc47723b92f | [] | no_license | tiretrak/ZX-Spectrum_Tape_Emulator | e7958e3ace2cb5262a7482cba41bc6d3284fcb23 | 024c8d5b58b2360aa73c687bbc306261a02287fe | refs/heads/master | 2020-12-11T13:02:18.183801 | 2019-08-22T18:53:09 | 2019-08-22T18:53:09 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C | false | false | 17,623 | c | //----------------------------------------------------------------------------------------------------
//подключаемые библиотеки
//----------------------------------------------------------------------------------------------------
#include "based.h"
//-------------------------------------------------------------... | [
"da-nie@yandex.ru"
] | da-nie@yandex.ru |
8c1396cb0edd5e4d75967066205377cf5fdd0480 | d84fdf859de93485f058541874302c447ca5ee38 | /Problem-16/main.c | f01797b6e13a20be15033d531b1f9772245e2613 | [] | no_license | ashish0248/Project-Euler | 3b291e06af4652c9f8eda79b060ecbb08d327535 | 396139a8e0d3bf9eaf5c9cb4edc012a2937e606b | refs/heads/master | 2023-05-01T05:21:56.471039 | 2021-05-23T06:50:58 | 2021-05-23T06:50:58 | 345,479,693 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 293 | c | // https://odz.sakura.ne.jp/projecteuler/?Problem+16
#include <stdio.h>
#include <time.h>
void ft_index(void);
int main(void)
{
clock_t start,end;
start = clock();
ft_index();
end = clock();
printf("\n%.2f秒かかりました\n", (double)(end-start)/CLOCKS_PER_SEC);
return (0);
}
| [
"248ashish@gmail.com"
] | 248ashish@gmail.com |
fbfb443d0ce803b85a38a8f36041af3b1a6552a0 | d81e6dbe3f9cb02b2be1d6f25dc8b246efcffe3d | /btm.c | f3682ff4551f8e2edc62f7b3e02391a3ba1479ad | [] | no_license | theoremprover-museum/Peers | b58aee7763940956bd9586074e238a54b8be8490 | 426cb9f13a8ff7280efc494de7ebb607b93f61e8 | refs/heads/master | 2020-03-28T09:24:42.546748 | 2018-09-18T15:43:34 | 2018-09-18T15:43:34 | 148,034,681 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 30,345 | c | #include "Header.h"
#include "Unify.h"
/* #define DEBUG */
#define POP 1
#define BACKTRACK 2
#define GO 3
#define SUCCESS 4
#define FAILURE 5
/*************
*
* match_bt_first
*
* This is backtracking matching, to be used when there
* can be more than one unifier. This version handles... | [
"mariapaola.bonacina@univr.it"
] | mariapaola.bonacina@univr.it |
260840c8eb621fd3427055128768cf836e1077f9 | 99edb88ea62f2823c1c92ee6474e899ae40a27c6 | /oski-1.0.1h/src/tune.c | 6048ad024dc3a36166c3a0e08db6c61884459d72 | [
"BSD-3-Clause",
"MIT"
] | permissive | fruitfly1026/FillEstimation | 7c3944009255bb2f406328f82270e743ba86520a | a9084f0f4b427287b5156ddce69171b31263d758 | refs/heads/master | 2021-01-21T05:32:42.011773 | 2017-10-09T19:47:48 | 2017-10-09T19:47:48 | 101,924,935 | 0 | 1 | null | 2017-08-30T20:18:15 | 2017-08-30T20:18:14 | null | UTF-8 | C | false | false | 9,756 | c | /**
* \file src/tune.c
* \brief Tuning module implementation.
* \ingroup TUNING
*
* Current list of heuristics:
* - Cache blocked SpMV
* - Register blocked SpMV
* - Register blocked sparse \f$A^TA\cdot x\f$.
* - Register blocked, switch-to-dense triangular solve
*
* Basic structure of a heur... | [
"ptrahrens@gmail.com"
] | ptrahrens@gmail.com |
a9dd874d7f57b6310311f1d07de25ef198689afd | 42d75392d144fdf094fb53351453d6d561b036b9 | /jiae.c | 77c4f4ec37c138dae8c91ff8ace47008690bed20 | [] | no_license | khcha001/kitel_2019_git | 077bbcf38d7ba26382027a4aaf504e1fd51e48b2 | b5a0604a060beafa28aadc6a79993ee45f18179c | refs/heads/master | 2020-06-16T07:18:22.874298 | 2019-07-06T03:41:11 | 2019-07-06T03:41:11 | 195,511,151 | 0 | 0 | null | 2019-07-06T07:28:30 | 2019-07-06T07:28:30 | null | UTF-8 | C | false | false | 89 | c | #include <stdio.h>
int main(void)
{
printf("This is Jiae's World\n")
return 0;
} | [
"hirlawldo413@gmail.com"
] | hirlawldo413@gmail.com |
6f44c4cfb1f99def2bd9959fe99c6471c8f4d4c2 | ac393267188eb442e463ba10fe8aaf8d938c1c31 | /BmiCalculator/main.c | d7bab7e6256e3b2d08dfe23d6c9606520e796e94 | [] | no_license | jonathanamoako/C-Boiii | 2f3193b4f06ec61e10d62d0225c12bfb66916c52 | 579b500c38c5de9a8cccf15e0a32207fdfeb2024 | refs/heads/master | 2021-01-13T02:47:13.099142 | 2016-12-22T10:26:04 | 2016-12-22T10:26:04 | 77,135,286 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,757 | c | #include <stdio.h>
#include <stdlib.h>
int age;
float weight;
float height;
float bmi;
char again;
char name[100];
int main()
{
introduction();
return 0;
}
int introduction()
{
getName();
getAge();
bmiCalculate();
return 0;
}
int getName()
{
printf("hello, what's your name? ");
scan... | [
"j.amoako@outlook.com"
] | j.amoako@outlook.com |
ea62aa24287b938ab443f99eb651be3494d5d7ea | 2aab941c2ff15dbc97e1ca52c95bb013a91a22fe | /include/QtOpenGLExtensions/qtopenglextensionsversion.h | 98be4d278da09a302b0403f53dbd419c11d9011c | [] | no_license | O-NX/Qt-BB10 | 86a45be3e4d916a83892ae5cc1d386e76d40bacd | 523fe04258505c1a6870cfd5d000e35b89d70bb7 | refs/heads/master | 2022-10-14T00:29:38.130363 | 2020-06-12T13:53:02 | 2020-06-12T13:53:02 | 271,809,441 | 6 | 0 | null | null | null | null | UTF-8 | C | false | false | 257 | h | /* This file was generated by syncqt. */
#ifndef QT_QTOPENGLEXTENSIONS_VERSION_H
#define QT_QTOPENGLEXTENSIONS_VERSION_H
#define QTOPENGLEXTENSIONS_VERSION_STR "5.2.2"
#define QTOPENGLEXTENSIONS_VERSION 0x050202
#endif // QT_QTOPENGLEXTENSIONS_VERSION_H
| [
"patrick.quinn@kony.com"
] | patrick.quinn@kony.com |
080609719ac20545eb1dae77b6b4a2319538176b | e97e4566662c629cfbd4d4576db3b5b482c9337c | /2.3.1-foss-2016a/applications/utilities/postProcessing/userBoundaryScalarAverage/userBoundaryScalarAverage.C | fd3df76edcf7fac8c8b0487d57d5542fb63a641b | [] | no_license | snow-stone/openfoam | 061d08f7db1aece764ce2ea369fc86d0bb627832 | 131da2611e476ce3b03fe7d33e30d569c6e24d95 | refs/heads/master | 2021-06-18T12:51:17.250578 | 2019-10-14T16:55:41 | 2019-10-14T16:55:41 | 147,496,284 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,249 | c | #include "fvCFD.H"
#include "argList.H"
#include "timeSelector.H"
#include <fstream> // 标准输出,到文件
//using std::ofstream; // 不加这个class ofstream找不到
void scalarField_simpleStatistics(const scalarField& s)
{
Info<< "Simple Statistics on field : " << endl;
Info<< "size of field : " << s.size() << endl;
Info<< "min : ... | [
"haining.luo@doctorant.ec-lyon.fr"
] | haining.luo@doctorant.ec-lyon.fr |
e0ecf6e56f6b91a7dc98b674038bd7b136b80b22 | acf71a1ed1442b6e87ca0965e467e9c1fb83bdac | /FeatherX3D/OpenLibrary/FreeType2/ftdmo235/ft2demos-2.3.5/src/ftgrid.c | fdf995378a8c78ab79d1f2c769f792003fd03512 | [] | no_license | lmo0317/featherx-3d | a4631e91d26a27a67b678821c27481ebf81ab9a9 | e611655105eeb34fcee6a2b2756608c4368db231 | refs/heads/main | 2023-04-28T04:30:34.579932 | 2021-05-16T13:30:58 | 2021-05-16T13:30:58 | 366,113,682 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 26,824 | c | /****************************************************************************/
/* */
/* The FreeType project -- a free and portable quality TrueType renderer. */
/* */
/* ... | [
"lmo0317@naver.com"
] | lmo0317@naver.com |
ecd8249054e615e3d6cda4f0fa6958c6c404317a | 2b7cd629d53d8e3b6009574e11f395301e156ca0 | /COMMON/SRC/SOC/PXA27X_MS_V1/INC/pmuioctl_tab.h | 9c076fad0feaa46dbbf708b450c92bf0b46ce859 | [] | no_license | zizilala/projects_etest | 8b6a5782b9e2f6c1c05e508356a7f835dce29d92 | 84fa95bd0017b06dfbf15b861c179d4d8da1a475 | refs/heads/master | 2020-12-30T11:14:52.899545 | 2014-03-13T09:54:27 | 2014-03-13T09:54:27 | 15,964,924 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,377 | h | //
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this samp... | [
"yaxx99@homtial.com"
] | yaxx99@homtial.com |
e4035334abd3ad5b9e74219d9cc02f39c1c090ab | d3495dd1d4128d148807234357ff9885c32ade9e | /statemachine.h | 9f7d8fe3ab39b437a5ff86c959a510d47ad7a69c | [] | no_license | coastermike/Maze-2011 | 253387019f9f7f915a271a7592f7d5a189754511 | eb02081ac03f9e05aad8d7c606fe987d98f8c5dc | refs/heads/master | 2021-04-12T04:35:05.501621 | 2011-04-17T18:59:37 | 2011-04-17T18:59:37 | 1,624,148 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 125 | h | #ifndef STATEMACHINE_H
#define STATEMACHINE_H
void setMainState(unsigned int stateGoto);
void stateOfDeepThought();
#endif
| [
"coastermike@gmail.com"
] | coastermike@gmail.com |
277c057ca92203f442a93b1a1dc5701e132c3356 | f5a651d182de912f5fb4fcd819fbf1715c9dbf90 | /SW/example/针对匿名四轴的遥控程序/f407 test1遥控程序/User/Usart_dt.c | 490a5e5ccb5e3a81d4e57ed169f2c8a331ad40fd | [] | no_license | zhangsaisai/MEMS | e85849dbc48c8b8a60f15d3aec613c8c29afe5e3 | c8f0fd983a382861b872f9bedabded0a6a2dd198 | refs/heads/master | 2021-01-10T01:44:08.093846 | 2016-03-04T10:53:37 | 2016-03-04T10:53:37 | 53,108,200 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 3,703 | c | #include "usart_dt.h"
#include "lcd.h"
#include "usart.h"
STATUS STATUS1;
SENSOR SENSOR1;
RCDATA RCDATA1;
PWM PWM1;
PID PID_ROL,PID_PIT,PID_YAW;
void Data_Receive_Anl(u8 *data_buf,u8 num)
{
vs16 rc_value_temp;
u8 sum = 0;
u8 i=0;
for(i=0;i<(num-1);i++)
sum += *(data_buf+i);
if(!(sum==*(data_bu... | [
"zhangsaisai0814@163.com"
] | zhangsaisai0814@163.com |
71d026b9c34ec2e6b44387179bc0bb4d61ebf9c6 | e3f08da52d7be4d583dc98a097452213822d795f | /firmware/application/upgrade.c | d2f8a32cbe0ea27f3ff217f960852f8572b20136 | [
"BSD-2-Clause"
] | permissive | rsporsche/BlueBus | e67f401fadc0fe1b353a15dfe819d4ec1025757e | 4631fdc839bc0291c5ff7807c89c8be0df90359c | refs/heads/master | 2022-12-21T19:39:38.779074 | 2020-09-09T05:12:01 | 2020-09-09T14:23:21 | 294,504,854 | 0 | 0 | NOASSERTION | 2020-09-10T19:34:26 | 2020-09-10T19:34:25 | null | UTF-8 | C | false | false | 6,424 | c | /*
* File: upgrade.c
* Author: Ted Salmon <tass2001@gmail.com>
* Description:
* Implement Upgrade Tasks
*/
#include "upgrade.h"
/**
* UpgradeProcess()
* Description:
* Run through the applicable upgrades
* Params:
* BC127_t *bt - The bt object
* IBus_t *ibus - The ibus ob... | [
"tass2001@gmail.com"
] | tass2001@gmail.com |
58ad345bdbda2822f3c6ed13011a6264d0395f37 | d0943d6367a790647ba5bb8be435a07970e1cf8b | /data-structure-c/01-linear-list/04-queue/01-queue/02-linked-queue/linkedqueue.h | 00802bcd6f8e072afc39d3fbd2de30cebd9d3bef | [] | no_license | hzm-January/0002-datastructures-algorithms | 08e22bf7e4ae4547eb0817b081793e59109198a7 | 69e917b9a7bff25e8dd2573be0b88ff485aabd45 | refs/heads/master | 2020-05-31T16:04:30.349667 | 2019-08-24T13:14:46 | 2019-08-24T13:14:46 | 190,372,740 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 471 | h | //
// Created by hzm on 2019/6/18.
//
#ifndef DATA_STRUCTURE_C_LINKEDQUEUE_H
#define DATA_STRUCTURE_C_LINKEDQUEUE_H
#define MAX_SIZE 10
#include <stdbool.h>
#include "../../queue.h"
typedef struct LINK_NODE_STRUCT {
int value;
struct LINK_NODE_STRUCT *next;
} LinkNode;
typedef struct LINKED_QUEUE {
Lin... | [
"hzm_dream@163.com"
] | hzm_dream@163.com |
20a65fdf8c466c3031dbc7e4b540bc12eb68a9eb | e7860f3be0224302e611b19b0cf377f18259c27d | /middleware/wireless/nwk_ip_1.2.1/base/stack_globals/ip_globals.c | b936d022446ba2d17c9b56bab9ff95a281ee5bee | [] | no_license | ERNE196077/COM_Practica2_Router | 97227cf6cf4fa87d86f56edfcd699bca3e578850 | a2c5f7bc884238ac927e4e8a78a503208c35930b | refs/heads/master | 2021-01-20T12:55:28.934724 | 2017-05-09T01:38:16 | 2017-05-09T01:38:16 | 90,429,413 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 5,435 | c | /*
* Copyright (c) 2014 - 2015, Freescale Semiconductor, Inc.
* Copyright 2016-2017 NXP
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice,... | [
"ramoscaciqueernesto@hotmail.com"
] | ramoscaciqueernesto@hotmail.com |
268d714ed9dad08ee0d3af0dc394453e909419e0 | 0a0bd3bcd48af06830bac48b581e71f5a5d46511 | /plugins/out_s3/s3_store.h | 85d3e8b78889194a118cb54bfe68c29af039e9af | [
"Apache-2.0"
] | permissive | Deepanshu4712/fluent-bit | 201a6e300cac86e978e2e16925141cbb3e8df89e | ef705b58578897280bd274fb4b6bb28cf15c66ca | refs/heads/master | 2023-04-03T14:31:35.523634 | 2021-04-27T10:26:41 | 2021-04-27T10:26:41 | 286,372,018 | 0 | 0 | Apache-2.0 | 2020-08-10T04:03:28 | 2020-08-10T04:03:28 | null | UTF-8 | C | false | false | 2,772 | h | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* Fluent Bit
* ==========
* Copyright (C) 2019-2020 The Fluent Bit Authors
* Copyright (C) 2015-2018 Treasure Data Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in co... | [
"Sabari.Arunkumar@maplelabs.com"
] | Sabari.Arunkumar@maplelabs.com |
a5ee68c2deb245ae6fb7eb5fefd3bbc142b43f4f | 51113e8853f5f125d886a92fd0dcb5dedee78ef2 | /pset2/Caesar/caesar.c | adfaf1bd18ed673e32ab28ec1b9f9e8fb927deb1 | [] | no_license | amorpersonalgit/cs50_clean | 1cab3f67eb1068c6098eaa7c3e9e56fde5352876 | 82496d903275a6bbfd02f077096c067f9dbbb3cb | refs/heads/master | 2022-11-23T13:52:30.899896 | 2020-07-20T00:14:40 | 2020-07-20T00:14:40 | 280,485,630 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,212 | c | #include <stdio.h>
#include <cs50.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
int main(int argc, char *argv[])
{
char *usage = "Usage ./caesar key\n";
if (argc != 2) {
printf("%s", usage);
return 1;
}
int key = atoi(argv[1]);
for (int i = 1; i < 6; i++) {
... | [
"rodrigobedmar@gmail.com"
] | rodrigobedmar@gmail.com |
da21d6a65d2ea17e3eaaed69ba6e8e680caf422c | 94e8344ee420ae4d2eb1643e95973845f341a3d2 | /gcc_4.3.0_mutants/mutant103625_reload1.c | f2403731d28175cd677cf5acd289f80cd5751630 | [] | no_license | agroce/compilermutants | 94f1e9ac5b43e1f8e5c2fdc17fa627d434e082f3 | dc2f572c9bfe1eb7a38999aaf61d5e0a2bc98991 | refs/heads/master | 2022-02-26T21:19:35.873618 | 2019-09-24T15:30:14 | 2019-09-24T15:30:14 | 207,345,370 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 285,382 | c | /* Reload pseudo regs into hard regs for insns that require hard regs.
Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
Free Software Foundation, Inc.
This file is part of GCC.
GCC is free software; you can redistribute it and/or m... | [
"agroce@gmail.com"
] | agroce@gmail.com |
90defa4cf1a025d0f8974e47fabdccba2d597a87 | 47671719098afaacb975aa642a1c268d02a8379a | /system/src/hstTrailer.c | 400739b795a933162be8fdaa21d06c0ccf5147d1 | [] | no_license | sqf-ice/CSP | 891187868a74f7fd8268066caaf49625cd4622fb | 22b20670da00cdacfab3c524a0ab1f88344f6001 | refs/heads/master | 2020-04-26T08:05:30.145929 | 2018-07-17T08:41:14 | 2018-07-17T08:41:14 | 173,412,527 | 0 | 1 | null | 2019-03-02T06:32:37 | 2019-03-02T06:32:36 | null | UTF-8 | C | false | false | 687 | c | #include "tcpSvr.h"
char *FindMessageTrailer(unsigned char *Buf, int len, unsigned char ch, int charset)
{
register int i;
UCHAR *p = Buf+len,*pAscii;
for(i=len; i>=0 ; i--,p--)
{
if(*p==ch){
int tLen = len - (p+1 - Buf);
if(tLen)
{
if(charset == CHARSET_EBCDIC){
pAscii = (UCHAR *)malloc(tLen+... | [
"MSI@MSI-PC1"
] | MSI@MSI-PC1 |
110e02627bee2e6b7b77864d065dac7e6fbeb87c | 020297046e4e325ee41ee0dcb26b708df8f94ba1 | /99_MKL_Examples/vmlc/source/vdacosh.c | 5ee44220d2037fe1b73d7d9a3d784d204d2ad313 | [] | no_license | awatarn/General_Projects | e755191abdc49e2e999b782c632fd651dd1110d1 | f2f1b75e9673823ae90b860882a93bcfa2f02528 | refs/heads/main | 2023-01-05T06:23:53.012226 | 2020-03-13T03:25:15 | 2020-03-13T03:25:15 | 310,781,572 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,632 | c | /*******************************************************************************
* Copyright 2001-2017 Intel Corporation All Rights Reserved.
*
* The source code, information and material ("Material") contained herein is
* owned by Intel Corporation or its suppliers or licensors, and title to such
* Material rem... | [
"apiwat.wis@mail.kmutt.ac.th"
] | apiwat.wis@mail.kmutt.ac.th |
49612a3b88eaa61c4188a9a31e7261800df87670 | a86bfde18c52ae1140d06fd60d00d2c5b1276e59 | /practica_5/codigos_sincronizacion/procesos/ej1.c | d29f551e74abd397b9e1ec46f1a674a25379248e | [] | no_license | alvarolac/Sistemas-Operativos-ULA | e97433f876c151dcca46b64afaf0fde6965bac44 | 2c0663af56af5f6921782a2119b37bb2b78d597d | refs/heads/master | 2021-04-28T03:08:52.210186 | 2018-05-28T06:16:24 | 2018-05-28T06:16:24 | 122,132,767 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,707 | c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/shm.h>
#include <signal.h>
#include <sys/sem.h>
#include "memsh.h"
void shmem_init(shmem_data *);
void show_mon(shmem_data *);
void exit_signal(int);
int main() {
system("clear");
printf("\n_______________________ Mo... | [
"alvarolac2@gmail.com"
] | alvarolac2@gmail.com |
38808e6114ebf65f605104e459d54440acd12df8 | 2d59fb0c5b5a7dbc1c31fab2ea3b89a08a859ef6 | /include/linux/types.h | bd912bcb42fd2bc54619828f21f93dac95d3984f | [
"0BSD",
"GPL-2.0-or-later"
] | permissive | CPU-Code/-u_boot_fslc | 683f4d183723df62f17645ec7f2d3c6bccbf737c | da15f58fe22fce65c6934eaa0d69d8bd2631f9a7 | refs/heads/master | 2023-04-03T15:38:33.105773 | 2020-05-16T12:04:44 | 2020-05-16T12:04:44 | 278,999,208 | 0 | 0 | 0BSD | 2021-04-20T20:20:33 | 2020-07-12T05:38:02 | C | UTF-8 | C | false | false | 3,629 | h | #ifndef _LINUX_TYPES_H
#define _LINUX_TYPES_H
#include <linux/posix_types.h>
#include <asm/types.h>
#include <stdbool.h>
#ifndef __KERNEL_STRICT_NAMES
typedef __kernel_fd_set fd_set;
typedef __kernel_dev_t dev_t;
typedef __kernel_ino_t ino_t;
typedef __kernel_mode_t mode_t;
typedef __kernel_nlink_t nlink_t;
type... | [
"923992029@qq.com"
] | 923992029@qq.com |
195c0bde8db6549ad47e7205ecc71fc1ccafc79e | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function13987/function13987_schedule_15/function13987_schedule_15_wrapper.h | 4dc64daa5805d833aad4ef265b0bb1c65da15a62 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C | false | false | 282 | h | #ifndef HALIDE__generated_function13987_schedule_15_h
#define HALIDE__generated_function13987_schedule_15_h
#include <tiramisu/utils.h>
#ifdef __cplusplus
extern "C" {
#endif
int function13987_schedule_15(halide_buffer_t *buf0);
#ifdef __cplusplus
} // extern "C"
#endif
#endif | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
dd2b08c09349e246d67f0a51e2d3239b5d285e56 | c2670acd720052b3400ec453369617048b19aa9e | /Loops/p17.c | 618a57b62a3e2828dbf9115da4746b0f222140ff | [] | no_license | humble-barnacle001/basic-c-programs | 58ffbaa477bf0967afde9a827c393067049a19cb | 78952dea49fea73be3fbcf3e39aa5d44f4e57fa4 | refs/heads/master | 2022-08-31T14:28:49.172071 | 2020-05-24T06:40:29 | 2020-05-24T06:40:29 | 266,476,668 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 330 | c | #include <stdio.h>
int main()
{
int n;
printf("Enter the value of n: ");
scanf("%d",&n);
int i;
int a=0,b=1,c;
printf("First %d terms of Fibonacci series: ",n);
for(i=0;i<n;i++)
{
printf("%d",a);
if(i==n-1)
printf("\n");
else
printf(", ");
c=a+b;
a=b;
b=c;
}
re... | [
"barnaclenshade@protonmail.com"
] | barnaclenshade@protonmail.com |
4d67cda4a6c466fbc24f5d49b35036e3d9e13a6d | b1d017f04aa49267c3c5274cad297529e598c7ef | /chapter6/e12.c | 9ba95bf79a5599cf73a68a22511b86d09aa48c6c | [] | no_license | devitalio/cprimerplus-6th | 9235e66f68a2deb88f44166c97d1c8d48df4c618 | 30656ca7c6648cf933cb78c5bfb5b9002e3bde4f | refs/heads/master | 2022-10-30T23:46:26.143542 | 2020-06-18T19:17:58 | 2020-06-18T19:17:58 | 269,574,674 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 555 | c | #include <stdio.h>
int main(void)
{
long double sum;
int limit;
printf("Enter number of terms: ");
while(scanf("%d",&limit), limit > 0)
{
sum = 0L;
for(int i = 1; i < limit; i++) {
long double coef = -1;
for(int j=1; j<= i; j++)
coef *= (-... | [
"devitalio@users.noreply.github.com"
] | devitalio@users.noreply.github.com |
de42229f3d5f721a63c87627627006599a1ea9b1 | 1e4a1df461e99d67a20b3c4d3eb69f348d39b4df | /line.c | f318285a785ae81c77b9b5ec84080345bf445a99 | [] | no_license | AethliosIK/lntracker | ab6a47b99c53be3123558731d0b9265e5e4ea0fe | 9d278b4804b5841739e74f26b8a3a05c6cb1fdda | refs/heads/master | 2021-04-03T05:15:31.350644 | 2018-03-12T20:18:46 | 2018-03-12T20:18:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,970 | c | #include "line.h"
#define FUN_SUCCESS 0
#define FUN_FAILURE 1
//*************************** occrs : ******************************************
typedef struct occrs occrs;
struct occrs {
long int *array;
size_t capacity;
size_t length;
};
#define MIN_OCCRS_ARRAY 11
static occrs *occrs_empty() {
occrs *o = ... | [
"tom.chambaretaud@etu.univ-rouen.fr"
] | tom.chambaretaud@etu.univ-rouen.fr |
31d2190a8aa51bc88fc29a8e5b0b226359c6a04c | b274c5004c12848d65a4ae910b726ecbba4f0afb | /material_mod.c | 9749bab7ea69cb810360a3e7311325ed0d1d2a4c | [] | no_license | laminic/cs | fcacf69632d8ca10e33bf82163fd36d07d04014a | cdedc65ab2197b939f3b275554f1ccf3b07b09e5 | refs/heads/master | 2016-09-05T12:56:12.685473 | 2013-05-24T14:53:40 | 2013-05-24T14:53:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,931 | c | /*
* =====================================================================================
*
* Filename: material_mod.c
*
* Description:
*
* Version: 1.0
* Created: 03/31/2013 09:41:18 AM
* Revision: none
* Compiler: gcc
*
* Author: laminic (), laminic@gmai... | [
"laminic@gmail.com"
] | laminic@gmail.com |
98c0a3cefa81ea4fad144e1357cd33f776759c4d | 5d44a1a80770bebabd2ce53a8f8ba2162f496b91 | /src/task_dht.c | 33d6b33648662177e75d5e62aa16c0e1b6e606c5 | [] | no_license | tiagodeoliveira/esp32-air-quality | c311acf9d90b09fc3b659de45f3fdc11833c68d3 | c49adffcbd4f46e8e8b7ade070a9bfe91999b570 | refs/heads/main | 2023-04-17T00:59:30.363538 | 2021-05-03T07:30:10 | 2021-05-03T07:30:10 | 363,848,106 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 648 | c | #include "tasks.h"
#include "DHT.h"
void dht_task(void *param) {
task_results *results = (task_results *)param;
setDHTgpio(DHT_PIN);
int count = 0;
int temp = 0;
int humi = 0;
for (;;) {
int status = readDHT();
if (status == DHT_OK) {
temp += getHumidity();
humi += getTemperature();
... | [
"tiagode@amazon.de"
] | tiagode@amazon.de |
06df1a73bd2ca08af725a8b63852493d3af8d101 | 0d0ea63398da0cb744bff36ee077accb9c2b2b2f | /src/drivers/hardware/keyboard.c | 03ea94c780a13c8d47f52f4e5f0109ef9cd8181f | [] | no_license | lingfeishengtian/BianOS | e7362feecf9957fce7330dbb5b0eb1768fefdd69 | 02f5fbdc76b70f0dedda5bd9e8ec45a03cd02399 | refs/heads/master | 2023-01-01T09:31:05.603727 | 2020-10-28T00:02:44 | 2020-10-28T00:02:44 | 277,241,447 | 4 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,486 | c | #include "keyboard.h"
#include "../port_io.h"
#include "../vga_text.h"
#include "../../kernel/idt/pic/pic.h"
bool shift_held = false;
char ascii[256] =
{
0x0, 0x0, '1', '2', '3', '4', '5', '6',
'7', '8', '9', '0', '-', '=', 0x0, 0x0,
'q', 'w', 'e', 'r', 't', 'y', 'u', 'i',
'o', 'p', '[', ']', '\n', 0x0, 'a', 's... | [
"hunter.han@gmail.com"
] | hunter.han@gmail.com |
ce0770de576811a646f9cd16abb41dba2befff3a | 8d183cdb54c54304efa2a088f7d0908e7e4f7a3c | /battleship/EIFGENs/battleship/W_code/C1/we972d.c | 5dfeafb51f2c421add29566d57b8109ddec9bcb5 | [] | no_license | mzlatkin/battleship | d5dbc9433bd44df04bf643759d63610e1c653e64 | 76dd92ee0a5b7c428cff497d2cf69caa920685ce | refs/heads/master | 2021-07-04T04:14:07.995855 | 2020-09-23T18:20:35 | 2020-09-23T18:20:35 | 178,740,165 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,972 | c | /*
* Class WEL_GDIP_COLOR_ADJUST_TYPE
*/
#include "eif_macros.h"
#ifdef __cplusplus
extern "C" {
#endif
static const EIF_TYPE_INDEX egt_0_972 [] = {0xFF01,232,0xFFFF};
static const EIF_TYPE_INDEX egt_1_972 [] = {0xFF01,245,971,0xFFFF};
static const EIF_TYPE_INDEX egt_2_972 [] = {0xFF01,971,0xFFFF};
static const E... | [
"mzlatkin@elltechnologies.com"
] | mzlatkin@elltechnologies.com |
537659e94984a0b11d9d8c9e75618131d24026a1 | 1b19adb8d093f97bd67d8f548eea3056137cbd80 | /Tests/serial_switch.c | 85e8f7cd653268ae3ce086a605008c366c60a30c | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | bgin/OpenACCV-V | 2b245c9918183c7f55de8178ca1192d26b8ce01d | 1891ffa113282c3d79e792796f3ea254ac0da9ee | refs/heads/master | 2023-05-27T00:19:54.256799 | 2021-06-11T21:04:16 | 2021-06-11T21:04:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,910 | c | #include "acc_testsuite.h"
#ifndef T1
//T1:serial,V:2.6-2.7
int test1(){
int err = 0;
srand(SEED);
int * a = (int *)malloc(n * sizeof(int));
real_t * b = (real_t *)malloc(n * sizeof(real_t));
real_t * b_host = (real_t *)malloc(n * sizeof(real_t));
real_t * c = (real_t *)malloc(n * sizeof(real_t)... | [
"kylefriedline@gmail.com"
] | kylefriedline@gmail.com |
72aa8e5431e1af0960efbac832a9c5f126730f35 | 5c5ba0cbdc972b56a3ac7664f68a74fe382c645a | /uri/1 - Basics/1008/Main.c | 4ec63c6a77ebf2a136e3aa2889358446520babaa | [] | no_license | humbertodias/challenges | 91e090b70ed65269ff94f0b8d4096526d3545ba3 | b832d55491b4d5c840b0bb25b931aef8f04f5784 | refs/heads/master | 2020-04-05T14:03:38.384606 | 2019-01-29T12:28:13 | 2019-01-29T12:28:13 | 94,749,550 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 428 | c | #include <stdio.h>
int main() {
/**
* Escreva a sua solução aqui
* Code your solution here
* Escriba su solución aquí
*/
int NUMBER,HOURS;
double HOUR_VALUE, SALARY;
scanf("%d", &NUMBER);
scanf("%d", &HOURS);
scanf("%lf", &HOUR_VALUE);
SALARY = HOURS * HOUR_VA... | [
"humberto.dias@techne.com.br"
] | humberto.dias@techne.com.br |
4fdfc99c28d5103c6ff62aa6ff4b4ee6d4002fed | 453bc65c5706f50900533bdf0ba6c3553a15d17b | /C/should_fail/scope_while_cond.c | ea5f29ced9383148d085b710c1f118ad585da2dd | [] | no_license | icyfox168168/firm-testsuite | ab418d1cf2c7a30ded2558ad0c2be7da8b4b7853 | 268d5ca774186c59fab4340404fc957f6914be6a | refs/heads/master | 2022-06-09T04:34:25.425004 | 2020-02-07T13:56:55 | 2020-02-07T13:56:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 114 | c | int main(void)
{
/* C99 §6.8.5:5 The while statement is a scope. */
while (sizeof(enum { A })) {}
return A;
}
| [
"christoph.mallon@gmx.de"
] | christoph.mallon@gmx.de |
dc6d7287f2bbb4261b58a437f5244f4990f4c8b4 | 8023bdc11776a09b0fff0e9b581bbd42b8013afa | /hzg/CMSStyle.C | 569b26ab00d2bbba40dc9fb1ce85e51927773d32 | [] | no_license | uwcms/UWHiggs | 0785d431b12df07e872a00b36279227781a6c1de | 53c1bd2671dea2553f8bbc5dcdf56a823ccf36f6 | refs/heads/master | 2021-01-16T19:32:45.480056 | 2014-02-06T02:11:54 | 2014-02-06T02:11:54 | 8,310,494 | 0 | 2 | null | 2014-10-10T13:03:07 | 2013-02-20T10:02:08 | C++ | UTF-8 | C | false | false | 2,606 | c | //##########################################################################
// Initialization code executed at the start of a ROOT session.
//
// File: $Id: CMSStyle.C,v 1.1 2010/08/20 00:20:34 iraklis Exp $
//##########################################################################
//#include <iostream>
//using nam... | [
"lindsey.gray@gmail.com"
] | lindsey.gray@gmail.com |
97aac889d3afca261fa521a84822bbd3d945c9b7 | b3bd6a30439365b14f36ea76c8d7e9d985a0d327 | /user/include/syscall.h | becbca0114b6f928315a875075f4b639f94e75ec | [] | no_license | Dirkbe11/Cert-OS | 874b00e33f35ad4611ee5563fb0a8055a1739416 | 0a6c4a5788cfee7f963c886432837e1516a73d18 | refs/heads/master | 2021-07-20T16:52:06.121432 | 2020-05-28T00:24:44 | 2020-05-28T00:24:44 | 175,906,439 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,930 | h | #ifndef _USER_SYSCALL_H_
#define _USER_SYSCALL_H_
#include <lib/syscall.h>
#include <debug.h>
#include <gcc.h>
#include <proc.h>
#include <types.h>
#include <x86.h>
#include <file.h>
static gcc_inline void
sys_puts(const char *s, size_t len)
{
asm volatile("int %0" :
: "i" (T_SYSCALL),
"a" (SYS_puts... | [
"jamesdirkbell@gmail.com"
] | jamesdirkbell@gmail.com |
ea09d7252fa05637eaccd3ebeee7d3f97c4b4040 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/4fee5c94-ef9c-48f3-8526-63032db76d9f.c | 4f8ade482c5de41a904cb3fe96d2ac9588099b89 | [] | 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 | 549 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=4;
int j=44;
int k;
int l;
k = 533;
l = 64;
k = i/j;
l = i/j;
l = l/j;
l = l+j;
l = l-j;
j = k-k*i;
//variables
/* START VULNERABILITY */
int a;
int b[28];
int c[91];
a = 0;
while (a > -1) {
... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
dffe02eea84f94884fdfb4548735bf94a796af93 | de3349369298c0ecc210f418974af9048ad402fd | /蓝桥杯(自写答案)/2.c | d89dd6cb0b73fbd8d6e10ab7218d2824e1b4309f | [] | no_license | IamCheng/code-in-college | f4ffd4dff248320df3f798ebbb701c8a98a594f3 | 2bf1e894bb0cb7374296c165743ae1467587a9fb | refs/heads/master | 2020-05-26T07:24:27.777743 | 2015-03-06T05:08:37 | 2015-03-06T05:08:37 | 31,753,432 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 615 | c | #include<stdio.h>
#include<math.h>
void main()
{
int i,j,a;
int p(int,int,int,int,int);
for(i=10000;i<=99999;i++)
{
a=(i%10)*10000+(i%100/10)*1000+(i%1000)/100*100+(i%10000)/1000*10+i/10000;
if(p(i%10,(i%100/10),(i%1000)/100,(i%10000)/1000,i/10000))
for(j=0;j<9;j++)
if(i*j==a) printf("%d\n",i);
... | [
"jolt2@163.com"
] | jolt2@163.com |
428b4738c111fa4b32460b46c7eb81ab12471b6a | 93c10f96298bf7f4a85863042f91414d308e3e46 | /ft_memccpy.c | 8725d1738d31532bd9a23c77601da67741b8cfd2 | [] | no_license | An7d9r9e1w/Libft | 68dd5c339d6206a18a86024edddb33be3430f1b8 | 55414f51d2b18e76e9c9e6424582a56dc4024695 | refs/heads/master | 2023-05-28T21:57:42.572582 | 2021-05-26T16:01:24 | 2021-05-26T16:01:24 | 371,092,647 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,267 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memccpy.c :+: :+: :+: ... | [
"nnamor@si-d5.kzn.21-school.ru"
] | nnamor@si-d5.kzn.21-school.ru |
f0172d6e6768062487796cccfd0c1ad186512d1f | 98a6b1094f28fcf3aeb505c4a86807f7a424e188 | /old files/Simulink kopier/simulink/Old/NLPIDVersion2_nidll_rtw/rt_nonfinite.h | 45b8cfa8bda58338abb27c905db39cc7722a6d87 | [
"MIT"
] | permissive | eliasga/CS_EnterpriseI_archive | c107aa9a0392ab898f1b1d4af3f7db0302998bc0 | fff170b4c31fc25648eea80af99a1c8f79c3a036 | refs/heads/master | 2020-12-19T14:59:34.101723 | 2020-01-23T10:19:27 | 2020-01-23T10:19:27 | 235,767,462 | 0 | 0 | MIT | 2020-01-23T10:01:04 | 2020-01-23T10:01:04 | null | UTF-8 | C | false | false | 1,178 | h | /*
* rt_nonfinite.h
*
* Real-Time Workshop code generation for Simulink model "NLPIDVersion2.mdl".
*
* Model Version : 1.89
* Real-Time Workshop version : 7.3 (R2009a) 15-Jan-2009
* C source code generated on : Mon Mar 24 18:43:48 2014
*
* Target selection: nidll.tlc
* Note: GRT includes extr... | [
"an_d_rex@hotmail.com"
] | an_d_rex@hotmail.com |
529ce85be73cb266a5d861b0102c4a0fed4603c3 | a47575d846fbb4cee075b2b1ebe661c138ed4652 | /ecen5823-assignment4-ridhishah179-master/src/i2c.c | 9de6a1fcfdd9ea7cda90c4d654ae06704a4ac2de | [
"MIT"
] | permissive | ridhishah179/IOT-Embedded-Firmware | ca9665e4c9422350a8bf4ad5a6746402e5c13aaa | 1d0f204239d25d5c8ff5b51a6a7d402041094bd9 | refs/heads/master | 2022-12-13T16:04:01.583118 | 2020-09-07T19:51:04 | 2020-09-07T19:51:04 | 293,618,478 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,731 | c | /***********************************************************************************
* @i2c.c
* @author Ridhi Shah
* This file contains functions for enabling i2c to measure temperature using Si7021
* @references:https://siliconlabs.github.io/Gecko_SDK_Doc/efr32bg1/html/group__I2CSPM.html
* https://siliconlabs.gi... | [
"ridhi.shah@colorado.edu"
] | ridhi.shah@colorado.edu |
56d0bc1049c6dfcfc77b5b5b1416c824094af79c | 0c5d3b088080577388f5766431487534f93a2c40 | /Github-Projects-Origin/linux-master/drivers/pinctrl/uniphier/pinctrl-uniphier-ld6b.c.bak.c | 9deabda90613a1a0a2d536ee6fd763994286db6d | [] | 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 | 41,670 | c | #include <assert.h>
#include <string.h>
#define INCLUDEMAIN
/*
* Copyright (C) 2015-2017 Socionext Inc.
* Author: Masahiro Yamada <yamada.masahiro@socionext.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 ... | [
"wangcong15@mails.tsinghua.edu.cn"
] | wangcong15@mails.tsinghua.edu.cn |
5e05c319515ac18248bf829f76badccefca6fb07 | d2d31a1d8496931d81aac219904331b121d705d0 | /renderdoc_vs2017/renderdoc/driver/vulkan/official/vulkan.h | 76ae95062abe1a51da67d29c0e4d2302fbd337e2 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | yangzhengxing/renderdoc_vs2017 | ffac6f67ccf2b7f2fa3b63e9b926497979ffcce3 | 752720c788ecb18e93099db09ad27f8970bcda7f | refs/heads/master | 2020-04-15T03:54:29.515386 | 2019-01-07T02:19:07 | 2019-01-07T02:19:07 | 164,364,831 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,685 | h | #ifndef VULKAN_H_
#define VULKAN_H_ 1
/*
** Copyright (c) 2015-2018 The Khronos Group Inc.
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENS... | [
"yangzhengxing@xindong.com"
] | yangzhengxing@xindong.com |
4f153a917b92cb1c9c2b8f9b51a7aa1b5d97dd2e | 76b5eb1c7c98018f753d88d51408a2aee5af21d2 | /TIVA_Code/HID.c | b9a31573e9db29f0d0d0da5e390746cdc1c9229a | [] | no_license | aswinpajayan/C6678-objectTracking | 7377bf38477eed11ac610ee575ba3f4f6ecec7ad | dc23713e6916995efff9cb982a1f08b31a013cf5 | refs/heads/master | 2020-09-15T08:43:00.412465 | 2020-08-22T11:35:54 | 2020-08-22T11:35:54 | 223,398,589 | 5 | 2 | null | null | null | null | UTF-8 | C | false | false | 4,547 | c | #include <stdint.h>
#include <stdbool.h>
#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "inc/hw_gpio.h"
#include "driverlib/gpio.h"
#include "math.h"
#include "HID.h"
static uint8_t cursor_pos = 0x00;
char CharArray[17];
/**********User Switch**********/
void UserSwitchInit(void)
{
//... | [
"noreply@github.com"
] | aswinpajayan.noreply@github.com |
fee59db56b5cf93ad2fde9e7877d4ab63f2ad33c | 0cc4fb8e1ec33df3166ed4e6e731de299d4b3147 | /ec/chip/npcx/registers.h | 247c99cbb88de12c5130271121772ce90f5dc22d | [
"BSD-3-Clause"
] | permissive | shruthikashyap/USB_PD | 12d786532fa6c1a48c5e2ca8e8b9b73606477792 | ede80cb6bbf42754cc0976ae58f9620bb1d254be | refs/heads/master | 2021-01-11T06:10:37.200717 | 2017-05-18T14:38:21 | 2017-05-18T14:38:21 | 71,813,531 | 2 | 0 | null | 2017-05-18T14:38:22 | 2016-10-24T17:24:21 | C | UTF-8 | C | false | false | 61,162 | h | /* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* Register map for NPCX processor
*/
#ifndef __CROS_EC_REGISTERS_H
#define __CROS_EC_REGISTERS_H
#include "common.h"
/***********************... | [
"shruthikashyap@github.com"
] | shruthikashyap@github.com |
30dcd8cdaa8cdd52386dd25eb9a2d8425229b522 | 74297c629fc08a3a6ea8bc1218babf5ca7fd78a2 | /ArpHeader/BeExp/experimental/ColorTools.h | 95e6b7294a3631ae518d3da8e7cd2e1705170a42 | [
"LicenseRef-scancode-public-domain"
] | permissive | dtbinh/Sequitur | 834c5cc84309e9801a5831318d2668f8d540a46e | aef233ac224f9f4a5c041ad4577b5c4562c148f6 | refs/heads/master | 2021-01-20T19:05:32.145884 | 2015-08-22T21:15:12 | 2015-08-22T21:15:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 33 | h | ../SampleCodeLicense/ColorTools.h | [
"puck@puckipedia.nl"
] | puck@puckipedia.nl |
9d6e2b471fbeb1a96b50b0b9af5406d4cb6b38de | 5aaf3c95de61dbd392ec77285fffbf75174e815c | /c_code/6_2/pragmas.c | 2ed39abcb9187e8274c15ef3ba536cc3f881b1dd | [] | no_license | reactormonk/csources | d2ca33cfdcb8d887e113cba234c9120d076c9bb2 | e6e84627c71ebaa34f14c55a9d8f86747f5718f4 | refs/heads/master | 2021-01-15T09:57:53.781576 | 2014-04-21T13:19:56 | 2014-04-21T13:19:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 148,932 | c | /* Generated by Nimrod Compiler v0.9.3 */
/* (c) 2014 Andreas Rumpf */
/* The generated code is subject to the original license. */
#define NIM_INTBITS 64
#include "nimbase.h"
#include <string.h>
typedef struct tnode185813 tnode185813;
typedef struct tlineinfo161527 tlineinfo161527;
typedef struct NimStringDesc NimS... | [
"dominikpicheta@googlemail.com"
] | dominikpicheta@googlemail.com |
335744bb6fbea1716769350b61c2bf8b088e76a1 | 00784014b1152e6bd63c68aae48a25f3894d6e85 | /CollectEmUp/GameException.h | 87e917dc4892bb45f0bf241650e6d2a6a4f99497 | [] | no_license | wooffull/CollectEmUp | 061fe7500d5952854fdf727152cb682924a005de | a5d704d3390262d6cd7ffef88204500a65a44fbf | refs/heads/master | 2021-01-18T01:19:35.353644 | 2015-12-17T06:59:43 | 2015-12-17T06:59:43 | 41,814,790 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 107 | h | #pragma once
enum GameException
{
GlfwInitFail,
GlfwCreateWindowFail,
GlewInitFail,
LoadShadersFail
}; | [
"hfp1355@rit.edu"
] | hfp1355@rit.edu |
3744aa7254951f9ecea8a9b912025e4f666923dd | 0eafcc6840fb07408d3a3be855307a69a5e9cca0 | /sources/obj_plane.c | 7e689946003f80bd0620ea3ffa3a01f224eda62c | [] | no_license | 42esoulard/42_minirt | 258f7d562c4b9611d02edd5c697106674e74fdaf | 1c83829359818aedbef9c84ea24b223f9c57cdd7 | refs/heads/main | 2023-02-08T04:20:05.873210 | 2020-12-27T13:59:21 | 2020-12-27T13:59:21 | 324,566,150 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,308 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* obj_plane.c :+: :+: :+: ... | [
"estelle.slrd@gmail.com"
] | estelle.slrd@gmail.com |
ba02ec6e401f9ea22d1708f5ee1e9427f2ffa604 | 65f9576021285bc1f9e52cc21e2d49547ba77376 | /cdsp_proc/core/api/power/unpa/unpa_resource.h | 40f81fb1b3e4de008cdcaea79350221ad88bff21 | [] | 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 | 11,570 | h | #ifndef _UNPA_RESOURCE_H_
#define _UNPA_RESOURCE_H_
/*==============================================================================
FILE: unpa_resource.h
OVERVIEW: UNPA resource API. Define and operate resources.
DEPENDENCIES: None
Copyright (c) 2017 Qualcomm Technologies, Inc. (... | [
"jagadeshkumar.s@pathpartnertech.com"
] | jagadeshkumar.s@pathpartnertech.com |
f7a29705681e2a8fdd8c9acda90ec949284ce6a2 | 477874156ea06d1aff15522fcb720b1368c7a9c4 | /data/462.c | ca6d6e7e3f93b61fafbcd446330be5ef850bf303 | [] | no_license | benglard/TreeHacks | 9724296ca61fa4580a0b93101b7e53ee9a81cbc0 | 8c4bf98b78fb18314a38004504bdac72c30f41aa | refs/heads/master | 2021-01-11T07:39:01.061427 | 2015-02-23T23:07:13 | 2015-02-23T23:07:13 | 31,160,920 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 136 | c | #include <stdio.h>
int main(void){printf("%d", (73886660<5272633?46154322:21140252<51009101?67618080:(97017245-94117665)*27));return 0;} | [
"benjienglard@yahoo.com"
] | benjienglard@yahoo.com |
54b5c463cdaf043307e7ad4d6f0c2723751fae29 | 631e3da02c37e1c301cee900294e706fc333ba0c | /ESSAI_3/Laboratoire3.cydsn/CAPSENS.c | 22fe5a754f52d636760dc709b275089f66c959f5 | [
"MIT"
] | permissive | Ekrdin/ProjetGBM2100 | cd57923cc40a4ee7132077ed4b8ef999c2720ecc | 30d3a15b79b83025bc53145f51c4e1601ed2eba0 | refs/heads/main | 2023-04-14T01:06:10.029680 | 2021-04-22T04:58:21 | 2021-04-22T04:58:21 | 350,476,172 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,019 | c | /* ========================================
*
* Copyright YOUR COMPANY, THE YEAR
* All Rights Reserved
* UNPUBLISHED, LICENSED SOFTWARE.
*
* CONFIDENTIAL AND PROPRIETARY INFORMATION
* WHICH IS THE PROPERTY OF your company.
*
* ========================================
*/
#include "CAPSENS.h"
#include "DISPLAY.h... | [
"yassine-mohamed.diouri@polymtl.ca"
] | yassine-mohamed.diouri@polymtl.ca |
bdef1188dacd6f35e64e1d754a439fdfbc8f49d3 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/7f418a60-3ca1-4ed2-8f25-bdf88289795b.c | 0829e877566a68290fc69f0b388c7623031fe011 | [] | 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 | 558 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=0;
int j=14;
int k;
int l;
j = 53;
l = 64;
k = i/j;
l = i/j;
l = l%j;
l = l-j;
k = k-k*k;
//variables
//random
/* START VULNERABILITY */
int a;
int b[90];
int c[22];
a = 0;
do {
a++;
... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
d1aa23038332692b42f924d04a61867be2e3e805 | 8972ad6acdfec0fa9d74f34e58509a36dae29180 | /practices_code/2_asm/rfun.c | 30b99b3ac02d5875eaed1036bc1e5699f3d9a7c2 | [] | no_license | erisenzy/csapp-homeworks | cdc47d7f2ccc09ae781590765dbde060021ecbee | 0310be0b8668ac1b4ebf9a7b07570355e48cb659 | refs/heads/master | 2021-01-06T06:37:09.293027 | 2016-05-12T14:57:45 | 2016-05-12T14:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 476 | c | /* Practice Problem 3.27, p.246
*/
#include <stdio.h>
/* Add bits to a integer */
int rfun(unsigned x)
{
if (x == 0)
return 0;
unsigned nx = x >> 1;
int rv = rfun(nx);
return (x & 1) + rv;
}
int rfun_2(unsigned x)
{
if (x == 0)
return 0;
unsigned nx = x >> 1;
int rv = rfun(nx);
return (x & 1) ^ rv... | [
"guanghui.zeng@live.com"
] | guanghui.zeng@live.com |
ae3083fcf73a56ecf4c9aac8080a7e8b27c18c5b | 5768fbc19d60110bb7b4460a285c025c8dcf1012 | /Kernel/pipes.c | 2ed64637d37377e078739c6e4b9b77afa3556445 | [
"BSD-3-Clause"
] | permissive | inesmarca/2TP_SO | e380e049740e4630488b63dbcc0e32f3cb4ea7a7 | 7174f27d68e7fc381dff00207a7ae0e1d5b09aed | refs/heads/master | 2023-01-01T14:00:09.830955 | 2020-10-27T02:05:35 | 2020-10-27T02:05:35 | 296,142,627 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,225 | c | // This is a personal academic project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++, C#, and Java: http://www.viva64.com
#include <pipes.h>
#include <semaphores.h>
#include <scheduler.h>
#include <defs.h>
#include <lib.h>
#include <sysCall.h>
#include <consoleManager.h>
#define R_O... | [
"imarcarian@itba.edu.ar"
] | imarcarian@itba.edu.ar |
4ad2b0dab41d7a908d8f0476a5ff30250cdbe661 | 5aa3568d1d2c2d3f3781d578cd7fe302b274b829 | /Self-accelerating Processing Workflows/headers/ML_Configs.h | 98c5c1033d57392ede524b941941b8c87ca66e8b | [] | no_license | jeyakeethan/Self-Accelerating-Processing-Workflows-VS | 6a1a53b58f6b387a9e0a733d164d89384e15983e | 0c9e6523258b9a5764d0cb26dc3af76224859acf | refs/heads/master | 2023-04-05T02:54:17.255719 | 2021-03-17T15:44:26 | 2021-03-17T15:44:26 | 289,184,744 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 68 | h | #ifndef ML_CONFIGS_H
#define ML_CONFIGS_H
#endif // ML_CONFIGS_H
| [
"Keethan@gmail.com"
] | Keethan@gmail.com |
ce6d80cebc870650da660bd16d34cb324cff1dde | ea35802648ec9923c116622a67ec2377aa4d110c | /ptime_control.c | 6bac6476bcce79dbf4134da45794915c7c742c19 | [] | no_license | StanKarpikov/RPi_precise_control | 468e10802bbf8d98f0cf19ed4bef4617fef50c24 | 3267247a8b63fd0e721720f564e84d4e55811131 | refs/heads/master | 2020-09-22T08:41:58.053722 | 2019-11-30T22:38:21 | 2019-11-30T22:38:21 | 225,124,930 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,002 | c | /*--------------------------------------------------------------
INCLUDES
---------------------------------------------------------------*/
#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/hrtimer.h>
#include <linux/sched.h>
#include <linux/ktime.h>
/*-----------------... | [
"stankarpikov@gmail.com"
] | stankarpikov@gmail.com |
9e991ac183b496d043bc043d6585141f95f2837b | 948f4e13af6b3014582909cc6d762606f2a43365 | /testcases/juliet_test_suite/testcases/CWE667_Improper_Locking/CWE667_Improper_Locking__basic_07.c | 8bd7ea66c363f2c5c0d5b91b2d00696084717b06 | [] | no_license | junxzm1990/ASAN-- | 0056a341b8537142e10373c8417f27d7825ad89b | ca96e46422407a55bed4aa551a6ad28ec1eeef4e | refs/heads/master | 2022-08-02T15:38:56.286555 | 2022-06-16T22:19:54 | 2022-06-16T22:19:54 | 408,238,453 | 74 | 13 | null | 2022-06-16T22:19:55 | 2021-09-19T21:14:59 | null | UTF-8 | C | false | false | 3,758 | c | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE667_Improper_Locking__basic_07.c
Label Definition File: CWE667_Improper_Locking__basic.label.xml
Template File: point-flaw-07.tmpl.c
*/
/*
* @description
* CWE: 667 Improper Locking
* Sinks:
* GoodSink: Acquire a lock before releasing it
* BadSink : ... | [
"yzhang0701@gmail.com"
] | yzhang0701@gmail.com |
1bb7f372e94fe79213b755993840714735e83476 | af806c9a4453abcc542e9b326eb0a724b0850959 | /Compilers/New_Set/Assignment_3/ass3_13CS30021_test.c | 529b01c7a0b9de431e77a755b32319dbedba1dc9 | [] | no_license | mankeyboy/codes | 0e2db434f0a43bcc24843c6b91918ada9c69b434 | a8f8943aab4926a615fb69931a2e0bc62e3fbd10 | refs/heads/master | 2021-01-10T21:47:02.877963 | 2016-03-01T17:12:26 | 2016-03-01T17:12:26 | 25,565,077 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,367 | c | /*
Mayank Roy
13CS30021
Assignment-3
*/
#include <stdio.h>
union
{
long long i_val;
double d_val;
}var_1,var_2;
enum
{
ZERO = 0,
ONE = 1,
TWO = 2
};
struct N //Struct keyword check
{
int xyz;
} n_struct;
void sum(int i, int j, int k = 4) // Addition Function with default set
{
... | [
"roymayank@gmail.com"
] | roymayank@gmail.com |
b0d0d3736a8de9c6371ffbb8d7413f874874296b | 2b50a7dae427e06ac9115e99ab86d0e216c4b4dc | /barebones07/main.c | 25fe11e228b997ae2fe931e3112f3cbfcd1b90e2 | [
"MIT"
] | permissive | leiradel/barebones-rpi | 60f16cf4706d754d57c4f17bba6f9dd77bfe13d9 | aa533c4e092c50cfe428f94d690bb8a5ca99037f | refs/heads/master | 2020-04-18T09:21:48.560981 | 2019-04-06T16:40:54 | 2019-04-06T16:40:54 | 167,431,566 | 16 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,000 | c | #include "armregs.h"
#include "memio.h"
#include "aux.h"
#include "board.h"
#include "prop.h"
#include <stdio.h>
#include <inttypes.h>
void main(const uint32_t machine_type, const uint32_t atags_addr) {
uart_init(115200);
const uint32_t midr = get_midr();
const uint32_t variant = (midr & MIDR_VARIANT_NO) >> 20... | [
"andre@leiradella.com"
] | andre@leiradella.com |
ecca62de6c67bf0cd64ef532e77701f28c901392 | 2a515a13fe84dd4e9bf85e8de4ad92e5f1f52a86 | /Src/parameter.c | cbf6fdd04a9f325d441e4d15c85524bafe6aec7f | [] | no_license | Ncerzzk/BrushlessFoc | 358efbee7edcc0ea8757b864f2e78335e1b447ab | f084d146442a36c2866e3024730bbdfa54fcaf43 | refs/heads/master | 2023-07-04T16:53:18.119339 | 2021-08-13T03:13:09 | 2021-08-13T03:13:09 | 302,206,620 | 8 | 2 | null | null | null | null | UTF-8 | C | false | false | 2,769 | c | #include "parameter.h"
#include "foc.h"
#include "pid.h"
#include "uart_ext.h"
#define PARAMETER_FLASH_ADDRESS 0x08040000 // 扇区6 大小128kb
#define PARAMETER_FLASH_ADDRESS_SECLECTOR FLASH_SECTOR_6
extern uint8_t Board_CAN_ID;
typedef struct
{
Motor_Parameter motor_info;
float position_offset;
uint8_t ID;... | [
"huangzzk@bupt.edu.cn"
] | huangzzk@bupt.edu.cn |
86ffa5c7b2b57c69b9b7db67c8e935591f2ebdd5 | f015fd7c0acf66b9f33a03e90bdb9a13667ac667 | /server.c | 9cb179451e9ddc872278e938f6712a91c258b6d1 | [] | no_license | AlexJMohr/tcpwebserver | ebd0b9ea25e053332dcdd5e8193186137d429252 | 1b8b1867b73dd81274679d37f04afd31f1e47ffb | refs/heads/master | 2020-09-05T10:11:17.535923 | 2019-11-06T20:10:58 | 2019-11-06T20:10:58 | 220,069,879 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,809 | c | #include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <netinet/in.h>
void die(const char* message)
{
perror(message);
exit(EXIT_FAILURE);
}
int main(int argc, char* argv[])
{
int sock, conn_sock, port, bytes_read;
socklen_t client_addr_len;
char... | [
"alexmohr10159@gmail.com"
] | alexmohr10159@gmail.com |
64b415517d36b3d9fa28037ad7c4bd0d6220fce6 | 71e5f96a29f5d643ab888b37677d38c33f8d765d | /d/dagger/Elvanta/forest/mon/janice.c | e8feb22bd4b3621682ea4e2e4d9a44236565f95d | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Cherno-SuS/SunderingShadows | 5f755fbebb79dc0b9d1c2a0541408be4afeb8b67 | c3b4370beb2c4351ecc60826850c94892a42b685 | refs/heads/main | 2023-04-21T09:52:14.580024 | 2021-03-23T12:09:55 | 2021-03-23T12:09:55 | 349,490,686 | 0 | 0 | NOASSERTION | 2021-03-23T12:09:56 | 2021-03-19T16:40:12 | null | UTF-8 | C | false | false | 1,593 | c |
#include "/d/shadow/mon/melnmarn.h";
#include <daemons.h>
inherit MONSTER;
void create() {
::create();
set_name("Janice");
set_id( ({"janice", "Janice", "Janice the spatzl"}) );
set("race", "elf");
set_gender("female");
set_short("Janice, the spatzl");
set_long("BOLD%^RED%^Young she is, and yet, not so. The brai... | [
"law@shadowgate.org"
] | law@shadowgate.org |
92a00c873d2e9e199fd2b8c2bfc3d0a9096088fa | f66ea55510145a3b8569d8f3c8ba8a34bef5195f | /releases/1.0.3/src/lib/XShade.c | edb7b715cb097927cebaff952ec32a48db006e2c | [] | no_license | svn2github/ficas_sourceforge | 7854b02a084813385a17c46fae23793ffdbcdd09 | d500833dfb325bb088eed46d50fde8de38e783f7 | refs/heads/master | 2020-03-30T17:54:12.376963 | 2019-01-20T22:46:12 | 2019-01-20T22:46:12 | 151,474,522 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,151 | c | /*
Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
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 li... | [
"whebisch@b0c55286-4f34-0410-a049-a1e7e93b0762"
] | whebisch@b0c55286-4f34-0410-a049-a1e7e93b0762 |
9670ad2109165e4e188f5303f9ef4bf818eb6b22 | 48aadc39c168261d925ad203d3a4fb60ffa66625 | /filac.c | 4d72f856d87ac8754766f52cb6cb8524d7dbd22c | [] | no_license | chapolemos/Estrutura-de-dados | dbc879f337b21f72fadc361f497326b435d57ed8 | 1e89a374f68aa19b3dedb71aea8e39440d1981a5 | refs/heads/master | 2020-09-23T09:09:12.868480 | 2019-12-02T20:30:02 | 2019-12-02T20:30:02 | 225,461,769 | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 1,720 | c | #include <stdio.h>
#include <stdlib.h>
#define TAMANHO_MAXIMO 10
typedef struct
{
int items[TAMANHO_MAXIMO];
int front,rear;
}queue;
int empty(queue *pq)
{
if (pq->front == pq->rear)
{
printf("\nFila vazia.");
return 1;
}
return 0;
}
void enqueue(queue *pq, int elem)
{
//Ver... | [
"noreply@github.com"
] | chapolemos.noreply@github.com |
e331ff98dabbc3e0044ded39d9ba374a4dd15bdd | 0c08440aa95254553b4654717afd1ad85b48b6d2 | /MAPS-K64/MAPS-K64_1.0.0/platform/hal/mpu/fsl_mpu_features.h | 37e51b8effd7056ee2e7f9493f869847fb318798 | [] | no_license | maskedbaby-ch/wav-sai | 24a3c47766f1f1b915cdf3f8a43d91dedd9d57f1 | b5896eeb962765eb85d9aab5d56652fed30e8ae7 | refs/heads/main | 2023-03-19T15:27:27.014728 | 2021-03-15T05:53:04 | 2021-03-15T05:53:04 | 343,657,330 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,673 | h | /*
** ###################################################################
** Version: rev. 1.0, 2014-05-14
** Build: b140515
**
** Abstract:
** Chip specific module features.
**
** Copyright: 2014 Freescale Semiconductor, Inc.
** All rights reserved.
**
** Redis... | [
"79893501+maskedbaby-ch@users.noreply.github.com"
] | 79893501+maskedbaby-ch@users.noreply.github.com |
59f95f8a4b4573d9ca5291a2db7dfa6195540d81 | 969d60f041d0dd1d5122b627b6aa56094a7cdf7c | /Snippets/forkin.c | 0f2982233f18a50473ff90145c134da2e573ab2e | [
"MIT"
] | permissive | pauljonescodes/Rutgers-Systems-Programming-Fall-2013 | 86ff04a07bf2035d2cd387f3c114c028ae97225a | 6b498d6f1158fdbf7eb947700665743b9a30c2d8 | refs/heads/master | 2022-11-13T11:29:11.329602 | 2013-12-19T23:53:06 | 2013-12-19T23:53:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 445 | c | #include <unistd.h>
#include <sys/types.h>
#include <errno.h>
#include <sys/wait.h>
#include <stdlib.h>
int main() {
pid_t child_pid;
int status;
child_pid = fork();
switch (child_pid) {
case -1:
printf("-1\n");
break;
case 0:
printf("0\n");
... | [
"pauljones@Pauls-MacBook-Pro.local"
] | pauljones@Pauls-MacBook-Pro.local |
b1dff0669cfa8d1057af1fbd5e2c276047a235f6 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/reactos/modules/rosapps/applications/sysutils/utils/pice/module/extr_hardware.c_DisableScroll.c | 2b22bc957f30a1ac3b8abd98f31f131c6393c17f | [] | 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 | 751 | 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 |
2604a2ddd2886ea7e0c856586440b96105133df9 | 6a6e8391777b836622bc81c508efb9d0759e2b1a | /the_synth/examples/WTellOver/tables.h | c890150e48e6e0532ae82c3eb339b490a06586c0 | [] | no_license | Qsilverrdc/the_synth | 2948eb71d3a8d57c5ac486335627286d42f08bb4 | 909d910b5b688ec29ab946a6bedeab54f0929619 | refs/heads/master | 2021-01-17T10:17:47.620951 | 2016-03-11T00:43:19 | 2016-03-11T00:43:19 | 53,627,176 | 2 | 0 | null | 2016-03-11T00:23:37 | 2016-03-11T00:23:36 | null | UTF-8 | C | false | false | 27,275 | h | // Tables V2
#ifndef _TABLES
#define _TABLES
//This table id compatible with 20000.00 Hz. sampling rate
//Envelope frequency tuning word vs. MIDI range value [0-127]
const uint16_t PROGMEM EFTWS[]={
0x0371,0x0340,0x0311,0x02E5,0x02BB,0x0294,0x026F,0x024C,0x022B,0x020C,0x01EE,0x01D3,0x01B8,0x01A0,0x0188,0x0172,
0x015... | [
"Qsilverrdc@oh.rr.com"
] | Qsilverrdc@oh.rr.com |
fa978c0627eae07451a82edc9d960bc22a33fc59 | ed2b582ff9554ea18a4ce2bc45f961f4b164193f | /push_swap/libft/ft_strnew.c | d5f079f7a59b6dfd11467ccd56d4a2a55f8dbecc | [] | no_license | KrasnovS/school_21_projects | c1bb73f5d7974f9543627b983a6c0e8efd04573f | c987aa53b4a460b16658bf18a6dfadd9ba8cec50 | refs/heads/master | 2020-12-09T06:34:19.497898 | 2020-01-11T11:54:39 | 2020-01-11T11:54:39 | 229,962,314 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,156 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strnew.c :+: :+: :+: ... | [
"prawney@at-j2.21-school.ru"
] | prawney@at-j2.21-school.ru |
e3fcd6638885a84932eccd84c62b3948d8aa5bb7 | ad7c3d00e9036da6a924a97a06b9767ba46cca36 | /testone/5-27/文件更新解析2/client/jiexi.h | bf9d1be21a587eeee27560abb711902f183cc6b9 | [] | no_license | liyana/liyana.github.com | 4ef5d6fea95c7f3d4e9c15002128aa07c84f4236 | c52b9bb92fa98df6370f3bde8c03930b32b6bfad | refs/heads/master | 2020-03-26T08:40:23.691757 | 2011-07-03T10:42:47 | 2011-07-03T10:42:47 | 1,653,494 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 61 | h | #ifndef __JIEXI_H__
#define __JIEXI_H__
int jiexi();
#endif
| [
"liyana880525@163.com"
] | liyana880525@163.com |
47867e89004e0981b296eee2e43b5a10cd3968a5 | 10adf5fcf34c0673b3d937d087a6c0a6e635da84 | /thirdparty/Sqlite/sqlite3.c | 44511f64f22c98bcd00bca065723a62e4f2db6fa | [] | no_license | skyformat99/RongDian | 07785122072834097b0a7b4f99b59fefc4ed8567 | da070c1d0fc433d8429f29afca46053f3dd5ea4a | refs/heads/master | 2021-07-06T09:47:56.045001 | 2017-08-12T03:20:25 | 2017-08-12T03:20:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,973,877 | c | /******************************************************************************
** This file is an amalgamation of many separate C source files from SQLite
** version 3.7.17. By combining all the individual C code files into this
** single large file, the entire code can be compiled as a single translation
** unit. ... | [
"MoSights@gmail.com"
] | MoSights@gmail.com |
82862fbc56f9c8a44821d453e2d50802b8e608b0 | 9d0a561e86ab0678da4a2d8c3d2e740792298c8b | /ADuCM4x50/ADuCM4x50_EZ_Kit/examples/rtos/ucos-III/config/os_cfg.h | fad17b2bb2b83b6643efff6c32e494ca8b9a418f | [] | no_license | pagel050/ADZS-U4050LF-EZKIT | 8c739e13015aca8b190136a45af19b3cabaf9bb6 | 667575ba6049878e271ec3d1cbf56b846f5f9aee | refs/heads/master | 2022-11-06T06:14:38.715089 | 2020-06-09T19:42:25 | 2020-06-09T19:42:25 | 271,090,401 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,588 | h | /*
************************************************************************************************************************
* uC/OS-III
* The Real-Time Kernel
*
* (c) Copyright 2009... | [
"pagel@Pagels-MacBook-Pro.local"
] | pagel@Pagels-MacBook-Pro.local |
42c095970dda2c6000999a8c3f6d14e87df8acf2 | 673913dd2bce4eec6eea66a92ebbdd41dca724ca | /demo/Simd_Test/aes.h | 5397473cde131f02f78f961e0060a33ed53a76e7 | [] | no_license | fengbingchun/CUDA_Test | e0dc844d8b683c664ad870e0b5287c4765b47a12 | 9c554a2efe1d2a1b087c26be95102865b4d13e88 | refs/heads/master | 2023-05-30T03:02:00.374290 | 2023-05-21T04:39:58 | 2023-05-21T04:39:58 | 53,768,351 | 101 | 38 | null | null | null | null | UTF-8 | C | false | false | 4,033 | h | #include <mmintrin.h> //MMX
#include <xmmintrin.h> //SSE(include mmintrin.h)
#include <emmintrin.h> //SSE2(include xmmintrin.h)
#include <pmmintrin.h> //SSE3(include emmintrin.h)
#include <tmmintrin.h>//SSSE3(include pmmintrin.h)
#include <smmintrin.h>//SSE4.1(include tmmintrin.h)
#include <nmmintrin.h>//S... | [
"fengbingchun@163.com"
] | fengbingchun@163.com |
b8f231610060f310becf409469db5aa2c0d4d64a | 97a17c6b43c4b5a4cc532699bd6f6be3b514f705 | /blinky/blinky/asf-3.21.0/sam/components/sensor/mma7341l/mma7341l.h | fc88320f243380b31d69318a665257c54f64c04b | [
"MIT"
] | permissive | ThucVD2704/femto-usb-blink-example | f2adf7ed2cfff860194870b80c870f0a2c27a82b | 5e166bdee500f67142d0ee83a1a169bab57fe142 | refs/heads/master | 2021-01-18T11:04:43.068488 | 2015-04-24T04:53:26 | 2015-04-24T04:53:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,210 | h | /**
* \file
*
* \brief API driver for MMA7341L accelerometer component.
*
* Copyright (c) 2011-2014 Atmel Corporation. All rights reserved.
*
* \asf_license_start
*
* \page License
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the followin... | [
"webmaster@alexventure.com"
] | webmaster@alexventure.com |
cc67d35279b738ea1a4bf2fa387de303ca86bf85 | 3943f4014015ae49a2c6c3c7018afd1d2119a7ed | /herbie_results/large_range_around_0/laguerre_formula_-1000000000000000.0000000_1000000000000000.000000/9-18/compiled.c | 486a7948afd36ac999647bc2fcd7d596dd8b68e5 | [] | no_license | Cathy272272272/practicum | 9fa7bfcccc23d4e40af9b647d9d98f5ada37aecf | e13ab8aa5cf5c037245b677453e14b586b10736d | refs/heads/master | 2020-05-23T10:10:15.111847 | 2019-06-08T00:23:57 | 2019-06-08T00:23:57 | 186,689,468 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 29,087 | c | #include <tgmath.h>
#include <gmp.h>
#include <mpfr.h>
#include <stdio.h>
#include <stdbool.h>
char *name = "18";
double f_if(float x) {
float r10199334 = 1.0;
float r10199335 = -18.0;
float r10199336 = x;
float r10199337 = r10199335 * r10199336;
float r10199338 = r10199334 + r... | [
"cathyxu@Cathys-MacBook-Pro.local"
] | cathyxu@Cathys-MacBook-Pro.local |
790785f158ca5dd7aab2b4fdb657b9564aab5895 | 4bf6cb70c5d118df1563d42f093ed8269e340946 | /WLC02/Sources/BSW/Can/Can.h | d235d37464219154f9b27dfd768f3e529b9b6a3a | [] | no_license | flankersky/test888 | bae789644b3ce54008f456828dd0cf5e7474106f | 05d3e03cc4828b118fbc3adec2c41f97506d28b7 | refs/heads/main | 2023-01-09T19:44:05.926779 | 2020-10-09T06:02:33 | 2020-10-09T06:02:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 162,660 | h | /* Kernbauer Version: 1.16 Konfiguration: DrvCAN Erzeugungsgangnummer: 1 */
/* STARTSINGLE_OF_MULTIPLE_COMMENT */
/**********************************************************************************************************************
* COPYRIGHT
* ------------------------------------------------------... | [
"zhao@zjtechrun.com"
] | zhao@zjtechrun.com |
39ccfeeed0389490e8d3374ed01b7760c540229c | f5e07fdf01d4f33b18f435c1bc6be147cd79751d | /C_WorkSpace/S1E4/1.c | f26eb9496d1bc3776849b55e6da2cdfaa3a011e4 | [
"MIT"
] | permissive | nsleejian/CWorkSpace | 934b2d0102efa46f0eb1773f32b2daa3cee57393 | 8c227a5a1a8a121c23d7f56e35f0fa92a9e498ae | refs/heads/master | 2021-06-06T09:44:28.936199 | 2016-04-08T14:12:52 | 2016-04-08T14:12:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 39 | c | #include <stdio.h>
int main ()
{
}
| [
"cocoaleespring@gmail.com"
] | cocoaleespring@gmail.com |
b391551915ba8f3cef6bfd1db8774c84d371ab6e | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/media/i2c/extr_ov7670.c_ov7670_get_framerate_legacy.c | c822965f70b5c7b1201c48b725741b156ab970bc | [] | 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 | 960 | 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 |
3cb0a5356f4a0ab576b573145d7e13eae686cb9f | 38f33b8c5a4fdee3190492770bb1a3d2886dcb84 | /UART/UARTConfig.c | cffff1b65c1fffa26267cf8a5df7668b2231124a | [
"MIT"
] | permissive | aobotelho/MSP430_Projects | 4c734d78e61e51ed2d73898a43658d252a8872a4 | b319f3a46d9e3a1c9607a9ff3764c9eca4d29acb | refs/heads/master | 2020-05-20T18:17:20.198028 | 2017-10-24T11:39:23 | 2017-10-24T11:39:23 | 64,771,385 | 2 | 0 | null | null | null | null | WINDOWS-1252 | C | false | false | 2,964 | c | #include "UARTConfig.h"
#if defined USE_UART
void UARTInit(){
// Hold UART in Reset
UCA0CTL1 |= UCSWRST;
// TX and RX
P1SEL |= UART_RX + UART_TX;
P1SEL2 |= UART_RX + UART_TX;
//Prescalers (Prescaler = (UCA0BR0 + UCA0BR1 x 256)); see page 430 of MSP430x2xx Family User's Guide (http://www.t... | [
"aobotelho2@gmail.com"
] | aobotelho2@gmail.com |
ac3ac67f8c899925c0b474e8fd80dc47ba69d9d1 | 8c4e38d8ec762ffa090fd189c58531cd2cb56df8 | /Tema 1- Algoritmi Paraleli/homework1.h | b0cc5d013a8073cae52d396b5b09ef07c038ebd6 | [] | no_license | MariaCatalina/Algoritmi-Paraleli-si-Distribuiti | c69f67961618cd482a6214f7e59f3f14c880febf | 977fb4b5b910374df1399dd0adf309bc0402a0c1 | refs/heads/master | 2021-01-10T16:17:35.478951 | 2016-02-14T13:11:56 | 2016-02-14T13:11:56 | 51,694,889 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 342 | h | #ifndef HOMEWORK1_H
#define HOMEWORK1_H
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <omp.h>
typedef struct{
int width, height, maxval;
char *type;
unsigned char **picture;
} image;
void initialize(image *im);
void render(image *im);
void writeData(const char * fileName,... | [
"catalina@Maria.Catalina"
] | catalina@Maria.Catalina |
1cc5a4f5296edf98a7eca1ee3dd222a8d9fd74f6 | cde768f0c0ecd4304805380eaa3abe84e4cf6d3e | /src/move.c | 7103b0d35687d227dfc4e392f6d8d47c618425f4 | [
"BSD-4-Clause",
"Caldera",
"LicenseRef-scancode-unknown-license-reference",
"FSFAP"
] | permissive | paul-bailey/ed-unix-v7 | f3526b7cd29de52cccd53f41467bf53133840de7 | 452033adaf684e39cfe3c798979bcc581bd05fd3 | refs/heads/master | 2021-01-20T05:28:52.312594 | 2017-09-13T18:30:22 | 2017-09-13T18:30:22 | 101,448,699 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,401 | c | #include "ed.h"
static void
reverse(int *a1, int *a2)
{
int t;
for (;;) {
t = *--a2;
if (a2 <= a1)
return;
*a2 = *a1;
*a1++ = t;
}
}
void
move(int cflag)
{
int *adt, *ad1, *ad2;
if ((adt =... | [
"pbailey@dx4860"
] | pbailey@dx4860 |
a66205229127280e69be779b1299d8a52058f823 | 4de159aea4b1eb5a527a3011275be57c4bb8d28f | /src/deps/sdl/src/video/vita/SDL_vitagl_pvr.c | 3b7fb74772b541da8024dda92a34b98911585621 | [
"Zlib",
"MIT",
"LicenseRef-scancode-free-unknown"
] | permissive | tanis2000/binocle-c | 27691ec089a4b75acc451ef6abc4767cb06a6fdd | cd3dbacdd5cb94bfce489b9ee2f07e218c645e29 | refs/heads/master | 2023-09-04T20:39:34.331172 | 2023-08-29T13:22:12 | 2023-08-29T13:22:12 | 192,515,187 | 132 | 8 | MIT | 2023-05-09T14:39:31 | 2019-06-18T10:07:33 | C | UTF-8 | C | false | false | 3,511 | c | /*
Simple DirectMedia Layer
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | [
"noreply@github.com"
] | tanis2000.noreply@github.com |
88d16933cf7fe81b434be97b170d41affbe16f7f | 541cc38e7fb44fb28b25af0d07d9235cc44c2aac | /src/Engine/DimEngine/header.h | 4d25e1146ee09a7cc646de9a04562fb0e2833f20 | [] | no_license | nalinranjan/DimEngine | c20436aa6ba55d6b80ce4578316faa3b2d8f2c13 | 43f43c6c3300ec9eb947334895edd3837b3e2f12 | refs/heads/master | 2020-07-24T11:59:44.656310 | 2019-05-07T18:03:45 | 2019-05-07T18:03:45 | 207,917,292 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 336 | h | // header.h : include file for standard system include files,
// or project specific include files
//
#pragma once
#include "targetver.h"
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
// Windows Header Files
#include <windows.h>
// reference additional headers your progra... | [
"eric.zhangzheyu@gmail.com"
] | eric.zhangzheyu@gmail.com |
22676bd01cfb8bb452e401c6ac0be3753147cdcd | 21ee8974692521fb81ed03c1d1a338967526be2a | /cpss-ac3/cpss/cpssEnabler/mainCmd/src/cmdShell/os/uClinux/os_lxData.c | f1aba11f6101aa6b2fccc16d0e83084de44560ca | [] | no_license | naivekun/os6360_trtest | bb1fb2de94f951b190c6eefb0fe9908feab553c4 | 2c49bfd3028ee72e27b8107fbc5ab528dfc289dd | refs/heads/main | 2023-06-18T03:55:46.904657 | 2021-07-08T03:29:15 | 2021-07-08T03:29:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,222 | c | /*******************************************************************************
* (c), Copyright 2001, Marvell International Ltd. *
* THIS CODE IS A REFERENCE CODE FOR MARVELL SWITCH PRODUCTS. IT IS PROVIDED *
* "AS IS" WITH NO WARRANTIES, EXPRESSED, IMPLIED OR OTHERWISE, REGARDING ITS ... | [
"Clement.Chu@wnc.com.tw"
] | Clement.Chu@wnc.com.tw |
9a300915abbc4fa31be26e7e87de81ffab4c5e21 | 4290e12645a605b66ac3e2ed8f437b813b8768eb | /Common_3/Renderer/ResourceLoaderInternalTypes.h | 9d2ccd9105293e130ea324640e3cc22ddb58587e | [
"Apache-2.0"
] | permissive | silvrwolfboy/The-Forge | 192128994873fa8269ce821e7f60159d3fa49d0a | 584c74eafd35a3d710ee4c1b715b7791b30d5504 | refs/heads/master | 2021-02-22T20:00:31.097560 | 2020-03-06T07:03:31 | 2020-03-06T07:03:31 | 245,384,069 | 0 | 1 | Apache-2.0 | 2020-03-06T09:52:48 | 2020-03-06T09:52:47 | null | UTF-8 | C | false | false | 813 | h | #ifndef ResourceLoaderInternalTypes_h
#define ResourceLoaderInternalTypes_h
#ifdef __cplusplus
extern "C" {
#endif
// The ResourceLoader UpdateDesc and LoadDesc types store internal state at the end of the struct.
// The types for this internal state need to be defined, but we don't want them cluttering up the Resour... | [
"jenkins@conffx.com"
] | jenkins@conffx.com |
ab4bc8a3482a4929961441773f37c75fc9242915 | a8aebb400b2d298bffdf13df995c3fc5ad3a76f2 | /labs/lab06/ej1/abb.h | 22faeeff43ca387c9aca7154570b3ba704115ee5 | [] | no_license | ishiaraen/algodatosII | dabf8e1435d228230d5d7e16a6fcc1d1a6b7f6cc | aec762a6c83d97975ae6883613a7c29a4405f462 | refs/heads/main | 2023-06-17T17:49:27.041957 | 2021-07-17T16:32:59 | 2021-07-17T16:32:59 | 386,986,691 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,288 | h | #ifndef _ABB_H
#define _ABB_H
#include <stdbool.h>
typedef struct _s_abb * abb;
typedef int abb_elem;
abb abb_empty(void);
/* DESC: Creates an empty tree
*
* PRE : {true}
* tree = abb_empty();
* POS : {tree --> ABB && abb_is_empty(tree)}
*/
abb abb_add(abb tree, abb_elem e);
/* DESC: Adds element `e` to t... | [
"nehuen.rognone@mi.unc.edu.ar"
] | nehuen.rognone@mi.unc.edu.ar |
c556ba3731a90c561d2e6792cfedf95d42ffa021 | bb0f005fc5bc3ffe2bdd9f0485684db57b4cdbb5 | /il2cpp_output/mscorlib_System_Collections_Generic_Dictionary_2_gen_19.h | 0b53e6cd3e83cdcd89e36e0936d46600ddb00043 | [] | no_license | 18945661022/yun1125pm | 276b1d2c6e79f1e548d19ab55569f07b7f23283d | 37cc8db5676630e4e9cf34505352967f2b73674e | refs/heads/master | 2020-04-04T19:11:06.362644 | 2018-11-05T09:57:39 | 2018-11-05T09:57:39 | 156,195,516 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 3,022 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.Int32[]
struct Int32U5BU5D_t193;
// System.Collections.Generic.Link[]
struct LinkU5BU5D_t2356;
// Vuforia.VuforiaManagerImpl/VirtualButtonData[]
struct VirtualButtonDataU5BU... | [
"Apple@chengdedeMac-mini-10.local"
] | Apple@chengdedeMac-mini-10.local |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.