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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
07cd3328144d52be612320fd925a3baa329a4ad3 | 8d7514271b08caaa8c757d0747853d54642e9e63 | /vendor/intergrafx_hw/LW/Mimosa/pvr_mimosa_240x320.h | 403c1a17b678fdb53f84c3bfe2dbf2a8fe51563b | [] | no_license | npnet/MyCode | 0bd3e32d5890c411b16e01cdb8acf5624c7c0a02 | 9fa7aa78d62f1cd3c2a39a36875cb41cf00522fe | refs/heads/master | 2023-07-23T13:19:29.575050 | 2018-07-05T13:01:09 | 2018-07-05T13:01:09 | 140,229,839 | 1 | 2 | null | 2023-07-21T10:21:01 | 2018-07-09T04:07:28 | C | UTF-8 | C | false | false | 254,915 | h | #ifdef __cplusplus
extern "C" {
#endif
unsigned char const pvr_mimosa_background2d[] = {
0x34, 0x00, 0x00, 0x00, 0x40, 0x01, 0x00, 0x00,
0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x36, 0x00, 0x01, 0x00, 0x00, 0x96, 0x00, 0x00,
0x04, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0... | [
"zhaoran.jia@nbbsw.com"
] | zhaoran.jia@nbbsw.com |
abe22e8bd9cc5dda304d73de3f854b01e076268f | f082492855d4cb558d441f3686c83df0f56fcb2b | /distance_with_structures.c | 54f95f265f108578e033022781e9625f0085f52a | [] | no_license | Piyush-0120/programming-bootcamp | ffbb3fd7c9659d9d99355ce756dff75ddaea40b9 | 9a6a070e83fdad6570d68acef6291c4ea28e987d | refs/heads/master | 2023-03-15T01:12:19.860092 | 2021-03-19T14:00:53 | 2021-03-19T14:00:53 | 335,921,144 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 753 | c | //WAP to find the distance between two points using structures and 4 functions.
#include <stdio.h>
#include <math.h>
struct point
{
float a;
float b;
};
typedef struct point Point;
Point input()
{
Point p;
printf("Enter abcissa:");
scanf("%f",&p.a);
printf("Enter ordinate:");
scanf("%f",&p.b... | [
"noreply@github.com"
] | Piyush-0120.noreply@github.com |
a4e6fe01f163d4a89cdeb63bd20de6cbbdd4474c | 18aac58048262fd99ed009f5dd7b35667079f459 | /synclink/sample-raw/send-raw.c | 2aa95e36c2e71c0703dc67be346aa0122377298e | [] | no_license | rkerndt/synclink | 496d98f7ec0c1c16f880c5c0f848675d917a1fb5 | 1e98609e8be3a1eee19c81e5c3386218b21d1405 | refs/heads/master | 2021-01-19T03:47:58.140514 | 2016-10-12T20:04:45 | 2016-10-12T20:04:45 | 69,883,748 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,396 | c | /*
* send raw serial data
*
* This sample demonstrates raw serial communications using a
* SyncLink serial card. The companion sample receive-raw.c receives
* raw serial data. Use both programs to send data between two serial cards
* connected with a NULL modem (cross over cable) or other serial link.
*
* The s... | [
"kerndtr@kerndt.com"
] | kerndtr@kerndt.com |
961332c66dec0bd36e0306f7354c7ac5646cafac | d3854daede0bf9d8fe24715d3667c9942040ef5c | /ipc/pipe2.c | 99c39264ff5b84f8f719fbb7c01a4d9672d7e531 | [] | no_license | wuliumengshang/Linux | e60064d5a20aa96e418e18ea047e361da905495f | 047abc35362dbde62dec9f8119782555a5a9a9c8 | refs/heads/master | 2020-05-03T23:20:31.475235 | 2019-04-15T13:04:10 | 2019-04-15T13:04:10 | 178,863,428 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 562 | c | //管道符的基本实现
//ls -l | grep makefile
#include<stdio.h>
#include<unistd.h>
#include<stdlib.h>
#include<errno.h>
#include<wait.h>
int main(){
int pid1,pid2;
int pipefd[2];
pipe(pipefd);
if((pid1 = fork() ==0)){
//ls -l
close(pipefd[0]);
dup2(pipefd[1],1);
execlp("ls","ls","-l",NULL);
}
if((pid2 = f... | [
"875403179@qq.com"
] | 875403179@qq.com |
d24811fe985b2113bc5e094b64eaff6daff97824 | 30c931ad6d46c8bc58c8a3b9da061aa7319d066f | /Common.h | 68767555b6b53ab51c8a2621e261612725875e8e | [
"MIT"
] | permissive | ufz-vislab/VtkFbxConverter | b61ceab2c1edad390e4cdfef247d472eb87402d8 | e46645c12e95c676fd7f17bbdeac7a50feac7477 | refs/heads/master | 2021-01-17T09:29:25.201599 | 2019-04-18T12:48:29 | 2019-04-18T12:48:29 | 4,087,610 | 22 | 7 | null | 2015-09-23T09:33:34 | 2012-04-20T14:47:49 | C++ | UTF-8 | C | false | false | 950 | h | /****************************************************************************************
Copyright (C) 2013 Autodesk, Inc.
All rights reserved.
Use of this software is subject to the terms of the Autodesk license agreement
provided at the time of installation or download, or which otherwise accompanies
... | [
"lars.bilke@ufz.de"
] | lars.bilke@ufz.de |
11330131704e52de213576ec1e0abb9c93ce1fe1 | 5f5bb6ab3cb9eeec5e19b5f2281cae96c420011a | /09-PDE-MPI-Gauss-Seidel/displaymatrix-mpi.h | 418d94e52945305bfee8fc5d0e67a8fd600fe1e0 | [] | no_license | DoodleSchrank/HLR-C-Ubungen | 0bc80e620250b4dc94a74e231f39ab93513c54bb | 676fdb8603f91efb5c5d0e1939c0a62281ee546a | refs/heads/master | 2020-08-19T02:53:17.754783 | 2020-01-20T02:04:34 | 2020-01-20T02:04:34 | 215,867,866 | 0 | 2 | null | 2019-12-07T23:01:16 | 2019-10-17T19:14:29 | C | UTF-8 | C | false | false | 2,361 | h | /**
* rank and size are the MPI rank and size, respectively.
* from and to denote the global(!) range of lines that this process is responsible for.
*
* Example with 9 matrix lines and 4 processes:
* - rank 0 is responsible for 1-2, rank 1 for 3-4, rank 2 for 5-6 and rank 3 for 7.
* Lines 0 and 8 are not includ... | [
"y.koenneker@web.de"
] | y.koenneker@web.de |
c4672d3e75bf3993c653c8a162a1d134405f4095 | e16f0185b443f9b29170c11d6e38c22216d94b59 | /pp1 solve/1_5.c | bfc66d01dd8365f761b74ac37a3680f36256eb06 | [] | no_license | sajibkhansk/cse103 | 503c11182fee276b536583d5e56d76eec4cb3739 | 07f7bd009237e4ffe5c11544b8932081a74d2ab7 | refs/heads/master | 2022-04-03T13:06:25.394560 | 2022-03-02T08:55:33 | 2022-03-02T08:55:33 | 246,366,922 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 269 | c | int main()
{
int sec, h, m, s;
printf("enter the time in second: ");
scanf("%d", &sec);
h = sec / 3600;
m = (sec - h * 3600) / 60;
s = sec - h * 3600 - m * 60;
printf("hour %d", h);
printf("\tminute %d", m);
printf("\tsecond %d", s);
return 0;
}
| [
"noreply@github.com"
] | sajibkhansk.noreply@github.com |
9fdf92b7f97c4cd707e601afb44b1c739c5b340c | 9513f7ca6946e10071ae58e79fa68bbe98b2e6ad | /touchgfx/board/Mjolner/Common/source/vendor/lpc_core/lpc_ip/gpdma_001.h | 74f3f5518a3db5ae724168b211494af3329e27ef | [] | no_license | koson/Oscilloscope_STM32F746 | 71468321350b9ff2b8089a8c9e451489d90f541f | 96281e007d7b17e920649ad28f8922f1078312ba | refs/heads/master | 2023-09-01T22:55:38.019285 | 2021-11-22T10:36:42 | 2021-11-22T10:36:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 15,617 | h | /*
* @brief GPDMA Registers and control functions
*
* @note
* Copyright(C) NXP Semiconductors, 2012
* All rights reserved.
*
* @par
* Software that is described herein is for illustrative purposes only
* which provides customers with programming information regarding the
* LPC products. This software is supp... | [
"hainguyen.eeit@gmail.com"
] | hainguyen.eeit@gmail.com |
bdc21ace79ac382ae8ad7c231a85d8a8f73e8565 | 235088d2969b50284f830a05c6ac070c67da84d0 | /examples/ant/ant_scan_and_forward/d52_starterkit/s212/config/sdk_config.h | e110bdb8c3326e2af527f26f6e93cd592f1f408c | [] | no_license | kaidokert/nRF5_SDK | cd101a48596514690e48b121feaf50cbc169d3de | d6198b2f32f4424693f6a841e1402202f026d3d1 | refs/heads/master | 2020-03-26T05:40:19.556016 | 2018-08-13T13:30:34 | 2018-08-13T13:30:34 | 144,568,486 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 89,594 | h | /**
* Copyright (c) 2017 - 2018, Nordic Semiconductor ASA
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, th... | [
"kaidokert@gmail.com"
] | kaidokert@gmail.com |
29767ae91b975831e4793986e80fd5288c019841 | befb58308445947c581cb16e817116e200d0e2b0 | /rover-firmware/gpio.c | 48fedbc9f0fabdf6ca2e181d865f7ba262d5ccea | [] | no_license | emiljaregran/mecanum-wheel-rover | a4dc47833dbc0be33f38969d9fa9a30adf74298e | 38769ad4f92862124cc3932abdcc2dda84fa2979 | refs/heads/master | 2020-08-03T14:25:15.918282 | 2019-10-14T18:31:50 | 2019-10-14T18:31:50 | 211,784,576 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 262 | c | #include <avr/io.h>
#include "gpio.h"
void gpio_init(void)
{
DDRB |= (1 << DDB1);
led_off();
}
void led_blink(void)
{
PINB |= (1 << PINB1);
}
void led_on(void)
{
PORTB &= ~(1 << PORTB1);
}
void led_off(void)
{
PORTB |= (1 << PORTB1);
}
| [
"emil@jaregran.se"
] | emil@jaregran.se |
bdc7b6bc2bba20758aa9751187caf1aae8de839f | 473f508ac4fbad7d191e572597607a009233ac7c | /cracker.h | db0cea4a5b167eb2681f8f15dfd711dfcf37acd7 | [
"MIT"
] | permissive | SETHRUIZ/password-network | 974cd7f1b4fcaa6d5b6bfb0c92654a8d6474da47 | 9131de0dc6fa9e1d6618154f47ccab943d11d0fa | refs/heads/master | 2020-03-12T22:55:51.755376 | 2018-05-30T17:35:02 | 2018-05-30T17:35:02 | 130,856,104 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 615 | h | #ifndef CRACKER_H_
#define CRACKER_H_
char int_to_char_map(int number);
int char_to_int_map(char character);
char* num_to_string_converter(double base26);
double string_to_num_converter(char * str);
int md5_string_to_bytes(const char* md5_string, uint8_t* bytes);
char* find_password(double starting, double ending... | [
"zvidzwat@cs.grinnell.edu"
] | zvidzwat@cs.grinnell.edu |
de43b3806977e0373237f7b92ead2129a8a2ae9b | 2ee3a0c398cb452fe3b20391c476e8462586dadf | /libIPLAY/libSrc/libav/include/libavcodec/flac.h | 5d7f11127a0851b9a66fc2b41069c84d2106fdbf | [] | no_license | gradliang/fusion1 | a08f8f0b8a15716628db412d6db0fa664eba3f29 | 07972a0da8cc09faf3ebe801283c87430c71804b | refs/heads/master | 2021-07-18T03:00:41.118177 | 2020-08-11T02:08:30 | 2020-08-11T02:08:30 | 203,027,101 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 5,282 | h | /*
* FLAC (Free Lossless Audio Codec) decoder/demuxer common functions
* Copyright (c) 2008 Justin Ruggles
*
* This file is part of Libav.
*
* Libav is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software F... | [
"gradliang@live.com"
] | gradliang@live.com |
9627e4926ff91a9f07e582243bf5bd70389413f7 | 4729c1c95265d82740b7be008997465088a592dc | /estructuras.h | a42acab0eba3cac1a7c2a7af3916178ea4fd3ac6 | [] | no_license | ArayaPls/lab_eda2 | 2e9d32b0b802c75442c1e67cf393bd034ee6fb88 | 6cc34e303db9c67cff0bb62be39b9066adf6cb0d | refs/heads/master | 2020-06-09T06:11:19.961106 | 2014-10-22T16:29:01 | 2014-10-22T16:29:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,430 | h | /**
@file estructuras.h
@brief Cabecera y descripcion de estructuras de datos de listas.
Se crean listas que tienen un dato tipo 'int' y uno de tipo 'char'.
@autor Sebastian Araya Vallejos.
@date 10/2014
*/
#ifndef ESTRUCTURAS_H
#define ESTRUCTURAS_H
//typedef struct nodoSimple nodo;
typedef struct nodoSimple ... | [
"sebastian.araya.vallejos@gmail.com"
] | sebastian.araya.vallejos@gmail.com |
e541c1fe4bb0989c7143761e2505e96d6cf8eb48 | aa5229cc71d4ee04990e84ef9521152137cb3cde | /C12/ex00/ft_create_elem.c | 37cdbc80a4b5506cd217ab031ff7351ef3b17720 | [] | no_license | UnDesSix/42_Piscine | 5021c7da7fc63c4e8d3b9bc52c929775722c0857 | e389e105d220b25af032baaa6daf22b8d9a2511e | refs/heads/master | 2023-02-28T14:51:34.083033 | 2021-02-04T19:46:36 | 2021-02-04T19:46:36 | 300,029,052 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,075 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_create_elem.c :+: :+: :+: ... | [
"matthieu.larboullet@essca.eu"
] | matthieu.larboullet@essca.eu |
14098b478550e1349addc0cdbeab8b6e0c3e3ddf | 70f63f6b356c665842e359469a89287106a5a754 | /src/mudlib/d/simauria/comun/habitacion/marhalt/fortaleza/senda/senda20.c | dd4cde6c457a04c58e54ff5330fccd0f8f12d02e | [] | no_license | DPrenC/endor-mud | 2aebc7af384db692c7dbc6c0a0dbb3c600e93ecc | 3ca7605715ce2c02734c68766470f5d581b9fc98 | refs/heads/master | 2021-01-21T18:53:26.493953 | 2017-05-21T23:04:36 | 2017-05-21T23:04:36 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 553 | c | /****************************************************************************
Fichero: senda20.c
Autor: Ratwor
Fecha: 28/12/2007
Descripción: La senda que va hacia la fortaleza de cored.
****************************************************************************/
#include "./path.h"
inherit ROOMFS("senda");
create(... | [
"ea5gna@gmail.com"
] | ea5gna@gmail.com |
95a6162bbd675b64e64c92b8d530db887729ea8e | cc01364d3ede907f20bf0e39a903d62a66b57884 | /database/DBconnect.c | 950c8d452f3c05c132e23f4a809fed652806453c | [
"LicenseRef-scancode-other-permissive"
] | permissive | rameshvlsi85/magic | e550778202f86077f975ce442777481402350da0 | a5e0de031cc425dd4f6015d30bdf5b183fa69392 | refs/heads/master | 2023-04-03T12:36:09.684366 | 2021-04-07T02:04:53 | 2021-04-07T02:04:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 35,262 | c | /* DBconnect.c -
*
* This file contains routines that extract electrically connected
* regions of a layout for Magic. There are two extractors, one
* that operates only within the paint of a single cell (DBSrConnect),
* and one that operates hierarchically, across cell boundaries
* (DBTreeCopyConnect).
*
* ... | [
"tim@opencircuitdesign.com"
] | tim@opencircuitdesign.com |
9ab8e99d545ddbbf683b8cb92c6775d248756513 | ac2a304770b564751a6d7c702c4c4f1c66106b0c | /EIFGENs/static_analyzer/W_code/C9/et1126d.c | 6f424b94cbdd41266025d5e66bcffe87abed51d0 | [] | no_license | omarabid59/Mathematical-Expression-Compiler | 8b918aa3f5533ca6d8240ac5a357dd50d61c1a9b | c02b0a6b765fa87acee6801d8d2b0da9423a9e08 | refs/heads/master | 2021-09-02T02:40:48.920608 | 2017-12-29T19:59:54 | 2017-12-29T19:59:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,271 | c | /*
* Class ETF_COMMAND_INTERFACE
*/
#include "eif_macros.h"
#ifdef __cplusplus
extern "C" {
#endif
static EIF_TYPE_INDEX gen_type0_1126 [] = {0xFF11,219,0xFFFF};
static EIF_TYPE_INDEX gen_type1_1126 [] = {0xFF11,236,0xFF12,1125,0xFFFF};
static EIF_TYPE_INDEX gen_type2_1126 [] = {0xFF11,1125,0xFFFF};
static EIF_TY... | [
"omarabid-59@hotmail.com"
] | omarabid-59@hotmail.com |
c61fe9ac8463eed9f40ab8b5c40033315a56254b | 44b6bc41fe8e424196f98dbc5b2f050c1f9645f8 | /platforms/qnx/local/19851.c | f5f0025d35a8fa9a336b93c4aeeeaab7e75cb720 | [] | no_license | angeloobeta/exploit-database | 21283dd8549f47836a35af6f3ea7b63b8dba11ea | 43f3d9e94c01a7f51e30561a96214af231dd9d36 | refs/heads/master | 2021-08-08T21:07:38.794539 | 2017-11-11T05:01:28 | 2017-11-11T05:01:28 | 110,380,452 | 0 | 1 | null | 2017-11-11T21:09:05 | 2017-11-11T21:09:04 | null | UTF-8 | C | false | false | 1,768 | c | source: http://www.securityfocus.com/bid/1114/info
A design error in the operation of the crypt(3) function exists in QNX, from QNX System Software, Limited (QSSL). The flaw allows the recovery of passwords from the hashes.
On most Unix variants, crypt(3) is based on a variant of the DES encryption algorithm, use... | [
"info@exploit-db.com"
] | info@exploit-db.com |
d9b5422c47fad3ccdb3d51c8f83f3d00646a3f8f | 1974d7d1ac92812e685e9494d2e105b187312a55 | /3D_SSDsim/interface.h | b5c77d1f45ff7316233012788cb10e1b627f010a | [] | no_license | RuixiangMa/3D_SSDsim_v1 | 42934161092878b4b2a96eb9aff51ba3098ba65e | 757bfd30fa31d234f350465b5a584d68401d479c | refs/heads/master | 2021-06-25T00:40:27.346137 | 2017-08-18T14:20:44 | 2017-08-18T14:20:44 | null | 0 | 0 | null | null | null | null | ISO-8859-9 | C | false | false | 1,733 | h | /*****************************************************************************************************************************
This is a project on 3D_SSDsim, based on ssdsim under the framework of the completion of structures, the main function:
1.Support for 3D commands, for example:mutli plane\interleave\copyback\pr... | [
"617376665@qq.com"
] | 617376665@qq.com |
e884f1ef6d628d4a3ad9eafcc7c1529934454cf0 | 0022f844ec91e733ce22c746630b248e4b31c4d5 | /master_lib/STM32F2xx_HAL_Driver/source/stm32f2xx_hal_crc.c | 9874ef844165ab7e328dca9d000b0358a79fd2ab | [] | no_license | CalPolyRobotics/IGVC-OlympusFirmware | 606f3d85b7bedac992eb4912cea7c69af7691e47 | 7f98fb832f07f1add273dd891a49280cbc2964ae | refs/heads/master | 2021-01-17T17:47:45.479457 | 2020-03-07T22:43:01 | 2020-03-07T22:43:01 | 46,075,225 | 6 | 1 | null | 2020-03-07T22:43:03 | 2015-11-12T19:17:06 | C | UTF-8 | C | false | false | 10,355 | c | /**
******************************************************************************
* @file stm32f2xx_hal_crc.c
* @author MCD Application Team
* @version V1.0.1
* @date 25-March-2014
* @brief CRC HAL module driver.
* This file provides firmware functions to manage the following
... | [
"gerikkub@gmail.com"
] | gerikkub@gmail.com |
399552cb98b65ec45cbda421c2251729ff05cbec | f112d29d6b7e797aeb9710811014b28e016e2f83 | /src/r_cg_cgc_user.c | caa87075f0f88cbbcafaa3ed9c0b3faf59fa006c | [] | no_license | ryankung88/project1 | 1eab8f4b23637b14e0198c94085b91218a3c39fa | 1d9a18468c04c018562d0f155790ad558aa15cfe | refs/heads/master | 2021-01-10T20:51:04.839685 | 2014-09-04T22:16:58 | 2014-09-04T22:16:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,426 | c | /***********************************************************************************************************************
* 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 E... | [
"220038362@APL-MP0551TH.amer.consind.ge.com"
] | 220038362@APL-MP0551TH.amer.consind.ge.com |
d86c80275767831994c8351454f1bbc94700466f | 280d58fdec4326a225bb043dace9e4263936c57a | /排序/排序/test.c | 81d461ee5712168a4043f18ff58019fb347504ad | [] | no_license | xiayangli/project | 5d75360e822c0103b695f14bcbdd690ed1f6546c | c7bb29dcf307cf692d65c99c60ea3c814f161bb5 | refs/heads/master | 2020-05-16T05:30:46.635984 | 2019-12-05T10:49:38 | 2019-12-05T10:49:38 | 182,815,992 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 5,367 | c | #define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<stdlib.h>
#include<iostream>
//插入排序
void insertSortTest(int a[], int size){
for (int i = 0; i < size; i++){
//有序区间[0,i)
//无序区间[i,size)
//抓的哪张牌?
//去有序区间选择插入位置(从后往前找)
for (int j = i - 1; j >= 0; j--){
if (a[i]>=a[j]){
break;
}
}
int ... | [
"1727407013@qq.com"
] | 1727407013@qq.com |
d14421abbd068ebc6c3a3bdce0d693009ace8ded | 9936b91663fddcbbd9d8622f1ed28db7f6ef786e | /C/C_Unix_Programming/esercizioscritto3/esame.c | 98a9313def07d56e3065cbc569139303172216ff | [] | no_license | sitodav/before-november-2014 | 9a49af237aabf1d7180e1e764f9aa3fa5a6cc667 | c00bacccd12079d1e946c15d2e972a59f79a4888 | refs/heads/master | 2021-01-20T15:38:58.403928 | 2015-05-23T09:23:35 | 2015-05-23T09:23:35 | 26,176,778 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,742 | c |
/*
Si scriva un programma C e Posix in ambiente Linux che abbia un’interfaccia del tipo: esame Nfigli
Nlivello FileRisultati dove Nfigli e Nlivello sono due numeri interi, e FileRisultati è una stringa che
rappresenta il nome di un file. Il programma provvede a generare un numero Nfigli di processi figlio.
Ogni proces... | [
"sitodav@gmail.com"
] | sitodav@gmail.com |
3fa6889d6444504bdebdd155b87fec0949982eb8 | e57cfff17fee2ecb480d3c71d96c1a23e0acf6b7 | /test/TestIString_C.h | 41d33f6acb01947ce1d590cbda46f5f0cc0f696e | [
"Apache-2.0"
] | permissive | webosose/libwebosi18n | 5bf53b98474b174b5941bcfbe46de4299756aba1 | 3e757518ad9fa280a0cb12aca8248da912052b8b | refs/heads/master | 2023-06-02T04:13:47.711264 | 2021-05-04T01:52:06 | 2021-05-04T01:52:06 | 125,007,697 | 3 | 2 | null | null | null | null | UTF-8 | C | false | false | 871 | h | // Copyright (c) 2013-2018 LG Electronics, 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/LICENSE-2.0
//
// Unless required by applicable law or... | [
"changhyeok.bae@lge.com"
] | changhyeok.bae@lge.com |
f2a5b1ff52458a66c215c50184092925225ba491 | 6426ae91efed816ec782a4a109bd4f7e4daffc5a | /Library/LegacyResources/Headers/PDCHeader/PDCstdio.h | 0d5911325e31c5d495c894d308c1cce0dc7645fb | [] | no_license | rfim/Microstrategy | 04756e390d3f17572cafe18f7f6be8b36a024190 | 9ab9d1d3b4321e2b17626d97074d694f1196c41f | refs/heads/master | 2021-04-09T15:09:43.191220 | 2018-03-21T07:38:13 | 2018-03-21T07:38:13 | 125,734,634 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,744 | h | //==============================================================================================
// FILENAME : PDCstdio.h
// AUTHOR : Perl Script
// CREATION : 6/13/02
// Copyright (C) MicroStrategy, Inc. 2002
//==============================================================================================
#ifnde... | [
"firman.insan.m@gmail.com"
] | firman.insan.m@gmail.com |
ea1e1218a4030561c9c624b237e3da726f1042e4 | 9a54e6cb92cc324212c08b05a654a58e65b0d2c1 | /src/rule.c | ace045fefb838c862b981d1fee14bb42411db489 | [] | permissive | arieroos/pgquarrel | 2e5b0f51ffb480af737470dbb110ef172b9ea31b | d523bad1905ccffb820612c9f890090ef06c934f | refs/heads/master | 2021-04-23T18:02:15.608358 | 2020-03-25T11:28:41 | 2020-03-25T11:28:41 | 249,959,097 | 0 | 0 | BSD-3-Clause | 2020-03-25T11:21:40 | 2020-03-25T11:21:40 | null | UTF-8 | C | false | false | 4,705 | c | /*----------------------------------------------------------------------
*
* pgquarrel -- comparing database schemas
*
* rule.c
* Generate RULE commands
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* CREATE RULE
* DROP RULE
* ALTER RULE RENAME TO
* COMMENT ON RULE
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~... | [
"euler@timbira.com.br"
] | euler@timbira.com.br |
3778b08b56eaa725b7d9acd0d2c6515b19a7dab4 | a2c932241196f489eb65beebcc29a2d6244e1f77 | /Chapter 7/exercise3.c | c9a673606a24d1ad101328b002293e734f8d09f0 | [] | no_license | orcasuriyaa/suriyaa1 | 3542dcb5d26a6c6d7bd554fc176f1888d8b93818 | 5984d781e59c00e0b78ae2638cc0a417c3f40ac3 | refs/heads/master | 2020-04-14T20:32:07.073321 | 2014-09-22T17:17:59 | 2014-09-22T17:17:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 636 | c | /* unlimited responses
SuriyaaKumar, Sep8 2014 */
#include <stdio.h>
int main(void)
{
int ratingCounters[11];
int i;
int response;
for( i = 1; i <= 10; ++i )
ratingCounters[i] = 0;
printf("Enter your responses\n");
for( i = 1; ; ++i )
{
scanf("%i", &response);
if(response == 999)
bre... | [
"ablazesuriyaa7@gmail.com"
] | ablazesuriyaa7@gmail.com |
91695a659a4f6af45b22dcf9d474f82acfdcafc5 | f18114cb416acd2275389a446276735b5cfe6fdf | /compilerTestFiles/functions/negative3.c | 624292e1429ce6cd6f20becd256c68ab5f5074c2 | [] | no_license | pornosaur/compiler-interpreter | ee5c3e5bea776fc4ff576224f2d19254a8f6c6bc | 38113e577b982d584c4142273992b9c1f0cca0ca | refs/heads/master | 2023-03-16T01:39:45.464060 | 2021-03-03T04:03:46 | 2021-03-03T04:03:46 | 108,176,608 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 40 | c | void fnc(){
}
void main(){
fnc(3);
}
| [
"ludek.kanak@seznam.cz"
] | ludek.kanak@seznam.cz |
8143d1d1064fa1b7e3488d35c858a23d338b2890 | ecdf41aa21c93b780033e632ca5cb7a1435cb601 | /libmx/src/mx_memmem.c | 861330dfaa16dc8be47efa8cac747f3c0b31f1eb | [] | no_license | ddikhtiar/uls | cef6be7928c7838091873d164209bc4cc83ab3f3 | 896cc8ee6e28471acdb20f71849d770b2a432a5d | refs/heads/master | 2020-12-14T15:24:58.196458 | 2020-03-01T17:51:03 | 2020-03-01T17:51:03 | 234,785,571 | 2 | 1 | null | 2020-01-30T15:56:37 | 2020-01-18T19:26:06 | C | UTF-8 | C | false | false | 390 | c | #include "libmx.h"
void *mx_memmem(const void *big, size_t big_len,
const void *little, size_t little_len) {
unsigned const char *b = big;
unsigned const char *l = little;
if (little_len > big_len || !big_len || !little_len)
return NULL;
else if (little_len == 0)
return (void *) big;
... | [
"ddikhtiar@e2r4p9.unit.ua"
] | ddikhtiar@e2r4p9.unit.ua |
f32941cd46a06768a1a0a2461526065bc502893f | 40de3da30239862f11a946166b50438174c2fd4e | /lib/wizards/irmeli/castle/yard7.c | c9e34c94992f7206f7e6328dfdf8a8480c169d86 | [
"MIT"
] | permissive | vlehtola/questmud | f53b7205351f30e846110300d60b639d52d113f8 | 8bc3099b5ad00a9e0261faeb6637c76b521b6dbe | refs/heads/master | 2020-12-23T19:59:44.886028 | 2020-01-30T15:52:16 | 2020-01-30T15:52:16 | 237,240,459 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,355 | c | inherit "room/room";
object monster;
reset(arg) {
if(arg) return;
add_exit("north","/wizards/irmeli/castle/yard8.c");
add_exit("west","/wizards/irmeli/castle/yard3.c");
add_exit("northwest","/wizards/irmeli/castle/yard4.c");
short_desc = "A grassy yard inside the castle of Asgroth";
long_desc = "A beautiful green gra... | [
"ville.lehtola@iki.fi"
] | ville.lehtola@iki.fi |
27897d4d6208061a496b44caeeda18450cb43312 | 798a3aa026695bd1725973a104b18eac45ccfafc | /入门/OpenGL-04-点画线模式/OpenGL-04-点画线模式/main.c | 756629e2e63153f98c290ed227ebeb126a4c4bb0 | [] | no_license | 995996812/OpenGL-learn | 31193b643bc24423940145e1ac4b64bc023dd4c9 | 2ed0660bb6e20468666100d238f0f655b03cb367 | refs/heads/master | 2020-12-25T14:57:36.821129 | 2017-06-23T06:51:16 | 2017-06-23T06:51:16 | 67,974,288 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,084 | c | //
// main.c
// OpenGL-04-点画线模式
//
// Created by 王鹏华 on 16/9/13.
// Copyright © 2016年 condentast. All rights reserved.
//
/* 直线点画模式 */
#include <stdio.h>
#include <OpenGL/gl.h>
#include <OpenGL/gltypes.h>
#include <GLUT/GLUT.h>
#define drawOneLine(x1,y1,x2,y2) glBegin(GL_LINES);\
glVertex2f((x1),(y1)); glVe... | [
"wang1314521fei@163.com"
] | wang1314521fei@163.com |
633646849959dc74c1d0d61d725c33b2b451ca90 | aba17947a9efcaec764931b45e63c7499789db17 | /11-binary_tree_size.c | 7d8a00ff1fb8eb110e2959c21772a378af1a98e6 | [] | no_license | Evertcolombia/binary_trees | 33b1f703f515ae233350eff620894414b38a4941 | a07e27b2fd15040967cdf4db5bb2497e70e85b52 | refs/heads/master | 2021-07-09T15:21:29.212591 | 2021-06-01T01:24:36 | 2021-06-01T01:24:36 | 246,139,683 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 532 | c | #include "binary_trees.h"
/**
* binary_tree_size - measure the size of a root node in a b_tree
* @tree: node in bnary_tree
*
* Return: size of root node in binary_tree
*/
size_t binary_tree_size(const binary_tree_t *tree)
{
size_t s_left = 0, s_right = 0, res = 0;
if (tree == NULL)
return (0);
if (tree->l... | [
"evertescalante@gmail.com"
] | evertescalante@gmail.com |
70b266c3100405a92ec52b6788b055d09b03494a | 7c306891d87057931b22df292abc10f9e4d52271 | /mtk/prac2.c | 776920828faa6641be8615e056bb2cadf44af7ed | [] | no_license | 1459292960/embedded-soft | c2afa17dc0dace81313ab5b604b94cbf2ef18075 | 57ad727f2e52253ef6b06b2954598e3853ec7a64 | refs/heads/master | 2023-07-17T22:18:18.739836 | 2021-08-29T14:15:33 | 2021-08-29T14:15:33 | 354,020,149 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 714 | c | #include <stdio.h>
int main(void){
int x = 0,y =0;
int temp;
scanf("%d%d",&x,&y);
int a[x+y];
for(int i = 0; i < x+y;i++){
scanf("%d",&a[i]);
// if(i == (x-1)) scanf("^[]");
// else getchar();
// getchar();
}
// for(int i = 0 ; i < x+y; i++){
/... | [
"pengbin1996@foxmail.com"
] | pengbin1996@foxmail.com |
5b1450424a07925afb826ab4c6008b83c4f1924a | 0a9754625a89b291bb59e68b039a78602e13795f | /libft/ft_memchr.c | 1b540df93b524b6f9bc4d41aa3466c10dfb7aa0e | [] | no_license | Ronan-Duclos/Serveur-Client-IRC-C- | aedc8fe536b311dc5e19103657553c71158cdc89 | 96fa5344ec6dbadea9f2bb77245edb22ca44a150 | refs/heads/master | 2021-01-10T19:44:41.125223 | 2014-08-21T08:02:01 | 2014-08-21T08:02:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,192 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memchr.c :+: :+: :+: ... | [
"psyka@Psykas-MacBook-Pro.local"
] | psyka@Psykas-MacBook-Pro.local |
2f764b2f544bcfdf3a89da3175738fc326215e65 | abdfa47baeb5acd88121e9c2740b2e6d3ca41a0c | /srcs/ft_powerof.c | 0e8a45fbd859cfeaae82e05b0c15c8a50736e03f | [] | no_license | srheede/personal_library | 19bf6cc3d3678b6f9720c5777cc87595a007321d | c4d980283656e54144b34340d3629384eefad028 | refs/heads/master | 2020-03-20T08:31:40.689774 | 2018-06-15T05:28:39 | 2018-06-15T05:28:39 | 137,311,188 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,063 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_power.c :+: :+: :+: ... | [
"srheede@c1r1s1.wethinkcode.co.za"
] | srheede@c1r1s1.wethinkcode.co.za |
484c4a2ae9781a7e6efe105ef20dc86398939a90 | 44d8ca51bc341e70d54f20c46d0688ad986abc09 | /bad/types-array-size.c | 9fe13bfb26cd076c100e1f7b0e71cb493cbe7eb2 | [] | no_license | andrzej2298/interpreter | 5efec2c5fd94ee4e07e79ce5bec5b75a6d10d29f | 096d5568a79ad29616a38520bcc93da4a2671956 | refs/heads/master | 2022-12-15T21:16:33.516310 | 2020-09-12T08:37:02 | 2020-09-12T08:37:02 | 252,730,438 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 25 | c | int[] x = new int[true];
| [
"andrzej2298@gmail.com"
] | andrzej2298@gmail.com |
44b4eb0a8862579022fd5f4e9e919de62e4719d0 | 9e108d4259a891c332802d4cc8aab3f7381a2496 | /src/nanoasm.c | 2f2967807c8d2e38f937e687ad018b12f50cf829 | [
"WTFPL"
] | permissive | iltramoggione/nanoasm | b86da889e3bce46b0166fc35a583fe5caa3a78e5 | 6658343d805168152cfc171f4bbb5292c72a6a8a | refs/heads/master | 2020-08-23T04:15:36.145718 | 2019-11-11T23:26:13 | 2019-11-11T23:26:13 | 216,541,872 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,952 | c | #include "../include/nanoasm.h"
void compile_execute(char *code, int max_op, channel_t **port)
{
ram_t ram;
cell_addr_t pc;
int code_ops[256];
int code_ops_size;
memset(ram.data,0,RAM_SIZE);
ram.port[0]=port[0];
ram.port[1]=port[1];
ram.port[2]=port[2];
ram.port[3]=port[3];
memset(code_ops,-1,sizeof(code_ops... | [
"32876738+iltramoggione@users.noreply.github.com"
] | 32876738+iltramoggione@users.noreply.github.com |
9fcac4142d78d732271f534fec0b215f4662bd6e | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/media/dvb-frontends/extr_drxd_hard.c_ResetECOD.c | 75869dc5156c55a65de5c51f5151bf3fca387e6a | [] | 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,143 | 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 |
b0018e52a0547320178c98304eb6cc4b2bb90fe6 | 4ae0d9bdbd31d04d9c2369cad9e1319c6b0e7a76 | /sample/decl.error.c | a2c31d0ecdcd1b6123b328d8c0cc5623e20015b4 | [] | no_license | opass/compiler_hw4 | cda7b90a9ded19ef6b6b0b98c28ad18f394a3b6e | 2b56bf17f86474cdfa2aaae5156c43daad5593bd | refs/heads/master | 2021-05-28T22:23:22.785917 | 2014-05-19T19:35:41 | 2014-05-19T19:35:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 291 | c | int ABC;
float ABCD, AAA = 4.0, KKK = 5.5;
typedef float GFLOAT;
int main() {
typedef int INT, INT2, INT3;
typedef float FLOAT;
typedef void VOID;
typedef void VOID2, VOID3;
INT f[3][3*3-(4+2)/3.2];
INT ff[4.3];
INT fff[4.3][2];
FLOAT gggg[2.3];
FLOAT f2;
}
| [
"th33ts@gmail.com"
] | th33ts@gmail.com |
90fa2f4236abff0dddf3d76d2bb7ab1ab5f5a7a0 | e7f314ab4fe6b063a026cb9af0eb0ad0933f335d | /ZQ2NuPt2pi0_aa_all_UML_Pcorr_BkgPol3_Tvz/data_FeD_Fe/rspic/hM1_29_bk.C | 61cabbcdee248a21234070123e6b0c98e29f54ce | [] | no_license | orsosa/EG2_analysis | 016f91bb3761b0cf309523837ebf2124944f8341 | 08cea395b98d050ea9ffbca866e267158578f147 | refs/heads/master | 2021-01-21T22:35:47.935595 | 2018-10-03T19:06:10 | 2018-10-03T19:06:10 | 102,161,447 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 36,712 | c | void hM1_29_bk()
{
//=========Macro generated from canvas: c_bkg/c_bkg
//========= (Sat Jun 16 04:50:55 2018) by ROOT version 6.12/06
TCanvas *c_bkg = new TCanvas("c_bkg", "c_bkg",0,0,920,690);
gStyle->SetOptStat(0);
c_bkg->SetHighLightColor(2);
c_bkg->Range(-0.008333333,-2.767153,0.4583333,24.90437);
c... | [
"oj.5070@gmail.com"
] | oj.5070@gmail.com |
faa69a6bb79efbb6242fcad57556bd0cbeca3bf1 | 3b70673cbff9233a10a87ea24e004a260add0faf | /unix/tnmUnixInit.c | cb54e2ff6b05003fcefa3f9a308540941c2f3d4d | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-newlib-historical"
] | permissive | philippeback/scotty | e54c7a29f7af78aef68ab63493caa4619b0760c6 | 5bc18c8ecc0ddb464b0617acb483996ea3a6e154 | refs/heads/master | 2021-01-17T00:24:44.479431 | 2012-02-09T19:28:23 | 2012-02-09T19:28:23 | 17,340,331 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,637 | c | /*
* tnmUnixInit.c --
*
* This file contains the UNIX specific entry point.
*
* Copyright (c) 1996 Technical University of Braunschweig.
* Copyright (c) 1996-1997 University of Twente.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL ... | [
"nugget@flightaware.com"
] | nugget@flightaware.com |
e70d6e729a1b08883c81f95514ab51ea3e2a89db | 1ad4dd5261a185f3cf92d7fd3226de28679747c5 | /kernel/arch/mips/pci/pci-rt2880.c | 711cdccdf65ba7df9647f72bd11952432086e33b | [
"MIT",
"Linux-syscall-note",
"GPL-2.0-only"
] | permissive | oslab-swrc/libmpk | b30c8fa2eea834a8ab441fdd9f7789296781ec17 | a0b20ab8819d60d22d2a90f0d54eccae40ae6b05 | refs/heads/master | 2022-05-01T01:36:07.491532 | 2022-03-18T05:44:14 | 2022-03-18T05:44:14 | 223,290,854 | 0 | 0 | MIT | 2019-11-22T00:30:13 | 2019-11-22T00:30:12 | null | UTF-8 | C | false | false | 7,550 | c | /*
* Ralink RT288x SoC PCI register definitions
*
* Copyright (C) 2009 John Crispin <john@phrozen.org>
* Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
*
* Parts of this file are based on Ralink's 2.6.21 BSP
*
* This program is free software; you can redistribute it and/or modify it
* under the term... | [
"spark720@gatech.edu"
] | spark720@gatech.edu |
a83bb77575173abcb7a70140480592fe7e856109 | 5aeb874e2b45208f49acedaec3a8eae01c9e02d2 | /Problem10.c | 36af4fb20b81caad146e133b7ab8e535daf9b4c1 | [] | no_license | daminisatya/MRnD80 | cd0755783c23042bce34753a25a90808d2cb7119 | a38efb07481c4b7e847ab57334113e356ab88372 | refs/heads/master | 2021-01-19T07:53:54.176471 | 2016-02-22T18:12:09 | 2016-02-22T18:12:09 | 40,254,752 | 3 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,147 | c | /*In a given sorted array, two numbers are changed their position, please fix those two numbers*/
#include<stdio.h>
#include<malloc.h>
void getSortedArray(int arr[], int len){
printf("Enter the array elements");
for (int i = 0; i < len; i++)
scanf("%d", &arr[i]);
return;
}
void swapArrayElements(int arr[], int ... | [
"daminisatya@gmail.com"
] | daminisatya@gmail.com |
0032a072373b303306a9be79ff6b92c226b78e6f | 552760608d0071f17e024762bdd9f9113e0e79f3 | /assets/graphics/comboInterfaceAnimationP1_0007.h | 03b6c80afce07bdb8856b05763b03637aa8f732d | [] | no_license | caioso/PEngine | 88f16ee86e29277e68d3bc57c4690b7615b8885b | 0abbb0c025a41f029b15c0da46986095068e5461 | refs/heads/master | 2021-01-23T13:59:25.176576 | 2016-11-05T20:53:10 | 2016-11-05T20:53:10 | 48,956,725 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 659 | h | /*
This file was autogenerated by raw2c.
Visit http://www.devkitpro.org
*/
//---------------------------------------------------------------------------------
#ifndef _comboInterfaceAnimationP1_0007_h_
#define _comboInterfaceAnimationP1_0007_h_
//----------------------------------------------------------------------... | [
"caiooliveira@Caios-MacBook-Pro.local"
] | caiooliveira@Caios-MacBook-Pro.local |
9d912267d61370b8b2b0edccfde058d9e1a6c9ec | fd2837aef61176323fb6d8eb647b20debe7995f5 | /CSAPP/sa-bAbi/working/a1f419e0ae.c | b6261fd257511a9c25f6e9d8560cc1719d4b05a0 | [] | no_license | callMeBigBen/CourseWork | b0ef17b5cfe07ba61404abd68812d2b56393db87 | 41d68c07f7b1411dbca7dc7d5e2efeceb9edee27 | refs/heads/master | 2020-04-10T08:18:21.617984 | 2019-05-22T05:26:38 | 2019-05-22T05:26:38 | 160,902,512 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 499 | c | #include <stdlib.h> // Tag.OTHER
int main() // Tag.OTHER
{ // Tag.OTHER
int entity_5; // Tag.BODY
int* entity_0; // Tag.BODY
entity_0 = new int(rand()); // Tag.BODY
int* entity_1; // Tag.BODY
entit... | [
"33094628+callMeBigBen@users.noreply.github.com"
] | 33094628+callMeBigBen@users.noreply.github.com |
47849c71d814e799a0633c6e09632977d38ee1c9 | d3ea856b908e376d8a69edcd07b81070a45284c0 | /AVL-Tree/driver.c | 6e74a182b5994a1b2a2a60e52205f8ffa6bb294a | [] | no_license | begillespie/datastructures-in-C | 559847dd5ef5ffca72a55669234b3030aa789960 | 6225627d64d6c06f83e4fc69936f69b86c4fdd0b | refs/heads/master | 2020-04-27T03:54:47.220262 | 2019-03-09T16:14:38 | 2019-03-09T16:14:38 | 174,038,533 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 531 | c | /**
* @file driver.c
* @author Brian Gillespie
*
* Sample driver program for the AVL Tree module. Demonstrates the
* functionality and use of the structure.
*/
#include "avl.h"
#include <stdio.h>
int main() {
printf("AVL Driver\n");
AVLTree *avl = createAVLTree();
// Add 15 nodes in key order, prin... | [
"begilles@ncsu.edu"
] | begilles@ncsu.edu |
8d321dd6d22a5f38d5d6deeb354a723283e96b43 | 4f10301ae060e5d8c77e5fd332083b60f6bc9d63 | /PERIPH/AD7606/bsp_ad7606.c | bd95ac83e04378d578c41cc667db4aaeb328d143 | [] | no_license | qsunj915/Laser_AD7606_Demo | 713c75d47f29ff9693ff44e655f0501bee7044fe | 2fd643f78909415d823275da59621e0dcdc15c2c | refs/heads/master | 2023-08-27T22:54:35.054755 | 2021-10-13T07:18:53 | 2021-10-13T07:18:53 | 416,628,217 | 1 | 0 | null | null | null | null | GB18030 | C | false | false | 6,248 | c | /**
******************************************************************************
* @file bsp_ad7606.c
* @author qsunj
* @version v1.0
* @date 21-7-16
* @brief 详情见README
******************************************************************************
*/
#include "bsp_ad7606.h"
//内部使用的全局变量
uint... | [
"571793190@qq.com"
] | 571793190@qq.com |
be6bc940b4062d867eade8068b6d4d7b8a2e36f5 | 31c933b724e4357d3b71399118baaaccd0c8937a | /PlatformPkg/Platform/Dxe/LegacyRegion2.c | d553c868c88aaeacb3878fd7b73ceddfeede3d66 | [] | no_license | killvxk/ShellTool | b6c3c83a42adf10ce187153336ce58b59da66127 | e25538c06f699a807b5ca31abd676fe6e6f2ceac | refs/heads/master | 2021-01-22T08:29:13.449896 | 2017-01-20T09:33:00 | 2017-01-20T09:33:00 | 81,906,104 | 12 | 7 | null | 2017-02-14T04:47:42 | 2017-02-14T04:47:42 | null | UTF-8 | C | false | false | 13,258 | c |
#include "PlatformDxe.h"
#include <Protocol/LegacyRegion2.h>
#include <Protocol/Cpu.h>
#define PAM_GRANULARITY 0x4000
#define UNLOCK 0x0000
#define LOCK 0x0001
#define BOOTLOCK 0x0002
#define LEGACY_REGION_DECODE_ROM 0x0003
EFI_CPU_ARCH_PROTOCOL ... | [
"lexyu@zhaoxin.com"
] | lexyu@zhaoxin.com |
f43829f376a3c62f77b595dc27730f2c79590af7 | 5b4a604c5fd4b0d1f92965a1d8c2ddbbe7449acd | /hw01/before.c | 69e46f47c46e7f1e0ba213d389eda14d9508dd6d | [] | no_license | huynhtritaiml2/ECE-264-Advanced-C-Programming | 3f5eb8b1d44ec962e0cc2f14cc13c4b224fa0e45 | 90f05c3f9766e5b15339690f4710834bd24f8ad4 | refs/heads/master | 2022-12-07T16:06:46.688799 | 2020-09-04T00:04:17 | 2020-09-04T00:04:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,369 | c | // vim: fileencoding=utf8 expandtab tabstop=4 shiftwidth=4
#include <stdio.h>
#include <stdlib.h>
const int NUM_HOMEWORK=15
const float HOMEWORK_SCORES[]={100,100,100,100,70,80,100,80,100,100,80,100,70,80,100};
const float HOMEWORK_WEIGHTS[]={1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0};
const int NUM_E... | [
"nguyen.tb17@gmail.com"
] | nguyen.tb17@gmail.com |
4b5eaee0e66268f46ae713ae7e56869774af2808 | b5f40b39e0445b3191b954f61421156753374426 | /JONG_Algorithm/insertionSort.c | df9d2437552e4a8be9d5f3e2f0467194a469c10e | [] | no_license | eseudeo/Algorithm | 450bbf6cacf39aedb107428dd111a29fd437ff47 | 9c1369f83b4baaa9757fc3ccfdf2c6b91b332f78 | refs/heads/master | 2020-04-07T17:50:32.136471 | 2019-08-08T14:05:26 | 2019-08-08T14:05:26 | 132,599,278 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 478 | c | #include <stdio.h>
int main(void) {
int A[10000], size,loc, newItem;
int i, j, temp, count = 0;
scanf_s("%d", &size);
for (i = 0;i < size;i++) {
scanf_s("%d", &A[i]);
}
for (i = 1;i < size;i++) {
loc = i - 1;
newItem = A[i];
while (loc >= 0 && newItem < A[loc]) {
A[loc + 1] = A[loc];
loc--;
co... | [
"noreply@github.com"
] | eseudeo.noreply@github.com |
8d83463c0bb21384da3b71e56cae043b5fd6379a | c2cedcf36667730f558ab354bea4505b616c90d2 | /players/mizan/opl/CELLS/C5126.c | ab13e1ab51ee8b5800844edd80c89a1ba6222789 | [] | no_license | wugouzi/Nirvlp312mudlib | 965ed876c7080ab00e28c5d8cd5ea9fc9e46258f | 616cad7472279cc97c9693f893940f5336916ff8 | refs/heads/master | 2023-03-16T03:45:05.510851 | 2017-09-21T17:05:00 | 2017-09-21T17:05:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 481 | c | /* This is a 'stub' object which does nothing much
* other than to be a placeholder for a wall cell. */
#include "/obj/ansi.h"
reset(int arg)
{
move_object(this_object(), "/players/mizan/opl/daemons/gridboxDM");
}
string query_current_icon() {
return GRY + "W" + NORM;
}
string query_terrain_icon()
{
return... | [
"rump.nirv@gmail.com"
] | rump.nirv@gmail.com |
549815fb0358b93ad861c2e99250e6efdee475c6 | bd10966a2789ada6f01bd7a79061d89d2012712b | /queue.c | f9156a10edf6ef33f7b7e38abd6ac64bed459989 | [] | no_license | pvcodes/Public-code | 064599ab7cd70eff3b76778db65f6715f9184ff4 | b4d9817eb69ea03d94ad4f3c53347033d71fb0b3 | refs/heads/master | 2021-06-07T09:11:55.403873 | 2016-03-31T13:18:18 | 2016-03-31T13:18:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,309 | c | #include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
//--------------------------------------------------------------------------------------------------------------------//
struct node
{
int value;
struct node *next;
} *first, *last;
//-----------------------------------------------------------------------... | [
"Vlaaaaaaad@users.noreply.github.com"
] | Vlaaaaaaad@users.noreply.github.com |
fc112209f72b150d4e96ab209bd9c4c45416c6ee | de8c0ea84980b6d9bb6e3e23b87e6066a65f4995 | /3pp/linux/drivers/pinctrl/pinctrl-amd.c | eab078244a4c3e8c4c6bfea829e41edab62f76c4 | [
"Linux-syscall-note",
"GPL-2.0-only",
"MIT"
] | permissive | eerimoq/monolinux-example-project | 7cc19c6fc179a6d1fd3ec60f383f906b727e6715 | 57c4c2928b11cc04db59fb5ced962762099a9895 | refs/heads/master | 2021-02-08T10:57:58.215466 | 2020-07-02T08:04:25 | 2020-07-02T08:04:25 | 244,144,570 | 6 | 0 | MIT | 2020-07-02T08:15:50 | 2020-03-01T12:24:47 | C | UTF-8 | C | false | false | 26,475 | c | // SPDX-License-Identifier: GPL-2.0-only
/*
* GPIO driver for AMD
*
* Copyright (c) 2014,2015 AMD Corporation.
* Authors: Ken Xue <Ken.Xue@amd.com>
* Wu, Jeff <Jeff.Wu@amd.com>
*
* Contact Information: Nehal Shah <Nehal-bakulchandra.Shah@amd.com>
* Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
*/
#includ... | [
"erik.moqvist@gmail.com"
] | erik.moqvist@gmail.com |
c38896fe88c3079027e879c4325b579474c2ef33 | e654e208d25be168d6ce9c4b67fbfe94f033660c | /c/tests/onelayer_compare.h | 47625ac725316366faadef7849de4d51cc255a3b | [
"Unlicense"
] | permissive | sandy2008/binary-net-toolkit | f4c2c9eca3edfbcf7f79531d4d9a62f103b62652 | c9807f60a9cff7b90319a576a27e77ca163cc2e1 | refs/heads/master | 2022-10-15T11:04:32.249544 | 2019-07-08T07:13:03 | 2019-07-08T07:13:03 | 186,352,570 | 2 | 0 | Unlicense | 2022-09-23T22:23:06 | 2019-05-13T05:41:16 | C | UTF-8 | C | false | false | 5,174 | h | float x_in[784] = {0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0... | [
"sandy2142@qq.com"
] | sandy2142@qq.com |
d349e58f3a3b31b5e2b9a48500744967fd4f4823 | abac2b874f2fb57cefd4f9e7c15f1d02101cc629 | /lab10/heap_sort.c | 2493d516f1c181a5817986b6e5f3a19078b9b7f3 | [] | no_license | liontting/HYU_CSE2010 | a9e4eb7a1092a435c7c0eb3c9e13658c5d592b70 | 6a81b3942a56b28d62fafc45310ab8125b888204 | refs/heads/master | 2022-12-13T20:41:12.170966 | 2020-08-17T14:45:38 | 2020-08-17T14:45:38 | 288,205,583 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,458 | c | #include <stdio.h>
#include <stdlib.h>
#define MAX_SIZE 100
struct HeapStruct {
int Capacity;
int Size;
int *Elements;
};
HeapStruct* CreateHeap(int heapsize) {
HeapStruct* heap = (HeapStruct*)malloc(sizeof(HeapStruct));
heap->Capacity = heapsize;
heap->Elements = (int*)malloc(sizeof(int)*(heapsize + 1));
heap... | [
"13580wjdaud@naver.com"
] | 13580wjdaud@naver.com |
b7cfd7f7be078361ebc5b7bc2e947f850fbd1e4a | f7cbfb0c72bc3c979bf8dc156b9815b7bffa683e | /recipes/mplayer/files/vo_omapfb.c | cb4daff9461e4f58ad3686f81a845cdf7979bb88 | [
"MIT"
] | permissive | overo/overo-oe-natty | a2e77dd6f37ca7ba2a7049488c0790de5dadc5d4 | 695d932b8f25e31b9ae9a3c3ee310331b9c93051 | HEAD | 2016-09-05T16:49:01.171341 | 2011-04-24T11:26:33 | 2011-04-24T11:26:33 | 1,678,549 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 17,496 | c | /*
Copyright (C) 2008 Gregoire Gentil <gregoire@gentil.com>
Portions Copyright (C) 2009 Howard Chu <hyc@symas.com>
This file adds an optimized vo output to mplayer for the OMAP platform. This is a first pass and an attempt to help to improve
media playing on the OMAP platform. The usual disclaimer comes here: this co... | [
"koen@openembedded.org"
] | koen@openembedded.org |
f801ecedabf5bbae8197355551e79867969bc39a | 75859787b3eb1fc054b5df82c26bc261421d47e0 | /3rdparty/genFiles/CSI-RS-Config-v1430.c | 5deb4f47d9b59f5225756690a997ec1bda8611c8 | [] | no_license | aa7133/RRC | e118b3d769abff4b0b42d7511530f7b1cc29d09e | 955c1ceadebf97d21306f3c083b5f38a24838da4 | refs/heads/master | 2020-12-10T10:45:56.892861 | 2020-01-26T13:02:20 | 2020-01-26T13:02:20 | 233,563,734 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,648 | c | /*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "EUTRA-RRC-Definitions"
* found in "../asnFiles/36331-f60-ASNfunctions.asn"
* `asn1c -fcompound-names -findirect-choice -fincludes-quoted -fno-include-deps -gen-PER -no-gen-OER -D.`
*/
#include "CSI-RS-Config-v1430.h"
#include "CSI-R... | [
"aa7133@att.com"
] | aa7133@att.com |
8ebdd17b9812262036f689fad6f311b15b36f7f5 | 5e0970d2157761e3007b4f05da2bd7d5d722b302 | /C/《C语言实战105例》/055/ping.c | 6a633a7d3ec168915a3b3d6cbc04e8d35c6d337c | [] | no_license | fblrainbow/MySource | 80b7aeca1480aad2c0e0fef3b03484b7197c3553 | 0fe2237d4ffc27fb9ceaee0958506891ad6145e3 | refs/heads/master | 2021-01-22T02:25:37.489743 | 2017-06-14T03:20:09 | 2017-06-14T03:20:09 | 92,361,723 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 4,692 | c | #include "pin.h"
/*globals*/
char sendbuf[BUFSIZE];
int datalen; /*bytes of data,following ICMP header*/
int nsent=1; /*syn num*/
pid_t pid; /*our PID*/
int sockfd; /*our raw socket*/
struct sockaddr_in to;
struct sockaddr_in from;
int spackets=0;
int rpackets=0;
/*计算时间差*/
void tv_sub(struct timeval* out... | [
"846058904@qq.com"
] | 846058904@qq.com |
6a8effa71ca444fa9ba2a018a47b7f64180b1a02 | 2d15fe0a64331e4b92717783252ba1525d550173 | /src/include/shared/atrc.h | 072da98a3912f1bd7120473966ee13590ca3459c | [
"MIT"
] | permissive | TinyOSOrg/TinyOS | c0cc2bce2eb7947b24a014d388a9be2c4391304c | 9163f6ed4abda2b8b7c93381fc99f93e7312cc78 | refs/heads/master | 2021-04-15T12:50:19.323591 | 2018-09-05T05:37:55 | 2018-09-05T05:37:55 | 126,816,805 | 16 | 4 | null | 2018-04-28T08:33:18 | 2018-03-26T11:11:11 | C | UTF-8 | C | false | false | 2,116 | h | #ifndef TINY_OS_SHARD_ATRC_H
#define TINY_OS_SHARD_ATRC_H
#include <shared/stdbool.h>
#include <shared/stdint.h>
/*
atrc是一种提供以下操作的容器:
1. 创建时指定空间上限,除元素空间外额外空间开销为O(1)
2. O(1)时间分配一个新元素空间,返回一个该元素的句柄
3. O(1)时间跟据句柄得到元素空间
4. O(1)时间跟据句柄释放元素空间
5. O(n)时间遍历所有元素,其中n是空间上限
就是数组 + 自由链... | [
"248283056@qq.com"
] | 248283056@qq.com |
432d4b022c3736bae8d1a1ed460ca6188918d877 | 32f437d47f4827870bd6262fdf3c5b6424570df8 | /9/e/include/hd.h | d11a79ac90a6c1a42896f2828ab2d85e6cd17acb | [] | no_license | meadlai/libertyOS | e7daf372d08d99e33fb919c2faa483127941a838 | 16ab7a9346dba17cdd34d16061a532773c901454 | refs/heads/master | 2023-01-08T23:17:04.604478 | 2020-11-17T01:52:26 | 2020-11-17T01:52:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,227 | h | #ifndef HD_C
#define HD_C
#include "type.h"
/* Command Block Registers, Primary */
#define REG_DATA 0x1F0
#define REG_ERROR 0x1F1
#define REG_FEATURES REG_ERROR
#define REG_NRSECTOR 0x1F2
#define REG_LBA_LOW 0x1F3
#define REG_LBA_MID 0x1F4
#define REG_LBA_HIGH 0x1F5
#define REG_DEVICE 0x1F6
#define REG_STATUS 0... | [
"2593093242@qq.com"
] | 2593093242@qq.com |
5c3c38c85ee68b48ad5936903b15a72b66be8df7 | 264cc34d1d5322c9c955f351e5ed710836f6a1a5 | /cmake_targets/basic_simulator/ue/CMakeFiles/RRC_Rel14/BLER-Result-r12.c | d34f73b6ac706de63ca00c35e98c526b0457a358 | [
"BSD-3-Clause",
"BSD-2-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-generic-cla"
] | permissive | mr-ytseng/openairinterface5g | 8d40a768b2046da8c521f58d34c0466226f1c154 | 54d541c22cdfcb774774089291c93e4e79294a1d | refs/heads/master | 2021-10-27T20:56:33.843199 | 2019-04-19T15:37:55 | 2019-04-19T15:37:55 | 177,127,103 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 5,786 | c | /*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "EUTRA-RRC-Definitions"
* found in "/home/user/openairinterface5g/openair2/RRC/LTE/MESSAGES/asn1c/ASN1_files/lte-rrc-14.7.0.asn1"
* `asn1c -pdu=all -fcompound-names -gen-PER -no-gen-OER -no-gen-example -D /home/user/openairinterface5g/c... | [
"yuchia.tseng@irt-systemx.fr"
] | yuchia.tseng@irt-systemx.fr |
2c4ea4d9539a1167cd622eccd49c8e76da429a9a | 585c745463be13a9213134757fbf4aa7a2e4800f | /lib/dnscore/include/dnscore/shared-heap-bytearray-output-stream.h | 18365f8fbf585deacae8b0e664db7da6ac6bd382 | [
"BSD-3-Clause"
] | permissive | f0xmulder/yadifa-2.5.0-10188 | ba05c8717f366edf89f31f146673f62d1254539c | 3f4594c13ac5ca2c0741a7fe7b15fe42191fef8e | refs/heads/main | 2023-07-30T02:55:46.731933 | 2021-09-14T17:51:55 | 2021-09-14T17:51:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,481 | h | /*------------------------------------------------------------------------------
*
* Copyright (c) 2011-2021, EURid vzw. All rights reserved.
* The YADIFA TM software product is provided under the BSD 3-clause license:
*
* Redistribution and use in source and binary forms, with or without
* modification, are perm... | [
"8403350+mrshellby@users.noreply.github.com"
] | 8403350+mrshellby@users.noreply.github.com |
5726028772cea1fcf352aea4844505e087c725c2 | be14e0da7e5113f8629fd8be712ff7b9b5b07643 | /libboxyseq/pattern_manager.h | 971c1f81222c48c4f881779b4856ff0e6d1d5a42 | [] | no_license | jwm-art-net/BoxySeq | 1c8e9542c2cada97f9ac1766768859e91dcaa824 | 9931f5e20ad56fd1c92929645c3fcf035a6cbb81 | refs/heads/master | 2021-01-01T19:01:42.523367 | 2012-02-20T18:59:47 | 2012-02-20T18:59:47 | 727,443 | 4 | 0 | null | null | null | null | UTF-8 | C | false | false | 894 | h | #ifndef PATTERN_MANAGER_H
#define PATTERN_MANAGER_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdbool.h>
#include "pattern.h"
typedef struct pattern_manager pattern_manager;
pattern_manager* pattern_manager_new(void);
void pattern_manager_free(pattern_manager*);
pattern* pattern_m... | [
"james@jwm-art.net"
] | james@jwm-art.net |
2f7a9ec025407b953d884dd5da1c7d5b6a0df1c8 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/FFmpeg/libavfilter/extr_avfiltergraph.c_graph_check_validity.c | 5f6d8a6b9a29b77d956c9825b83a397aad08a668 | [] | no_license | isabella232/AnghaBench | 7ba90823cf8c0dd25a803d1688500eec91d1cf4e | 9a5f60cdc907a0475090eef45e5be43392c25132 | refs/heads/master | 2023-04-20T09:05:33.024569 | 2021-05-07T18:36:26 | 2021-05-07T18:36:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,816 | 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 |
d44bdd9f9139ce518868d97b3ea95709911f7249 | c9b1d9481663f35a745533e215e512c31f00f945 | /vendors/realtek/sdk/amebaD/component/os/freertos/freertos_v10.2.0/Source/portable/IAR/ARM_CM33_NTZ/non_secure/port.c | 120d05b825c06d503d5ab03237107caf77559418 | [
"Apache-2.0",
"MIT",
"freertos-exception-2.0",
"GPL-2.0-or-later"
] | 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 | 32,680 | c | /*
* FreeRTOS Kernel V10.2.0
* Copyright (C) 2019 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, includ... | [
"hank.su@realtek.com"
] | hank.su@realtek.com |
ac314afb3a1c754ea15525d6ba6ccc8964dc4126 | 4a46c8a3eee55c7f59220a3fc9c760e29d5dd9d6 | /src/utils/particles.c | 92094ea4414ff5ff5c48422235be7bbec872b8da | [] | no_license | irvinlim/cs3211-project-2 | 9281d2c2b50251fadd47fb24e06f46b6b863256e | b648245bed90db3b06015b6df06b36189e48c954 | refs/heads/master | 2020-03-08T16:02:37.010067 | 2018-04-21T18:44:17 | 2018-04-21T18:44:17 | 128,228,677 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,293 | c | #include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "common.h"
#include "log.h"
#include "multiproc.h"
#include "particles.h"
/**
* Allocates space for a 2-D array of arrays of particles, indexed by region.
*/
Particle **allocate_particles(int *sizes, int n_region... | [
"irvinlimweiquan@gmail.com"
] | irvinlimweiquan@gmail.com |
a5501cc153a99c11f868c3345f27d67602fdbadb | 5616023cdb89fc3c1c3172da75387a588617d1e2 | /packages/Microsoft.InformationProtection.Policy.1.10.97/build/native/include/mip_cc/upe/policy_engine_cc.h | 3972a8a0d15fbf2c0bf3c32500a94f1fe7dadfc9 | [] | no_license | jaydipdas007/AppInitialization | 0ec995d07beee08258f4e396e5e12876b53b947b | 32a79a66e8f309b56c555bb81796b5740c6fc278 | refs/heads/master | 2023-08-06T20:33:24.058736 | 2021-10-05T18:14:37 | 2021-10-05T18:14:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 30,717 | h | /*
*
* Copyright (c) Microsoft Corporation.
* All rights reserved.
*
* This code is licensed under the MIT License.
*
* 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 restricti... | [
"jad@microsoft.com"
] | jad@microsoft.com |
b0066949c2d870348cd17c2fce9c90e0447df692 | bce4c8ca5124ae853251187ebee15b3250b8d4a5 | /savinglives/main/numpy-1.7.2/numpy/core/src/umath/ufunc_object.c | 2d217de69fc0d4919475b1c1289158e179f01f32 | [] | no_license | manav95/ddfdf | d68bc8d3029b96494ec45f91bd3ceb164dd7055a | 4105332a03088e31ea9002cf27d3e6706dc40024 | refs/heads/master | 2021-01-01T19:15:43.049872 | 2014-02-10T01:47:16 | 2014-02-10T01:47:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 149,613 | c | /*
* Python Universal Functions Object -- Math for all types, plus fast
* arrays math
*
* Full description
*
* This supports mathematical (and Boolean) functions on arrays and other python
* objects. Math on large arrays of basic C types is rather efficient.
*
* Travis E. Oliphant 2005, 2006 oliphant@ee.byu.... | [
"manavbiodutta@yahoo.com"
] | manavbiodutta@yahoo.com |
76238e45f46fa4cf849ccdc3d8e57e5855aa3e7c | 21d1b73d7dd40074ce6d595cfe4e52efb6da35c5 | /sem5/cn/3/UDP_client5.c | 77a7451b2eedc74f0f19fade74ef48a4d2da99bf | [] | no_license | jeevanpuhan/iter-sem5-ubuntu | b2557f1a9e0622d6b2fdfbeec50dca4e2c31da0d | 02a245a6d51e34675cce1339b1ebe0deace3d381 | refs/heads/main | 2023-02-03T09:56:58.885708 | 2020-12-19T16:49:37 | 2020-12-19T16:49:37 | 312,865,777 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 721 | c | #include<sys/types.h>
#include<sys/socket.h>
#include<netinet/in.h>
#include<string.h>
#include<arpa/inet.h>
#include<string.h>
#include<arpa/inet.h>
#include<stdio.h>
#define MAXLINE 1024
int main(int argc,char* argv[])
{
int sockfd;
int n;
socklen_t len;
char sendline[1024],recvline[1024];
struct sockaddr_in servaddr... | [
"jeevankumarpuhan@gmail.com"
] | jeevankumarpuhan@gmail.com |
53656f8a8ea86b53d42dbc1bd1b44816a9c20578 | 1fabbdfd1ca9ea1b6808893e12bd907eb74de414 | /xcode/Classes/Native/mscorlib_System_Reflection_MonoPropertyInfo.h | 54e29aedfede83ed8ed11ae41edd4baa022e445b | [] | 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 | 880 | h | #pragma once
#include <stdint.h>
// System.Type
struct Type_t;
// System.String
struct String_t;
// System.Reflection.MethodInfo
struct MethodInfo_t1087;
// System.ValueType
#include "mscorlib_System_ValueType.h"
// System.Reflection.PropertyAttributes
#include "mscorlib_System_Reflection_PropertyAttributes.h"
// Syst... | [
"bu213200@gmail.com"
] | bu213200@gmail.com |
e7873c44d9d5b6642614c80d91f1cff4037c3146 | 9966cf9d1c7410530d85acaf6d680f00de12cbad | /stack/low/btcontroller/core/include/bz_log_defines.h | e80f3d87f48362401e1dd5d5de585f37c084f01e | [] | no_license | venkatarajasekhar/BumbleBee1 | c120f02ec25565ecec8c77675ee18d61f8ce2045 | e2fec74d207bed3ff74045eafc89c0b59a79a9f7 | refs/heads/master | 2020-06-18T07:43:32.253687 | 2016-01-13T05:39:43 | 2016-01-13T05:39:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,687 | h | /***************************************************************************
Copyright (C) MindTree Ltd.
This module is a confidential and proprietary property of MindTree and
a possession or use of this module requires written permission of MindTree.
****************************************************************... | [
"BT_SCO@Jane-PC.realsil.com.cn"
] | BT_SCO@Jane-PC.realsil.com.cn |
86cf5706b6c937ca47ae874bf237e6138e5ba86b | 70966d1237b2270ec06a83553e35d24038ddcd53 | /Coursework/C++/Operating Systems/Project 4/console.c | 6f18a96a6bcbbf80c0b85da4f8be5c1c02a8e8f1 | [] | no_license | jasoncustodio/Coursework | bf7ade45275ffc59fd154edd996810144b323b43 | e4cd18a208801572faebd8e5d107ea346b9da23c | refs/heads/master | 2021-01-22T17:48:43.854219 | 2017-09-04T22:25:28 | 2017-09-04T22:25:28 | 102,404,271 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,284 | c | // Console input and output.
// Input is from the keyboard or serial port.
// Output is written to the screen and serial port.
#include "types.h"
#include "defs.h"
#include "param.h"
#include "traps.h"
#include "spinlock.h"
#include "fs.h"
#include "file.h"
#include "memlayout.h"
#include "mmu.h"
#include "proc.h"
#in... | [
"jmaxcustodio@gmail.com"
] | jmaxcustodio@gmail.com |
19e866c6a2df3c24fb1d470a3658f8de1f93f997 | 6931d0a3d138032cdd6d1a1bb1d184a30bc1f1f2 | /jobs/learn/c_assembly/show_bytes.c | 21bf988687a4c319d70f777854796fc0d41d3d2f | [] | no_license | elliotjsteve/single_files | 875792f9efb401734c73e5cbed4693c5eec87922 | ce88bdc7762ebb0efca2517009c763e9afe51130 | refs/heads/master | 2020-12-27T05:42:02.632994 | 2020-02-02T17:00:08 | 2020-02-02T17:00:08 | 237,783,240 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 537 | c | #include<stdio.h>
typedef short int *byte_pointer;
void
show_bytes(byte_pointer start, size_t len){
int I = 0;
for ( I = 0; I < len ; I++){
printf(" %.2x", start[ I ]);
}
printf("\n");
}
void
show_int(int x){
show_bytes((byte_pointer) &x , sizeof(int));
}
void
show_float(float x){
show_bytes((byte_po... | [
"elliot.jsteve@gmail.com"
] | elliot.jsteve@gmail.com |
6b2982f6fd75973c97c636ce17c7749d40c47945 | 1503234bdcce94b443001e6696150679fa238455 | /projects/yaget/branch/conversion/Common/Render/include/RenderBase.h | 7212d710f66dbe337999688486eaba31da1538b6 | [] | no_license | eglowacki/yaget_legacy | 69db4be7c9cbfc5a1758b18bc8c12324a7071440 | b4b7498bc9824811c14682078795fc3f5a50632a | refs/heads/master | 2021-01-15T15:31:04.791791 | 2016-07-10T22:44:03 | 2016-07-10T22:44:03 | 48,589,107 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 889 | h | ///////////////////////////////////////////////////////////////////////
// RenderBase.h
//
// Copyright 10/8/2005 Edgar Glowacki.
//
// Maintained by: Edgar
//
// NOTES:
// Basic render types and defines for dll import and export macros
//
//
// #include "RenderBase.h"
//
//////////////////////////////////////... | [
"edgar_glowacki@yahoo.com"
] | edgar_glowacki@yahoo.com |
7a99b3c08e8eec9a417ed737e816f01a3d5c3884 | db4d90e92149d7be2ec0346bc422b803f0814b66 | /include/ramalloc/tls.h | 67cdd55b48f0526e56d5337ea5b087539fe17158 | [
"BSD-3-Clause"
] | permissive | fmrl/ramalloc | 1f19e53df39be3c1513ec54213f7106484b4121a | e11fea5d8554fae2dea0e60867cd170c8005eb04 | refs/heads/master | 2020-06-02T07:14:34.098399 | 2018-11-05T00:36:24 | 2018-11-05T00:36:24 | 1,413,329 | 6 | 2 | null | null | null | null | UTF-8 | C | false | false | 2,051 | h | /* ex: set softtabstop=3 shiftwidth=3 expandtab: */
/* This file is part of the *ramalloc* project at <http://fmrl.org>.
* Copyright (c) 2011, Michael Lowell Roberts.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the fol... | [
"mike@fmrl.org"
] | mike@fmrl.org |
24a3406dcbaa714ad1086be951c7fb6f12f1e84b | 4aeb491dbf3c867cb6be0fb5b08ebc3f6586d006 | /Zion/Zion-VMOS/inc/vmx/hvm.h | 8f7bd4ed4fbafb89953b89c9bf636260f092247a | [] | no_license | cust0m/bluepillstudy | e44c2653868876d12829f0cc7b8fb3bcd52b7642 | 5806e1d2568cb8999c79313408f69e3099d5d382 | refs/heads/master | 2022-06-21T16:42:37.450964 | 2022-05-12T19:26:36 | 2022-05-12T19:26:36 | 37,096,589 | 7 | 5 | null | null | null | null | UTF-8 | C | false | false | 1,046 | h | #ifndef ZION_HVM_H
#define ZION_HVM_H
#include <inc/lib/stdio.h>
#include <inc/kern/mmu.h>
#include <inc/lib/string.h>
#include <inc/vmx/vmx.h>
#include <inc/vmx/common.h>
extern HVM_DEPENDENT Vmx;
//+++++++++++++++++++++Definitions+++++++++++++++++++++++++++
//+++++++++++++++++++++Temp Definitions+++++++... | [
"linqian.qian.lin@875c5e1d-5f53-0410-a04a-fb0481a72a73"
] | linqian.qian.lin@875c5e1d-5f53-0410-a04a-fb0481a72a73 |
ad68ca8f5ea9756f23daae459505b58a7e57d694 | b049ec2f36bb63537ca5b73717635f2dc0126cda | /208_Implement_Trie-Prefix_Tree/208_2.c | c1f49e45d780c9a9faf30f25b32f67c99d1348cd | [] | no_license | massquantity/LeetCode | 01d29fe8922b7545140015efbda0f71b04043124 | e298cdab86a4de81bf5a44579c54b5bc7bcb1618 | refs/heads/master | 2021-07-20T07:18:38.109707 | 2021-07-03T04:11:15 | 2021-07-03T04:11:15 | 135,297,184 | 3 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,118 | c | typedef struct TrieNode {
struct TrieNode *next[26];
bool isEnd;
} Trie;
Trie* trieCreate() {
Trie *root = (Trie*)malloc(sizeof(Trie));
memset(root, 0, sizeof(*root));
root->isEnd = false;
return root;
}
void trieInsert(Trie* obj, char * word) {
Trie *node = obj;
for (int i = 0; i < strlen(word); i++)... | [
"wdmjjxg@163.com"
] | wdmjjxg@163.com |
db2040868db903c1e6cbbddde66ed6df240c6b17 | dca5cc5012162d01cd0e056484228a6c2bc0db4d | /build/buildcfg/buildversion.h | 5f001aeea6fa82d280728a9b51d81d62c15d66ed | [] | no_license | moruoxian/biliobs | b1c88fc03c6cf05414fcc8c499b1d7a3e326055f | f007b103c6511db557d4532fe45c0e3dcbb1bdb0 | refs/heads/master | 2022-07-19T03:47:44.961700 | 2020-05-15T02:05:26 | 2020-05-15T02:05:26 | 258,257,542 | 3 | 1 | null | 2020-04-23T16:02:24 | 2020-04-23T16:02:23 | null | UTF-8 | C | false | false | 70 | h | #define VI_FILE_VERSION 0,7,1,0
#define VI_FILE_VERSION_DOT "0.7.1.0"
| [
"shashuo@bilibili.com"
] | shashuo@bilibili.com |
89ac6c0542aca93e3748e868ab562d7b5c152d95 | 96c83a2fdb883900107dff3285973afe4ea4e664 | /GUI/MENU_Private.h | 9ed8f181e3a988ed1eff1f5a223e721529d0d5b1 | [] | no_license | EmbeddedSystemClass/csiAnalyzer | 34f83fab8fb148e7f7a4c3b33d39587d8da50023 | 72ed48267c1a5972210b7ae548f08025b3714d2b | refs/heads/master | 2021-01-07T04:05:47.508258 | 2018-02-12T06:20:15 | 2018-02-12T06:20:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,766 | h | /*********************************************************************
* SEGGER MICROCONTROLLER GmbH & Co. KG *
* Solutions for real time microcontroller applications *
**********************************************************************
* ... | [
"enterprise.rpandit@gmail.com"
] | enterprise.rpandit@gmail.com |
c617e43f1a0e3e9b0b604d6b55402fdeb883eb1e | 9d3280739c5fa3c58eb927f40ab5f82173f2831f | /src/pybind/matrix/matrix_common_pybind.h | a9eb664334c4c37bf832f88a755626cb7e80510d | [
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | aadps/kaldi | 00c2db99331cdf80fe376cb1ea8bce70d3ea05d5 | cd351bb31c98f9d540c409478cbf2c5fef1853ca | refs/heads/aadps | 2020-12-09T15:56:00.679658 | 2020-04-13T10:58:03 | 2020-04-13T10:58:03 | 233,353,064 | 0 | 0 | NOASSERTION | 2020-01-28T02:28:52 | 2020-01-12T07:11:30 | Shell | UTF-8 | C | false | false | 992 | h | // pybind/matrix/matrix_common_pybind.h
// Copyright 2019 Daniel Povey
// 2019 Dongji Gao
// 2019 Mobvoi AI Lab, Beijing, China (author: Fangjun Kuang)
// See ../../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
/... | [
"dpovey@gmail.com"
] | dpovey@gmail.com |
8bb052500cc836a1254ef013eaaf8a5ce23a2305 | c32c1b1c4a86723e642ea279878f29b494e20ac1 | /ios/Pods/Headers/Private/EXFileSystem/EXFilePermissionModule.h | 26590b8dcc199b90aff1f35426ffff5b5c417df7 | [] | no_license | jchen-1122/offchance | 4392e310bac6d0729ccd6c2eec6f50de9c32e797 | 574c5c231229ea1a06f8310c840fabb6ccaffc90 | refs/heads/master | 2022-12-13T13:17:13.356311 | 2020-09-03T19:35:34 | 2020-09-03T19:35:34 | 275,882,340 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 123 | h | ../../../../../node_modules/react-native-unimodules/node_modules/expo-file-system/ios/EXFileSystem/EXFilePermissionModule.h | [
"rxue1045@gmail.com"
] | rxue1045@gmail.com |
b0957e2307df0719a7b3cb9bbcff1919b1eb3942 | dd19fa9e5ca12786ac90432068df8246212ff838 | /Payload/Src/stm32l4xx_hal_msp.c | 6d3dc86902e6f3721e13e4c77137aedad44e544f | [
"MIT"
] | permissive | LordOfDorks/fancyDICE | 8431b2228df218d402fec937a12fe2b9d859b8b7 | dd028bfab0b8f70a730c146667c174b6b6441d4b | refs/heads/master | 2021-01-01T19:17:00.438710 | 2017-07-27T15:40:28 | 2017-07-27T15:40:28 | 98,552,766 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,270 | c | /**
******************************************************************************
* File Name : stm32l4xx_hal_msp.c
* Description : This file provides code for the MSP Initialization
* and de-Initialization codes.
*********************************************************... | [
"S@LordOfDorks.com"
] | S@LordOfDorks.com |
2c73df50064b7429244e637bf4a5fe80f356fb1a | cdb09d1de6d30fc636b82bf11dd966b7e421c653 | /lib/ngtcp2_pkt.h | 930f369eacb6492b6a68c54c0e8d0efad5358ba3 | [
"MIT"
] | permissive | liexusong/ngtcp2 | f4d66c83d70bceb4a59993989138af4dca73c657 | d5957e63aaeed2b853547ffea801e5343d67b4bd | refs/heads/master | 2021-01-21T16:04:29.900322 | 2017-06-25T16:17:46 | 2017-06-25T16:17:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,204 | h | /*
* ngtcp2
*
* Copyright (c) 2017 ngtcp2 contributors
*
* 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
* without limitation the rights to use, copy, m... | [
"tatsuhiro.t@gmail.com"
] | tatsuhiro.t@gmail.com |
9be46b07b4926024df4f000fdc26032040dcb536 | cd4985f53968b61908af690ec981fd5b853538b6 | /src/popupwin.c | 64309ff8b794bf0efbae80d927444fb22a104c54 | [
"Vim"
] | permissive | firejox/vim | 822f224397c1022507513d5786d0af9952a789a2 | 1714696600f2859f897f4ffb33cedb5de09eded3 | refs/heads/master | 2020-05-29T20:42:42.594764 | 2019-05-29T22:12:11 | 2019-05-29T22:12:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,500 | c | /* vi:set ts=8 sts=4 sw=4 noet:
*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read a list of people who contributed.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.txt for an overview of the Vim source code.
*/
/*
* Implementation of popup windows. ... | [
"Bram@vim.org"
] | Bram@vim.org |
98c6a820f077843c55c912f2ee90667cb1b1f33b | d5e596b9f61a7bb8474d16d00f53041ee91c7d56 | /sdk/JN-SW-4168/Components/ZCL/Clusters/General/Include/Scenes.h | 8e4714bf0f54b8f95570b92c0e14b95ee73e1137 | [
"BSD-3-Clause"
] | permissive | grostim/JN5169-for-xiaomi-wireless-switch | 3134408d7a1b89eca979167b915df45865573a20 | 06a771795d3b2ab4095eb4d950244ee5f94690f4 | refs/heads/master | 2020-12-11T09:49:54.123791 | 2019-07-09T02:24:32 | 2019-07-09T02:24:32 | 233,812,882 | 1 | 1 | NOASSERTION | 2020-01-14T10:10:46 | 2020-01-14T10:10:45 | null | UTF-8 | C | false | false | 22,083 | h | /*****************************************************************************
*
* MODULE: Scenes Cluster
*
* COMPONENT: Scenes.h
*
* AUTHOR: Lee Mitchell
*
* DESCRIPTION: Header for Scenes Cluster
*
* $HeadURL: https://www.collabnet.nxp.com/svn/lprf_sware/Pro... | [
"248668342@qq.com"
] | 248668342@qq.com |
4876bc9614f081f29c2a11a7e4728f2fe072f387 | dd5813db3b6ea9adb6a5d9fdd2fe39d6435aed13 | /benchmarks/twolf/twolf/src/utils.h | 26b487857f4020e9dfa2c82fdabf2edd64f34550 | [] | no_license | evenmarbles/bpred_coop | e6a5a212e29ccf4acef06cae06a64c99a63d3049 | 9671f4680a857ebb67e0deb412e0567614351e6f | refs/heads/master | 2016-09-05T23:21:52.655850 | 2014-11-12T05:31:15 | 2014-11-12T05:31:15 | 26,203,995 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 532 | h | /* utils.h - utility routine insert file */
#ifndef UTILS_H
#define UTILS_H
#endif
#define LRECL 255
#ifdef HAVE_LIMITS_H
#include <limits.h>
#else
#ifndef INT_MAX
#define INT_MAX 2147483647
#endif
#ifndef INT_MIN
#define INT_MIN (-INT_MAX - 1)
#endif
#endif /* HAVE_LIMITS_H */
extern FILE *fpo ;
extern initP... | [
"ajackson.us@gmail.com"
] | ajackson.us@gmail.com |
f642ac9512b7b47b5c1b933127eb73bb30b4b2b1 | b356adc9bd515d919edcdda9b2aceded1b7dc905 | /drivers/misc/mediatek/pd/inc/tcpci_config.h | b030b7630198e60a222fa30900993865b4aa237b | [] | no_license | wisen/tiny_kernel_comment | ca57b10a4df8eef989435ac5974fae5df0f1cc20 | 3401fe62392c62f735fc6dac1d96c51cca44d249 | refs/heads/master | 2020-03-17T21:48:36.830903 | 2018-11-05T16:52:57 | 2018-11-05T16:52:57 | 133,976,587 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,063 | h | /*
* Copyright (C) 2016 Richtek Technology Corp.
*
* Author: TH <tsunghan_tasi@richtek.com>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distribu... | [
"wisen.wang.ah@gmail.com"
] | wisen.wang.ah@gmail.com |
b9f6415e973aaf60376514fa16f8a94f4e5c9276 | 7b76577f8e02a217b7eafeb9f62de7989b7e8dd2 | /大话数据结构/数据结构代码(高一凡)/TC/CH4/ALGO4-1.C | 1fffb10de81d2d1bdb84fe9418faa8b5fd55c747 | [] | no_license | Abadbeginning/git001 | 54a5799f06643ac7d37a77277fe92883c199863f | 2939ec165498b9bb6a07f379c1905aa5190c1b27 | refs/heads/master | 2021-08-23T09:13:17.731181 | 2017-12-04T12:59:14 | 2017-12-04T12:59:14 | 113,020,370 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 2,236 | c | /* algo4-1.c 实现算法4.6、4.7、4.8的程序 */
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.c"
void get_next(SString T,int next[])
{ /* 求模式串T的next函数值并存入数组next。算法4.7 */
int i=1,j=0;
next[1]=0;
while(i<T[0])
if(j==0||T[i]==T[j])
{
++i;
++j;
next[i]=j;
}
else
j=next[j]... | [
"2029618609@qq.com"
] | 2029618609@qq.com |
61901c8d3e23ff85892167973b0787e952cb61db | 68f32e961204095d311ad2712b04375e8e5337f9 | /Tutorial42.c | 778d442f03cb83cc2de6366be514696b7fe8b285 | [] | no_license | raunaktr/nostalgic-C | e49142e0457bb70484d681b764097a67203a76c4 | 6ba7e4cf8ead5d5a4b73e93f584745cf6bbf845d | refs/heads/main | 2023-06-23T20:13:30.514891 | 2021-07-10T12:35:58 | 2021-07-10T12:35:58 | 384,693,733 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 282 | c | #include <stdio.h>
#include <stdlib.h>
int fun1(int b)
{
printf("The address of b is %d\n", &b);
return b * 10;
}
int main()
{
int b = 32;
printf("The address of b is %d\n", &b);
int val = fun1(b);
int *ptr = &val;
printf("%d\n", val);
return 0;
}
| [
"reachtoraunak@gmail.com"
] | reachtoraunak@gmail.com |
2359fc85b5f334f44a591be6ced56884c715a5c2 | c2cedcf36667730f558ab354bea4505b616c90d2 | /players/vital/temp/rich/quest/tape1.c | 359f33160449a07b431424f664a489db4a927487 | [] | no_license | wugouzi/Nirvlp312mudlib | 965ed876c7080ab00e28c5d8cd5ea9fc9e46258f | 616cad7472279cc97c9693f893940f5336916ff8 | refs/heads/master | 2023-03-16T03:45:05.510851 | 2017-09-21T17:05:00 | 2017-09-21T17:05:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,036 | c | #include "security.h"
int new_object;
int new_value;
string new_short, new_long, new_name;
short()
{
if (new_object)
return new_short;
return "The staff of death";
}
query_value()
{
if (new_object)
return new_value;
return 0;
}
long()
{
if (new_object) {
write(new_long... | [
"rump.nirv@gmail.com"
] | rump.nirv@gmail.com |
979fd84275277733142f23a60dfd46cc5651e742 | 02afa674ddf6cd70727cf56026b9b68f4f2b524c | /ch01/fptr.c | f1e962d0900696f0e25d8d354e255efd5b570b45 | [] | no_license | beekalam/c.and.data.structures.by.practice | ee91d976af96f0eba7b5ced278a610bb73f53570 | b0230802214ae7d6601d25c482073fcfe8a15eff | refs/heads/master | 2021-01-10T13:23:06.001322 | 2016-02-28T17:15:10 | 2016-02-28T17:15:10 | 52,732,889 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,427 | c | //Use structures to find surface area of different colored balls
#include <stdio.h> //library file on standard i/o
#include <stdlib.h>
#define PI 3.14159
//declare function prototype
float FindArea(float radius);
struct FootBall {
char color[20];
char sport[2];
float radius;
float area;
};
typed... | [
"beekalam@gmail.com"
] | beekalam@gmail.com |
b336f893055cf23b92be9ac3f44ae76608189f77 | a6e16f8b4e3e9dfb7a8b6f323b7e35fb82537222 | /C/Jean Lusetti/Vision/VISION/GSTENV.H | 2e53b99d1533b11237200a033433516d89198456 | [] | no_license | pjones1063/Atari_ST_Sources | 59cd4af5968d20eb3bf16836fc460f018aa05e7c | fe7d2d16d3919274547efbd007f5e0ec1557396d | refs/heads/master | 2020-09-04T20:21:44.756895 | 2019-10-30T12:54:05 | 2019-10-30T12:54:05 | 219,878,695 | 2 | 0 | null | 2019-11-06T00:40:39 | 2019-11-06T00:40:39 | null | UTF-8 | C | false | false | 1,780 | h | #ifndef __GSTENV
#define __GSTENV
#ifndef __GWINDOWS
#include "..\tools\gwindows.h"
#endif
/**********************/
/* Header de GSTENV.C */
/**********************/
int GetRVBForVIMG(GEM_WINDOW *wnd, int mx, int my, int rvb[3]) ;
int ztool(int num) ;
void update_tools(int *msg, char *flags) ;
int OnA... | [
"ggn.dbug@gmail.com"
] | ggn.dbug@gmail.com |
80ab56ccc277085caed33f3265dbc38dfdf1339f | 1fd33efcea837bb2ffcd32fcdceee78e246e1414 | /bird/imgsensor/gc0329_yuv_xufengtai_dali_JY001H01_45C/kernel/gc0329yuv_CameraCustomized.h | ef4ef83d9101748f7f5e1eddd2d77ede6aed052f | [] | no_license | rock12/android_kernel_xbasic | cda1c5a956cf8afdc6b9440cefd84644e4bfd7b5 | 38d09253ba7ef2e7e4ba2ee7f448a04457159ddb | refs/heads/master | 2021-01-17T08:38:46.441103 | 2016-07-01T19:36:39 | 2016-07-01T19:36:39 | 62,417,176 | 2 | 0 | null | 2016-07-01T20:07:19 | 2016-07-01T20:07:19 | null | UTF-8 | C | false | false | 8,333 | h | /* Copyright Statement:
*
* This software/firmware and related documentation ("MediaTek Software") are
* protected under relevant copyright laws. The information contained herein
* is confidential and proprietary to MediaTek Inc. and/or its licensors.
* Without the prior written permission of MediaTek inc. and/or ... | [
"yugers@gmail.com"
] | yugers@gmail.com |
2f8afb4481eafb30490fcbe53df6efed7f94ca93 | 27ae8b8e3141ccc2be1ff4e38fecd4f638c36b54 | /kandd/ch1/ch1.5-2.c | 82ef152cf5f5b3641fbdc1c38700a8e8cd078099 | [] | no_license | ingoglia/c_programming_exercises | efc2b332d06e744f1f64ac503594476b17527b3b | e975cb20b4be1d29b1890e2ffb5e7dd7eb731f17 | refs/heads/master | 2018-10-22T10:39:10.205455 | 2018-08-25T04:00:20 | 2018-08-25T04:00:20 | 115,218,646 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 138 | c | #include <stdio.h>
/* copy input to output; 2nd version */
int main()
{
int c;
while ((c = getchar()) != EOF)
putchar(c);
}
| [
"ingoglia@keemail.me"
] | ingoglia@keemail.me |
a2038c26285bc273559f6ab80e2f9cdba2a11239 | 71e5f96a29f5d643ab888b37677d38c33f8d765d | /d/islands/spriggans/room/s15.c | a83021014c274654ef4ff0bcce935b10938e9e94 | [
"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 | 225 | c | //Shore around the island Leilani ~Circe~ 5/26/07
#include <std.h>
#include "../spriggan.h"
inherit SBEACH;
void create(){
::create();
set_exits(([
"north" : PATHEXIT"s14",
"east" : PATHEXIT"s16"
]));
}
| [
"law@shadowgate.org"
] | law@shadowgate.org |
8d1e9b32a8d8c1f3498c7dd3b2eaf5c2b7e70649 | a565dc8a731c4166548d3e3bf8156c149d793162 | /PLATFORM/TI_EVM_3530/SRC/APPS/Vox/Audio/resource.h | b9c90a5ae9f3d8c62560ae2ddb62868fbe6b8b22 | [] | no_license | radtek/MTI_WINCE317_BSP | eaaf3147d3de9a731a011b61f30d938dc48be5b5 | 32ea5df0f2918036f4b53a4b3aabecb113213cc6 | refs/heads/master | 2021-12-08T13:09:24.823090 | 2016-03-17T15:27:44 | 2016-03-17T15:30:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,133 | h | //{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by Audio.rc
//
#define IDI_PLAY 5
#define IDD_PLAY_RECORD_DIALOG 101
#define IDB_BT_ON_BITMAP 102
#define IDI_BT_ICON 122
#define IDI_BT_ICON_GREY 124
#define I... | [
"ruslan.sirota@micronet-inc.com"
] | ruslan.sirota@micronet-inc.com |
b5aa7c6e3b8c73d2fc7ad46cc03db9aab7c81f23 | f26ccdee5edfd9982939940288d9d5420518d701 | /picasoSerial.h | c111e383da16e078bcfa5850bcd75b5e4e1b5420 | [] | no_license | 4dsystems/Picaso-Serial-Linux-Library | 51d0fa637a2722c324d303a18bd277b994b88cf4 | 0999be4eefd415f9e699fa3b0a618cc795eb95c1 | refs/heads/master | 2020-05-20T02:18:43.366612 | 2019-10-01T01:22:17 | 2019-10-01T01:22:17 | 27,458,098 | 1 | 5 | null | null | null | null | UTF-8 | C | false | false | 9,692 | h | /*
* File: picasoSerial.h
* Author: 4DSystems
*
* Created on October 2, 2014, 9:54 AM
* Copyright (c) 2014 4D Systems PTY Ltd, Sydney, Australia
*/
#ifndef PICASOSERIAL_H
#define PICASOSERIAL_H
#include "Picaso_Types4D.h"
// SPE Version 1.1 added bus_ and pin_ functions
#define Err4D_OK 0
#define ... | [
"engineering@4dsystems.com.au"
] | engineering@4dsystems.com.au |
a8b148df8066d79a3f1acc60e1b6354e8802c5a5 | d18f78fb3b6093e4539fdb33d34a2748bf36b99a | /Horizon/Other/AppHeader.h | e5bcccd4b4f91f0a26319ad3172c83cd0356f18e | [] | no_license | Hirodong/Horizon | 65bfaa69843848c698100cf0cef2238ec43e94e6 | 484b847e4afc51e3e69cb7c38a0611c0d91f6332 | refs/heads/master | 2020-12-24T12:20:06.396579 | 2016-07-02T02:47:28 | 2016-07-02T02:47:28 | 62,400,636 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 250 | h | //
#ifndef AppHeader_h
#define AppHeader_h
#define kWidth [UIScreen mainScreen].bounds.size.width
#define kHeight [UIScreen mainScreen].bounds.size.height
#define kSelfWidth self.frame.size.width
#define kSelfHeight self.frame.size.height
#endif
| [
"Hiro@HirodeMacBook-Pro.local"
] | Hiro@HirodeMacBook-Pro.local |
c3be76c22e44dbe5206f6a63f0638b477c2526d2 | b9dd7f6e5188ee019e986a9f3b0a72dd1d83e3dc | /btmux/branches/ai-2.0/src/hcode/btech/mech.tech.events.c | 80c3999d47da081a0739e39da013aa7dcee1ed38 | [
"Artistic-1.0",
"LicenseRef-scancode-public-domain",
"Artistic-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | furrymcgee/btonline-btech | 0fd0001234c9f2e0651eb6bf369a88083a1cba94 | 3d894ee43f86ffb3cd10ef1fd7a42ffb7d0b8a1d | refs/heads/master | 2021-08-30T06:13:37.282026 | 2014-03-06T19:05:13 | 2014-03-06T19:05:13 | 114,455,250 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 11,998 | c | /*
* Author: Markus Stenberg <fingon@iki.fi>
*
* Copyright (c) 1996 Markus Stenberg
* Copyright (c) 1998-2002 Thomas Wouters
* Copyright (c) 2000-2002 Cord Awtry
* All rights reserved
*/
#include "config.h"
#include "mech.h"
#include "muxevent.h"
#include "mech.events.h"
#include "mech.tech.h"
#includ... | [
"dany@e60b412a-5d77-420b-80c2-6cef64185626"
] | dany@e60b412a-5d77-420b-80c2-6cef64185626 |
5a19d8262f716769bb99c00483ecf3e91d82ac2d | 394f1674fd435a05072821ea199959c239bb392f | /embedded C/Valgrind/02.array-merge/main.c | 35b08748e22d47d5796a3b509180a39e6de8a715 | [] | no_license | bobosam/embedded-C | 20e9900549eedd435be38b279e158e6139b6e736 | 29f48b30523e2af45156097c0e42ca75a46453aa | refs/heads/master | 2021-01-10T14:15:18.248751 | 2016-01-27T07:26:44 | 2016-01-27T07:26:44 | 50,489,839 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 994 | c | #include <stdio.h>
#include <stdlib.h>
void array_merge(int[], int[], size_t, size_t, int *result);
void array_merge(int arrA[], int arrB[], size_t sizeA, size_t sizeB, int *result)
{
int i;
for (i = 0; i < sizeA; i++)
{
result[i] = arrA[i];
}
int j;
for (j = 0; j < sizeB; ... | [
"Andonov"
] | Andonov |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.