commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
2cd50fa07e9364b98c99643a006fdea5e079ff31 | hittop/parser/parser.h | hittop/parser/parser.h | // Defines the generic Parser interface for the Casper parser generator library.
//
#ifndef HITTOP_PARSER_PARSER_H
#define HITTOP_PARSER_PARSER_H
#include "hittop/parser/parse_error.h"
#include "hittop/util/fallible.h"
namespace hittop {
namespace parser {
using util::Fallible;
/// The form of a Parser class. The... | // Defines the generic Parser interface for the Casper parser generator library.
//
#ifndef HITTOP_PARSER_PARSER_H
#define HITTOP_PARSER_PARSER_H
#include "boost/range/as_literal.hpp"
#include "hittop/parser/parse_error.h"
#include "hittop/util/fallible.h"
namespace hittop {
namespace parser {
using util::Fallible... | Add convenience overload of Parse that accepts c-string literals | Add convenience overload of Parse that accepts c-string literals
| C | apache-2.0 | hittop/hittop,hittop/hittop |
76f394247acc79e003beeb06fa286f246ea7685a | test2/code_gen/dead_code_elim.c | test2/code_gen/dead_code_elim.c | // RUN: %ocheck 3 %s
g()
{
return 3;
}
main()
{
if(0){
f(); // shouldn't hit a linker error here - dead code
a:
return g();
}
goto a;
}
| // RUN: %ocheck 3 %s -g
// test debug emission too
g()
{
return 3;
}
main()
{
if(0){
int i;
f(); // shouldn't hit a linker error here - dead code
a:
i = 2;
return g(i);
}
goto a;
}
| Test debug label emission with local variables | Test debug label emission with local variables
| C | mit | bobrippling/ucc-c-compiler,bobrippling/ucc-c-compiler,bobrippling/ucc-c-compiler |
80867bf2320444893e7248bead8b63aec23993a4 | core/base/inc/RVersion.h | core/base/inc/RVersion.h | #ifndef ROOT_RVersion
#define ROOT_RVersion
/* Version information automatically generated by installer. */
/*
* These macros can be used in the following way:
*
* #if ROOT_VERSION_CODE >= ROOT_VERSION(2,23,4)
* #include <newheader.h>
* #else
* #include <oldheader.h>
* #endif
*
*/
#defin... | #ifndef ROOT_RVersion
#define ROOT_RVersion
/* Version information automatically generated by installer. */
/*
* These macros can be used in the following way:
*
* #if ROOT_VERSION_CODE >= ROOT_VERSION(2,23,4)
* #include <newheader.h>
* #else
* #include <oldheader.h>
* #endif
*
*/
#defin... | Update ROOT version files to v5.34/23. | Update ROOT version files to v5.34/23.
| C | lgpl-2.1 | tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot |
cd24cba0c92904ec7ee0a521d7074b3e232261ca | src/modules/conf_theme/e_int_config_theme.h | src/modules/conf_theme/e_int_config_theme.h | /*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#ifdef E_TYPEDEFS
#else
#ifndef E_INT_CONFIG_THEME_H
#define E_INT_CONFIG_THEME_H
EAPI E_Config_Dialog *e_int_config_theme(E_Container *con, const char *params __UNUSED__);
EAPI void e_int_config_theme_import_done(E_Config_Dialog *dia);
EAPI void... | /*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#ifdef E_TYPEDEFS
#else
#ifndef E_INT_CONFIG_THEME_H
#define E_INT_CONFIG_THEME_H
EAPI E_Config_Dialog *e_int_config_theme(E_Container *con, const char *params __UNUSED__);
EAPI void e_int_config_theme_import_done(E_Config_Dialog *dia);
EAPI void... | Declare public function in header. | Declare public function in header.
SVN revision: 35475
| C | bsd-2-clause | rvandegrift/e,FlorentRevest/Enlightenment,tasn/enlightenment,rvandegrift/e,tizenorg/platform.upstream.enlightenment,FlorentRevest/Enlightenment,tasn/enlightenment,tizenorg/platform.upstream.enlightenment,rvandegrift/e,tasn/enlightenment,tizenorg/platform.upstream.enlightenment,FlorentRevest/Enlightenment |
ba796b0f15918634fdab02132879016a50183ba4 | include/libk/physical_allocator.h | include/libk/physical_allocator.h | #ifndef PHYSICAL_ALLOCATOR_H
#define PHYSICAL_ALLOCATOR_H
typedef uint32_t page_frame_t;
#define PAGE_FRAME_CACHE_SIZE 32
#define PAGE_FRAME_MAP_SIZE (PHYS_MEMORY_SIZE/8/PAGE_SIZE)
// Linear search of page frame bitmap
page_frame_t alloc_frame_helper();
void free_frame(page_frame_t frame);
page_frame_t alloc_frame... | #ifndef PHYSICAL_ALLOCATOR_H
#define PHYSICAL_ALLOCATOR_H
#include <stdint.h>
#include <stddef.h>
#include <libk/kabort.h>
#include <libk/kassert.h>
#include <libk/kputs.h>
#ifdef ARCH_X86
#include <arch/x86/memlayout.h>
#endif
#ifdef ARCH_USERLAND
#include "tests/memlayout.h"
#endif
typedef uint32_t page_frame_t;
... | Create macros for certain repetitive shifts | Create macros for certain repetitive shifts
| C | mit | awensaunders/kernel-of-truth,Herbstein/kernel-of-truth,awensaunders/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,Herbstein/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,Herbstein/kernel-of-truth,awensaunders/kernel-of-truth |
12a7262f437f301f6004fb06a4634543685e532e | tests/apps/seh.c | tests/apps/seh.c | /**************************************************************************
*
* Copyright 2015 Jose Fonseca
* 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 wit... | /**************************************************************************
*
* Copyright 2015 Jose Fonseca
* 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 wit... | Use a better custom exception code. | test/apps: Use a better custom exception code.
| C | lgpl-2.1 | jrfonseca/drmingw,jrfonseca/drmingw,jrfonseca/drmingw,jrfonseca/drmingw |
fd94904f4bffbcd8eec0ce025e7123fcb7569c03 | tests/regression/06-symbeq/24-escape_rc.c | tests/regression/06-symbeq/24-escape_rc.c | // PARAM: --set ana.activated[+] "'var_eq'"
// Copy of 04/45 with var_eq enabled
// octApron needs to be included again and fixed
#include <pthread.h>
#include <stdio.h>
pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t mutex2 = PTHREAD_MUTEX_INITIALIZER;
void *t_fun(void *arg) {
int *p = (int *) ... | // PARAM: --set ana.activated[+] "'var_eq'"
// Copy of 04/45 with var_eq enabled
#include <pthread.h>
#include <stdio.h>
pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t mutex2 = PTHREAD_MUTEX_INITIALIZER;
void *t_fun(void *arg) {
int *p = (int *) arg;
pthread_mutex_lock(&mutex1);
(*p)++;
p... | Remove outdated octApron comment from 06/24 | Remove outdated octApron comment from 06/24
| C | mit | goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer |
9ad7e0d7b5652d3279d227a1537c3b39b8cad1d0 | test/Sema/crash-invalid-array.c | test/Sema/crash-invalid-array.c | // RUN: %clang_cc1 -triple x86_64-apple-darwin -fsyntax-only -verify %s
// PR6913
#include <stdio.h>
int main()
{
int x[10][10];
int (*p)[] = x;
int i;
for(i = 0; i < 10; ++i)
{
p[i][i] = i; // expected-error {{subscript of pointer to incomplete type 'int []'}}
}
}
// rdar://13705391
void ... | // RUN: %clang_cc1 -triple=x86_64-apple-darwin -fsyntax-only -verify %s
// PR6913
int main()
{
int x[10][10];
int (*p)[] = x;
int i;
for(i = 0; i < 10; ++i)
{
p[i][i] = i; // expected-error {{subscript of pointer to incomplete type 'int []'}}
}
}
// rdar://13705391
void foo(int a[*][2]) {(v... | Remove an old stdio.h include from the invalid-array test | Remove an old stdio.h include from the invalid-array test
This should get it up and running on win and other builders without system
headers.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@196738 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/cl... |
d3464b2f5f46a6db68f66a62e9d130b744cc6594 | src/executeStage.h | src/executeStage.h | /*
* File: executeStage.h
* Author: Alex Savarda
*/
#define INSTR_COUNT 16 // Possible size of the instruction set
#ifndef EXECUTESTAGE_H
#define EXECUTESTAGE_H
typedef struct {
unsigned int stat;
unsigned int icode;
unsigned int ifun;
unsigned int valC;
unsigned int valA;
unsigned... | /*
* File: executeStage.h
* Author: Alex Savarda
*/
#define INSTR_COUNT 16 // Possible size of the instruction set
#ifndef EXECUTESTAGE_H
#define EXECUTESTAGE_H
typedef struct {
unsigned int stat;
unsigned int icode;
unsigned int ifun;
unsigned int valC;
unsigned int valA;
unsigned... | Convert a tab into a space | Convert a tab into a space
| C | isc | sbennett1990/YESS,sbennett1990/YESS,sbennett1990/YESS |
c0355a5eb3d8787fbd9bcac928e649b3381f73a3 | modlib.h | modlib.h | /* This is main header file that is ought to be included as library */
//Include proper header files
#include <string.h>
#include <stdlib.h>
#include <inttypes.h>
#include "parser.h"
//Function prototypes
extern uint16_t MODBUSSwapEndian( uint16_t );
extern uint16_t MODBUSCRC16( uint16_t *, uint16_t );
| /* This is main header file that is ought to be included as library */
//Include proper header files
#include <string.h>
#include <stdlib.h>
#include <inttypes.h>
//Function prototypes
extern uint16_t MODBUSSwapEndian( uint16_t );
extern uint16_t MODBUSCRC16( uint8_t *, uint16_t );
| Remove inclusion of 'parser.h' and fix pointer type | Remove inclusion of 'parser.h' and fix pointer type
| C | mit | Jacajack/modlib |
d7a05b9d921d191923ded5e9770339a0bebca33b | ComponentImplementationInclude.h | ComponentImplementationInclude.h | #include "Components.h"
class HealthComponent : public HealthComponentBase {
public:
HealthComponent(Entity* entity, int maxHealth, int startHealth, const int& Health): HealthComponentBase(entity, maxHealth, startHealth, Health) {
}
void OnHeal(int amount) {
}
void OnDamage(int amount) {
}
... | #include "Components.h"
class HealthComponent : public HealthComponentBase {
public:
HealthComponent(Entity* entity, int maxHealth, int startHealth, const int& Health): HealthComponentBase(entity, maxHealth, startHealth, Health) {
}
void HandleHeal(int amount) {
}
void HandleDamage(int amount) {
... | Fix the small test to use Handle instead of On | Fix the small test to use Handle instead of On
| C | bsd-3-clause | DaemonDevelopers/CBSE-Toolchain,DaemonDevelopers/CBSE-Toolchain,DaemonDevelopers/CBSE-Toolchain |
4bb3e5fe554bc5d9e54924456a8711c3e40e6191 | hard_way/ex15.c | hard_way/ex15.c | #include <stdio.h>
int main(int argc, char *argv[]){
//create two arrays we care about
int ages[] = {23,55,15,34,78,12};
char *names[] = {
"Feinb", "Fhilp", "Wastan", "Wustak","Henris","Abkar"
};
//safely get the size of ages
int count = sizeof(ages) / sizeof(int);
int i = 0;
//first way using ... | #include <stdio.h>
int main(int argc, char *argv[]){
//create two arrays we care about
int ages[] = {23,55,15,34,78,12};
char *names[] = {
"Feinb", "Fhilp", "Wastan", "Wustak","Henris","Abkar"
};
//safely get the size of ages
int count = sizeof(ages) / sizeof(int);
int i = 0;
//first way using ... | Use pointers to start of arrays | Use pointers to start of arrays
| C | mit | thewazir/learning_c |
93802e24742842db185ead1cf18db9827a3d8664 | include/IFile.h | include/IFile.h | #ifndef IFILE_H
#define IFILE_H
#include <vector>
#include <memory>
#include "IMediaLibrary.h"
#include "ITrackInformation.h"
class IAlbumTrack;
class IShowEpisode;
class ITrackInformation;
class IFile
{
public:
enum Type
{
VideoType, // Any video file, not being a tv show episode
... | #ifndef IFILE_H
#define IFILE_H
#include <vector>
#include <memory>
#include "IMediaLibrary.h"
#include "ITrackInformation.h"
class IAlbumTrack;
class IShowEpisode;
class ITrackInformation;
class IFile
{
public:
enum Type
{
VideoType, // Any video file, not being a tv show episode
... | Fix a warning with -pedantic on some old gcc versions | Fix a warning with -pedantic on some old gcc versions
| C | lgpl-2.1 | chouquette/medialibrary,chouquette/medialibrary,chouquette/medialibrary,chouquette/medialibrary |
2803a40fe335a29f9584911d1a52856bdb302df7 | webrtc/modules/audio_coding/codecs/ilbc/nearest_neighbor.c | webrtc/modules/audio_coding/codecs/ilbc/nearest_neighbor.c | /*
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contribut... | /*
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contribut... | Fix ChromeOS build (C99 break) | Fix ChromeOS build (C99 break)
BUG=5016
TBR=henrik.lundin@webrtc.org
Review URL: https://codereview.webrtc.org/1354163002
Cr-Commit-Position: 972c6d2dc6dd5efdad1377c0d224e03eb8f276f7@{#9992}
| C | bsd-3-clause | TimothyGu/libilbc,ShiftMediaProject/libilbc,TimothyGu/libilbc,TimothyGu/libilbc,ShiftMediaProject/libilbc,ShiftMediaProject/libilbc,TimothyGu/libilbc,TimothyGu/libilbc,ShiftMediaProject/libilbc,ShiftMediaProject/libilbc |
405107c556390b65fecb7b20c8d7c33d53c34b9e | include/chewing-compat.h | include/chewing-compat.h | /*
* chewing-compat.h
*
* Copyright (c) 2014
* libchewing Core Team. See ChangeLog for details.
*
* See the file "COPYING" for information on usage and redistribution
* of this file.
*/
#ifndef _CHEWING_COMPAT_
#define _CHEWING_COMPAT_
/** @brief indicate the internal encoding of data processing.
* @si... | /*
* chewing-compat.h
*
* Copyright (c) 2014
* libchewing Core Team. See ChangeLog for details.
*
* See the file "COPYING" for information on usage and redistribution
* of this file.
*/
/* *INDENT-OFF* */
#ifndef _CHEWING_COMPAT_
#define _CHEWING_COMPAT_
/* *INDENT-ON* */
/** @brief indicate the internal... | Add indent comment for header guard | Add indent comment for header guard
| C | lgpl-2.1 | chewing/libchewing,bbyykk/libtaigi,PingNote/libchewing,czchen/libchewing,cwlin/libchewing,PeterDaveHello/libchewing,simonfork/libchewing,PingNote/libchewing,yan12125/libchewing,yan12125/libchewing,bbyykk/libtaigi,ShengYenPeng/libchewing,Chocobo1/libchewing,mangokingTW/libchewing,cwlin/libchewing,hiunnhue/libchewing,bby... |
1fad3482bb25c2d77ac5ceb8b48b6985d91f7f48 | sticks.c | sticks.c | #include <stdio.h>
typedef struct {
int hands[2][2];
int turn;
} Sticks;
void sticks_create(Sticks *sticks) {
sticks->hands[0][0] = 1;
sticks->hands[0][1] = 1;
sticks->hands[1][0] = 1;
sticks->hands[1][1] = 1;
sticks->turn = 0;
}
void sticks_play(Sticks *sticks, int actor, int target) {
... | #include <stdio.h>
typedef struct {
int hands[2][2];
int turn;
} Sticks;
void sticks_create(Sticks *sticks) {
sticks->hands[0][0] = 1;
sticks->hands[0][1] = 1;
sticks->hands[1][0] = 1;
sticks->hands[1][1] = 1;
sticks->turn = 0;
}
void sticks_play(Sticks *sticks, int actor, int target) {
... | Kill hands that reach five fingers | Kill hands that reach five fingers
| C | mit | tysonzero/c-ann |
e838c93903d30eb03b606b9932a2072df0061060 | 3RVX/Controllers/Volume/VolumeController.h | 3RVX/Controllers/Volume/VolumeController.h | // Copyright (c) 2015, Matthew Malensek.
// Distributed under the BSD 2-Clause License (see LICENSE.txt for details)
#pragma once
class VolumeTransformation;
class VolumeController {
public:
struct DeviceInfo {
std::wstring name;
std::wstring id;
};
/// <summary>
/// Retrieves the cu... | // Copyright (c) 2015, Matthew Malensek.
// Distributed under the BSD 2-Clause License (see LICENSE.txt for details)
#pragma once
class VolumeTransformation;
class VolumeController {
public:
struct DeviceInfo {
std::wstring name;
std::wstring id;
};
/// <summary>
/// Retrieves the cu... | Add method to check audio device state | Add method to check audio device state
| C | bsd-2-clause | malensek/3RVX,malensek/3RVX,malensek/3RVX |
de9495f69321629067ec16ec41e271eeecca5a22 | Source/Headers/InTimeShouldSyntax.h | Source/Headers/InTimeShouldSyntax.h | #import "AsyncActualValue.h"
namespace CedarAsync {
template<typename T>
struct InTimeMarker {
T(^actualExpression)(void);
const char *fileName;
int lineNumber;
};
template<typename T>
const AsyncActualValue<T> operator,(const InTimeMarker<T> & marker, const Cedar::Matchers... | #import "AsyncActualValue.h"
namespace CedarAsync {
template<typename T>
struct InTimeMarker {
T(^actualExpression)(void);
const char *fileName;
int lineNumber;
};
template<typename T>
const AsyncActualValue<T> operator,(const InTimeMarker<T> & marker, const Cedar::Matchers... | Use __typeof__ since typeof is unavailable in our build | Use __typeof__ since typeof is unavailable in our build | C | mit | cppforlife/CedarAsync,cppforlife/CedarAsync |
12f1e5c3a3b2948359da2f87937214ee413db567 | native/include/ssl_private.h | native/include/ssl_private.h | /* Copyright 2000-2004 The Apache Software Foundation
*
* 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 applica... | /* Copyright 2000-2004 The Apache Software Foundation
*
* 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 applica... | Use OpenSSL engine by default. | Use OpenSSL engine by default.
git-svn-id: b819289d3a0e8888cd070d2ae628b7cf730b797f@300663 13f79535-47bb-0310-9956-ffa450edef68
| C | apache-2.0 | apache/tomcat-native,andreydomas/tomcat-native,rmaucher/tomcat-native-openssl,rmaucher/tomcat-native-openssl,rmaucher/tomcat-native-openssl,apache/tomcat-native,apache/tomcat-native,apache/tomcat-native,andreydomas/tomcat-native,andreydomas/tomcat-native,rmaucher/tomcat-native-openssl,andreydomas/tomcat-native,andreydo... |
dd15514211cdcdc037368e6b584dfe79e58f3535 | onnx/optimizer/passes/optimize_pass.h | onnx/optimizer/passes/optimize_pass.h | #pragma once
#include "onnx/onnx_pb.h"
#include "onnx/ir.h"
namespace onnx { namespace optimization {
enum class API_TYPE {
PROTO, IR
};
struct OptimizePass {
std::string name;
API_TYPE type;
explicit OptimizePass(const std::string name, API_TYPE type)
: name(name), type(type) {
}
virtual void op... | #pragma once
#include "onnx/onnx_pb.h"
#include "onnx/ir.h"
namespace onnx { namespace optimization {
enum class API_TYPE {
PROTO, IR
};
struct OptimizePass {
std::string name;
API_TYPE type;
explicit OptimizePass(const std::string& name, API_TYPE type)
: name(name), type(type) {
}
virtual void o... | Fix the constructor of OptimizePass | Fix the constructor of OptimizePass
| C | apache-2.0 | onnx/onnx,onnx/onnx,onnx/onnx,onnx/onnx |
4f75fcb3b8847d900a1f45b16e97c80d4e53ddbf | src/automaton.h | src/automaton.h | #ifndef _AUTOMATON_H_
#define _AUTOMATON_H_
/*
* type and function definitions for an automaton
*/
#include "event.h"
#include "srpc/srpc.h"
typedef struct automaton Automaton;
void au_init(void);
Automaton *au_create(char *program, RpcConnection rpc, char *ebuf);
int au_destroy(unsigned lo... | #ifndef _AUTOMATON_H_
#define _AUTOMATON_H_
/*
* Copyright (c) 2013, Court of the University of Glasgow
* 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... | Add BSD 3-clause open source header | Add BSD 3-clause open source header
| C | bsd-3-clause | fergul/Cache,jsventek/Cache,fergul/Cache,fergul/Cache,jsventek/Cache,jsventek/Cache |
4d8786007aab2ffe8dddc5b9ca440e484f8b9b9e | AudioEndPointLibrary/AudioEndPointLibrary.h | AudioEndPointLibrary/AudioEndPointLibrary.h | #include "DefSoundDeviceState.h"
#include "AudioEndPointLibraryImpl.h"
// This class is exported from the AudioEndPointLibrary.dll
namespace AudioEndPoint {
class AUDIOENDPOINTLIBRARY_API CAudioEndPointLibrary {
public:
~CAudioEndPointLibrary();
HRESULT OnDeviceStateChanged(LPCWSTR pwstr_dev... | #include "DefSoundDeviceState.h"
#include "AudioEndPointLibraryImpl.h"
// This class is exported from the AudioEndPointLibrary.dll
namespace AudioEndPoint {
class AUDIOENDPOINTLIBRARY_API CAudioEndPointLibrary {
public:
~CAudioEndPointLibrary();
HRESULT OnDeviceStateChanged(LPCWSTR pwstr_dev... | Make the registering and unregistering of the Notification private | Make the registering and unregistering of the Notification private
| C | mit | Belphemur/AudioEndPointLibrary,Belphemur/AudioEndPointLibrary |
6cc425e21330a5fa456077def0fc727b92e6ecde | test/Sema/attr-availability-ios.c | test/Sema/attr-availability-ios.c | // RUN: %clang_cc1 "-triple" "x86_64-apple-darwin3.0.0-iphoneos" -fsyntax-only -verify %s
void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1)));
void f1(int) __attribute__((availability(ios,introduced=2.1)));
void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0)));
void f3... | // RUN: %clang_cc1 "-triple" "x86_64-apple-darwin3.0.0-iphoneos" -fsyntax-only -verify %s
void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1)));
void f1(int) __attribute__((availability(ios,introduced=2.1)));
void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0)));
void f3... | Test attribute merging for the availability attribute. | Test attribute merging for the availability attribute.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@128334 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-cl... |
fe23dd2429da4b8e71b110d517370358256df785 | You-DataStore/internal/operation.h | You-DataStore/internal/operation.h | #pragma once
#ifndef YOU_DATASTORE_INTERNAL_OPERATION_H_
#define YOU_DATASTORE_INTERNAL_OPERATION_H_
#include <unordered_map>
#include "../ds_task_typedefs.h"
namespace You {
namespace DataStore {
/// A pure virtual class of operations to be put into transaction stack
class IOperation {
public:
/// The constructor
... | #pragma once
#ifndef YOU_DATASTORE_INTERNAL_OPERATION_H_
#define YOU_DATASTORE_INTERNAL_OPERATION_H_
#include <unordered_map>
#include "../ds_task_typedefs.h"
namespace You {
namespace DataStore {
/// A pure virtual class of operations to be put into transaction stack
class IOperation {
public:
/// The constructor
... | Change return value of run to bool | Change return value of run to bool
Conflicts:
You-DataStore/internal/operation.h
You-DataStore/internal/operations/post_operation.h
| C | mit | cs2103aug2014-w10-1c/main,cs2103aug2014-w10-1c/main |
f3b877cba4ab0ffdfc553f65547305698ef16391 | src/BLEDeviceLimits.h | src/BLEDeviceLimits.h | // Copyright (c) Sandeep Mistry. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#ifndef _BLE_LIMITS_H_
#define _BLE_LIMITS_H_
#include <stdlib.h>
#ifndef __AVR__
#ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef min
#de... | // Copyright (c) Sandeep Mistry. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#ifndef _BLE_LIMITS_H_
#define _BLE_LIMITS_H_
#include <stdlib.h>
#ifndef __AVR__
#ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef min
#de... | Fix length issues with nRF52 | Fix length issues with nRF52
| C | mit | sandeepmistry/arduino-BLEPeripheral,sandeepmistry/arduino-BLEPeripheral,sandeepmistry/arduino-BLEPeripheral |
79dca367dc10e9598973895f6e22350b2d2f32b4 | util.h | util.h | /*
This file is part of ethash.
ethash 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 3 of the License, or
(at your option) any later version.
ethash is distributed in the hope that i... | /*
This file is part of ethash.
ethash 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 3 of the License, or
(at your option) any later version.
ethash is distributed in the hope that i... | Comment out conflicting debug macro | Comment out conflicting debug macro
| C | mit | LefterisJP/webthree-umbrella,programonauta/webthree-umbrella,joeldo/cpp-ethereum,gluk256/cpp-ethereum,yann300/cpp-ethereum,eco/cpp-ethereum,Sorceror32/go-get--u-github.com-tools-godep,yann300/cpp-ethereum,karek314/cpp-ethereum,PaulGrey30/go-get--u-github.com-tools-godep,vaporry/cpp-ethereum,eco/cpp-ethereum,expanse-pro... |
20669c2fbecaa850c3c5a2035fd068ef968f8b25 | coursework/assignment2/integral_c.c | coursework/assignment2/integral_c.c | #include <stdio.h>
#include <math.h>
float f(float x) {
return 1/x;
}
int main(int argc, char *argv[]) {
// Integral (1 to 6) of 1/x
float integral;
float a = 1, b = 6;
int n = 2000;
float h;
float x;
h = (b-a)/n;
integral = (f(a) + f(b)) / 2.0;
x = a;
for (int i = 1; i... | #include <stdio.h>
#include <math.h>
double f(double x) { return 1 / x; }
int main(int argc, char *argv[]) {
// Integral (1 to 6) of 1/x
double integral;
int a = 1, b = 6;
int n = 2000;
double h;
double x;
h = (double)(b-a)/n;
integral = (f(a) + f(b)) / 2.0;
x = a;
for (int... | Use double instead of float | Use double instead of float
Float was not able to maintain data precision
| C | mit | arthurazs/uff-lpp,arthurazs/uff-lpp,arthurazs/uff-lpp |
aa22b1c3df494da25286a787c9c5bfa6fa37c468 | cpp/cpp_odbc/Library/cpp_odbc/level2/u16string_buffer.h | cpp/cpp_odbc/Library/cpp_odbc/level2/u16string_buffer.h | #pragma once
#include <string>
#include <vector>
#include <sqltypes.h>
namespace cpp_odbc { namespace level2 {
/**
* @brief This class represents a buffer for u16strings for use with the unixodbc C API.
*/
class u16string_buffer {
public:
/**
* @brief Constructs a new string buffer with the given capacity... | #pragma once
#include <string>
#include <vector>
#include <sql.h>
namespace cpp_odbc { namespace level2 {
/**
* @brief This class represents a buffer for u16strings for use with the unixodbc C API.
*/
class u16string_buffer {
public:
/**
* @brief Constructs a new string buffer with the given capacity, i.e... | Use different header to be yet more compatible with Windows | Use different header to be yet more compatible with Windows
| C | mit | blue-yonder/turbodbc,blue-yonder/turbodbc,blue-yonder/turbodbc,blue-yonder/turbodbc |
627ea4fcaa54b2f49f92d60684f73654fee99129 | include/arch/x86/arch/shutdown.h | include/arch/x86/arch/shutdown.h | #ifndef SHUTDOWN_I6F54URD
#define SHUTDOWN_I6F54URD
void ArchShutdown(void);
#endif /* end of include guard: SHUTDOWN_I6F54URD */
| #ifndef SHUTDOWN_I6F54URD
#define SHUTDOWN_I6F54URD
void ArchBreak(void);
void ArchShutdown(void);
#endif /* end of include guard: SHUTDOWN_I6F54URD */
| Add ArchBreak to the header. | Add ArchBreak to the header.
| C | mit | duckinator/dux,duckinator/dux,duckinator/dux |
d86e2fe23f2ee6889c56f3d1426a46be7cb03d33 | SurgSim/Framework/Convert.h | SurgSim/Framework/Convert.h | // This file is a part of the OpenSurgSim project.
// Copyright 2013, SimQuest Solutions 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/LICE... | // This file is a part of the OpenSurgSim project.
// Copyright 2013, SimQuest Solutions 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/LICE... | Add back yaml-cpp/yaml.h header file for convert<> class template. | Add back yaml-cpp/yaml.h header file for convert<> class template.
| C | apache-2.0 | simquest/opensurgsim,simquest/opensurgsim,simquest/opensurgsim,simquest/opensurgsim |
2091920484dc3108704da860d7631dc52292af89 | src/drivers/sensors/gy_30/gy_30.c | src/drivers/sensors/gy_30/gy_30.c | /**
* @file
* @brief
*
* @date 29.03.2017
* @author Alex Kalmuk
*/
#include <unistd.h>
#include <util/log.h>
#include <drivers/i2c/i2c.h>
#include "gy_30.h"
#define GY30_ADDR 0x46
uint16_t gy_30_read_light_level(unsigned char id) {
uint16_t level = 0;
/* It would be better do not hang here but ret... | /**
* @file
* @brief
*
* @date 29.03.2017
* @author Alex Kalmuk
*/
#include <unistd.h>
#include <util/log.h>
#include <drivers/i2c/i2c.h>
#include "gy_30.h"
/* http://www.elechouse.com/elechouse/images/product/Digital%20light%20Sensor/bh1750fvi-e.pdf */
#define GY30_ADDR 0x23
uint16_t gy_30_read_ligh... | Fix gy-30 light sensor i2c address | drivers: Fix gy-30 light sensor i2c address
| C | bsd-2-clause | embox/embox,embox/embox,embox/embox,embox/embox,embox/embox,embox/embox |
b3a3beb56fb56e812cd0308eb184c79a0fa97e5a | include/HubFramework.h | include/HubFramework.h | /// Umbrella header for the Hub Framework
#import "HUBManager.h"
#import "HUBComponent.h"
#import "HUBComponentModel.h"
#import "HUBComponentRegistry.h"
#import "HUBComponentFallbackHandler.h"
| /// Umbrella header for the Hub Framework
#import "HUBManager.h"
#import "HUBComponent.h"
#import "HUBComponentModel.h"
#import "HUBComponentModelBuilder.h"
#import "HUBComponentImageData.h"
#import "HUBComponentImageDataBuilder.h"
#import "HUBComponentRegistry.h"
#import "HUBComponentFallbackHandler.h"
| Add new API files to umbrella header | Add new API files to umbrella header | C | apache-2.0 | spotify/HubFramework,spotify/HubFramework,spotify/HubFramework,spotify/HubFramework |
a5843e1928d338a19c91f6c83b8a4ffec8ad60be | src/os/Win32/plugin.h | src/os/Win32/plugin.h | #ifndef PLUGIN_H_
#define PLUGIN_H_
#include "plugin_portable.h"
#include <windows.h>
// TODO use __stdcall
#define EXPORT_CALLING __cdecl
#define EXPORT __declspec(dllexport) EXPORT_CALLING
#include "common.h"
// just defined to make compilation work ; ignored
#define RTLD_DEFAULT NULL
#define RTLD_LOCAL -1
#de... | #ifndef PLUGIN_H_
#define PLUGIN_H_
#include "plugin_portable.h"
#include <windows.h>
// TODO use __stdcall
#define EXPORT_CALLING __cdecl
#define EXPORT __declspec(dllexport) EXPORT_CALLING
#include "common.h"
// just defined to make compilation work ; ignored
#define RTLD_DEFAULT NULL
#define RTLD_LOCAL -1
#de... | Mend Win32 build broken by 8e1c4386 | Mend Win32 build broken by 8e1c4386
| C | mit | kulp/tenyr,kulp/tenyr,kulp/tenyr |
d1f23840550c800d5d382abf3aadf1e92a9e20b1 | src/plugins/crypto/gpg_shutdown.c | src/plugins/crypto/gpg_shutdown.c | /**
* @file
*
* @brief module for shutting down the gpg-agent
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*
*/
#include "gpg_shutdown.h"
#include <stdio.h>
#include <stdlib.h>
/**
* @brief shutdown the gpg-agent
* @retval 0 on success.
* @retval -1 on error.
*/
int ELEKTRA_PLU... | /**
* @file
*
* @brief module for shutting down the gpg-agent
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*
*/
#include "gpg_shutdown.h"
#include <stdio.h>
#include <stdlib.h>
/**
* @brief shutdown the gpg-agent
* @retval 0 on success.
* @retval -1 on error.
*/
int ELEKTRA_PLU... | Revert "tests: check if gpg-agent command exists in shutdown code" | Revert "tests: check if gpg-agent command exists in shutdown code"
This reverts commit 7e0ef169c36712bb49b291a227ebd1b0036e5c75.
| C | bsd-3-clause | petermax2/libelektra,mpranj/libelektra,mpranj/libelektra,mpranj/libelektra,petermax2/libelektra,petermax2/libelektra,mpranj/libelektra,petermax2/libelektra,mpranj/libelektra,ElektraInitiative/libelektra,ElektraInitiative/libelektra,mpranj/libelektra,petermax2/libelektra,ElektraInitiative/libelektra,mpranj/libelektra,El... |
e5be6c05567bab2c6d13fc3e8b3cb869a387327c | hal1.h | hal1.h | // Configurable constants
int const MAIN_MOTOR_PWM_TOP = 255;
int const MAIN_MOTOR_BRAKE_SPEED = 120;
int const MAIN_MOTOR_MIN_SPEED = 150;
int const MAIN_MOTOR_MED_SPEED = 254;
int const MAIN_MOTOR_MAX_SPEED = 255;
int const MAGNET_OPEN_WAIT = 5; // 10ths of a second
void init(void);
| #ifndef HAL1_H
#define HAL1_H
// Configurable constants
int const MAIN_MOTOR_PWM_TOP = 255;
int const MAIN_MOTOR_BRAKE_SPEED = 120;
int const MAIN_MOTOR_MIN_SPEED = 150;
int const MAIN_MOTOR_MED_SPEED = 254;
int const MAIN_MOTOR_MAX_SPEED = 255;
int const MAGNET_OPEN_WAIT = 5; // 10ths of a second
void init(void);
... | Add function prototypes and ifndef wrapper | Add function prototypes and ifndef wrapper
| C | unlicense | plzz/ovisysteemi,plzz/ovisysteemi |
00d1d12be797e41c5f89e905f438f85c1003d0db | objc/MX3Snapshot.h | objc/MX3Snapshot.h | #import <Foundation/Foundation.h>
#ifdef __cplusplus
#include <memory>
#include <mx3/mx3.hpp>
#endif
@interface MX3Snapshot : NSObject
// adding this here allows you to include this file from non-objc++ files
// since it is using c++ types
#ifdef __cplusplus
- (instancetype)initWithSnapshot:(std::unique_ptr<mx3::SqlSn... | #import <Foundation/Foundation.h>
#ifdef __cplusplus
#include <memory>
#include <mx3/mx3.hpp>
#endif
@interface MX3Snapshot : NSObject
// adding this here allows you to include this file from non-objc++ files
// since it is using c++ types
#ifdef __cplusplus
- (instancetype)initWithSnapshot:(std::unique_ptr<mx3::SqlSn... | Remove dealloc from header as it is declared in NSObject | Remove dealloc from header as it is declared in NSObject | C | mit | wesselj1/mx3playground,wesselj1/mx3playground,libmx3/mx3,duydb2/mx3,libmx3/mx3,duydb2/mx3,duydb2/mx3,libmx3/mx3,wesselj1/mx3playground |
b843d479c9f75400a57e23b63f19050359c6fb62 | menpo/feature/cpp/WindowFeature.h | menpo/feature/cpp/WindowFeature.h | #pragma once
#if defined(_MSC_VER)
#define round(x) (x >= 0 ? (x + 0.5) : (x - 0.5))
#endif
class WindowFeature {
public:
WindowFeature();
virtual ~WindowFeature();
virtual void apply(double *windowImage, double *descriptorVector) = 0;
unsigned int descriptorLengthPerWindow;
};
| #pragma once
#if _MSC_VER < 1900
#define round(x) (x >= 0 ? (x + 0.5) : (x - 0.5))
#endif
class WindowFeature {
public:
WindowFeature();
virtual ~WindowFeature();
virtual void apply(double *windowImage, double *descriptorVector) = 0;
unsigned int descriptorLengthPerWindow;
};
| Fix a build error (Python 3.5) | Fix a build error (Python 3.5)
Thanks to karel.palecek@tul.cz for supplying the fix to this bug.
| C | bsd-3-clause | grigorisg9gr/menpo,patricksnape/menpo,menpo/menpo,grigorisg9gr/menpo,menpo/menpo,patricksnape/menpo,grigorisg9gr/menpo,yuxiang-zhou/menpo,yuxiang-zhou/menpo,menpo/menpo,patricksnape/menpo,yuxiang-zhou/menpo |
830bb7a42d2804830a57dfe8bc469fac1317c46a | port/riot/abort.c | port/riot/abort.c | #include "port/oc_assert.h"
// TODO:
void
abort_impl()
{
}
| #include "port/oc_assert.h"
// TODO:
void
abort_impl(void)
{
}
| Declare void parameter for RIOT | Declare void parameter for RIOT
This is partially reverting:
"Bring RIOT OS port up-to-date with RIOT OS upstream"
This reverts commit 0ed0f4425cffdd84317998efa8fe19eef561c2fa.
Without this change RIOT will fail to build:
port/riot/abort.c:5:1:\
error: old-style function definition [-Werror=old-style-definition... | C | apache-2.0 | iotivity/iotivity-constrained,iotivity/iotivity-constrained,iotivity/iotivity-constrained,iotivity/iotivity-constrained |
b0f17a3780c5cb70b4bd8fa4633e60acd6ff98f5 | src/vast/option.h | src/vast/option.h | #ifndef VAST_OPTION_HPP
#define VAST_OPTION_HPP
#include <cppa/option.hpp>
namespace vast {
/// An optional value of `T` with similar semantics as `std::optional`.
template <typename T>
class option : public cppa::option<T>
{
typedef cppa::option<T> super;
public:
#ifdef VAST_HAVE_INHERTING_CONSTRUCTORS
using su... | #ifndef VAST_OPTION_HPP
#define VAST_OPTION_HPP
#include <cppa/option.hpp>
namespace vast {
/// An optional value of `T` with similar semantics as `std::optional`.
template <typename T>
class option : public cppa::option<T>
{
typedef cppa::option<T> super;
public:
#ifdef VAST_HAVE_INHERTING_CONSTRUCTORS
using su... | Make operator-> constexpr and return a T const*. | Make operator-> constexpr and return a T const*.
| C | bsd-3-clause | mavam/vast,pmos69/vast,vast-io/vast,vast-io/vast,mavam/vast,mavam/vast,pmos69/vast,pmos69/vast,vast-io/vast,vast-io/vast,pmos69/vast,vast-io/vast,mavam/vast |
dde3ee5113fd0ae40cfb6788e4bd0a2a8c60eb72 | t/version_t.c | t/version_t.c | #include "MMDB.h"
#include "tap.h"
#include <sys/stat.h>
#include <string.h>
#if HAVE_CONFIG_H
# include <config.h>
#endif
int main(void)
{
const char *version = MMDB_lib_version();
ok(version != NULL, "MMDB_lib_version exists");
ok(strcmp(version, PACKAGE_VERSION) == 0, "version is " PACKAGE_VERSION);
... | #include "MMDB.h"
#include "tap.h"
#include <sys/stat.h>
#include <string.h>
#if HAVE_CONFIG_H
# include <config.h>
#endif
int main(void)
{
const char *version = MMDB_lib_version();
ok(version != NULL, "MMDB_lib_version exists");
if ( version )
ok(strcmp(version, PACKAGE_VERSION) == 0, "version is ... | Check version string only if MMDB_lib_version != NULL | Check version string only if MMDB_lib_version != NULL
| C | apache-2.0 | maxmind/libmaxminddb,maxmind/libmaxminddb,maxmind/libmaxminddb |
e412c7c88f74bd962509e1c24b1611b909b58b99 | MdePkg/Include/Guid/HardwareErrorVariable.h | MdePkg/Include/Guid/HardwareErrorVariable.h | /** @file
GUID for hardware error record variables.
Copyright (c) 2007 - 2009, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the ... | /** @file
GUID for hardware error record variables.
Copyright (c) 2007 - 2009, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the ... | Remove "Module Name:" from include file headers. | Remove "Module Name:" from include file headers.
git-svn-id: 5648d1bec6962b0a6d1d1b40eba8cf5cdb62da3d@8895 6f19259b-4bc3-4df7-8a09-765794883524
| C | bsd-2-clause | MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2 |
27737aa3a9f65012b3656b71e0ff230a4811da4d | include/net/dcbevent.h | include/net/dcbevent.h | /*
* Copyright (c) 2010, Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but... | /*
* Copyright (c) 2010, Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but... | Add stub routines for !CONFIG_DCB | dcb: Add stub routines for !CONFIG_DCB
To avoid ifdefs in the other code that supports DCB notifiers
add stub routines. This method seems popular in other net code
for example 8021Q.
Signed-off-by: John Fastabend <06228589568acf528fa1984e09626513a30b66ed@intel.com>
Signed-off-by: David S. Miller <fe08d3c717adf2ae6359... | C | mit | KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_k... |
de73b8bcb0ae34f913711f31b3d4d4ed3c826cfa | src/core/common.h | src/core/common.h | #ifndef OSSL_CORE_COMMON_H_INCLUDE
#define OSSL_CORE_COMMON_H_INCLUDE
#include <nan.h>
#include "logger.h"
#include "scoped_ssl.h"
#include "excep.h"
#include "key_exp.h"
#include "digest.h"
#include "bn.h"
#include <openssl/bn.h>
#endif // OSSL_CORE_COMMON_H_INCLUDE
| #ifndef OSSL_CORE_COMMON_H_INCLUDE
#define OSSL_CORE_COMMON_H_INCLUDE
#ifdef _WIN32
#define __WINCRYPT_H__
#endif
#include <nan.h>
#include "logger.h"
#include "scoped_ssl.h"
#include "excep.h"
#include "key_exp.h"
#include "digest.h"
#include "bn.h"
#include <openssl/bn.h>
#endif // OSSL_CORE_COMM... | Disable __WINCRYPT_H__ headers for Windows | Disable __WINCRYPT_H__ headers for Windows
| C | mit | PeculiarVentures/node-webcrypto-ossl,PeculiarVentures/node-webcrypto-ossl,PeculiarVentures/node-webcrypto-ossl,PeculiarVentures/node-webcrypto-ossl,PeculiarVentures/node-webcrypto-ossl,PeculiarVentures/node-webcrypto-ossl |
c5f13a2a9c451f0e50854db2305158b287a68b72 | util/getarg.h | util/getarg.h | /***************************************************************************
getarg.h - Support routines for the giflib utilities
**************************************************************************/
#ifndef _GETARG_H
#define _GETARG_H
#include <stdbool.h>
#define VERSION_COOKIE " Version %d.%d, "
/********... | /***************************************************************************
getarg.h - Support routines for the giflib utilities
**************************************************************************/
#ifndef _GETARG_H
#define _GETARG_H
#include <stdbool.h>
#define VERSION_COOKIE " Version %d.%d, "
/********... | Fix a header that had failed to track dome changed locations. | Fix a header that had failed to track dome changed locations.
| C | mit | rcancro/giflib,cention-sany/libgif,Distrotech/giflib,Distrotech/giflib,rcancro/giflib,cention-sany/libgif,rcancro/giflib |
c5142c547ffbe1cbbe5aa83e56f9c67d63c96606 | lib/Target/R600/AMDGPUAsmPrinter.h | lib/Target/R600/AMDGPUAsmPrinter.h | //===-- AMDGPUAsmPrinter.h - Print AMDGPU assembly code -------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | //===-- AMDGPUAsmPrinter.h - Print AMDGPU assembly code ---------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | Fix missing C++ mode comment | Fix missing C++ mode comment
git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@194339 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | GPUOpen-Drivers/llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,llvm-mirror/llvm,chubbymaggie/asap,apple/swift-llvm,llvm-mirror/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,chubbymaggie/asap,apple/swift-llvm,apple/swift-llvm,chubbymaggie/asap,chubbymaggie/asap,llvm-mirror/llvm,llvm-mirro... |
9089cca24db36608825598e1cd32451a8e20bb2f | src/libaacs/aacs.h | src/libaacs/aacs.h | /*
* libaacs by Doom9 ppl 2009, 2010
*/
#ifndef AACS_H_
#define AACS_H_
#include <stdint.h>
#include "../file/configfile.h"
#define LIBAACS_VERSION "1.0"
typedef struct aacs AACS;
struct aacs {
uint8_t pk[16], mk[16], vuk[16], vid[16];
uint8_t *uks; /* unit key array (size = 16 * num_uks, each ... | /*
* libaacs by Doom9 ppl 2009, 2010
*/
#ifndef AACS_H_
#define AACS_H_
#include "../file/configfile.h"
#include <stdint.h>
#define LIBAACS_VERSION "1.0"
typedef struct aacs AACS;
struct aacs {
uint8_t pk[16], mk[16], vuk[16], vid[16];
uint8_t *uks; /* unit key array (size = 16 * num_uks, each ... | Move inclusion of internal headers before system headers | Move inclusion of internal headers before system headers
| C | lgpl-2.1 | rraptorr/libaacs,zxlooong/libaacs,zxlooong/libaacs,ShiftMediaProject/libaacs,mwgoldsmith/aacs,rraptorr/libaacs,ShiftMediaProject/libaacs,mwgoldsmith/aacs |
54eeba75d3914e457204a159a7888fc19e50a6dc | test/CodeGen/may-alias.c | test/CodeGen/may-alias.c | // RUN: %clang_cc1 -Werror -triple i386-unknown-unknown -emit-llvm -O1 -disable-llvm-optzns -o %t %s
// RUN: FileCheck < %t %s
// Types with the may_alias attribute should be considered equivalent
// to char for aliasing.
typedef int __attribute__((may_alias)) aliasing_int;
void test0(aliasing_int *ai, int *i)
{
*... | // RUN: %clang_cc1 -Werror -triple i386-unknown-unknown -emit-llvm -O1 -disable-llvm-optzns -o %t %s
// RUN: FileCheck < %t %s
// Types with the may_alias attribute should be considered equivalent
// to char for aliasing.
typedef int __attribute__((may_alias)) aliasing_int;
void test0(aliasing_int *ai, int *i)
{
*... | Generalize this test to work without instruction names. | Generalize this test to work without instruction names.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@121742 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-cl... |
b2c0eb6364d545a0083ec3d1cb55ea04fa6c6e2a | src/synchronizer.h | src/synchronizer.h | //
// synchronizer.h
// P2PSP
//
// This code is distributed under the GNU General Public License (see
// THE_GENERAL_GNU_PUBLIC_LICENSE.txt for extending this information).
// Copyright (C) 2016, the P2PSP team.
// http://www.p2psp.org
//
#include <boost/format.hpp>
#include <boost/program_options/parsers.hpp>
... | //
// synchronizer.h
// P2PSP
//
// This code is distributed under the GNU General Public License (see
// THE_GENERAL_GNU_PUBLIC_LICENSE.txt for extending this information).
// Copyright (C) 2016, the P2PSP team.
// http://www.p2psp.org
//
#include <boost/format.hpp>
#include <boost/program_options/parsers.hpp>
... | Add thread group to manage threads | Add thread group to manage threads
| C | mit | hehaichi/p2psp-experiments,hehaichi/p2psp-experiments,hehaichi/p2psp-experiments |
91f66b016cb667a05e5e7803a61c6ff1cc7fc8c2 | include/dsnutil/singleton.h | include/dsnutil/singleton.h | /// \file
/// \brief Singleton design pattern
///
/// \author Peter 'png' Hille <peter@das-system-networks.de>
#ifndef SINGLETON_HH
#define SINGLETON_HH 1
#include <dsnutil/compiler_features.h>
namespace dsn {
/// \brief Template for singleton classes
///
/// This template can be used to implement the "singleton" des... | /// \file
/// \brief Singleton design pattern
///
/// \author Peter 'png' Hille <peter@das-system-networks.de>
#ifndef SINGLETON_HH
#define SINGLETON_HH 1
#include <dsnutil/compiler_features.h>
namespace dsn {
/// \brief Template for singleton classes
///
/// This template can be used to implement the "singleton" des... | Add Doxygen comments for new Singleton methods | Add Doxygen comments for new Singleton methods
| C | bsd-3-clause | png85/dsnutil_cpp |
8ce936c7be896a867a44ce4a4d39b44f4dc7c9b5 | UsbDk/Public.h | UsbDk/Public.h | /*
* UsbDk filter/redirector driver
*
* Copyright (c) 2013 Red Hat, Inc.
*
* Authors:
* Dmitry Fleytman <dfleytma@redhat.com>
*
*/
#pragma once
#include "UsbDkData.h"
#include "UsbDkNames.h"
#define USBDK_DEVICE_TYPE 50000
// UsbDk Control Device IOCTLs
#define IOCTL_USBDK_COUNT_DEVICES \
ULONG(CTL_CODE( USB... | /*
* UsbDk filter/redirector driver
*
* Copyright (c) 2013 Red Hat, Inc.
*
* Authors:
* Dmitry Fleytman <dfleytma@redhat.com>
*
*/
#pragma once
#include "UsbDkData.h"
#include "UsbDkNames.h"
#define USBDK_DEVICE_TYPE 50000
// UsbDk Control Device IOCTLs
#define IOCTL_USBDK_COUNT_DEVICES \
ULONG(CTL_CODE( USB... | Fix control device IOCTLS access type | UsbDk: Fix control device IOCTLS access type
Signed-off-by: Dmitry Fleytman <f50f56ffad4b379c2a89812e98b14900ef87e9ea@redhat.com>
| C | apache-2.0 | SPICE/win32-usbdk,freedesktop-unofficial-mirror/spice__win32__usbdk,freedesktop-unofficial-mirror/spice__win32__usbdk,daynix/UsbDk,SPICE/win32-usbdk,freedesktop-unofficial-mirror/spice__win32__usbdk,daynix/UsbDk |
5d4adccfabf26f2995b6726a75fdde281e20e8ac | texor.c | texor.c | #include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <unistd.h>
struct termios orig_termios;
void disableRawMode() {
tcsetattr(STDIN_FILENO, TCSAFLUSH, &orig_termios);
}
void enableRawMode() {
tcgetattr(STDIN_FILENO, &orig_termios);
atexit(disableRawMode);
struct termios r... | #include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <unistd.h>
struct termios orig_termios;
void disableRawMode() {
tcsetattr(STDIN_FILENO, TCSAFLUSH, &orig_termios);
}
void enableRawMode() {
tcgetattr(STDIN_FILENO, &orig_termios);
atexit(disableRawMode);
struct termios r... | Disable a few misc flags | Disable a few misc flags
| C | bsd-2-clause | kyletolle/texor |
46f1e784fefa16719ec7dcbf9ccc4270656fc7df | TWRBorderedView/TWRBorderedView.h | TWRBorderedView/TWRBorderedView.h | //
// TWRBorderedView.h
// TWRBorderedView
//
// Created by Michelangelo Chasseur on 15/04/14.
// Copyright (c) 2014 Touchware. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef NS_OPTIONS(NSUInteger, TWRBorderMask) {
TWRBorderMaskTop = 1 << 0,
TWRBorderMaskBottom = 1 << 1,
TWRBorderMaskL... | //
// TWRBorderedView.h
// TWRBorderedView
//
// Created by Michelangelo Chasseur on 15/04/14.
// Copyright (c) 2014 Touchware. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef NS_OPTIONS(NSUInteger, TWRBorderMask) {
TWRBorderMaskTop = 1 << 0,
TWRBorderMaskBottom = 1 << 1,
TWRBorderMaskL... | Fix spelling in property naming. | Fix spelling in property naming. | C | mit | chasseurmic/TWRBorderedView,ChetanGandhi/TWRBorderedView |
9a00f8af17d4b4d5810c04f9861217014df99dc2 | src/imap/cmd-close.c | src/imap/cmd-close.c | /* Copyright (c) 2002-2008 Dovecot authors, see the included COPYING file */
#include "common.h"
#include "commands.h"
#include "imap-expunge.h"
bool cmd_close(struct client_command_context *cmd)
{
struct client *client = cmd->client;
struct mailbox *mailbox = client->mailbox;
struct mail_storage *storage;
if (!... | /* Copyright (c) 2002-2008 Dovecot authors, see the included COPYING file */
#include "common.h"
#include "commands.h"
#include "imap-expunge.h"
bool cmd_close(struct client_command_context *cmd)
{
struct client *client = cmd->client;
struct mailbox *mailbox = client->mailbox;
struct mail_storage *storage;
if (!... | Synchronize the mailbox after expunging messages to actually get them expunged. | CLOSE: Synchronize the mailbox after expunging messages to actually get them
expunged.
--HG--
branch : HEAD
| C | mit | jkerihuel/dovecot,jkerihuel/dovecot,jkerihuel/dovecot,jkerihuel/dovecot,jkerihuel/dovecot,jwm/dovecot-notmuch,jwm/dovecot-notmuch,jwm/dovecot-notmuch,jwm/dovecot-notmuch,jwm/dovecot-notmuch |
b4c0e72db659adff77f16277cf8634d6efc32a51 | VisualPractice/commands.h | VisualPractice/commands.h | #ifndef TE_COMMANDS_H
#define TE_COMMANDS_H
#include <functional>
#include <map>
#include <SDL_keycode.h>
#include <SDL_events.h>
#include <memory>
namespace te
{
class Rectangle;
enum class Action { UP, DOWN };
typedef std::function<void()> Command;
typedef std::map<Action, Command> CommandMap;
... | #ifndef TE_COMMANDS_H
#define TE_COMMANDS_H
#include <functional>
#include <map>
#include <SDL_keycode.h>
#include <SDL_events.h>
#include <memory>
namespace te
{
class Rectangle;
enum class Action { UP, DOWN };
//typedef std::function<void()> Command;
//typedef std::map<Action, Command> CommandMap... | Comment out old Command to avoid name collisions | Comment out old Command to avoid name collisions
| C | mit | evinstk/TantechEngine,evinstk/TantechEngineOriginal,evinstk/TantechEngine,evinstk/TantechEngineOriginal,evinstk/TantechEngine,evinstk/TantechEngine,evinstk/TantechEngineOriginal,evinstk/TantechEngineOriginal,evinstk/TantechEngine,evinstk/TantechEngineOriginal,evinstk/TantechEngine,evinstk/TantechEngineOriginal |
093693a7dc5c39d74498bb99fa3f9782fdad63f1 | test2/int_overflow/trapv_shift.c | test2/int_overflow/trapv_shift.c | // RUN: %ucc -ftrapv -fno-const-fold -o %t %s
// RUN: %t; [ $? -ne 0 ]
main()
{
int x;
// ensure powers of two aren't shift-converted, as overflow can't catch this
x = -3 * 0x4000000000000000;
return 0;
}
| // RUN: %ocheck SIGILL %s -ftrapv -fno-const-fold -DT=int
// RUN: %ocheck SIGILL %s -ftrapv -fno-const-fold -DT=long
// RUN: %ocheck 0 %s -fno-const-fold -DT=int
// RUN: %ocheck 0 %s -fno-const-fold -DT=long
main()
{
// test with T being both int and long, to check how truncations are dealt with
T x;
// ensure pow... | Update trapv tests with explicit signal name | Update trapv tests with explicit signal name
| C | mit | bobrippling/ucc-c-compiler,bobrippling/ucc-c-compiler,bobrippling/ucc-c-compiler |
54e41dd08a06f978a6d123f19f5bbe39370f04ea | audio/null_audio_poller.h | audio/null_audio_poller.h | /*
* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contribut... | /*
* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contribut... | Remove const from ThreadChecker in NullAudioPoller. | Remove const from ThreadChecker in NullAudioPoller.
TBR=henrika@webrtc.org,solenberg@webrtc.org
Bug: webrtc:8482
Change-Id: Ib2738224e776618c692db95cd9473335bc17be15
Reviewed-on: https://webrtc-review.googlesource.com/17540
Commit-Queue: Björn Terelius <efeae16329b3cb4ac5daf80d4bfda3344c027db3@webrtc.org>
Reviewed-by... | C | bsd-3-clause | TimothyGu/libilbc,TimothyGu/libilbc,ShiftMediaProject/libilbc,ShiftMediaProject/libilbc,ShiftMediaProject/libilbc,TimothyGu/libilbc,TimothyGu/libilbc,TimothyGu/libilbc,ShiftMediaProject/libilbc,ShiftMediaProject/libilbc |
5be6eff496407146af24c8e85ae2c560b40eeab8 | src/safe_memory.c | src/safe_memory.c | #include "safe-c/safe_memory.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void* safe_malloc_function(size_t size, const char* calling_function)
{
if (size == 0)
{
fprintf(stderr, "Error allocating memory: The function %s called "
"'safe_malloc' and requested zero memor... | #include "safe-c/safe_memory.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void* safe_malloc_function(size_t size, const char* calling_function)
{
if (size == 0)
{
fprintf(stderr, "Error allocating memory: The function %s called "
"'safe_malloc' and requested zero memor... | Add value parameter to fprintf in safe_malloc | Fix: Add value parameter to fprintf in safe_malloc
Changed the value type in the `fprintf` from `u` to `zu`, this is because `size` is of type `size_t` and not `unsigned int`.
In addation, asign the return value of memset to `memory`.
| C | mit | VanJanssen/safe-c,ErwinJanssen/elegan-c,VanJanssen/elegan-c |
174758bdd8ff7b763e274ccd6cfe84bf73f91f68 | trace.h | trace.h | #ifndef _TRACE_H_
#define _TRACE_H_
#include <stdio.h>
#include <errno.h>
#ifdef DEBUG
#define TRACE ERROR
#else
#define TRACE(fmt,arg...) ((void) 0)
#endif
#define ERROR(fmt,arg...) \
fprintf(stderr, "%s:%s:%d: "fmt, program_invocation_short_name, __func__, __LINE__, ##arg)
#define FATAL(fmt,arg...) do { \
ER... | #ifndef _TRACE_H_
#define _TRACE_H_
#include <stdio.h>
#include <errno.h>
#ifdef DEBUG
#define TRACE ERROR
#else
#define TRACE(fmt,arg...) ((void) 0)
#endif
#ifdef DEBUG
#define ERROR(fmt,arg...) \
fprintf(stderr, "%s:%d: "fmt, __func__, __LINE__, ##arg)
#else
#define ERROR(fmt,arg...) \
fprintf(stderr, "%s: "fmt... | Add __func__, __LINE__ to TRACE if DEBUG, otherwise add progname. | Add __func__, __LINE__ to TRACE if DEBUG, otherwise add progname.
| C | lgpl-2.1 | TACCProjects/tacc_stats,aaichsmn/tacc_stats,TACCProjects/tacc_stats,rtevans/tacc_stats_old,TACCProjects/tacc_stats,dimm0/tacc_stats,TACC/tacc_stats,TACC/tacc_stats,sdsc/xsede_stats,ubccr/tacc_stats,dimm0/tacc_stats,ubccr/tacc_stats,sdsc/xsede_stats,sdsc/xsede_stats,aaichsmn/tacc_stats,ubccr/tacc_stats,TACC/tacc_stats,u... |
a198c3d0393faa1fa9f0e6e917ce980d3638f8df | drivers/scsi/qla2xxx/qla_version.h | drivers/scsi/qla2xxx/qla_version.h | /*
* QLogic Fibre Channel HBA Driver
* Copyright (c) 2003-2008 QLogic Corporation
*
* See LICENSE.qla2xxx for copyright and licensing details.
*/
/*
* Driver version
*/
#define QLA2XXX_VERSION "8.02.01-k1"
#define QLA_DRIVER_MAJOR_VER 8
#define QLA_DRIVER_MINOR_VER 2
#define QLA_DRIVER_PATCH_VER 1
#define... | /*
* QLogic Fibre Channel HBA Driver
* Copyright (c) 2003-2008 QLogic Corporation
*
* See LICENSE.qla2xxx for copyright and licensing details.
*/
/*
* Driver version
*/
#define QLA2XXX_VERSION "8.02.01-k2"
#define QLA_DRIVER_MAJOR_VER 8
#define QLA_DRIVER_MINOR_VER 2
#define QLA_DRIVER_PATCH_VER 1
#define... | Update version number to 8.02.01-k2. | [SCSI] qla2xxx: Update version number to 8.02.01-k2.
Signed-off-by: Andrew Vasquez <67840a4977006af7f584bdc4c86d7243c1629cad@qlogic.com>
Signed-off-by: James Bottomley <407b36959ca09543ccda8f8e06721c791bc53435@HansenPartnership.com>
| C | mit | KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,Krist... |
cf3059a12936f8e92876e56b50bcdb092be70645 | drivers/scsi/qla4xxx/ql4_version.h | drivers/scsi/qla4xxx/ql4_version.h | /*
* QLogic iSCSI HBA Driver
* Copyright (c) 2003-2010 QLogic Corporation
*
* See LICENSE.qla4xxx for copyright and licensing details.
*/
#define QLA4XXX_DRIVER_VERSION "5.02.00-k13"
| /*
* QLogic iSCSI HBA Driver
* Copyright (c) 2003-2010 QLogic Corporation
*
* See LICENSE.qla4xxx for copyright and licensing details.
*/
#define QLA4XXX_DRIVER_VERSION "5.02.00-k14"
| Update driver version to 5.02.00-k14 | [SCSI] qla4xxx: Update driver version to 5.02.00-k14
Signed-off-by: Vikas Chaudhary <c251871a64d7d31888eace0406cb3d4c419d5f73@qlogic.com>
Signed-off-by: James Bottomley <1acebbdca565c7b6b638bdc23b58b5610d1a56b8@Parallels.com>
| C | mit | KristFoundation/Programs,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,KristFoundation/Programs,Krist... |
04fedf7ef8260ffbb1bbefc214aae279a62f6973 | SSPSolution/SSPSolution/DoorEntity.h | SSPSolution/SSPSolution/DoorEntity.h | #ifndef SSPAPPLICATION_ENTITIES_DOORENTITY_H
#define SSPAPPLICATION_ENTITIES_DOORENTITY_H
#include "Entity.h"
#include <vector>
class DoorEntity :
public Entity
{
private:
struct ElementState {
int entityID;
EVENT desiredState;
bool desiredStateReached;
};
std::vector<ElementState> m_elementStates;
bool... | #ifndef SSPAPPLICATION_ENTITIES_DOORENTITY_H
#define SSPAPPLICATION_ENTITIES_DOORENTITY_H
#include "Entity.h"
#include <vector>
class DoorEntity :
public Entity
{
private:
/*struct ElementState {
int entityID;
EVENT desiredState;
bool desiredStateReached;
};
std::vector<ElementState> m_elementStates;*/
... | UPDATE Commented out some test code | UPDATE Commented out some test code
| C | apache-2.0 | Chringo/SSP,Chringo/SSP |
97560dd8e208d7b7fc2262cef135a3cbcaeae2eb | components/libc/mmap/posix_mmap.c | components/libc/mmap/posix_mmap.c | /*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2017/11/30 Bernard The first version.
*/
#include <stdint.h>
#include <stdio.h>
#include <rtthread.h>
#include <dfs_posix.h>
#include <sys/mman.h>
... | /*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2017/11/30 Bernard The first version.
*/
#include <stdint.h>
#include <stdio.h>
#include <rtthread.h>
#include <dfs_posix.h>
#include <sys/mman.h>
... | Fix the addr=NULL issue in mmap. | [libc] Fix the addr=NULL issue in mmap.
| C | apache-2.0 | RT-Thread/rt-thread,gbcwbz/rt-thread,weety/rt-thread,weiyuliang/rt-thread,RT-Thread/rt-thread,RT-Thread/rt-thread,nongxiaoming/rt-thread,geniusgogo/rt-thread,armink/rt-thread,armink/rt-thread,nongxiaoming/rt-thread,AubrCool/rt-thread,RT-Thread/rt-thread,gbcwbz/rt-thread,geniusgogo/rt-thread,hezlog/rt-thread,hezlog/rt-t... |
e0ff8228425c0235e4d352460c203d43f6a24a19 | util/InputState.h | util/InputState.h | #ifndef INPUTSTATE_H
#define INPUTSTATE_H
#include <SDL2/SDL.h>
#undef main
#include <map>
class InputState
{
public:
enum KeyFunction { KF_EXIT, KF_FORWARDS, KF_BACKWARDS, KF_ROTATE_SUN };
InputState();
void readInputState();
bool getKeyState(KeyFunction f);
int getAbsoluteMouseX() { return mouse_x; };
int ge... | #ifndef INPUTSTATE_H
#define INPUTSTATE_H
#include <SDL2/SDL.h>
#undef main
#include <map>
class InputState
{
public:
enum KeyFunction { KF_EXIT, KF_FORWARDS, KF_BACKWARDS, KF_ROTATE_SUN };
InputState();
void readInputState();
bool getKeyState(KeyFunction f);
int getAbsoluteMouseX() { return mouse_x; };
int ge... | Change key state array constness. | Change key state array constness.
Fixed for compatibility with upstream SDL2.
| C | mit | pstiasny/derpengine,pstiasny/derpengine |
7b1b9a38211b3d24d7e546c1f8314e17eea73391 | oscl/oscl_base.h | oscl/oscl_base.h | /* ------------------------------------------------------------------
* Copyright (C) 2009 Martin Storsjo
*
* 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... | /* ------------------------------------------------------------------
* Copyright (C) 2009 Martin Storsjo
*
* 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... | Use suggested change from Martin in defining OSCL_UNUSED_ARG. | Use suggested change from Martin in defining OSCL_UNUSED_ARG.
| C | apache-2.0 | Distrotech/opencore-amr,KurentoLegacy/opencore-amr,KurentoLegacy/opencore-amr,VFR-maniac/opencore-amr,BelledonneCommunications/opencore-amr,yxl/opencore-amr-js,lyx2014/-opencore-amr,yxl/opencore-amr-js,VFR-maniac/opencore-amr,BelledonneCommunications/opencore-amr,jiangjianping/opencore-amr,VFR-maniac/opencore-amr,lyx20... |
b767e4fe4d8f4ff89dbd4a4c95352511e983162f | src/libcol/include/util/error.h | src/libcol/include/util/error.h | #ifndef ERROR_H
#define ERROR_H
/*
* Note that we include "fmt" in the variadic argument list, because C99
* apparently doesn't allow variadic macros to be invoked without any vargs
* parameters.
*/
#define ERROR(...) var_error(__FILE__, __LINE__, __VA_ARGS__)
#define FAIL() simple_error(__FILE__, __... | #ifndef ERROR_H
#define ERROR_H
/*
* Note that we include "fmt" in the variadic argument list, because C99
* apparently doesn't allow variadic macros to be invoked without any vargs
* parameters.
*/
#define ERROR(...) var_error(__FILE__, __LINE__, __VA_ARGS__)
#define FAIL() simple_error(__FILE__, __... | Use GCC "noreturn" function attribute. | Use GCC "noreturn" function attribute.
| C | mit | bloom-lang/c4,bloom-lang/c4,bloom-lang/c4 |
017146d8004a683cfb9fef68095a238372ba1743 | include/nekit/config.h | include/nekit/config.h | // MIT License
// Copyright (c) 2017 Zhuhao Wang
// 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, modify, mer... | // MIT License
// Copyright (c) 2017 Zhuhao Wang
// 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, modify, mer... | Enlarge default buffer size limit | FEAT: Enlarge default buffer size limit
| C | mit | zhuhaow/libnekit,zhuhaow/libnekit,zhuhaow/libnekit,zhuhaow/libnekit |
421139c98b8f202d8a3f5c7667cec95271ae0238 | tests/regression/13-privatized/32-traces-mine-vs-oplus-vs-meet.c | tests/regression/13-privatized/32-traces-mine-vs-oplus-vs-meet.c | #include <pthread.h>
#include <assert.h>
int g = 0;
pthread_mutex_t A = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t B = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t C = PTHREAD_MUTEX_INITIALIZER;
void *t_fun(void *arg) {
pthread_mutex_lock(&A);
pthread_mutex_lock(&C);
pthread_mutex_lock(&B);
g = 5;
pthread_mut... | #include <pthread.h>
#include <assert.h>
int g = 0;
pthread_mutex_t A = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t B = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t C = PTHREAD_MUTEX_INITIALIZER;
void *t_fun(void *arg) {
pthread_mutex_lock(&A);
pthread_mutex_lock(&C);
pthread_mutex_lock(&B);
g = 5;
pthread_mut... | Add assert fail/success comments to 13/32 | Add assert fail/success comments to 13/32
| C | mit | goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer |
5bf537f29920a7a3c9db7792666b3af281f203e4 | src/plugins/cpu.c | src/plugins/cpu.c | #include <uv.h>
#include <estragon.h>
#ifdef __sun
#include <sys/pset.h>
#include <sys/loadavg.h>
#endif
static uv_timer_t cpu_timer;
void send_cpu_usage(uv_timer_t *timer, int status) {
double loadinfo[3];
#ifdef DEBUG
printf("cpu usage timer fired, status %d\n", status);
#endif
#ifdef __sun
/* On SunOS, if w... | #include <uv.h>
#include <estragon.h>
#ifdef __sun
#include <sys/pset.h>
#include <sys/loadavg.h>
#endif
static uv_timer_t cpu_timer;
void send_cpu_usage(uv_timer_t *timer, int status) {
double loadinfo[3];
#ifdef DEBUG
printf("cpu usage timer fired, status %d\n", status);
#endif
#ifdef __sun
/* On SunOS, if w... | Use new `estragon_send` API in CPU plugin | [api] Use new `estragon_send` API in CPU plugin
| C | mit | mmalecki/forza,opsmezzo/forza,mmalecki/forza,npm/forza,cloudninja-io/libinterposed,mmalecki/forza,opsmezzo/forza,opsmezzo/forza |
c5dff4b623492ff9fdb44242b5263df7e637981c | src/plugins/zlib/istream-bzlib.c | src/plugins/zlib/istream-bzlib.c | /* Copyright (c) 2005-2008 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "istream-internal.h"
#include "istream-zlib.h"
#ifdef HAVE_BZLIB
#include <bzlib.h>
#define BZLIB_INCLUDE
#define gzFile BZFILE
#define gzdopen BZ2_bzdopen
#define gzclose BZ2_bzclose
#define gzread BZ2_bzread
#de... | /* Copyright (c) 2005-2008 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "istream-internal.h"
#include "istream-zlib.h"
#ifdef HAVE_BZLIB
#include <stdio.h>
#include <bzlib.h>
#define BZLIB_INCLUDE
#define gzFile BZFILE
#define gzdopen BZ2_bzdopen
#define gzclose BZ2_bzclose
#define gz... | Include stdio.h in case bzlib.h needs it. | bzlib: Include stdio.h in case bzlib.h needs it.
--HG--
branch : HEAD
| C | mit | dscho/dovecot,dscho/dovecot,dscho/dovecot,dscho/dovecot,dscho/dovecot |
ef0b1d076b6a4a3954358e07f432a3e57b1e0e4e | Classes/APIAFNetworkingHTTPClient.h | Classes/APIAFNetworkingHTTPClient.h | //
// APIAFNetworkingHTTPClient.h
// APIClient
//
// Created by Klaas Pieter Annema on 30-08-13.
// Copyright (c) 2013 Klaas Pieter Annema. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "AFNetworking.h"
#import "APIHTTPClient.h"
@interface APIAFNetworkingHTTPClient : NSObject <APIHTTPClient>
... | //
// APIAFNetworkingHTTPClient.h
// APIClient
//
// Created by Klaas Pieter Annema on 30-08-13.
// Copyright (c) 2013 Klaas Pieter Annema. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <AFNetworking/AFNetworking.h>
#import "APIHTTPClient.h"
@interface APIAFNetworkingHTTPClient : NSObject <AP... | Use the correct import syntax | Use the correct import syntax
| C | mit | klaaspieter/APIClient |
fdd95026532a728b5faad191f7485183546cfe3b | include/fruit/impl/unordered_map.h | include/fruit/impl/unordered_map.h | /*
* Copyright 2014 Google Inc. All rights reserved.
*
* 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 appli... | /*
* Copyright 2014 Google Inc. All rights reserved.
*
* 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 appli... | Use the old include path for sparsehash to support older versions of sparsehash (still currently used in Ubuntu and Fedora). | Use the old include path for sparsehash to support older versions of sparsehash (still currently used in Ubuntu and Fedora).
| C | apache-2.0 | d/fruit,google/fruit,google/fruit,google/fruit,d/fruit,d/fruit |
64d0405834a9228234f2d3f8b80503d4c7309515 | include/matrix_constructors_impl.h | include/matrix_constructors_impl.h | //-----------------------------------------------------------------------------
// Constructors
//-----------------------------------------------------------------------------
template<class T>
matrix<T>::matrix():data_(),rows_(0),cols_(0){}
template<class T>
matrix<T>::matrix( std::size_t rows, std::size_t cols ):
... | //-----------------------------------------------------------------------------
// Constructors
//-----------------------------------------------------------------------------
template<class T>
matrix<T>::matrix():data_(),rows_(0),cols_(0){}
template<class T>
matrix<T>::matrix( std::size_t rows, std::size_t cols ):
... | Add question comment to constructor. | Add question comment to constructor.
| C | mit | actinium/cppMatrix,actinium/cppMatrix |
5cbfdaeb02fcf303e0b8d00b0ba4a91ba8320f53 | wayland/input_device.h | wayland/input_device.h | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef OZONE_WAYLAND_INPUT_DEVICE_H_
#define OZONE_WAYLAND_INPUT_DEVICE_H_
#include <wayland-client.h>
#include "base/basictypes.h"
namespace ozonewayl... | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef OZONE_WAYLAND_INPUT_DEVICE_H_
#define OZONE_WAYLAND_INPUT_DEVICE_H_
#include <wayland-client.h>
#include "base/basictypes.h"
namespace ozonewayl... | Make read only functions as const. | Inputs: Make read only functions as const.
Adds missing const keyword for Read only functions in WaylandInputDevice.
| C | bsd-3-clause | 01org/ozone-wayland,hongzhang-yan/ozone-wayland,rakuco/ozone-wayland,baillaw/ozone-wayland,qjia7/ozone-wayland,joone/ozone-wayland,nagineni/ozone-wayland,hongzhang-yan/ozone-wayland,kishansheshagiri/ozone-wayland,darktears/ozone-wayland,kuscsik/ozone-wayland,siteshwar/ozone-wayland,Tarnyko/ozone-wayland,Tarnyko/ozone-w... |
1211ce98a12c4990d6d506cbdb9fb5024ad0100a | services/inputaxis.h | services/inputaxis.h | #ifndef INPUT_AXIS_H
#define INPUT_AXIS_H
#include "../services.h"
#include <stdbool.h>
typedef struct {
bool invert;
bool enabled;
/* Deadzone */
double negative_deadzone;
double positive_deadzone;
/* Max/min */
double negative_maximum;
double positive_maximum;
} axis_config;
typedef struct {
const char*... | #ifndef INPUT_AXIS_H
#define INPUT_AXIS_H
#include "../services.h"
#include <stdbool.h>
typedef struct {
bool invert;
bool enabled;
/* Deadzone */
double negative_deadzone;
double positive_deadzone;
/* Max/min */
double negative_maximum;
double positive_maximum;
} axis_config;
typedef struct {
const char*... | Add new function to header | Add new function to header
| C | mit | n00bDooD/geng,n00bDooD/geng,n00bDooD/geng |
ebb41c4ea260ab9905c7697648e2d1bb4b3914c8 | client.c | client.c | #include <stdio.h>
#include <sys/socket.h>
#include <netdb.h>
#include <string.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
char *host = "127.0.0.1";
int port = 2000;
int timeout = 2;
int sockfd, n;
char buffer[256];
struct sockaddr_in serv_addr;
struct hostent *server;
... | #include <stdio.h>
#include <sys/socket.h>
#include <netdb.h>
#include <string.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
char *host = "127.0.0.1";
int port = 2000;
int timeout = 2;
int sockfd, n;
char buffer[256];
struct sockaddr_in serv_addr;
struct hostent *server;
... | Fix for Ubuntu 14.04, CentOS should work too | Fix for Ubuntu 14.04, CentOS should work too
Assign zero to tv.tv_usec, or it maybe any value.
The c version tiemout works on Ubuntu 14.04 after my fix. | C | mit | moret/socket-read-timeout,moret/socket-read-timeout |
43a917f2aefddfde5c9292fa2fa2267e3fd9751e | common.h | common.h | #pragma once
#define pi (3.14159265358979323846)
#define abort_on_error(where, error) ({ \
typeof(where) _where = where; \
typeof(error) _error = error; \
\
if(_error) { \
fprintf( \
stderr, \
__FILE__ ":%d: %s error (%#x).\n", \
__LINE__, \
_whe... | #pragma once
#include <stdlib.h>
#define pi (3.14159265358979323846)
#define abort_on_error(where, error) ({ \
typeof(where) _where = where; \
typeof(error) _error = error; \
\
if(_error) { \
fprintf( \
stderr, \
__FILE__ ":%d: %s error (%#x).\n", \
__LINE__... | Fix abort_on_error: Don't forget to exit(-1). | Fix abort_on_error: Don't forget to exit(-1).
| C | agpl-3.0 | sonetto/lloyd,sonetto/lloyd |
ad6cd72787fdee1d56e5589c9bc07df4f5e8b4d8 | clangd/FSProvider.h | clangd/FSProvider.h | //===--- FSProvider.h - VFS provider for ClangdServer ------------*- C++-*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | //===--- FSProvider.h - VFS provider for ClangdServer ------------*- C++-*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | Fix the qualification of `IntrusiveRefCntPtr` to use `llvm::`. | Fix the qualification of `IntrusiveRefCntPtr` to use `llvm::`.
Without this, the code only compiled if the header was included after
something introduced the alias from `clang::` to `llvm::` for this type.
Any modules build would fail here.
git-svn-id: a34e9779ed74578ad5922b3306b3d80a0c825546@344225 91177308-0d34-041... | C | apache-2.0 | llvm-mirror/clang-tools-extra,llvm-mirror/clang-tools-extra,llvm-mirror/clang-tools-extra,llvm-mirror/clang-tools-extra |
bd2d4478e5228b3a9c67e7b36ce018afb400ff7d | ionAsset/IUniform.h | ionAsset/IUniform.h |
#pragma once
#include <ionGL.h>
typedef ion::GL::Uniform IUniform;
template <typename T>
using CUniformValue = ion::GL::UniformValue<T>;
template <typename T>
using CUniformReference = ion::GL::UniformReference<T>;
|
#pragma once
#include <ionGL.h>
typedef ion::GL::Uniform IUniform;
template <typename T>
using CUniformValue = ion::GL::UniformValue<T>;
template <typename T>
using CUniformReference = ion::GL::UniformReference<T>;
typedef ion::GL::VertexBuffer CVertexBuffer;
typedef ion::GL::IndexBuffer CIndexB... | Add typedefs for VertexBuffer, IndexBuffer in GL | Add typedefs for VertexBuffer, IndexBuffer in GL
| C | mit | iondune/ionEngine,iondune/ionEngine |
fe229791e558fe9156e74d5e0ef3679c1a99fb13 | includes/iloglistener.h | includes/iloglistener.h | // Copyright 2016 Airtame
#ifndef MANAGEDEVICE_LOGGING_ILOGLISTENER_H_
#define MANAGEDEVICE_LOGGING_ILOGLISTENER_H_
#include <string>
// Forward declarations.
enum class ELogLevel;
class ILogListener {
public:
virtual ~ILogListener() {}
virtual void Notify(const std::string& iLog, ELogLevel iLevel) = 0;
};
... | // Copyright 2016 Pierre Fourgeaud
#ifndef PF_ILOGLISTENER_H_
#define PF_ILOGLISTENER_H_
#include <string>
// Forward declarations.
enum class ELogLevel;
/**
* @brief The ILogListener class
*
* Define an interface to implement when creating a new LogListener.
* SimpleLogger provide 3 default listeners: Buffer,... | Update ILogListener interface with docs | Update ILogListener interface with docs
| C | mit | pierrefourgeaud/SimpleLogger |
21c61e46afee3db7179afdb54eb43461d2e7e90b | Runtime/Rendering/ConstantBufferDX11.h | Runtime/Rendering/ConstantBufferDX11.h | #pragma once
#include "Rendering/BufferDX11.h"
#include "Rendering/ShaderDX11.h"
namespace Mile
{
class MEAPI ConstantBufferDX11 : public BufferDX11
{
public:
ConstantBufferDX11(RendererDX11* renderer);
~ConstantBufferDX11();
bool Init(unsigned int size);
virtual ERenderResourceType ... | #pragma once
#include "Rendering/BufferDX11.h"
#include "Rendering/ShaderDX11.h"
namespace Mile
{
class MEAPI ConstantBufferDX11 : public BufferDX11
{
public:
ConstantBufferDX11(RendererDX11* renderer);
~ConstantBufferDX11();
bool Init(unsigned int size);
template <typename Buffer>
... | Add template Init method for ConstantBuffer | Add template Init method for ConstantBuffer
| C | mit | HoRangDev/MileEngine,HoRangDev/MileEngine |
3502deee1a93e86a97fb22df1cdb512c5a643dd6 | test/PCH/functions.c | test/PCH/functions.c | // Test this without pch.
// RUN: clang-cc -include %S/functions.h -fsyntax-only -verify %s &&
// Test with pch.
// RUN: clang-cc -emit-pch -o %t %S/functions.h &&
// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s
int f0(int x0, int y0, ...) { return x0 + y0; }
float *test_f1(int val, double x, double y) {
... | // Test this without pch.
// RUN: clang-cc -include %S/functions.h -fsyntax-only -verify %s &&
// Test with pch.
// RUN: clang-cc -emit-pch -o %t %S/functions.h &&
// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s
int f0(int x0, int y0, ...) { return x0 + y0; }
float *test_f1(int val, double x, double y) {
... | Revert this, we can now avoid error cascades better. | Revert this, we can now avoid error cascades better.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@76691 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-cl... |
3d8ad86be25865eee842ca5e683ac3f525dc8783 | config/config_kmalloc.h | config/config_kmalloc.h | /* SPDX-License-Identifier: BSD-2-Clause */
/*
* This is a TEMPLATE. The actual config file is generated by CMake and stored
* in <BUILD_DIR>/tilck_gen_headers/.
*/
#pragma once
#include <tilck_gen_headers/config_global.h>
/* --------- Boolean config variables --------- */
#cmakedefine01 KMALLOC_FREE_MEM_POISONI... | /* SPDX-License-Identifier: BSD-2-Clause */
/*
* This is a TEMPLATE. The actual config file is generated by CMake and stored
* in <BUILD_DIR>/tilck_gen_headers/.
*/
#pragma once
#include <tilck_gen_headers/config_global.h>
/* --------- Boolean config variables --------- */
#cmakedefine01 KMALLOC_FREE_MEM_POISONI... | Make KMALLOC_FIRST_HEAP_SIZE depend on KERNEL_MAX_SIZE | [config] Make KMALLOC_FIRST_HEAP_SIZE depend on KERNEL_MAX_SIZE
| C | bsd-2-clause | vvaltchev/experimentOs,vvaltchev/experimentOs,vvaltchev/experimentOs,vvaltchev/experimentOs |
bfcf057787d6ce78c503ce8f7773ea316eae0b13 | src/rtmixer.h | src/rtmixer.h | // actions:
//
// * read from queue
// * read from array
// * write to queue
// * write to array
// * stop action (with and/or without time?)
// * query xrun stats etc.
// timestamp! start, duration (number of samples? unlimited?)
// return values: actual start, actual duration (number of samples?)
// queue usage: st... | // actions:
//
// * read from queue
// * read from array
// * write to queue
// * write to array
// * stop action (with and/or without time?)
// * query xrun stats etc.
// timestamp! start, duration (number of samples? unlimited?)
// return values: actual start, actual duration (number of samples?)
// queue usage: st... | Use const for struct members | Use const for struct members
| C | mit | mgeier/python-rtmixer,mgeier/python-rtmixer |
5986c9fde186378b26f7a5985c97102feba191e8 | KTp/error-dictionary.h | KTp/error-dictionary.h | /*
Telepathy error dictionary - usable strings for dbus messages
Copyright (C) 2011 Martin Klapetek <martin.klapetek@gmail.com>
This library 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 Foundat... | /*
Telepathy error dictionary - usable strings for dbus messages
Copyright (C) 2011 Martin Klapetek <martin.klapetek@gmail.com>
This library 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 Foundat... | Add documentation to Error Dictionary class | Add documentation to Error Dictionary class
Reviewed-by: Martin Klapetek
| C | lgpl-2.1 | KDE/ktp-common-internals,leonhandreke/ktp-common-internals,KDE/ktp-common-internals,KDE/ktp-common-internals,leonhandreke/ktp-common-internals,leonhandreke/ktp-common-internals |
41ee615c0b08e43dc382bc15600f814ac02abf06 | chip/stm32/usb-stm32f3.c | chip/stm32/usb-stm32f3.c | /* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* STM32F3 Family specific USB functionality
*/
#include "usb-stm32f3.h"
#include "usb_api.h"
void usb_connect(void)
{
usb_board_connect();
... | /* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* STM32F3 Family specific USB functionality
*/
#include "usb-stm32f3.h"
#include "usb_api.h"
void usb_connect(void)
{
usb_board_connect();
... | Fix cut and paste bug for board specific disconnection | USB: Fix cut and paste bug for board specific disconnection
Signed-off-by: Anton Staaf <84531b4b964c017023781514a6665b71e84b32bc@chromium.org>
BRANCH=None
BUG=None
TEST=make buildall -j
Change-Id: I8ec4396370b7e3068d29d569b73fddc648e1f76f
Reviewed-on: https://chromium-review.googlesource.com/247720
Trybot-Ready: Ant... | C | bsd-3-clause | akappy7/ChromeOS_EC_LED_Diagnostics,fourier49/BIZ_EC,fourier49/BIZ_EC,fourier49/BZ_DEV_EC,coreboot/chrome-ec,md5555/ec,md5555/ec,akappy7/ChromeOS_EC_LED_Diagnostics,eatbyte/chromium-ec,coreboot/chrome-ec,fourier49/BZ_DEV_EC,eatbyte/chromium-ec,fourier49/BZ_DEV_EC,coreboot/chrome-ec,eatbyte/chromium-ec,fourier49/BZ_DEV_... |
d07295d73267c51bf3d77b97831640db832bacb5 | samples/libcurl/callbacks.h | samples/libcurl/callbacks.h | #include <stdio.h>
// Those types are needed but not defined or used in libcurl headers.
typedef size_t header_callback(char *buffer, size_t size, size_t nitems, void *userdata);
typedef size_t write_data_callback(void *buffer, size_t size, size_t nmemb, void *userp);
extern void something_using_callback1(header_... | #include <stddef.h>
// Those types are needed but not defined or used in libcurl headers.
typedef size_t header_callback(char *buffer, size_t size, size_t nitems, void *userdata);
typedef size_t write_data_callback(void *buffer, size_t size, size_t nmemb, void *userp);
| Remove some hacks from libcurl sample | Remove some hacks from libcurl sample
| C | apache-2.0 | JetBrains/kotlin-native,jiaminglu/kotlin-native,JuliusKunze/kotlin-native,wiltonlazary/kotlin-native,JetBrains/kotlin-native,JetBrains/kotlin-native,jiaminglu/kotlin-native,JuliusKunze/kotlin-native,JuliusKunze/kotlin-native,JuliusKunze/kotlin-native,JetBrains/kotlin-native,JuliusKunze/kotlin-native,JetBrains/kotlin-na... |
8a47f7478c3e73f916a13dd3d0b7cd1e140e21e7 | src/lib/ecore/Ecore_Str.h | src/lib/ecore/Ecore_Str.h | #ifndef _ECORE_STR_H
# define _ECORE_STR_H
#ifdef EAPI
#undef EAPI
#endif
#ifdef WIN32
# ifdef BUILDING_DLL
# define EAPI __declspec(dllexport)
# else
# define EAPI __declspec(dllimport)
# endif
#else
# ifdef __GNUC__
# if __GNUC__ >= 4
# define EAPI __attribute__ ((visibility("default")))
# else
# define EAPI... | #ifndef _ECORE_STR_H
# define _ECORE_STR_H
#ifdef EAPI
#undef EAPI
#endif
#ifdef WIN32
# ifdef BUILDING_DLL
# define EAPI __declspec(dllexport)
# else
# define EAPI __declspec(dllimport)
# endif
#else
# ifdef __GNUC__
# if __GNUC__ >= 4
# define EAPI __attribute__ ((visibility("default")))
# else
# define EAPI... | Fix doxygen comments for new header. | Fix doxygen comments for new header.
git-svn-id: 70cf712206e5b8426a8d7451e052914a94f8fa22@27891 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33
| C | mit | OpenInkpot-archive/ecore,OpenInkpot-archive/ecore,OpenInkpot-archive/ecore |
00d1ca91bb5bb8530e9a9a3b9790ea8a4eec7305 | core/gluonvarianttypes.h | core/gluonvarianttypes.h | /*
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
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 3 of the License, or
(... | /*
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
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 3 of the License, or
(... | Add Quaternion to variant types, makes Q_PROPERTY support it | Add Quaternion to variant types, makes Q_PROPERTY support it
| C | lgpl-2.1 | cgaebel/gluon,KDE/gluon,cgaebel/gluon,pranavrc/example-gluon,cgaebel/gluon,pranavrc/example-gluon,pranavrc/example-gluon,cgaebel/gluon,KDE/gluon,pranavrc/example-gluon,KDE/gluon,KDE/gluon |
a62eaa2f7447d930db84f966986736d30ef522bb | src/block/serpent/serpent.h | src/block/serpent/serpent.h | /*
* Serpent
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_SERPENT_H__
#define BOTAN_SERPENT_H__
#include <botan/block_cipher.h>
namespace Botan {
/**
* Serpent, an AES finalist
*/
class BOTAN_DLL Serpent : public BlockCipher
{
public:
void encrypt_n(co... | /*
* Serpent
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_SERPENT_H__
#define BOTAN_SERPENT_H__
#include <botan/block_cipher.h>
namespace Botan {
/**
* Serpent, an AES finalist
*/
class BOTAN_DLL Serpent : public BlockCipher
{
public:
void encrypt_n(co... | Make Serpent's key_schedule and actual round keys private. Add protected accessor functions for get and set. Set is needed by the x86 version since it implements the key schedule directly. | Make Serpent's key_schedule and actual round keys private. Add
protected accessor functions for get and set. Set is needed by the x86
version since it implements the key schedule directly.
| C | bsd-2-clause | randombit/botan,Rohde-Schwarz-Cybersecurity/botan,webmaster128/botan,Rohde-Schwarz-Cybersecurity/botan,Rohde-Schwarz-Cybersecurity/botan,Rohde-Schwarz-Cybersecurity/botan,webmaster128/botan,randombit/botan,Rohde-Schwarz-Cybersecurity/botan,webmaster128/botan,webmaster128/botan,webmaster128/botan,randombit/botan,Rohde-S... |
edd722e38b883236c9f214d5df309110500b3529 | test/Sema/attr-noreturn.c | test/Sema/attr-noreturn.c | // RUN: clang-cc -verify -fsyntax-only %s
static void (*fp0)(void) __attribute__((noreturn));
static void __attribute__((noreturn)) f0(void) {
fatal();
} // expected-warning {{function declared 'noreturn' should not return}}
// On K&R
int f1() __attribute__((noreturn));
int g0 __attribute__((noreturn)); // expect... | // RUN: clang -cc1 -verify -fsyntax-only %s
static void (*fp0)(void) __attribute__((noreturn));
static void __attribute__((noreturn)) f0(void) {
fatal();
} // expected-warning {{function declared 'noreturn' should not return}}
// On K&R
int f1() __attribute__((noreturn));
int g0 __attribute__((noreturn)); // expe... | Add testcase for recent checkin. | Add testcase for recent checkin.
Patch by Chip Davis.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@91436 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-cl... |
1cdd41d0d2ab5e112d347ec5f14383b5f5ba6034 | kmer_util.h | kmer_util.h | #ifndef KMER_UTIL_H
#define KMER_UTIL_H
#include <assert.h>
#include "logging_util.h"
// Largest odd kmer that can be held in a uint64_t
#define MAX_KMER 31
#define DEFAULT_KMER 21
#ifndef num2nuc
# ifndef NUM2NUC_STR
# define NUM2NUC_STR "ACGTN"
# endif
# define num2nuc(x) NUM2NUC_STR[(uint8_t)x]
#endif
#ifdef __cp... | #ifndef KMER_UTIL_H
#define KMER_UTIL_H
#include <assert.h>
#include "logging_util.h"
// Largest odd kmer that can be held in a uint64_t
#define MAX_KMER 31
#define DEFAULT_KMER 21
#ifndef num2nuc
# ifndef NUM2NUC_STR
# define NUM2NUC_STR "ACGTN"
# endif
# define num2nuc(x) NUM2NUC_STR[(uint8_t)x]
#endif
#ifdef __cp... | Move kmer functionality from kmei to dlib. | Move kmer functionality from kmei to dlib.
| C | mit | noseatbelts/dlib,noseatbelts/dlib |
0fa6366ed15f48b3ec227987f21f339180fb4936 | webrtc/base/checks.h | webrtc/base/checks.h | /*
* Copyright 2006 The WebRTC Project Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing ... | /*
* Copyright 2006 The WebRTC Project Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing ... | Define convenient FATAL_ERROR() and FATAL_ERROR_IF() macros | Define convenient FATAL_ERROR() and FATAL_ERROR_IF() macros
R=henrike@webrtc.org
Review URL: https://webrtc-codereview.appspot.com/16079004
git-svn-id: 917f5d3ca488f358c4d40eaec14422cf392ccec9@6701 4adac7df-926f-26a2-2b94-8c16560cd09d
| C | bsd-3-clause | mwgoldsmith/ilbc,ShiftMediaProject/libilbc,TimothyGu/libilbc,ShiftMediaProject/libilbc,mwgoldsmith/ilbc,TimothyGu/libilbc,mwgoldsmith/libilbc,ShiftMediaProject/libilbc,mwgoldsmith/libilbc,TimothyGu/libilbc,TimothyGu/libilbc,ShiftMediaProject/libilbc,mwgoldsmith/ilbc,TimothyGu/libilbc,mwgoldsmith/libilbc,mwgoldsmith/ilb... |
b2982d63745aa6222ca3ef00d1042b874ba50307 | evmjit/libevmjit/Utils.h | evmjit/libevmjit/Utils.h | #pragma once
#include <iostream>
// The same as assert, but expression is always evaluated and result returned
#define CHECK(expr) (assert(expr), expr)
#if !defined(NDEBUG) // Debug
namespace dev
{
namespace evmjit
{
std::ostream& getLogStream(char const* _channel);
}
}
#define DLOG(CHANNEL) ::dev::evmjit::getLo... | #pragma once
#include <iostream>
// The same as assert, but expression is always evaluated and result returned
#define CHECK(expr) (assert(expr), expr)
#if !defined(NDEBUG) // Debug
namespace dev
{
namespace evmjit
{
std::ostream& getLogStream(char const* _channel);
}
}
#define DLOG(CHANNEL) ::dev::evmjit::getLo... | Reimplement no-op version of DLOG to avoid C++ compiler warning | Reimplement no-op version of DLOG to avoid C++ compiler warning
| C | mit | vaporry/cpp-ethereum,karek314/cpp-ethereum,expanse-project/cpp-expanse,programonauta/webthree-umbrella,expanse-org/cpp-expanse,PaulGrey30/go-get--u-github.com-tools-godep,vaporry/cpp-ethereum,joeldo/cpp-ethereum,LefterisJP/cpp-ethereum,d-das/cpp-ethereum,smartbitcoin/cpp-ethereum,d-das/cpp-ethereum,Sorceror32/go-get--u... |
b56013dda5371aa32a634bc59878f754b537f874 | test/CFrontend/2004-03-07-BitfieldCrash.c | test/CFrontend/2004-03-07-BitfieldCrash.c | // RUN: %llvmgcc -S %s -o /dev/null
/*
* XFAIL: linux
*/
struct s {
unsigned long long u33: 33;
unsigned long long u40: 40;
};
struct s a = { 1, 2};
int foo() {
return a.u40;
}
| // RUN: %llvmgcc -S %s -o /dev/null
/*
* XFAIL: *
*/
struct s {
unsigned long long u33: 33;
unsigned long long u40: 40;
};
struct s a = { 1, 2};
int foo() {
return a.u40;
}
| Test fails on all platforms, not just linux | Test fails on all platforms, not just linux
git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@19405 91177308-0d34-0410-b5e6-96231b3b80d8
| C | bsd-2-clause | dslab-epfl/asap,GPUOpen-Drivers/llvm,dslab-epfl/asap,apple/swift-llvm,apple/swift-llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,dslab-epfl/asap,apple/swift-llvm,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,llvm-mirror/llvm,llvm-mirror/llvm,chubbymaggie/asap,dslab-epfl/asap,dslab-epfl/asap,llvm-mirror/llvm,l... |
2dd927c6610bb09ec315409d2973ed505f5e4cc7 | lib/ReaderWriter/PECOFF/PDBPass.h | lib/ReaderWriter/PECOFF/PDBPass.h | //===- lib/ReaderWriter/PECOFF/PDBPass.h ----------------------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------... | //===- lib/ReaderWriter/PECOFF/PDBPass.h ----------------------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------... | Use SafelyCloseFileDescriptor instead of close. | Use SafelyCloseFileDescriptor instead of close.
Opening a file using openFileForWrite and closing it using close
was asymmetric. It also had a subtle portability problem (details are
described in the commit message for r219189).
git-svn-id: f6089bf0e6284f307027cef4f64114ee9ebb0424@222802 91177308-0d34-0410-b5e6-96231... | C | apache-2.0 | llvm-mirror/lld,llvm-mirror/lld |
c03ed8c4aa935e2490178b52fbaa73675137f626 | tests/amd64/wait4_WNOHANG/wait4_WNOHANG.c | tests/amd64/wait4_WNOHANG/wait4_WNOHANG.c |
static int
parent_main(pid_t child_pid)
{
pid_t pid;
int status;
pid = wait4(child_pid, &status, WNOHANG, NULL);
if (pid != 0)
return (1);
return (0);
}
static void
signal_handler(int sig)
{
}
int
main(int argc, const char *argv[])
{
struct sigaction act;
struct timespec t;
pid_t child_pid;
int retval;
... |
static int
parent_main(pid_t child_pid)
{
pid_t pid;
int status;
pid = wait4(child_pid, &status, WNOHANG, NULL);
if (pid != 0)
return (1);
return (0);
}
int
main(int argc, const char *argv[])
{
pid_t child_pid;
int retval;
child_pid = fork();
switch (child_pid) {
case -1:
return (18);
case 0:
for ... | Simplify the test for wait4(2) with WNOHANG. | Simplify the test for wait4(2) with WNOHANG.
| C | mit | SumiTomohiko/fsyscall2,SumiTomohiko/fsyscall2,SumiTomohiko/fsyscall2,SumiTomohiko/fsyscall2,SumiTomohiko/fsyscall2 |
a78e1809fe4e6276c50d192e1bb5dc94ac84f626 | 3RVX/Controllers/Volume/VolumeController.h | 3RVX/Controllers/Volume/VolumeController.h | // Copyright (c) 2015, Matthew Malensek.
// Distributed under the BSD 2-Clause License (see LICENSE.txt for details)
#pragma once
class VolumeTransformation;
class VolumeController {
public:
struct DeviceInfo {
std::wstring name;
std::wstring id;
};
/// <summary>
/// Retrieves the cu... | // Copyright (c) 2015, Matthew Malensek.
// Distributed under the BSD 2-Clause License (see LICENSE.txt for details)
#pragma once
class VolumeTransformation;
class VolumeController {
public:
struct DeviceInfo {
std::wstring name;
std::wstring id;
};
/// <summary>
/// Retrieves the cu... | Use proper return type X-( | Use proper return type X-(
| C | bsd-2-clause | malensek/3RVX,malensek/3RVX,malensek/3RVX |
adca044ede25200548c3b2b4dbdcf8e1ddc40959 | UIforETW/Version.h | UIforETW/Version.h | #pragma once
// const float in a header file can lead to duplication of the storage
// but I don't really care in this case. Just don't do it with a header
// that is included hundreds of times.
const float kCurrentVersion = 1.49f;
// Put a "#define VERSION_SUFFIX 'b'" line here to add a minor version
// incr... | #pragma once
// const float in a header file can lead to duplication of the storage
// but I don't really care in this case. Just don't do it with a header
// that is included hundreds of times.
const float kCurrentVersion = 1.50f;
// Put a "#define VERSION_SUFFIX 'b'" line here to add a minor version
// incr... | Change version number to 1.50 | Change version number to 1.50
| C | apache-2.0 | ariccio/UIforETW,google/UIforETW,ariccio/UIforETW,google/UIforETW,ariccio/UIforETW,ariccio/UIforETW,google/UIforETW,google/UIforETW |
f2f989b081da91d67646aeaeb9b0483d3586dae2 | EasyImagy/EasyImagy.h | EasyImagy/EasyImagy.h | #import <UIKit/UIKit.h>
//! Project version number for EasyImagy.
FOUNDATION_EXPORT double EasyImagyVersionNumber;
//! Project version string for EasyImagy.
FOUNDATION_EXPORT const unsigned char EasyImagyVersionString[];
// In this header, you should import all the public headers of your framework using statements l... | #import <Foundation/Foundation.h>
//! Project version number for EasyImagy.
FOUNDATION_EXPORT double EasyImagyVersionNumber;
//! Project version string for EasyImagy.
FOUNDATION_EXPORT const unsigned char EasyImagyVersionString[];
// In this header, you should import all the public headers of your framework using st... | Replace unnecessary import of UIKit with Foundation | Replace unnecessary import of UIKit with Foundation
| C | mit | koher/EasyImagy |
11236637a5b66c166e266522d0c3b077ce084dc9 | tomviz/PresetDialog.h | tomviz/PresetDialog.h | /* This source file is part of the Tomviz project, https://tomviz.org/.
It is released under the 3-Clause BSD License, see "LICENSE". */
#ifndef tomvizPresetDialog_h
#define tomvizPresetDialog_h
#include <QDialog>
#include <QScopedPointer>
class QTableView;
class vtkSMProxy;
namespace Ui {
class PresetDialog;
}
... | /* This source file is part of the Tomviz project, https://tomviz.org/.
It is released under the 3-Clause BSD License, see "LICENSE". */
#ifndef tomvizPresetDialog_h
#define tomvizPresetDialog_h
#include <QDialog>
#include <QScopedPointer>
class QTableView;
class vtkSMProxy;
namespace Ui {
class PresetDialog;
}
... | Move destructor to be below constructor | Move destructor to be below constructor
Signed-off-by: Marcus D. Hanwell <cf7042e2e8eee958b5bcde1ae2cbefef82efc184@kitware.com>
| C | bsd-3-clause | OpenChemistry/tomviz,OpenChemistry/tomviz,OpenChemistry/tomviz,OpenChemistry/tomviz |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.