blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
333
content_id
stringlengths
40
40
detected_licenses
listlengths
0
58
license_type
stringclasses
2 values
repo_name
stringlengths
5
113
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
604 values
visit_date
timestamp[us]date
2016-08-02 21:20:34
2023-09-06 10:17:08
revision_date
timestamp[us]date
1970-01-01 00:00:00
2023-09-05 20:12:54
committer_date
timestamp[us]date
1970-01-01 00:00:00
2023-09-05 20:12:54
github_id
int64
966
664M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]date
2012-06-18 16:43:44
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-02-03 21:17:16
2023-07-07 15:57:14
gha_language
stringclasses
121 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
128
17.8k
extension
stringclasses
134 values
content
stringlengths
128
8.19k
authors
listlengths
1
1
author_id
stringlengths
1
143
d3e778ee3e85634511a5fd3bf3f1ebb443199e75
d0dc556f8b1d18ecbadef182bafd97b632dd3104
/common/esp-idf-lib/components/ads111x/ads111x.c
0919600ec7269ef5883c40d4dccf36ba36ee4fad
[ "BSD-2-Clause", "MIT" ]
permissive
PacktPublishing/Internet-of-Things-with-ESP32
da3f2c57e2bd871b134b22841fd275c51f88d487
3ada8b905e53961940511636991a839059de7cd1
refs/heads/main
2023-02-08T13:58:32.585403
2023-01-30T10:03:23
2023-01-30T10:03:23
315,618,086
114
36
null
null
null
null
UTF-8
C
false
false
8,016
c
/** * @file ads111x.c * * ESP-IDF driver for ADS1113/ADS1114/ADS1115, ADS1013/ADS1014/ADS1015 I2C ADC * * Ported from esp-open-rtos * * Copyright (C) 2016, 2018 Ruslan V. Uss <unclerus@gmail.com> * Copyright (C) 2020 Lucio Tarantino (https://github.com/dianlight) * * BSD Licensed as described in the file LICE...
[ "ozan.oner@gmail.com" ]
ozan.oner@gmail.com
9f3bb90bceaf8417f9f928e751da6e234546ee99
4d1614ba0104bb2b4528b32fa0a2a1e8caa3bfa3
/code/dpdk/app/test/test_pdump.c
ad183184cee9098fc6dd67390d5e5f6b65856139
[ "MIT", "GPL-2.0-only", "BSD-3-Clause" ]
permissive
Lossless-Virtual-Switching/Backdraft
c292c87f8d483a5dbd8d28009cb3b5e263e7fb36
4cedd1403c7c9fe5e1afc647e374173c7c5c46f0
refs/heads/master
2023-05-24T03:27:49.553264
2023-03-01T14:59:00
2023-03-01T14:59:00
455,533,889
11
4
MIT
2022-04-20T16:34:22
2022-02-04T12:09:31
C
UTF-8
C
false
false
4,815
c
/* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2018 Intel Corporation */ #include <stdio.h> #include <unistd.h> #include <stdint.h> #include <limits.h> #include <rte_ethdev_driver.h> #include <rte_pdump.h> #include "rte_eal.h" #include "rte_lcore.h" #include "rte_mempool.h" #include "rte_ring.h" #include "...
[ "sarsanaee@gmail.com" ]
sarsanaee@gmail.com
25d50ba19ce54df2cd24ac30013358530a005c46
c84462fed944505922efe37630e5da120ede84de
/components/voice_assistant/include/aia.h
dfcc1181fec2ca7833a70daab47ebfd2b2f4bf02
[ "MIT", "LicenseRef-scancode-other-permissive" ]
permissive
stone-tong/esp-va-sdk
46c52195a4532fc8d2e1dfbec5a381cdd93c0e34
d2f67dbfb127fb8d48b708612304194070cb18be
refs/heads/master
2023-08-25T03:47:35.847499
2021-10-08T07:47:47
2021-10-08T07:47:47
null
0
0
null
null
null
null
UTF-8
C
false
false
2,038
h
// Copyright 2018 Espressif Systems (Shanghai) PTE LTD // All rights reserved. #ifndef _AIA_H_ #define _AIA_H_ #include "voice_assistant.h" #include "auth_delegate.h" #include <mqtt_client.h> #include <alexa_smart_home.h> /* Once assigned by the application, these should not be freed as long as the device is working...
[ "chirag.atal@espressif.com" ]
chirag.atal@espressif.com
6a9888a8110533c69354af0403faddd51b2a49f8
306ccac7f385456cb284f932a1952279df544da4
/main.c
5f3e39ce2673dc95fac9deb1ff0a3aaa858408d3
[]
no_license
hsdhatt/rb-tree
4d5c9f8dc33ad2b023dd18db7f84d8d238ca018d
a682ff6ceef6ec9d793c37e02e0246d8e76fa9b7
refs/heads/master
2016-08-10T23:19:59.021677
2016-01-31T08:40:33
2016-01-31T08:40:33
49,702,484
0
0
null
null
null
null
UTF-8
C
false
false
1,301
c
#include "tree.h" struct tree_node *rootptr; void insert(struct tree_node **ptr, int input_val) { if (*ptr == NULL) { *ptr = (struct tree_node *)malloc((sizeof(struct tree_node))); (*ptr)->val = input_val; (*ptr)->left = NULL; (*ptr)->right = NULL; (*ptr)->height = -1; (*ptr)->color = RED; LOG("node %...
[ "09.harshdeep@gmail.com" ]
09.harshdeep@gmail.com
2aa95f124ece962d6667b63fb33b4614cc5c5f5e
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/reactos/dll/win32/usp10/extr_opentype.c_GPOS_get_value_record.c
d33d5e9d7ef555a91e3f50cdf3d42d5f811120ac
[]
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,679
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
b38cfbe692b31cc6b0005f9fc695a9b8aa93b5cb
cbd6c6a7c4e555e26c76dea6c827a3f36f8f449a
/SoftC/02/complex/complex_div.c
09c2f4b84a61a055327aad8e5a2ac71f5b8aa647
[ "MIT" ]
permissive
her0m31/Studys
8a71d4ae2552cf285d7a5e16b8a6c0f81e259106
f765310cd826356af04008a055905cade21fda4a
refs/heads/master
2020-12-24T08:46:39.155718
2016-08-17T16:48:51
2016-08-17T16:48:51
23,060,547
0
0
null
null
null
null
UTF-8
C
false
false
381
c
/* complex_div.c */ #include <stdio.h> #include "complex.h" struct complex div(struct complex x, struct complex y) { struct complex z; z.real = (x.real * y.real - x.imaginary * y.imaginary) / (x.real * x.real) + (y.imaginary * y.imaginary); z.imaginary = (x.real * y.imaginary + y.real * x.imaginary) / (x...
[ "her0m@her0ms-Air.local" ]
her0m@her0ms-Air.local
a5d16d0bdb0a64239f3691f33f69993f488e2a3f
bd1fea86d862456a2ec9f56d57f8948456d55ee6
/000/247/863/CWE78_OS_Command_Injection__wchar_t_file_execlp_64a.c
5a01812da3bbd079e6d6272c02e393a68af78702
[]
no_license
CU-0xff/juliet-cpp
d62b8485104d8a9160f29213368324c946f38274
d8586a217bc94cbcfeeec5d39b12d02e9c6045a2
refs/heads/master
2021-03-07T15:44:19.446957
2020-03-10T12:45:40
2020-03-10T12:45:40
246,275,244
0
1
null
null
null
null
UTF-8
C
false
false
3,561
c
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE78_OS_Command_Injection__wchar_t_file_execlp_64a.c Label Definition File: CWE78_OS_Command_Injection.strings.label.xml Template File: sources-sink-64a.tmpl.c */ /* * @description * CWE: 78 OS Command Injection * BadSource: file Read input from a file * GoodSource: Fi...
[ "frank@fischer.com.mt" ]
frank@fischer.com.mt
144a48d076963fdb482bc1724b2ced8c01a66316
bade93cbfc1f25160dfbe9493bfa83f853326475
/mwc/romana/relic/f/usr/include/sys/haiscsi.h
106602ae6c0478ed03c0fd62e3ea9bad217ee938
[ "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
6,948
h
/*********************************************************************** * Module: haiscsi.h * * Constants and structures used to access SCSI devices through the * SCSI Driver in a Host Adapter inspecific manner. * * Copyright (c) 1993, Christopher Sean Hilton, All rights reserved. * * Last Modified: Fri J...
[ "gspurki@gmail.com" ]
gspurki@gmail.com
f41288c4981852b82ef664c0f8020a277fed3b12
0edbcda83b7a9542f15f706573a8e21da51f6020
/private/inet/mshtml/tried/triedit/resource.h
137d94c6d92e08037125c1b06812c92c280e6e25
[]
no_license
yair-k/Win2000SRC
fe9f6f62e60e9bece135af15359bb80d3b65dc6a
fd809a81098565b33f52d0f65925159de8f4c337
refs/heads/main
2023-04-12T08:28:31.485426
2021-05-08T22:47:00
2021-05-08T22:47:00
365,623,923
1
3
null
null
null
null
UTF-8
C
false
false
2,131
h
//{{NO_DEPENDENCIES}} // Microsoft Developer Studio generated include file. // Copyright (c)1997-1999 Microsoft Corporation, All Rights Reserved // Used by triedit.rc // #define IDS_PROJNAME 100 #define IDR_TRIEDITDOCUMENT 101 #define IDR_FEEDBACKRECTBMP 102 #define IDS_HTML ...
[ "ykorokhov@pace.ca" ]
ykorokhov@pace.ca
f99a05d417f67388b33cffb87f65d36dab84e401
e4c82b7f3f0b00ef9ec41e40519ce4418243a792
/examples/drivers_bm/inc/led.h
e33309a60a1d3e87bfffb99555948afa2879e2bf
[]
no_license
sambranaivan/CIAA-Firmware
227f4b1d84fb1f9f5b048d3fc910c0f6b684d7bb
c4f688a50330d0d5ed15499c08aa5e17b75085f5
refs/heads/master
2021-01-22T23:07:23.526595
2017-06-21T20:55:36
2017-06-21T20:55:36
85,613,316
0
0
null
null
null
null
UTF-8
C
false
false
3,072
h
/* Copyright 2016, XXXXXXXXXX * All rights reserved. * * This file is part of CIAA Firmware. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright ...
[ "sambranaivan@gmail.com" ]
sambranaivan@gmail.com
4ae3d60c82ad0a184541b4426a71026ecb84d361
f79ef81e6e4e989ed14ed0283a9737f731101aab
/Unix Family/Linux.Urk/login/mailpath.c
4abf5cf49069b0457961af8181a5ee0af3cdb775
[ "MIT" ]
permissive
TheWover/Family
9d5597eda68aeee5e99de993176b6bd1366b57f1
f3ed1713c6b71823d8236b80148b60982dd906e1
refs/heads/master
2020-09-11T15:11:21.601776
2019-10-30T04:33:43
2019-10-30T04:33:43
222,106,609
3
4
MIT
2019-11-16T13:54:02
2019-11-16T13:54:01
null
UTF-8
C
false
false
2,495
c
#include "sys_defs.h" #include <stdio.h> #include <sys/param.h> #include <string.h> char *realpath(); #define _PATH_MAILDIR "/var/spool/mail" /* Macros to hide the differences between SunOS 4.x and SunOS 5.x. */ #ifdef USE_SYS_MNTTAB_H #include <sys/mnttab.h> #define _PATH_MTAB "/etc/mnttab" #define SETMNTENT(...
[ "57078196+vxunderground@users.noreply.github.com" ]
57078196+vxunderground@users.noreply.github.com
940c7c38f1a8ed5950786b52ae39a27919fc07e4
230764d82733fac64c3e0eae1ce0a4030965dc4a
/third_party/gst-plugins-bad/ext/sctp/gstsctpdec.h
845fac4d41e1a7d5e07f95d71731f5ea009ba3bd
[ "BSD-3-Clause", "LGPL-2.1-only", "LGPL-2.0-or-later", "LicenseRef-scancode-other-copyleft", "LicenseRef-scancode-warranty-disclaimer", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
isabella232/aistreams
478f6ae94189aecdfd9a9cc19742bcb4b4e20bcc
209f4385425405676a581a749bb915e257dbc1c1
refs/heads/master
2023-03-06T14:49:27.864415
2020-09-25T19:48:04
2020-09-25T19:48:04
298,772,653
0
0
Apache-2.0
2021-02-23T10:11:29
2020-09-26T08:40:34
null
UTF-8
C
false
false
2,392
h
/* * Copyright (c) 2015, Collabora Ltd. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following di...
[ "dschao@google.com" ]
dschao@google.com
cc9fbe2e0c31cb370023e9c0c0501c0a296de073
9d9aca7551e69a2538fb47d001bbdc3eea8c3f08
/src/utils/dynamic_string_utils.c
95f853af9a6edeea6703c310cd9cace33771123f
[]
no_license
hugoBuissez/42sh
d226d09b36d5ec8d70358d54baee1969d42e07ca
ad85735ce87edbcaad102b5d68f54e738b309ff6
refs/heads/master
2023-03-30T12:24:33.448736
2021-03-29T19:19:16
2021-03-29T19:19:16
337,054,088
0
0
null
null
null
null
UTF-8
C
false
false
318
c
#include <string.h> #include "dynamic_string.h" #include "dynamic_string_internals.h" size_t string_len(struct d_string *string) { return string->len; } char *string_value(struct d_string *string) { return string->buf; } char *string_value_copy(struct d_string *string) { return strdup(string->buf); }
[ "hbuissez@gmail.com" ]
hbuissez@gmail.com
1a84fd48db74e0b1d33acc91009783f1086d8965
f363fdb9445d8dec088fb02c8faae8e23570a33e
/d/mingjiao/obj/bag.c
d9ad524752f60078e1e2a34f5de2050b84bd441a
[]
no_license
MudRen/zjmud
0999a492ac0717911c047936ee2c696b3b5cb20a
c56a166380d74858d7b4f0ba2817478ccea6b83d
refs/heads/main
2023-07-24T21:02:00.246591
2021-09-07T12:50:20
2021-09-07T12:50:20
403,973,627
1
1
null
null
null
null
GB18030
C
false
false
1,051
c
// bag.c #include <ansi.h> inherit ITEM; void create() { set_name("油布包", ({ "bag", "bao" })); set_weight(200); if (clonep()) set_default_object(__FILE__); else { set("unit", "个"); set("long", "这是一个油布包裹。\n"); set("value", 500); set("material", "cloth"); } set("book_count", 0); } void init() { if (th...
[ "i@oiuv.cn" ]
i@oiuv.cn
ce3257df27c9ca159eb2b44594d23cce7b01e0f8
45a175e1a470bf15f4a2aa5b066250d6f8ec5327
/embox/src/profiler/tracing/no_trace.c
e7ebc4585e357a421dbd9651566018fd80530d77
[ "BSD-2-Clause" ]
permissive
Walkingmind/embox
8315ee532d9e0a0ccd5e566bf4feac5ffe58d683
67cc5f73466e1a4c33891b946fc8e8217ce26ade
refs/heads/master
2021-01-01T17:22:48.903024
2015-04-14T20:24:43
2015-04-14T20:24:43
35,509,406
2
0
null
null
null
null
UTF-8
C
false
false
435
c
/** * @file * @brief * * @author Anton Kozlov * @date 29.04.2013 */ #include <stddef.h> #include <profiler/tracing/trace.h> time64_t trace_block_diff(struct __trace_block *tb) { return -1; } time64_t trace_block_get_time(struct __trace_block *tb) { return -1; } int trace_point_get_value(struct __tra...
[ "drakon.mega@5c469cbc-2eb3-11df-bba7-995ec2794b1c" ]
drakon.mega@5c469cbc-2eb3-11df-bba7-995ec2794b1c
68eeeb84c8d955af76bca65e578796fde7276871
4a7d20f21763809b9a061b95d1f308055f5a3fdf
/binarisation/bin_treshold.c
052676fb3be42becbe987e51239967f5295b5c5c
[]
no_license
multun/OCRe
ecd6b1bd57de25a91d4eea75edaa706a3b6b553e
c83b0a39af5136aa34e6921df1974a0efffad081
refs/heads/master
2021-01-19T03:09:44.697167
2016-12-05T14:54:45
2016-12-05T14:54:45
67,486,305
0
0
null
null
null
null
UTF-8
C
false
false
609
c
#include <stdlib.h> #include "binarise.h" #include "../bitmap/img.h" void bw_img_treshold(unsigned char treshold, t_bw_img *img) { unsigned int width = img->width; unsigned int height = img->height; for(unsigned int x = 0; x < width; x++) for(unsigned int y = 0; y < height; y++) { unsigned int off...
[ "victor.collod@epita.fr" ]
victor.collod@epita.fr
6768b81c1820aa74ee43e72bf88812a00df5642b
e5b45ef28d128f072e5cc318371731b0fbdd4399
/DataStructure/Tree/BinaryTree/BinaryTree/LinkedQueue.c
dd4c2ddac6548ea823c1cf46c05ec72b2b660a17
[]
no_license
KianaGX/test
8e12550bef48f689d9d9abace0bd1efefe045586
15ba7dcd6cf114b6ca45a4f8442f08c202bfaff9
refs/heads/master
2022-12-08T08:00:03.152204
2020-08-29T15:42:56
2020-08-29T15:42:56
null
0
0
null
null
null
null
UTF-8
C
false
false
1,074
c
#include "BinaryTree.h" #include "LinkedQueue.h" void QueueInit(Queue* q) { q->front = q->rear = NULL; } DataType QueueFront(Queue* q) { assert(q); return q->front->val; } DataType QueueBack(Queue* q) { assert(q); return q->rear->val; } int QueueEmpty(Queue* q) { return q->front ? 0 : 1; } int QueueSize(Que...
[ "756687451@qq.com" ]
756687451@qq.com
f14c1817cd3baa4613c4c7510c4b367ba5a67976
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/media/usb/cx231xx/extr_cx231xx-i2c.c_cx231xx_i2c_mux_unregister.c
2bb4865bfe7f8ebe5de35cbfb65d2c612f2ce254
[]
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
594
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
14f2918893608dcbda814d000ec27731854b2efb
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/media/usb/gspca/extr_stk1135.c_stk1135_camera_disable.c
e22540920d879d43fd93bf2f3e8ff9b920e0cf26
[]
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,635
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
7621f686f4f137181a8477b3f7270dd9ce2e0214
20673ba95c7aae14500531d3bb909ec3a10f2553
/src/renderer.c
f8917f4913913cbba246544337a0608ee7d427e8
[]
no_license
NaviRice/renderer
514bd73791d91af8d8be057aea9986c470e0d6ca
9e138968a3b588e36da2623395495a1b17e9527f
refs/heads/master
2021-09-12T19:24:51.640404
2018-04-20T03:33:30
2018-04-20T03:33:30
110,404,707
1
0
null
2017-12-02T22:10:26
2017-11-12T04:28:52
C
UTF-8
C
false
false
2,944
c
//Sys includes //local includes #include "globaldefs.h" #include "renderer.h" //#include "glmanager.h" #include "glfwmanager.h" //init #include "glmanager.h" //init #include "cvarmanager.h" #include "matrixlib.h" #include "entitymanager.h" //init #include "contextmanager.h" #include "headclient.h" #include "navicli...
[ "roboman2444@gmail.com" ]
roboman2444@gmail.com
22d8c27df35e15fd5827d0a9e19caa737dced759
97aab27d4410969e589ae408b2724d0faa5039e2
/CPU/SRCS/kos-1.2.0/kernel/arch/dreamcast/hardware/pvr/pvr_fog_tables.h
702ee3a2648117851c2bfcf3a2078a85db2e3241
[]
no_license
FutureWang123/dreamcast-docs
82e4226cb1915f8772418373d5cb517713f858e2
58027aeb669a80aa783a6d2cdcd2d161fd50d359
refs/heads/master
2021-10-26T00:04:25.414629
2018-08-10T21:20:37
2018-08-10T21:20:37
null
0
0
null
null
null
null
UTF-8
C
false
false
7,909
h
/* Kallistios 1.2.0 pvr_fog_tables.h (C)2002 Paul Boese Portions (C)1999-2001, Brian Paul $Id: pvr_fog_tables.h,v 1.2 2002/02/17 03:43:16 axlen Exp $ */ #ifndef __PVR_FOG_TABLES_H #define __PVR_FOG_TABLES_H /* This table is used by the pvr_fog.c module to scale values for the PVR's fog table...
[ "david.koch@9online.fr" ]
david.koch@9online.fr
27e510a7b3c18aec93f737171bf71ac1ef87bf19
86e708d6eea4b2be0a6f54667dcc08dac7ec3a37
/os/lib/fork.c
ba45119a17f3c8f0dffe2d64b3a4380a5ed4032c
[]
no_license
aaandrewww/authcontrol
0566acac31043e9c39d10ca3af1ddae0100a4563
98dc3249484fdc692bcba8e788f479121f7be808
refs/heads/master
2021-01-17T13:00:37.475296
2015-08-31T00:46:49
2015-08-31T00:46:49
41,648,058
0
0
null
null
null
null
UTF-8
C
false
false
5,337
c
// implement fork from user space #include <inc/string.h> #include <inc/lib.h> // PTE_COW marks copy-on-write page table entries. // It is one of the bits explicitly allocated to user processes (PTE_AVAIL). #define PTE_COW 0x800 static bool is_mapped(uintptr_t va, pte_t *pte_store) { if ((vpd[PDX(va)] & PTE_P) && ...
[ "scott@thinkmoore.net" ]
scott@thinkmoore.net
2ad1dab2671c5ab440f9cc78e71695268655b683
05c9e83414ffd72e9d2ff51a714f0152b8ad5d5d
/src/sys/arch/amd64/compile/MYKERNEL/opt_x86emu.h
4621793b634a462d5bc879706283fd47db4071b7
[]
no_license
marwadesouky96/GSoC-NetBSD
52152a02acfcaa4bf722abf119c66187c7147c2d
5e3be60a17e3194f11264e0be0474f301d2e8e5f
refs/heads/master
2020-03-19T11:14:52.539500
2018-06-12T01:22:16
2018-06-12T01:22:16
136,442,332
0
0
null
null
null
null
UTF-8
C
false
false
248
h
#define X86EMU 1 #ifdef _LOCORE .ifndef _KERNEL_OPT_X86EMU .global _KERNEL_OPT_X86EMU .equiv _KERNEL_OPT_X86EMU,0x1 .endif #else __asm(" .ifndef _KERNEL_OPT_X86EMU\n .global _KERNEL_OPT_X86EMU\n .equiv _KERNEL_OPT_X86EMU,0x1\n .endif"); #endif
[ "root@MDesouky.my.domain" ]
root@MDesouky.my.domain
122675c9fae2064117470a518f4493c674983c00
24d856d98c85a319d53be2768ccc176a50873fa3
/linux-lts-quantal-3.5.0/net/mac80211/rc80211_minstrel_ht_debugfs.c
e788f76a1dfe5811fb81614a88fc08f139f37f00
[ "GPL-1.0-or-later", "Linux-syscall-note", "GPL-2.0-only", "BSD-2-Clause" ]
permissive
dozenow/shortcut
a4803b59c95e72a01d73bb30acaae45cf76b0367
b140082a44c58f05af3495259c1beaaa9a63560b
refs/heads/jumpstart-php
2020-06-29T11:41:05.842760
2019-03-28T17:28:56
2019-03-28T17:28:56
200,405,626
2
2
BSD-2-Clause
2019-08-03T19:45:44
2019-08-03T17:57:58
C
UTF-8
C
false
false
3,366
c
/* * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include <linux/netdevice.h> #include <linux/types.h> #include <linux...
[ "jflinn" ]
jflinn
807b71e373db16f33ff8e8e12c59211783de43bc
6f0b0136f95c42fac9889497e9529fa911efb2b0
/Software PWM/FR5994_softPWM/msp430fr599x_1.c
4b069f659fe2726bf35cd4b87bb2d1546fdb4f53
[]
no_license
RU09342/lab-4-timers-and-pwm-apranvoku
bcc1366264b202feabe37e412d3930a37967a699
c3210d3318ab4aa879bcb51594bf7bc8c28d8149
refs/heads/master
2021-05-16T04:52:21.628795
2017-10-16T07:36:19
2017-10-16T07:36:19
106,218,615
0
1
null
null
null
null
UTF-8
C
false
false
2,782
c
//****************************************************************************** // Ardit Pranvoku Collab with Thai Nghiem // Built with CCSv4 and IAR Embedded Workbench Version: 4.21 //****************************************************************************** #include <msp430.h> #include <Math.h> volatile un...
[ "pranvoku.ardit@gmail.com" ]
pranvoku.ardit@gmail.com
fbe45d6df55bb99cea29fa60b928f53b44d510b8
287230b6695941701830dd513273d516c7235ba9
/prebuilts/gcc/linux-x86/arm/gcc-linaro-6.3.1-2017.05-x86_64_arm-linux-gnueabihf/lib/gcc/arm-linux-gnueabihf/6.3.1/plugin/include/tree-data-ref.h
d5efcbb537305987e190d1fe8787812e714f70be
[]
no_license
haohlliang/rv1126
8279c08ada9e29d8973c4c5532ca4515bd021454
d8455921b05c19b47a2d7c8b682cd03e61789ee9
refs/heads/master
2023-08-10T05:56:01.779701
2021-06-27T14:30:42
2021-06-27T14:30:42
null
0
0
null
null
null
null
UTF-8
C
false
false
130
h
version https://git-lfs.github.com/spec/v1 oid sha256:28400ff222a0035ae51d7c0889d18e69d55a3c895c82b03e044201c8295bf511 size 17091
[ "geierconstantinabc@gmail.com" ]
geierconstantinabc@gmail.com
2103c96b595c45feda2791208eb255e2a5bcb97c
76a3d8485ecfe4d9ee51ffa5862946f3223bfa1a
/module/rdpComposite.h
08fd7da95dc74d144e9b0a812eae8656ee549d98
[ "MIT-open-group", "X11" ]
permissive
neutrinolabs/xorgxrdp
59ab958a60ae1b2af98bc6cd481ee36c57de8ce7
bf49ee19f8478bd37920da3ea45e2f285b4c9997
refs/heads/devel
2023-09-06T05:58:07.907521
2023-05-29T13:08:07
2023-05-29T13:08:07
24,623,762
397
128
NOASSERTION
2023-09-09T23:13:42
2014-09-30T03:55:45
C
UTF-8
C
false
false
1,295
h
/* Copyright 2005-2017 Jay Sorg Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting docu...
[ "jay.sorg@gmail.com" ]
jay.sorg@gmail.com
5a4facdc1485d9534e9a895ef9ca1e7720365ce9
d1c4f9487dd0db03b1d118ee22c0bbfcac052547
/aosp/external/libnfc-nci/halimpl/pn54x/utils/phNxpConfig.h
c6154f90a73e3ecb89be18fb2ff141f11a7e377b
[]
no_license
NXPNFCLinux/nxpnfc_android_kitkat
441499bbf2d367d581606bd3bd7a5c307b8ef1a0
a5ff49373e28faef06d70ff5e31a09b126e3a76a
refs/heads/master
2020-12-26T04:49:10.403201
2020-10-14T08:29:15
2020-10-14T08:29:15
53,134,410
4
7
null
null
null
null
UTF-8
C
false
false
3,651
h
/****************************************************************************** * * Copyright (C) 1999-2012 Broadcom Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * ...
[ "jeremy.geslin@nxp.com" ]
jeremy.geslin@nxp.com
e77c3a29079f0438c6b0f9c279e6c3cf29bc7dc1
957c488487158d509f6b1d490e56129bbc5e0645
/programs/wolfportal/src/ft_rot_pos.c
8457386ba24df45f9bd5903b0c3ea9baa177831f
[]
no_license
sclolus/Turbofish
4412d94dff5aef99e1d453413a13f5375e2d4f4d
972e470f4144b62ce90765f32666d5c3b16d68d1
refs/heads/master
2022-06-21T04:01:25.338170
2019-12-05T17:36:09
2019-12-05T17:37:28
263,923,507
9
0
null
null
null
null
UTF-8
C
false
false
1,386
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_rot_pos.c :+: :+: :+: ...
[ "bmickael@student.42.fr" ]
bmickael@student.42.fr
5062a559c3c39cc6cec097fc575e89310242f320
485741c6f00d939c2a1bc5011d01f5666325b0dd
/uspace/include/types/packet.h
ca39790009255a36926c6a6d2f8e29b546a2f944
[]
no_license
frankfanslc/ustack
f623881cb6d6327741969758fe2caedd329c68d6
7fb7296601c3f92827fa0ae8d24e41e4af71edf6
refs/heads/master
2022-02-12T12:03:59.888457
2016-10-09T22:09:22
2016-10-09T22:09:22
null
0
0
null
null
null
null
UTF-8
C
false
false
1,559
h
/* * types/packet.h * * Copyright (C) 2012-2013 Peng Jianzhang * * Author: Peng Jianzhang * Email: pengjianzhang@gmail.com * Time: 2013.2.11 * */ #ifndef _TYPES_PACKET_H #define _TYPES_PACKET_H #include "common/types.h" #include "common/list.h" #include "types/lf_queue.h" struct packet { struct list_head ...
[ "pengjianzhang@gmail.com" ]
pengjianzhang@gmail.com
a6f3c46dcbb7603eff99d0068f7e9e2e06da8c45
72c8ed81a3e997fa93559a3e00c6a0d43fdaa685
/wsfont/spleen-16x32.c
d4e8635e86d22cc72b713ea1eac9ee681f64b01d
[ "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
AVykhovanets/spleen
ff0902f434955b0d65c98b159ff77fa98ff1ab87
a356d2b16a52fa252f9135936348f02180ddd6aa
refs/heads/master
2023-08-27T01:00:37.214009
2021-10-09T19:42:41
2021-10-09T19:42:41
null
0
0
null
null
null
null
UTF-8
C
false
false
609
c
/* * Spleen 1.9.1 * Copyright (c) 2018-2021, Frederic Cambus * https://www.cambus.net/ * * Created: 2020-06-20 * Last Updated: 2020-07-08 * * Spleen is released under the BSD 2-Clause license. * See LICENSE file for details. * * SPDX-License-Identifier: BSD-2-Clause */ #include <stdio.h> #include <tim...
[ "fred@statdns.com" ]
fred@statdns.com
4f4d7acb58840aaa07fc5e3841d49c141f8c0ddb
62ee3292c00562e718adc9ced13e8ba2d44548ec
/TouchSensor/TouchSensorFirmware/src/smc_gen/Config_CMT0/Config_CMT0.h
ff1f7f268dc007257ab1103c90b65453bd451d2e
[]
no_license
tamapochi1/DigitalViolin
632b32f64f89e834346ede623141cae819744fae
a5f46f305b7ab205296587d07c080f8c38ca49e1
refs/heads/master
2020-03-27T04:38:47.322488
2019-01-19T14:51:40
2019-01-19T14:51:40
145,957,743
1
2
null
null
null
null
UTF-8
C
false
false
3,728
h
/*********************************************************************************************************************** * DISCLAIMER * This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products. * No other uses are authorized. This software is owned by Renesas Elect...
[ "koyuki-2009@live.jp" ]
koyuki-2009@live.jp
16f31992795045b633936c516c09a4ade04a8e32
c2022f6b679e53cbd566c0b7d0ef652279e75d27
/clan/2562.c
40d53e03c7818aebb31c97781426f13b572eb053
[]
no_license
ggjae/Algorithm-CS
4663589e4e4bdb79a5255634933864408b06dca2
5598e7121b1b54bdcdf2c779d68577d25cfa75e9
refs/heads/master
2023-08-22T08:09:25.718005
2021-10-22T11:43:15
2021-10-22T11:43:15
275,533,281
0
0
null
null
null
null
UTF-8
C
false
false
267
c
#include <stdio.h> int main(){ int a[9]; int max = -1; int tmp = 0; for(int i=0;i<9;i++){ scanf("%d",&a[i]); if(max < a[i]){ max = a[i]; tmp = i; } } printf("%d\n",max); printf("%d",tmp+1); }
[ "ggjae_@daum.net" ]
ggjae_@daum.net
9b6ecb50f5db82179f459a0ba2be385de0c32599
4fa979e7fe0e4a237b8ba6542d29b9304e8bb08d
/0x09-static_libraries/holberton.h
6c3302b8cc87535f84e26357c69f6e1add930422
[]
no_license
oumaymabg/holbertonschool-low_level_programming
0d6d3e2f73aef4d7e3126d7194a61f4e1f7292bb
b401c437e6319caf30e968bca9d4047835c5522a
refs/heads/master
2023-03-08T22:10:52.478970
2021-02-27T22:22:25
2021-02-27T22:22:25
271,235,619
1
0
null
null
null
null
UTF-8
C
false
false
651
h
int _putchar(char *c); int _islower(int c); int _isalpha(int c); int _abs(int n); int _isupper(int c); int _isdigit(int c); int _strlen(char *s); void _puts(char *s); char *_strcpy(char *dest, char *src); int _atoi(char *s); char *_strcat(char *dest, char *src); char *_strncat(char *dest, char *src, int n); char *_strn...
[ "oumaymabou257@gmail.com" ]
oumaymabou257@gmail.com
3131d33469d72740aeae3c2296d6758fe4b1102b
699751f70d8320173e811d46df5ee33e93485c66
/0x04-more_functions_nested_loops/9-fizz_buzz.c
cb5d7033d37a3075c291659e8dc87c0d4560daf5
[]
no_license
jenntang1/holbertonschool-low_level_programming
d32296e0c565d54447bf929dd4681af44e6173a8
ec07919d0f384cfac32ca773cf63172296c5d940
refs/heads/master
2020-07-28T04:46:50.733071
2020-04-17T15:22:40
2020-04-17T15:22:40
209,313,514
0
1
null
null
null
null
UTF-8
C
false
false
466
c
#include <stdio.h> /** * main - function to print Fizz-Buzz * * Description: The Fizz-Buzz test * Return: 0 for success. */ int main(void) { int test; for (test = 1; test <= 100; test++) { if (!(test % 15)) { printf("FizzBuzz"); } else if (!(test % 3)) { printf("Fizz"); } else if (!(test %...
[ "1039@holbertonschool.com" ]
1039@holbertonschool.com
35cb1163c97eabd367a1aaa6bbc8d8149a22dd89
22b817c31ce2a54cba4f7a8597a6867dd0414f87
/fkn/StdAfx.h
89911afd2d0f96ac5f3e288cc1207a7f456ef6d8
[ "MIT" ]
permissive
philm001/FEMM
904c72e653f89784693bf1b83aefb3b26aed4848
e091281e86ac22ed31a3bfc7d854ff42527ffdc7
refs/heads/master
2020-03-14T23:56:28.511905
2018-05-02T13:41:10
2018-05-02T13:41:10
131,856,027
0
0
null
2018-05-02T13:38:43
2018-05-02T13:38:42
null
UTF-8
C
false
false
575
h
// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers #define _CRT_SECURE_NO_WARNINGS #include <afxwin.h> // MFC core an...
[ "=phillipmobley2@gmail.com" ]
=phillipmobley2@gmail.com
3dad866f15ee53c10707d0dd148e86fa5d9bf691
59dd61ebf101f8f037018d026231301ead18aa32
/Code/Rockstar Games/File Format/Raw/IMG/CIMGFormat_Version2_Header1.h
dbef2ea840fa369a223ff407e86e8a92dfd35289
[]
no_license
X-Seti/KGM
d4e6900d590bc22c9be90e6a7129699a1119902c
edc034930f1dfbb61027992f9347ef5f0bdb0cb4
refs/heads/master
2020-12-30T19:36:52.838360
2017-07-11T16:45:43
2017-07-11T16:45:43
60,021,522
0
0
null
2016-05-30T15:46:12
2016-05-30T15:46:12
null
UTF-8
C
false
false
266
h
#ifndef CIMGFormat_Version2_Header1_H #define CIMGFormat_Version2_Header1_H #include "Types.h" #include "Namespace.h" #pragma pack(push, 1) struct RG::CIMGFormat_Version2_Header1 { uint8 m_ucMagicNumber[4]; uint32 m_uiEntryCount; }; #pragma pack(pop) #endif
[ "mexuk@hotmail.co.uk" ]
mexuk@hotmail.co.uk
6493ae047bf03a9665bce64b2a10116f1f33eff7
83214753e9183327e98af0e6768e9be5385e5282
/kungfu/class/qingcheng/npc/luo.c
7ed83a7108971c0449e6ff6ef69fd81107abb28f
[]
no_license
MudRen/hymud
f5b3bb0e0232f23a48cb5f1db2e34f08be99614e
b9433df6cf48e936b07252b15b60806ff55bb2f3
refs/heads/main
2023-04-04T22:44:23.880558
2021-04-07T15:45:16
2021-04-07T15:45:16
318,484,633
1
5
null
null
null
null
GB18030
C
false
false
1,251
c
// luo.c inherit NPC; //inherit F_SKILL; #include <ansi.h> void create() { set_name("罗人杰", ({ "luo renjie", "luo", "renjie" })); set("gender", "男性"); set("nickname", HIC"青城四秀"NOR); set("age", 25); set("long", "他就是「英雄豪杰,青城四秀」之一,武功也远高同门。\n"); set("combat_exp", 80000); set("shen_type", -1); set_skill("sword", ...
[ "i@oiuv.cn" ]
i@oiuv.cn
d48157e2a0992de1595aac5218a1713d5bf762fd
9afdd0184d38855bbede2fe396762b9faf264510
/src/itoa.c
f30389550df31482af27a93d34908494c15bbbe5
[ "BSD-3-Clause" ]
permissive
pabigot/embtextf
a45d23a6480401e616b9e5f438d829c897a991d0
a114a91bb4a82001c6b6b3a03facb78b4e980a62
refs/heads/master
2021-01-01T16:25:27.150996
2015-02-09T03:52:26
2015-02-09T03:52:26
8,961,773
3
0
null
null
null
null
UTF-8
C
false
false
128
c
#include <embtextf/xtoa.h> #define INT_T int #define STOA embtextf_itoa #define UTOA embtextf_utoa #include "embtextf/xtoa.inc"
[ "pab@pabigot.com" ]
pab@pabigot.com
47641523da5c5471801de469cdf2b0b1d43f8458
c512a52861f552c1b1935a0ca94cc4fce41ecae9
/SystemCall/syscall.c
dd10880e23253f60e1d4abd3ea7970affb92b463
[]
no_license
KenanRico/crefs
1bb97c5756cd50bbc8b5e213640a9394bfac0dca
e53b204c5c1f8ed59af51d71941a1a70cb6b052e
refs/heads/master
2020-04-14T00:56:16.302566
2019-10-20T14:24:42
2019-10-20T14:24:42
163,546,500
0
0
null
null
null
null
UTF-8
C
false
false
7,624
c
#include <types.h> #include <kern/errno.h> #include <lib.h> #include <machine/pcb.h> #include <machine/spl.h> #include <machine/trapframe.h> #include <kern/callno.h> #include <syscall.h> #include <thread.h> #include "addrspace.h" #include "vfs.h" /* * System call handler. * * A pointer to the trapframe created du...
[ "kenan.hu@mail.utoronto.ca" ]
kenan.hu@mail.utoronto.ca
918d0693a28fe0a5bd35da58378a01ea16b3bbae
66862c422fda8b0de8c4a6f9d24eced028805283
/cmake-3.17.5/Tests/Plugin/src/example_mod_1.c
2b740b8db3491b01cd2bdbace8339750a583f633
[ "BSD-3-Clause", "MIT" ]
permissive
zhh2005757/slambook2_in_Docker
57ed4af958b730e6f767cd202717e28144107cdb
f0e71327d196cdad3b3c10d96eacdf95240d528b
refs/heads/main
2023-09-01T03:26:37.542232
2021-10-27T11:45:47
2021-10-27T11:45:47
416,666,234
17
6
MIT
2021-10-13T09:51:00
2021-10-13T09:12:15
null
UTF-8
C
false
false
378
c
#include <example.h> #include <stdio.h> #if defined(_WIN32) # define MODULE_EXPORT __declspec(dllexport) #else # define MODULE_EXPORT #endif #ifdef __WATCOMC__ # define MODULE_CCONV __cdecl #else # define MODULE_CCONV #endif MODULE_EXPORT int MODULE_CCONV example_mod_1_function(int n) { int result = example_ex...
[ "594353397@qq.com" ]
594353397@qq.com
80d8e1d682f6fbfeb76707fbf1d463205426c9a5
f38480d2880b57a0af7113fef89b58c339247caa
/Sources/fnet_stack/fnet.h
246175d18d3dc1b838e110355efe46e4a1174d7d
[]
no_license
SoFiHa/twrk60_fnet_test
4aac2d1867bd3846064b9d86b077f1232b490909
f836675189bf4c1d713f52e573d6d9f633312b98
refs/heads/master
2021-01-20T20:21:49.612846
2016-07-26T07:34:00
2016-07-26T07:34:00
64,200,557
0
0
null
null
null
null
UTF-8
C
false
false
3,105
h
/************************************************************************** * * Copyright 2011-2016 by Andrey Butok. FNET Community. * Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc. * *************************************************************************** * * Licensed under the Apache License, ...
[ "s.kolberg@sofiha.de" ]
s.kolberg@sofiha.de
f698464e63659abfe0ba14579f2d706f6b711dc3
37c593b4c9b42d38ebfcac8d7160282c43fdb324
/model/Scade/System/TracksideDynamicModel/TestTracks/UtrechtAmsterdam_oETCS/Simulation/TestP057_Internal_Tests_inputs.c
cf822e6a1ff7233454d1ab8242aef2275a930d3e
[]
no_license
stefan-karg/modeling
d4211778a2e7f2d4948ea38442096edb0f317051
c0855d85430e5d8313c04a9b8918cd3d596e48ec
refs/heads/master
2021-01-16T19:56:51.201532
2015-08-26T13:55:57
2015-08-26T13:55:57
26,961,581
0
0
null
null
null
null
UTF-8
C
false
false
583
c
/* $*************** KCG Version 6.1.3 (build i6) **************** ** Command: s2c613 -config C:/GITHUB/modeling/model/Scade/System/TracksideDynamicModel/TestTracks/UtrechtAmsterdam_oETCS/Simulation\kcg_s2c_config.txt ** Generation date: 2015-08-20T16:18:38 ************************************************************...
[ "j.gaertner@railergy.com" ]
j.gaertner@railergy.com
fe9e8e6f19e9ed346657d81038066b5a7bb9898d
28d0f8c01599f8f6c711bdde0b59f9c2cd221203
/sys/external/bsd/drm2/dist/drm/amd/display/dc/gpio/dcn21/hw_factory_dcn21.h
e19085a2addba44cce07c732db2abede44022561
[]
no_license
NetBSD/src
1a9cbc22ed778be638b37869ed4fb5c8dd616166
23ee83f7c0aea0777bd89d8ebd7f0cde9880d13c
refs/heads/trunk
2023-08-31T13:24:58.105962
2023-08-27T15:50:47
2023-08-27T15:50:47
88,439,547
656
348
null
2023-07-20T20:07:24
2017-04-16T20:03:43
null
UTF-8
C
false
false
1,464
h
/* $NetBSD: hw_factory_dcn21.h,v 1.2 2021/12/18 23:45:05 riastradh Exp $ */ /* * Copyright 2018 Advanced Micro Devices, Inc. * * 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 re...
[ "riastradh@NetBSD.org" ]
riastradh@NetBSD.org
2e7ef46c39adb52c71a7c85c9f7b72076e1a09b5
76f7459a09acb9be2d52407132f5ff8955627da2
/frame/compat/attic/bla_rot.c
5c97d3961166ac336897f4aa485a475359335487
[ "BSD-3-Clause" ]
permissive
flame/blis
448bc0ad139b726188129c5627c304274b41c3c1
6dcf7666eff14348e82fbc2750be4b199321e1b9
refs/heads/master
2023-09-01T14:56:11.920485
2023-08-27T19:18:57
2023-08-27T19:18:57
16,143,904
1,696
361
NOASSERTION
2023-08-27T19:18:58
2014-01-22T15:58:24
C
UTF-8
C
false
false
2,725
c
/* BLIS An object-based framework for developing high-performance BLAS-like libraries. Copyright (C) 2014, The University of Texas at Austin Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redist...
[ "field@cs.utexas.edu" ]
field@cs.utexas.edu
b2a780459176982e2b7f2fb94c72a329e6a99638
7a288556ef88974e6877472740fd76e1014fe5a7
/thirdparty/freertos/demo/oled1_event_groups_xpro_example/samd20_xplained_pro/iar/asf.h
f0ad2bce9c79856f3fab7d73554c62430a964ba0
[]
no_license
Realtime-7/asf
0452a55c62b869da48a771811dc9157d352c6470
2062737bc4a5f1eada3d43b2987c365b8b8c1881
refs/heads/master
2021-01-14T10:26:32.948063
2014-11-25T16:19:51
2014-11-25T16:19:51
null
0
0
null
null
null
null
UTF-8
C
false
false
3,839
h
/** * \file * * \brief Autogenerated API include file for the Atmel Software Framework (ASF) * * Copyright (c) 2012 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 t...
[ "it.daniher@gmail.com" ]
it.daniher@gmail.com
ce832fe55a21cdc24b2988b3974b2e6e96a4e77e
0725729da64cd6fa2202b38b642ea3d68a858350
/src/wsnos/platform/WSN-JH02-ZD/driver/spi.h
3e585607ae4dc736d41a2d1fdb1d29d004b4334f
[]
no_license
wjf3310105/can_send_recv
b69d731c5fb102b5ab708475965222b6bdf2cf54
93fd70b5498a9583a81fe2e08c035bd1ee7201f8
refs/heads/master
2021-06-30T07:28:16.219221
2017-09-20T06:32:27
2017-09-20T06:32:27
104,175,227
1
1
null
null
null
null
UTF-8
C
false
false
1,998
h
/** * @brief : this * @file : spi.h * @version : v0.0.1 * @author : gang.cheng * @date : 2017-04-24 * change logs : * Date Version Author Note * 2017-04-24 v0.0.1 gang.cheng first version */ #ifndef __SPI_H__ #define __SPI_H__ #include "common/lib/data_type_...
[ "wangjifang@wsn.cn" ]
wangjifang@wsn.cn
0f2532147727eca8cb52684aef4e87659227ce5d
d1dd4b53ae028b086ebc5497371e98fd2b9b5dab
/ds/so05.c
baf087dc479bc0172d625f2a108b7c0afa54daac
[]
no_license
lioren/practice
b736760344d56b766b959a598bee281882e8230e
d9545a88b60479fc2c9970318d3149c0f91d40f7
refs/heads/master
2021-01-20T19:18:50.308294
2016-08-09T07:58:09
2016-08-09T07:58:09
65,091,173
0
0
null
null
null
null
UTF-8
C
false
false
566
c
#include<stdio.h> #include<stdlib.h> #include<string.h> main() { int a,b,i,j,k; scanf("%d",&a); while(a>0){ a--; scanf("%d",&b); int c[b]; int d[b]; int e[2*b]; for(i=0;i<b;i++) scanf("%d",&c[i]); for(i=0;i<b;i++) scanf("%d",&d[i]); ...
[ "rock881200@gmail.com" ]
rock881200@gmail.com
b7d35f6d3090f68f108a0f610bd200072292e8c2
2c9e0541ed8a22bcdc81ae2f9610a118f62c4c4d
/harmony/tests/vts/vm/src/test/vm/jni/object_methods/CallIntMethodVTest/CallIntMethodVTest.c
f1ba963a4ec143e6b362a93dbfbda01f0df195cc
[ "Apache-2.0", "LicenseRef-scancode-generic-cla" ]
permissive
JetBrains/jdk8u_tests
774de7dffd513fd61458b4f7c26edd7924c7f1a5
263c74f1842954bae0b34ec3703ad35668b3ffa2
refs/heads/master
2023-08-07T17:57:58.511814
2017-03-20T08:13:25
2017-03-20T08:16:11
70,048,797
11
9
null
null
null
null
UTF-8
C
false
false
5,415
c
/* Copyright 2005-2006 The Apache Software Foundation or its licensors, as applicable Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2...
[ "vitaly.provodin@jetbrains.com" ]
vitaly.provodin@jetbrains.com
4ed576c7d1cd1428b3daa9fe5946d12b2252c895
c94fae6bc7779ce06e05b60a0753e82430f830b8
/MFC图形绘制/一般函数绘图/Resource.h
1dd0c4d202fe9c143eab9827157b07c67eeae25a
[]
no_license
MrsZ/MFC_VS2012
f4bbfc56f2b89c4c99c2ddc55d77e4138d3db4d0
bc623f1d13cf2fa0eb18b4f2b4f20cb5a762ad96
refs/heads/master
2021-05-29T06:00:47.703364
2015-08-19T13:16:52
2015-08-19T13:16:52
110,326,425
0
1
null
2017-11-11T07:19:09
2017-11-11T07:19:09
null
GB18030
C
false
false
501
h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by 一般函数绘图.rc // #define IDD_ABOUTBOX 100 #define IDP_OLE_INIT_FAILED 100 #define IDR_MAINFRAME 128 #define IDR_MyTYPE 130 // 新对象的下一组默认值 // #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS #define _APS_NEXT_RE...
[ "lixuat2014@gmail.com" ]
lixuat2014@gmail.com
1f95d842703fc8dcafca2b1cd679c1359c84b97c
c7377c3dec984c45e43b3138bd94e5e0abc1f5a4
/includes/components/ty_gpio_base_test.h
e0017fb4e1be50a4ae673f9a8da503181bcaf6b5
[]
no_license
wwpcwzf/TuyaBTSigSDK_Reengineering
6117dce2ea4a41e4052ebdd2695a99e9438c2412
5d56b21019e2dc93c56d6521d9e3e5419492f9d5
refs/heads/master
2023-06-03T03:16:23.541895
2021-06-23T08:07:06
2021-06-23T08:07:06
332,637,793
0
0
null
null
null
null
UTF-8
C
false
false
764
h
/************************************************************************* > File Name: ty_gpio_base_test.h > Author: > Mail: > Created Time: Tue 26 Mar 2019 15:11:13 CST ************************************************************************/ #ifndef _TY_GPIO_BASE_TEST_H #define _TY_GPIO_BASE_TEST_H #include...
[ "wwpcwzf@163.com" ]
wwpcwzf@163.com
e738525a2cfc57654b86b3b957775cb173528e99
2911910bbd05a77ba23c83e6a58e942b7aeccf05
/1-nbiot-liteos-oceanconnect/miniprojects/LiteOS_ThunderSoft_STM32FL476VETx/LiteOS_Kernel/base/include/los_fs.h
16025774d01f16aba1eb89df57ff260425d48b73
[ "BSD-3-Clause", "MIT" ]
permissive
zhangmeiRZ/iot-codelabs
20f85501145852a37fbb78a43e448c678804e04a
36b7b4b3d35949e0223bf4e4d92d7995fcc832c9
refs/heads/master
2020-04-09T02:47:09.391611
2018-01-08T15:22:03
2018-01-08T15:22:03
null
0
0
null
null
null
null
UTF-8
C
false
false
3,258
h
#ifndef __LOS_FS_H #define __LOS_FS_H /* Includes ------------------------------------------------------------------*/ #include <stddef.h> #include "stdint.h" #include "string.h" #define LOS_FS_READ 0x01 #define LOS_FS_OPEN_EXISTING 0x00 #define LOS_FS_WRITE ...
[ "softbaddog@gmail.com" ]
softbaddog@gmail.com
6eeb241bcacaad231a9f817da29367f9a8926f7f
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/sound/pci/nm256/extr_nm256.c_snd_nm256_writel.c
681b50c7f8ff86667793710309241206b7ce35a7
[]
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
664
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
45ae5fcebf09a6a1a934abe06730364aaf5dc043
f3b85ae8251c0d32b0b13f5f58896049cdc0f456
/sys/dietlibc/include/signal.h
670b2471fa51a71acf7f933923d6e31f5da39dca
[]
no_license
walafc0/almos-mk
9f8e1540f48bdfee08dd82336687a6555e7dd730
885636fce42faa73f7f9218124d1a40ce2a61907
refs/heads/master
2020-12-30T14:56:07.781381
2015-08-18T15:44:22
2015-08-18T15:44:22
40,980,913
1
0
null
null
null
null
UTF-8
C
false
false
3,690
h
#ifndef _SIGNAL_H #define _SIGNAL_H #include <stdint.h> #include <sys/types.h> /* START COPY FROM KERNEL */ #define SIG_DEFAULT 0L #define SIG_IGNORE 1L #define SIG_ERROR -1L #define SIGHUP 1 /* hangup */ #define SIGINT 2 /* interrupt */ #define SIGQUIT 3 /* quit */ #define SI...
[ "devel@walafc0.org" ]
devel@walafc0.org
62b635934b4cb221806605048b1c31dd7c5a70c6
085d238ad8c986c3bd3032a96a8c936f12419b6f
/C/ClassWork/SecondProgram/main.c
ca49f6a180bac377ffb8c46cabf8b0cfb0c6e5c0
[]
no_license
andrewtroyan/troyandz
26b7340828dc733e8d270b5650ee3aee734a5a98
6b0759d88628d16e92a81111fc1ad2ddff59f0d2
refs/heads/master
2021-01-17T16:05:42.335137
2015-05-21T08:58:28
2015-05-21T08:58:28
27,066,746
0
0
null
null
null
null
UTF-8
C
false
false
132
c
#include <stdio.h> #include <stdlib.h> int main() { int a; scanf("%d", &a); printf("2*%d=%d", a, 2*a); return 0; }
[ "andandrew1333@gmail.com" ]
andandrew1333@gmail.com
e400aa3ebaa3710f32c32c0530c851c4ffa6906b
dd71a0718b058377d83d46ca1ef09bb4a311aa6d
/src/nwpw/nwpwlib/pseudopotential/paw_atom/paw_kinetic_energy.c
b74c60daa82d365a00a4ad769c1b1e30913e3812
[ "ECL-2.0" ]
permissive
wadejong/NWChem-Json
fad5c12663311b9f24ad8e940f3977bd1b6ae335
b33e56edc54b95b003cf8c7a444febd90ce335ac
refs/heads/master
2021-01-10T01:31:59.201471
2017-08-16T01:36:27
2017-08-16T01:36:27
45,052,326
2
2
null
2017-08-14T17:19:21
2015-10-27T15:59:03
Fortran
UTF-8
C
false
false
1,006
c
/* $Id: paw_kinetic_energy.c 19707 2010-10-29 17:59:36Z d3y133 $ */ #include <stdio.h> #include <math.h> #include <stdlib.h> #include "paw_loggrid.h" double paw_get_kinetic_energy(int num_states, int *l, double *fill, double **psi, double **psi_prime) { int i; int k; int Ngrid; doubl...
[ "wadejong@lbl.gov" ]
wadejong@lbl.gov
2b42ca9fa4377e1e27dbf9e601275c870de4aad5
a9381494ca0b5769a3dc4d9851317aa1db96b310
/kernel/tasking/Launchpad.c
0a3fbe9af0fb459b2414c661f4351435ea23685d
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ANSUUVIOUS/skift
0bacfd1ecedb5eb1b802c9c550d091005fa707e6
42c1f50ba2ea67b7576136aad200c0a799dfc3f3
refs/heads/master
2022-08-07T10:24:26.323153
2020-05-26T16:30:09
2020-05-26T16:30:09
null
0
0
null
null
null
null
UTF-8
C
false
false
3,847
c
#include <libfile/elf.h> #include <libsystem/Assert.h> #include <libsystem/CString.h> #include "kernel/tasking.h" Result task_launch_load_elf(Task *parent_task, Task *child_task, Stream *elf_file, elf_program_t *program_header) { if (program_header->vaddr <= 0x100000) { logger_error("ELF program no i...
[ "nicolas.van.bossuyt@gmail.com" ]
nicolas.van.bossuyt@gmail.com
c1352170ae9d3f379147f3e606a10e3bd5d6b941
de4620a726a0e2b4391f51ced025fb7ec1f8f85f
/3_sem/lab_09/lab_09_1/mystring.c
c7b1ec38cff090a7b12a3a230f1f2461073821c5
[]
no_license
Winterpuma/bmstu_C
5b6c3cddaa53370580831b2e80c79b80e38b6994
5b37d836f14ef814dba34e027210dda48a19378d
refs/heads/master
2020-03-21T11:02:04.147940
2019-01-24T22:18:52
2019-01-24T22:18:52
138,485,423
18
0
null
null
null
null
UTF-8
C
false
false
399
c
#include <string.h> /** My realisation of strrchr @param str [in] @param ch [in] - char to find @return index of last ch in str or null */ char *my_strrchr(const char *str, int ch) { char *last_found = 0; while (*str) { if (*str == ch) last_found = (char *)str; str++; } ...
[ "32524078+Winterpuma@users.noreply.github.com" ]
32524078+Winterpuma@users.noreply.github.com
2a2b0421c84147fa9b840f8f21313eee5e543028
e0548caf7bd8153f8d991b7d7c1bed487402f0bc
/semestr-5/Algorytmy i struktury danych 1/PPR/programy-z-cwiczen/2018-wiosna/dzienne/C05/03_Cz_10_15-P05/Prg_0013.c
d3a84699999135b9609977bccdd90221037a9cce
[]
no_license
Ch3shireDev/WIT-Zajecia
58d9ca03617ba07bd25ce439aeeca79533f0bcb6
3cd4f7dea6abdf7126c44a1d856ca5b6002813ca
refs/heads/master
2023-09-01T11:32:12.636305
2023-08-28T16:48:03
2023-08-28T16:48:03
224,985,239
19
24
null
2023-07-02T20:54:18
2019-11-30T08:57:27
C
UTF-8
C
false
false
693
c
#include <stdio.h> #include <stdlib.h> int main(){ int * myT; int sizeT; int i; /** 2, 3, 4 size ?= 3 T[0] ?= 5 T[1] ?= 6 T[2] ?= 1 **************** T[0] = 5 T[1] = 6 T[2] = 1 */ printf("size ?="); ...
[ "thesmilingcatofcheshire@gmail.com" ]
thesmilingcatofcheshire@gmail.com
4ee4721efb44d27e68c95233542051ebc67086c7
fa2e34373e8f1f4261cd4d4991b738ec1fd06ad5
/C Programming/DS_Day5_sol/BubbleSort/BubbleSort.c
3fdc95d3695d512cce8b2a8cb2584d0442d354df
[]
no_license
THLEE-KR/C_Programming_2019
84ba05e3a9c69c11d58f52c39d0cfb3bf9b431f7
323449f95138baf09e1e49bd314863caee78d57b
refs/heads/master
2020-05-16T21:52:54.239478
2019-04-25T06:51:39
2019-04-25T06:51:39
183,320,986
0
0
null
null
null
null
UHC
C
false
false
899
c
#include <stdio.h> #include <time.h> /* time() */ #include <stdlib.h> /* rand(), srand() */ #include "BubbleSort.h" void initArray(int *ary, int n) { int i; for(i=0; i<n; ++i) { ary[i] = rand() % 20 + 1; } } void printArray(int *ary, int n) { int i; printf("배열 내용 : "); for(i=0; i<n; ++i) { printf("%4d", a...
[ "taehui0118@gmail.com" ]
taehui0118@gmail.com
f71439e5076e467c58e189b3016436d1eeb13fdb
052b2b2f37b679547a62153b98157a399faeac54
/0x12-more_singly_linked_lists/7-get_nodeint.c
7b560e4838a2816ca92b57e41785018dbd3a2179
[]
no_license
seleniadelgado/holbertonschool-low_level_programming
2ca76c53a76870347d21f6ba81f3ceb61570f1c5
3cc0c372bc0b93ff691170aea106170866ced8e8
refs/heads/master
2020-03-28T14:58:28.015754
2019-04-19T00:27:18
2019-04-19T00:27:18
148,542,057
0
0
null
null
null
null
UTF-8
C
false
false
477
c
#include "lists.h" #include <stdlib.h> #include <stdio.h> /** * get_nodeint_at_index - function that returns the nth node of a listint_t * linked list. * @head: head of the list. * @index: index of the node. * Return: temp. */ listint_t *get_nodeint_at_index(listint_t *head, unsigned int index) { listint_t *temp...
[ "angiedelgado08@gmail.com" ]
angiedelgado08@gmail.com
13e419aeb7ddbae07a8bf56fd3cc0f20a8dd5173
1fabbdfd1ca9ea1b6808893e12bd907eb74de414
/xcode/Classes/Native/mscorlib_System_Collections_Generic_Comparer_1_gen_216.h
eefb5518122044f137a8343a05c6ee9af7d968dd
[]
no_license
Klanly/TutorialPackageClient
6f889e96c40ab13c97d107708ae8f3c71a484301
b9d61ba2f287c491c9565b432f852980ec3fee28
refs/heads/master
2020-12-03T01:42:35.256114
2016-11-01T02:40:21
2016-11-01T02:40:21
null
0
0
null
null
null
null
UTF-8
C
false
false
460
h
#pragma once #include <stdint.h> // System.Collections.Generic.Comparer`1<EventDelegate> struct Comparer_1_t16729; // System.Object #include "mscorlib_System_Object.h" // System.Collections.Generic.Comparer`1<EventDelegate> struct Comparer_1_t16729 : public Object_t { }; struct Comparer_1_t16729_StaticFields{ // Sys...
[ "bu213200@gmail.com" ]
bu213200@gmail.com
a260b8c894be5a09a331abef9834472f873dde13
6f37f529bae8bbcc99244468477f14e9f96ff95c
/wxWidgets-2.8.12/contrib/include/wx/gizmos/statpict.h
63a93162427db38db36671014efc673bc4f8acb3
[]
no_license
darknebuli/darknebuli-RM-graph
13326ddbc9a210605926f7ad4b70672a48b1b2f2
bf169c01f787fdd144e19fae6732a5b58fdbdafd
refs/heads/master
2020-05-16T23:40:56.853727
2012-04-30T22:14:24
2012-04-30T22:14:24
null
0
0
null
null
null
null
UTF-8
C
false
false
4,400
h
U2FsdGVkX19fTms3OENxUoetnOKy1AyJ49jWWmkNc76HrZzistQMiePY1lppDXO+ h62c4rLUDInj2NZaaQ1zvoetnOKy1AyJ49jWWmkNc758g4KpHaB8LwCS1iqVEAa/ Hm5QCwo6MZ/eqi24hkMjqT8n795o+LjO96wsYRCgGCK/H9eB6Qcfvl/3i5bc1Q74 IBVF49f/KCa2wMsUWXEVHBbooUCkMZf9xi4UygPAhG8IqWx9FWgly1MY1MmWQmw1 icpteBeH4WMdDJUQbhb4U48T5rCD8iOIuO7pKiRLb9EnPpUXXKA8/Yoa04Sq...
[ "charles@rhizometric.com" ]
charles@rhizometric.com
63760b7ad999d39a66955a5ecc04865f088300a6
110b235080393481d4c8d2e0bf47ceafe0402be1
/libft/ft_memchr.c
91ba20460ad94dc3c460603adb9dcb4d0ca88b55
[]
no_license
dkarthus/myshell
e66244bf29e3fe7dc185aaf500bf941c89ca64db
fde48de048c7d8ae8eff43fc73bf71ff36e9cb1e
refs/heads/main
2023-07-18T10:02:10.237533
2021-09-02T18:46:13
2021-09-02T18:46:13
388,801,758
0
0
null
2021-08-11T11:37:10
2021-07-23T12:56:20
C
UTF-8
C
false
false
1,138
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memchr.c :+: :+: :+: ...
[ "dkarthus@student.21-school.ru" ]
dkarthus@student.21-school.ru
2b0e3c1c22a932aa3eebb4554898a995572ed12d
6fe1d7b5fedd758032da59557ac63bcc8ece5573
/Info-001/wolf3d/libft/srcs/ft_strdup.c
929ae117e1f0b7375fb6be35ad6c6524ea455d9a
[]
no_license
atipex/Projets
21d1759ff7877fd91cdd3247ba782dd4c19d7d68
fa105ff869f273799ea7554951a9951e79b1b547
refs/heads/master
2021-01-02T09:02:29.606143
2014-07-07T16:09:42
2014-07-07T16:09:42
null
0
0
null
null
null
null
UTF-8
C
false
false
1,186
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strdup.c :+: :+: :+: ...
[ "wandre@student.42.fr" ]
wandre@student.42.fr
b58376cc411abaef6ce5318e942f32bb030413d5
da1bb34fdb8d93e8e909010d50b701e023a983f2
/petsc/convect/convect.c
f230952989eab9ad3a6161a6436b278272b18f35
[]
no_license
zzyatlantise/cfdlab
cbb795c48ac3a0751179d561c3e7f2e44dd810d6
db2cffd3d3ac4b447e1f83ca15399f8ce9fac768
refs/heads/master
2021-01-23T02:16:32.599910
2016-12-28T06:21:22
2016-12-28T06:21:22
null
0
0
null
null
null
null
UTF-8
C
false
false
6,446
c
static char help[] = "Solves u_t + u_x = 0.\n\n"; #include <petscsys.h> #include <petscdm.h> #include <petscdmda.h> #include <petscvec.h> const double ark[] = {0.0, 3.0/4.0, 1.0/3.0}; const double xmin = -1.0; const double xmax = +1.0; double initcond(double x) { if(x >= -0.8 && x <= -0.6) return exp(-log(2...
[ "cpraveen@gmail.com" ]
cpraveen@gmail.com
89357b77b41057afe9cf56bb565d39d5c55e1388
7413c4758b71d0cfe42dc00873036b1fc8cb3a1a
/mtcp/src/include/tcp_ring_buffer.h
70727e4c471bb239913250b3e3e8f80444846ae3
[ "BSD-3-Clause" ]
permissive
yoannd/mtcp
c310f689bf2b2bee62832afbf2f1c234ddc7a8ae
19df23d1c4f7c7851be9f1dfe5b86dc13928bd38
refs/heads/master
2021-01-21T01:43:31.383133
2016-04-27T14:56:48
2016-04-27T14:57:57
42,746,995
4
0
null
2015-09-18T21:05:36
2015-09-18T21:05:35
null
UTF-8
C
false
false
2,694
h
/* * 2010.12.10 Shinae Woo * Ring buffer structure for managing dynamically allocating ring buffer * * put data to the tail * get/pop/remove data from the head * * always garantee physically continuous ready in-memory data from data_offset to the data_offset+len * automatically increase total buffer size wh...
[ "notav@ndsl.kaist.edu" ]
notav@ndsl.kaist.edu
ace6c65f926942c046672f2bc6bc3371b6d899b5
3748cf9cb8b6944380491f9022ae0d4e90d174ca
/swa.c
885676c0d1922eaa833a2df099eab4b891f53caf
[]
no_license
rajma996/cprograms
b979600024f7a508299f5641c48d855afa2a6c63
7b59d93d12f6fafc3467bb6ff6f0c4292bc3c380
refs/heads/master
2020-03-27T19:01:15.371603
2014-11-24T17:53:21
2014-11-24T17:53:21
null
0
0
null
null
null
null
UTF-8
C
false
false
198
c
#include<stdio.h> void swap(int *p,int *q){ int k; k=*p; *p=*q; *q=k; } int main(){ int n,m; scanf("%d %d",&n,&m); int *p,*q; p=&n; q=&m; swap(p,q); printf("n=%d m=%d",n,m); return 0; }
[ "user@localhost.localdomain" ]
user@localhost.localdomain
379d1f78ee19974e8d92b004138d5f730717ffdb
ce6dc33bfee278cd96302a1a22a3b41df281fb87
/marathon/race02/src/mx_resultPrinting.c
70aa0664128ae6910f7305910d0d8ee66a2bb739
[]
no_license
EricGolovin/Marathon-C
2c18f1b81619fd862e3e6ec4450397e3917049b4
b64fcd9643f85aaca2accc6b07e5e441b3e0e2ec
refs/heads/master
2020-09-11T23:11:15.611418
2020-02-04T23:52:34
2020-02-04T23:52:34
222,221,302
2
0
null
null
null
null
UTF-8
C
false
false
271
c
#include "../inc/header.h" void mx_resultPrinting(int val1, int val2, char operation, int result) { mx_printint(val1); mx_printchar(' '); mx_printchar(operation); mx_printchar(' '); mx_printint(val2); mx_printchar(' '); mx_printint(result); mx_printchar('\n'); }
[ "ericgolovin@outlook.com" ]
ericgolovin@outlook.com
760220a91dfa388108f6671813317da657d92105
487e96b2756a614bb8b2b0e68f050f880602930c
/BF5823AM48_v1.0.3_SDK.si4project/Backup/main(5626).c
0d29c49fd3025bfcaabe3bd8202ccd87ca835227
[]
no_license
mmiker/DS08_BF5823AM48
dd6659892c96bf4c542315dcb2ed4af10284fdcd
99392463fb2fa57d0272fae402189df5434f1081
refs/heads/master
2023-05-03T19:49:09.501401
2021-04-28T09:41:07
2021-04-28T09:41:07
null
0
0
null
null
null
null
UTF-8
C
false
false
1,150
c
/*! \file main.c \brief main file */ #include "main.h" #include "dqiot_drv.h" #include "mmi_ms.h" #include "mmi_sys.h" #include "mmi_audio.h" extern uint16_t timer0_count; extern unsigned char uart_get_buf[]; extern unsigned char uart_getbuflen; uint8_t send_head = 0xF1; int main(void) { u8 i = 0; #if MIFAR...
[ "zchhacker@163.com" ]
zchhacker@163.com
e0136f92071dacd36033df925fa08c118da4ad1d
8d753bb8f19b5b1f526b0688d3cb199b396ed843
/osp_sai_2.1.8/system/lib/libasn1/constr_TYPE.h
37d21f6d9b2e5818af55948e377ad7a2b42914b0
[]
no_license
bonald/vim_cfg
f166e5ff650db9fa40b564d05dc5103552184db8
2fee6115caec25fd040188dda0cb922bfca1a55f
refs/heads/master
2023-01-23T05:33:00.416311
2020-11-19T02:09:18
2020-11-19T02:09:18
null
0
0
null
null
null
null
UTF-8
C
false
false
6,383
h
/*- * Copyright (c) 2003, 2004, 2005 Lev Walkin <vlm@lionet.info>. * All rights reserved. * Redistribution and modifications are permitted subject to BSD license. */ /* * This file contains the declaration structure called "ASN.1 Type Definition", * which holds all information necessary for encoding and decoding ...
[ "zhwwan@gmail.com" ]
zhwwan@gmail.com
9c73ff8f659424e0f11e8328fd6bdcd8aa8a248e
345b4f965b515a3387fdba062a075816398e384c
/src/lib/rt/src/os_eln/rt_io_m_co_7437_33.c
a0ce3db837ed3446ec11f39956b011e265e7a755
[]
no_license
hfuhuang/proview
4fd0bf089aa6e3a303aea666652e5046cf5855d7
4172df2ae577ff3202e29f28e0afdbe0cc8780a6
refs/heads/master
2020-12-24T17:17:05.556911
2010-01-14T15:16:16
2010-01-14T15:16:16
null
0
0
null
null
null
null
ISO-8859-1
C
false
false
6,270
c
/* * Proview $Id: rt_io_m_co_7437_33.c,v 1.2 2005-09-01 14:57:56 claes Exp $ * Copyright (C) 2005 SSAB Oxelösund AB. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 2...
[ "claes" ]
claes
6cd0bc2fa9cb0fb74b5a36e1c24d6d92d2ea9314
488378d66dfb12d3292886b160243aa24e27c420
/linux-3.16/tools/perf/ui/gtk/annotate.c
9c7ff8d31b274e32d22147664cb622437db514f1
[ "GPL-1.0-or-later", "Linux-syscall-note", "GPL-2.0-only", "Unlicense" ]
permissive
jj1232727/system_call
3ec72bdecad15a43638cc5eb91ba1ae229d651bb
145315cdf532c45b6aa753d98260d2b1c0b63abc
refs/heads/master
2020-08-11T13:56:16.335620
2019-10-12T11:12:53
2019-10-12T11:12:53
214,575,269
0
0
Unlicense
2019-10-12T04:06:22
2019-10-12T04:06:22
null
UTF-8
C
false
false
6,004
c
#include "gtk.h" #include "util/debug.h" #include "util/annotate.h" #include "util/evsel.h" #include "ui/helpline.h" enum { ANN_COL__PERCENT, ANN_COL__OFFSET, ANN_COL__LINE, MAX_ANN_COLS }; static const char *const col_names[] = { "Overhead", "Offset", "Line" }; static int perf_gtk__get_percent(char *buf, s...
[ "jj1232727" ]
jj1232727
aa86ef102811c14af533f007674455cdaa23f88b
92f785de480914abbc6cd38eb24b50860a8e8f60
/platforms/aliyun/IoT-SDK_V2.0/sample/coap/iotx_coap_client.c
20a58eeb6fd97eb06ffa61abfc324792cba5181a
[ "Apache-2.0" ]
permissive
Poco-Ye/aliyun-iot-hub
ffa22e5ea2ea98f89cb61a30d120c9e88109ea8d
1898633c35a2ac926f03296ac93ca459f270fd5f
refs/heads/master
2021-05-05T10:48:07.135085
2017-12-08T07:30:41
2017-12-08T07:30:41
118,084,148
4
0
null
null
null
null
UTF-8
C
false
false
5,285
c
/* * Copyright (c) 2014-2016 Alibaba Group. All rights reserved. * License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses...
[ "1016771083@qq.com" ]
1016771083@qq.com
723ab10c2a7d4439fdbdc894f07338d98cf63481
49780f24a92fcc9a7c855144fb195ae3736bf390
/examples/devices/MSP430F1xx/MSP430x11x1_MSP430F21x1_Code_Examples/C/msp430x11x1_hfxtal.c
03f3c9677d266e69539360271cc19eb28029e75c
[]
no_license
PiBoxY/msp430ware
81fb264c86ff1f68f711965b793aa58794ae2f00
7c96db00f97bbfd3119843e18ac895a54b4a6d39
refs/heads/master
2020-04-21T07:29:13.386144
2019-02-06T11:32:42
2019-02-06T11:32:42
169,394,007
2
1
null
null
null
null
UTF-8
C
false
false
4,301
c
/* --COPYRIGHT--,BSD_EX * Copyright (c) 2012, Texas Instruments Incorporated * 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 c...
[ "admin@piboxy.com" ]
admin@piboxy.com
22abcfd4c3e4d790ead67b2c04a7fe40e8a2a88a
ec7d1269672e09ff8ff2720b60f350677c8c15f1
/arm-linux-gcc-4.5.1/4.5.1/arm-none-linux-gnueabi/sys-root/usr/include/openssl/stack.h
c555128cf97d841c6f233b1abf0945f70082cce3
[]
no_license
ElevenH/First-Blood
6a4d8ed48e93660c44b0623405bf30530eeea16b
44ee02b8126c5609dc78d917633bde9caf4d0d68
refs/heads/master
2022-02-07T16:20:43.634359
2022-01-28T08:04:42
2022-01-28T08:04:42
46,023,766
0
0
null
null
null
null
UTF-8
C
false
false
4,396
h
/* crypto/stack/stack.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non...
[ "pangchol@163.com" ]
pangchol@163.com
c77e475478b1b5615d7909948e781fddffc95ea9
baed6f2ef8b26339af8b4f7a9096c446a9da3b3f
/A025_ESP8266固件/Source/func/func.h
02ac90acfbeebc21b473b8626bd3264f6100e83e
[]
no_license
742117806/A025_Plus
b2bbe7fc903418a1e5d11e7853a26240be31b860
c836b116545837509ca3043e865e1afeb1592f91
refs/heads/master
2020-04-11T04:14:20.363457
2018-12-12T15:25:29
2018-12-12T15:25:29
161,505,898
0
0
null
null
null
null
GB18030
C
false
false
4,158
h
/************************************************************ Copyright (C), 2013-2015, SOSCI.Co.,Ltd. @FileName: func.h @Author : 糊读虫 @Version : 1.0 @Date : 2015-8-12 @Description: 系统操作功能 @Function List: @History : <author> <time> <version > <desc> Lennon 2015/8/12 1.0 ****************************************...
[ "742117806@qq.com" ]
742117806@qq.com
0f0244dbca525bbf4c6b1a08c568a8fdbe87291a
751d837b8a4445877bb2f0d1e97ce41cd39ce1bd
/leetcode/shortest-completing-word.c
b23b86d9e1eb08fdbc82938d6f679a320f072da0
[ "MIT" ]
permissive
qeedquan/challenges
d55146f784a3619caa4541ac6f2b670b0a3dd8ba
56823e77cf502bdea68cce0e1221f5add3d64d6a
refs/heads/master
2023-08-11T20:35:09.726571
2023-08-11T13:02:43
2023-08-11T13:02:43
115,886,967
2
1
null
null
null
null
UTF-8
C
false
false
2,068
c
/* Find the minimum length word from a given dictionary words, which has all the letters from the string licensePlate. Such a word is said to complete the given string licensePlate Here, for letters we ignore case. For example, "P" on the licensePlate still matches "p" on the word. It is guaranteed an answer exists....
[ "qeed.quan@gmail.com" ]
qeed.quan@gmail.com
69aa2d8f88a8044afd1d04c86c1be3dcec5d079e
1053723697cb4e44e4a4603c258de1dccf600206
/MSP430/MSP430F5529/MSP430图形库/examples/MSP-EXP430F5438_Grlib_Example/LcdDriver/HAL_MSP_EXP430F5438_HITACHI138x110_HD66753.h
745ac3bb3bb61763904128741be027c5e7f242dd
[]
no_license
walliak/Control
9ab9590aefef5006e76318299ad634066b50c3ce
97d8d8aa1c6c0fc0315ed5217248fc3243d03d09
refs/heads/master
2020-04-27T15:59:27.424760
2019-07-31T02:45:32
2019-07-31T02:45:32
174,467,772
1
1
null
null
null
null
UTF-8
C
false
false
5,327
h
/* --COPYRIGHT--,BSD * Copyright (c) 2016, Texas Instruments Incorporated * 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 copy...
[ "2430661978@qq.com" ]
2430661978@qq.com
57470872219f0579a3ce9dbb8a1fdcfb8fa0f9d2
7eaaa10e3d78c3875441ccf2216a54ce6b4d6261
/ZLinky/SDK_2_6_4_JN5189DK6/boards/jn5189dk6/project_template/clock_config.h
f52c1e54546ed0c9de41fd1cb39a805eb3adcc0b
[]
no_license
bricodx/Zlinky_TIC
069eff9ccf1973b8f4e0480fbb474c73b6a81c4b
161f1577c2531a9cdd3470d4dff105b0f1f64218
refs/heads/master
2023-08-28T09:50:37.515687
2021-11-13T09:07:02
2021-11-13T09:07:02
null
0
0
null
null
null
null
UTF-8
C
false
false
2,257
h
/* * Copyright 2019-2020 NXP * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ /*********************************************************************************************************************** * This file was generated by the MCUXpresso Config Tools. Any manual edits made to this file *...
[ "akila@faire-ca-soi-meme.fr" ]
akila@faire-ca-soi-meme.fr
c9f04f786abc00a2a9e1dfb81508921f57fee0ed
a72a706c9fddc1aeccd969ecce4661a7761c7e72
/inc/controller.h
22369d14b0de0413bda46f6b58970b1cd85550a8
[]
no_license
misterdoud/CC3D-CableCam-Controller
ed607902406863695a374e9b2292f6f2ed361025
249660f534dcde9e865e97d843cdfaaf2d4af315
refs/heads/master
2021-06-24T22:02:49.876812
2017-09-03T04:56:15
2017-09-03T04:56:42
null
0
0
null
null
null
null
UTF-8
C
false
false
605
h
#ifndef CONTROLLER_H_ #define CONTROLLER_H_ #include "stm32f4xx.h" #define APP_TX_BUF_SIZE 512 void setServoNeutralRange(uint16_t forward, uint16_t reverse); void initController(void); void controllercycle(void); void setPIDValues(double, double, double); void setPValue(double); void setIValue(double); void setDVal...
[ "werner.daehn@googlemail.com" ]
werner.daehn@googlemail.com
b850d48e1cc37091751c2cc5c882a431ff562358
c55d472c09da4d0f62997bcfc7e8bfe7d8be7fdb
/apue/pthread/abcde_cond.c
23fb87be4cd95d8831eb99dd05eb277609f0faa8
[]
no_license
zzy0119/emb20210322
83492cf990541f98250038118fd804127ba85818
7adb8ac29fca551cf2e068f0096a2e0633508577
refs/heads/master
2023-05-15T19:52:18.701457
2021-06-18T03:47:35
2021-06-18T03:47:35
357,404,476
0
0
null
null
null
null
UTF-8
C
false
false
1,106
c
#include <stdio.h> #include <string.h> #include <unistd.h> #include <stdlib.h> #include <pthread.h> #include <sched.h> #define THRNR 5 static int jobid = -1; static pthread_mutex_t mut = PTHREAD_MUTEX_INITIALIZER; static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; static void *thrJob(void *arg) { int selfid = (...
[ "you@example.com" ]
you@example.com
1b5e2255b6461c4f8d247bb6e5c10d097cadcbb6
c9b1d9481663f35a745533e215e512c31f00f945
/libraries/c_sdk/standard/ble/include/iot_ble_mqtt_transport.h
4d79123aa7a1bf31c87617e1fa86ce094de247fa
[ "Apache-2.0", "MIT" ]
permissive
ambiot/amazon-freertos
199d8c8cfebf7d4ce41cdf0377a6622c56ea3f7c
ef61d5f521de921cc931d9262e3d5af9b75fbd2e
refs/heads/master
2023-08-24T08:06:28.437220
2021-07-08T13:33:49
2021-07-08T13:33:49
191,755,880
14
16
MIT
2022-09-20T23:47:06
2019-06-13T12:09:22
C
UTF-8
C
false
false
3,750
h
/* * FreeRTOS BLE V2.2.0 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. 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 restriction, including ...
[ "hungtselee@realtek.com" ]
hungtselee@realtek.com
bf06890ab72e935eea215f63cb1e7531c43c9a01
20fd55cec00f7212e3361040907b2f0f5fc9f403
/prbFuzzer/IE/fuzzIBSS.c
598db58b28f3e70491528166a15767cab84fe8e5
[]
no_license
b4rt-dev/cfuzz
a5144a4f6932624b4b71ba98d5fd0219e57a2955
243e52af0163b476e27f16453ddf3e3acfc42ec9
refs/heads/master
2020-12-27T18:14:48.986513
2020-01-09T10:17:17
2020-01-09T10:17:17
238,001,659
0
0
null
null
null
null
UTF-8
C
false
false
5,557
c
/* Fuzzes ibss Information element */ #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> #include "../frameDefinitions.h" //Indecates whether the ibssFuzzer is running int ibssRunningState = 0; //Number of fuzzing states const int ibssStates = 4; //Steps of fuzzers for each fuzzing state ...
[ "bart@b4rt.nl" ]
bart@b4rt.nl
c54ec4819d52b106f03643faaa03e4607ac6d28c
2e1465297cf42e43a8f8dc2de259adedba0106bd
/Include/susiaccess_handler_ex_api.h
77aa59eec5ec35bb224f031c32a335c76cea157c
[]
no_license
12019/WISEAgent
cecdc0e384fc96bef74af058f30096ae39e468f1
3e0ac013644d38107b4b05a12f3351c8a4b49736
refs/heads/master
2021-01-11T22:20:13.852283
2016-02-02T07:03:32
2016-02-02T07:03:32
78,949,980
0
1
null
2017-01-14T16:00:55
2017-01-14T16:00:55
null
UTF-8
C
false
false
1,954
h
#ifndef _CAGENT_HANDLER_EX_H_ #define _CAGENT_HANDLER_EX_H_ #include "susiaccess_handler_api.h" typedef AGENT_SEND_STATUS (*HandlerConnectServerCbf)(char const * ip, int port, char const * mqttauth, tls_type tlstype, char const * psk); typedef AGENT_SEND_STATUS (*HandlerDisconnectCbf)(); typedef AGENT_SEND_STATUS (*H...
[ "scott68.chang@advantech.com.tw" ]
scott68.chang@advantech.com.tw
f54c2075455dbbae2bebf1dc6bdcb6c15f0e2f4e
8e1691fa76f47c62bbf6b8d83f5d5f13647aacaf
/GPIO_ThreadX/synergy_cfg/ssp_cfg/bsp/bsp_clock_cfg.h
47a403f5d281372a9704d146efcf5db92c174ae8
[]
no_license
dongdong-2009/Renesas_S7G2
4c9933a2ef29d1057c4f1493aaed0906b6612501
86379eb843825975a3c2f8b01efe91b93f6167ec
refs/heads/master
2021-07-04T19:02:16.126614
2017-09-25T01:15:45
2017-09-25T01:15:45
null
0
0
null
null
null
null
UTF-8
C
false
false
1,122
h
/* generated configuration header file - do not edit */ #ifndef BSP_CLOCK_CFG_H_ #define BSP_CLOCK_CFG_H_ #define BSP_CFG_XTAL_HZ (24000000) /* XTAL 24000000Hz */ #define BSP_CFG_PLL_SOURCE (CGC_CLOCK_MAIN_OSC) /* PLL Src: XTAL */ #define BSP_CFG_HOCO_FREQUENCY (0) /* HOCO 16MHz */ #define BSP_CFG_PLL_DIV (CGC_PL...
[ "kirti.karan25@gmail.com" ]
kirti.karan25@gmail.com
e157b8e135f3e5e21ebb4321835563aa1cdfedbb
913a0efa1b36ac741a36b3f94d872562c51ef572
/Binaries/iOS/Classes/Native/mscorlib_System_Globalization_DateTimeStyles.h
4f519f026d26a3feaa7fbf00667a892a35a82905
[ "MIT" ]
permissive
masanori840816/SetMaterialsFromGallery
41d3a89488c349f54586bfb367eb021ca7356357
ce6d67874e42706feca5e5a66f9b6785992b9dda
refs/heads/master
2021-01-18T01:23:54.041302
2015-05-21T13:21:44
2015-05-21T13:21:44
34,765,403
5
2
null
null
null
null
UTF-8
C
false
false
340
h
#pragma once #include <stdint.h> // System.Enum #include "mscorlib_System_Enum.h" // System.Globalization.DateTimeStyles #include "mscorlib_System_Globalization_DateTimeStyles.h" // System.Globalization.DateTimeStyles struct DateTimeStyles_t1312 { // System.Int32 System.Globalization.DateTimeStyles::value__ int32_t...
[ "masanori840816@gmail.com" ]
masanori840816@gmail.com
a7921c5ce79c70d7e49741ac7babd44d860e2007
f0c9b1e8ac94382cc17d82d14b22ef82a31d1e82
/SFT1.0v/Design01.cydsn/Generated_Source/PSoC5/CW_CCW_2.h
9faaef867cdadb79c70cff56de8d45a8864d2ca9
[]
no_license
dsky7/PSoC
115b7dfcbf477932e73ce0bb755201133e676b43
303e8ada834d22dffc2de1bb5348882645f135ae
refs/heads/master
2020-05-29T10:33:39.095777
2015-08-20T09:54:28
2015-08-20T09:54:28
34,363,321
0
0
null
null
null
null
UTF-8
C
false
false
5,143
h
/******************************************************************************* * File Name: CW_CCW_2.h * Version 2.5 * * Description: * This file containts Control Register function prototypes and register defines * * Note: * ******************************************************************************** * Copyri...
[ "sakai7213@yahoo.co.jp" ]
sakai7213@yahoo.co.jp
eb3fb6c567f172783a80a420497e807dce612365
417f92150d503a78747433df8ee1a5d292dc06db
/sysroot/usr/include/sm/cf.h
2ae87861af736ba1eb4677610efd63780652a626
[]
no_license
jaykrell/tru64
16424e389dded7cb6386b701f4714f720bbbb699
f4117dfdde98eb05fb5318b20c94bfdd4397b689
refs/heads/master
2023-06-15T04:48:06.150828
2021-07-10T09:35:09
2021-07-10T09:35:09
382,783,658
0
0
null
null
null
null
UTF-8
C
false
false
814
h
/* * @DEC_COPYRIGHT@ */ /* * HISTORY * $Log: cf.h,v $ * Revision 1.1.2.1 2006/07/18 11:15:40 Sunilkumar_Mummigatti * New for sendmail.v8.13.6 * * $EndLog$ */ /* * @(#)$RCSfile: cf.h,v $ $Revision: 1.1.2.1 $ (DEC) $Date: 2006/07/18 11:15:40 $ */ /* * Copyright (c) 2001 Sendmail, Inc. and its suppliers. ...
[ "jay.krell@cornell.edu" ]
jay.krell@cornell.edu
096c9024e32e0d8fef6250da1a6b72140fa521c7
0d57893c36f0226335577773a7bf99cd98b3e3a3
/generated/MaximumIntegrityProtectedDataRate.h
7f3c6a59ce95d99c0beca57c0e56271b8981ab79
[]
no_license
cakir-enes/ransim
609c69adf8a3c3928494806ca0db9edd3f1f46ca
7c7a3de16446c74e4914f48f2f45d7a69d5fa5b6
refs/heads/master
2020-07-30T01:07:38.589174
2019-09-21T17:49:10
2019-09-21T17:49:10
210,029,354
0
0
null
null
null
null
UTF-8
C
false
false
1,944
h
/* * Generated by asn1c-0.9.29 (http://lionet.info/asn1c) * From ASN.1 module "NGAP-IEs" * found in "NGAP-IEs.asn" * `asn1c -fcompound-names` */ #ifndef _MaximumIntegrityProtectedDataRate_H_ #define _MaximumIntegrityProtectedDataRate_H_ #include <asn_application.h> /* Including external dependencies */ #incl...
[ "tinkymortis@gmail.com" ]
tinkymortis@gmail.com
e40a4c9a6b90e09bc05c064ea2f6d4bffd99aa92
3242b4524ed78233f4ae1d9004ef6a8b7d8afa0e
/test/MergeFiles/myReduce_9.C
de5eee777a86d1c1c3c967cecdbf6a4b0a42e4de
[]
no_license
nsahoo/FourMuonPAT
5285d46e3c0cb1598db29afaffdda964ab023d42
2fe0cae78fc9bcbe551ce25f41b412ea852313a4
refs/heads/master
2020-05-16T15:08:47.253631
2018-09-11T02:23:58
2018-09-11T02:23:58
null
0
0
null
null
null
null
UTF-8
C
false
false
335
c
{ TChain* chain = new TChain("mkcands/X_data"); chain->Add("/eos/uscms/store/user/sdurgut/TrigMatch/Merged/Muonia2012B_5.root"); TFile *f2 = new TFile("/eos/uscms/store/user/sdurgut/TrigMatch/Reduced/Muonia2012B_5.root","recreate"); TTree *T2 = chain->CopyTree("MyFourMuonVtxCL>0.01 && MyFourMuonChg==0"); T...
[ "suleyman.durgut@gmail.com" ]
suleyman.durgut@gmail.com
36574a4fb995565f933045c4721e83ca5b566392
67a8c824902b83f76daf5075e5ddb730980a15e8
/RevivalPlus/scripts/4_World/RevivalPlus/Classes/Recipes/RPL_SprayPainting/Weapons/Repeater/Recipe_PaintRepeater_White.c
121e5d0767b92cf69f7a95c53c2d7c1968651d23
[ "MIT" ]
permissive
benedikz/RevivalPlus
8004e8ec5f0f9369957e3c412e8afc49626f8397
b51d90ede21f457d78aba8e175e7c9463678cac1
refs/heads/master
2023-07-16T07:20:50.675598
2021-09-06T22:26:11
2021-09-06T22:26:11
294,627,453
0
0
null
null
null
null
UTF-8
C
false
false
1,994
c
class PaintRepeater_White extends RecipeBase { override void Init() { /*************************************************************/ m_Name = "#STR_RPL_Recipe_SprayPaint"; m_IsInstaRecipe = false; // NoAnimation [true/false] m_AnimationLength = 4; // Animation length m_Specialty = -0.05; // + ...
[ "benzeex@gmail.com" ]
benzeex@gmail.com
65b0727225ae44aef3171c7c096b1c5977a21a35
e5699fc9424fba568b4ee5ffc1e3b8b38a9e066e
/motorola_chun/moto_upload.h
e7b08222afb5183db965ee98a4e5ac028d53cea0
[]
no_license
xfdingustc/smash
035a1bb894101cb79da833e496c02d504867552c
ba6db5730d4153f3151752e3095b3c1a855e9aa3
refs/heads/master
2020-12-02T07:54:37.085011
2017-07-10T06:49:06
2017-07-10T06:49:06
96,732,012
0
0
null
null
null
null
UTF-8
C
false
false
1,124
h
#ifndef __MOTO_UPLOAD_H_ #define __MOTO_UPLOAD_H_ 1 #include "elist.h" #include "moto_manifest.h" typedef struct chunk_header_item_s { char key[128]; char value[128]; list_head_t list_node; }chunk_header_item_t; typedef struct chunk_info_s { int chunk_start; int length; char url[1024]; list_head_t list_node...
[ "ding.xiaofei@whaley.cn" ]
ding.xiaofei@whaley.cn
2bd5251acc207799b280f673c40282153f0c372d
6d5436affb79a9311829bc9f805033999f1153e6
/src/operations/swap.c
73f9a0955845b2b1065c692469c771f2544a1ce3
[]
no_license
qypec/push-swap
eb5d11559065e18f5a2fd2c4381975cc4aff70f2
41a92b806ef5f1ca2c4ebf5a811fb7de8be76099
refs/heads/master
2022-11-18T07:41:17.347719
2020-07-07T12:56:58
2020-07-07T12:56:58
220,012,177
0
0
null
null
null
null
UTF-8
C
false
false
1,437
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* swap.c :+: :+: :+: ...
[ "qypec.prog@yandex.ru" ]
qypec.prog@yandex.ru
f8d5f1fd87747f5bc4a5572e5c88a40246f59b76
c1a8e75227512a30db772c92973c7b179d4eaa67
/Test/Classes/Native/mscorlib_System_Array_InternalEnumerator_1_gen_30.h
d52820092a898e9832069637a0a6d3c2a836a339
[]
no_license
joshtwynham/dissertation
266f5463d970e15bf5b0842c881ff65c9c85389c
b860fc4ae2b6152d0aea15b36036904b4a88bd15
refs/heads/master
2021-01-10T09:20:17.128871
2016-04-17T16:07:36
2016-04-17T16:07:36
49,824,777
0
0
null
2016-02-02T11:36:07
2016-01-17T16:14:25
C++
UTF-8
C
false
false
509
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // System.Array struct Array_t; #include "mscorlib_System_ValueType.h" // System.Array/InternalEnumerator`1<UnityEngine.Color32> struct InternalEnumerator_1_t1886 { // System.Arr...
[ "psyjt1@nottingham.ac.uk" ]
psyjt1@nottingham.ac.uk
b47cee8563535115fb1bae97d3bf5608162a16c7
4c0b9cb2ea2f2b2ad02f95203cde8c975d6bb4b6
/C01/ex05/ft_putstr.c
f30fb5cb9ab0c83bc7a4546b9ee3dd3e72b63d4d
[]
no_license
worldii/42SEOUL
5b6c179b5e989eb99ce99ea34f2a673239d7f72d
a592e4dabf7a3cb5fcee3b639073a5bb0b554d9e
refs/heads/master
2023-08-23T05:06:23.227548
2021-11-01T02:19:31
2021-11-01T02:19:31
423,310,648
0
0
null
null
null
null
UTF-8
C
false
false
1,074
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: ...
[ "jongha2788@u.sogang.ac.kr" ]
jongha2788@u.sogang.ac.kr
459aa620f35801b7a112f3a6a6644554730345d1
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/f35deb29-2c46-4c19-b642-88ae78ea0432.c
a149feba1883a4752e9c3d510144be915a9e1217
[]
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
561
c
#include <string.h> #include <stdio.h> int main() { int i=0; int j=11; int k; int l; k = 53; l = 64; k = i/j; l = i/j; l = i/j; l = l%j; l = j%j; l = l-j; k = k-k*i; //variables //random /* START VULNERABILITY */ int a; char b[94]; char c[45]; a =...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
168023a39a19083ffbf87635afd4ddcec691c1b6
259c101b7bbeef9efcc25134e7e21f037a7a4092
/DTSEmbed_LSC_solve_path/testcase/gcc/gcc.dg/asm-4.c
0e58c851f44791449c0eb0ac31df307449037bd9
[]
no_license
13001090108/dts-solve-path
a95c71c31d38afb2c55d85884b931f2938c1f75d
649b92eddcc76705bbb4926b33da00009303c04a
refs/heads/master
2020-04-16T23:17:21.340218
2019-01-24T09:34:50
2019-01-24T09:37:09
166,005,614
0
0
null
null
null
null
UTF-8
C
false
false
607
c
/* { dg-do compile } */ /* { dg-options "" } */ int main() { int x, y, z; asm volatile ("test0 X%0Y%[arg]Z" : [arg] "=g" (x)); asm volatile ("test1 X%[out]Y%[in]Z" : [out] "=g" (y) : [in] "0"(y)); asm volatile ("test2 X%a0Y%a[arg]Z" : : [arg] "p" (&z)); asm volatile ("test3 %[in]" : [inout] "=g"(x...
[ "lishaochun@bupt.edu.cn" ]
lishaochun@bupt.edu.cn
b8de5534e71cf46ff6f2ac017666f85d18dbeee6
640cc3c15ab2fc667875e6453e955c5750ec7bee
/gnl/libft/ft_strtrim.c
3ab06ceda296d66e6a676fa2c65590a724bb6a42
[]
no_license
Zabilya/school_projects
d99b723547ebb58e43e0d0ea652f8a242024470c
bb12b3c963817770b06ee9ec62ecd3e108eb705e
refs/heads/master
2020-04-16T04:25:14.448941
2019-03-07T14:47:32
2019-03-07T14:47:32
165,266,343
0
0
null
null
null
null
UTF-8
C
false
false
1,739
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strtrim.c :+: :+: :+: ...
[ "cschuste@e4r4p5.21-school.ru" ]
cschuste@e4r4p5.21-school.ru
27dc3c42edbdba70974a57014a5bed94c7f30cbb
54b08b28b8c1724499975f12acb690f0df19854e
/exercise/silsup_04/ssu_stat_1.c
2f987671fbbe0c543631319ffb60f1e795dbadbd
[]
no_license
ynifamily3/lsp_2019
6105a8b294bf8f6cb7f2e20e1ca309078e6615ff
0092b8ff852fd224601d6a555b3b9f2d9f49adc3
refs/heads/master
2021-06-11T22:48:52.648320
2021-04-11T12:31:27
2021-04-11T12:31:27
176,196,391
0
0
null
null
null
null
UTF-8
C
false
false
577
c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/stat.h> #include <sys/types.h> #include <sys/time.h> #include "ssu_runtime.h" int main(int argc, char *argv[]) { struct timeval begin_t, end_t; struct stat statbuf; gettimeofday(&begin_t, NULL); if (argc != 2) { fprintf(stderr, "usage: %...
[ "ynifamily3@gmail.com" ]
ynifamily3@gmail.com