commit
stringlengths 40
40
| old_file
stringlengths 4
112
| new_file
stringlengths 4
112
| old_contents
stringlengths 0
2.05k
| new_contents
stringlengths 28
3.9k
| subject
stringlengths 17
736
| message
stringlengths 18
4.78k
| lang
stringclasses 1
value | license
stringclasses 13
values | repos
stringlengths 7
111k
|
---|---|---|---|---|---|---|---|---|---|
6944671e2648a0bf4b380865227c3486b0c83612 | pzlib.h | pzlib.h | #ifndef PZLIB_H
#define PZLIB_H
typedef unsigned int psize_type;
typedef int pssize_type;
typedef pssize_type writerfunc(void *cookie, const void *buf, psize_type len);
typedef void closefunc(void*);
struct pz {
writerfunc *wf;
closefunc *cf;
};
inline pssize_type do_write(void *cookie, const void *buf, psize_type len) {
struct pz* p = (struct pz*)cookie;
return (p->wf)(cookie, buf, len);
}
inline void do_close(void *cookie) {
struct pz* p = (struct pz*)cookie;
(p->cf)(cookie);
}
#ifdef __cplusplus
extern "C" {
#endif
void *make_fd(int fd);
extern writerfunc write_fd;
extern closefunc free_fd;
#ifdef __cplusplus
}
#endif
#endif
| #ifndef PZLIB_H
#define PZLIB_H
typedef unsigned int psize_type;
typedef int pssize_type;
typedef pssize_type writerfunc(void *cookie, const void *buf, psize_type len);
typedef void closefunc(void*);
struct pz {
writerfunc *wf;
closefunc *cf;
};
static inline pssize_type do_write(void *cookie, const void *buf, psize_type len) {
struct pz* p = (struct pz*)cookie;
return (p->wf)(cookie, buf, len);
}
static inline void do_close(void *cookie) {
struct pz* p = (struct pz*)cookie;
(p->cf)(cookie);
}
#ifdef __cplusplus
extern "C" {
#endif
void *make_fd(int fd);
extern writerfunc write_fd;
extern closefunc free_fd;
#ifdef __cplusplus
}
#endif
#endif
| Replace inline with static inline to enable DEBUG build (linking actually) | Replace inline with static inline to enable DEBUG build (linking actually)
It's all about bloody C89 vs C99 semantic...
| C | mit | yandex/sdch_module,yandex/sdch_module,yandex/sdch_module,yandex/sdch_module |
65fe3d63f25760fa643c39d665bad6ead63a3e08 | queue.c | queue.c | #include "queue.h"
struct Queue
{
size_t head;
size_t tail;
size_t size;
void** e;
};
Queue* Queue_Create(size_t n)
{
Queue* q = (Queue *)malloc(sizeof(Queue));
q->size = n;
q->head = q->tail = 1;
q->e = (void **)malloc(sizeof(void*) * (n + 1));
return q;
} | #include "queue.h"
struct Queue
{
size_t head;
size_t tail;
size_t size;
void** e;
};
Queue* Queue_Create(size_t n)
{
Queue* q = (Queue *)malloc(sizeof(Queue));
q->size = n;
q->head = q->tail = 1;
q->e = (void **)malloc(sizeof(void*) * (n + 1));
return q;
}
int Queue_Empty(Queue* q)
{
return (q->head == q->tail);
} | Add helper function Queue empty implementation | Add helper function Queue empty implementation
| C | mit | MaxLikelihood/CADT |
ddd0a6ac92572a6e6016f5fbc9fda7eaedc7b114 | numpy/core/src/multiarray/buffer.h | numpy/core/src/multiarray/buffer.h | #ifndef _NPY_PRIVATE_BUFFER_H_
#define _NPY_PRIVATE_BUFFER_H_
#ifdef NPY_ENABLE_MULTIPLE_COMPILATION
extern NPY_NO_EXPORT PyBufferProcs array_as_buffer;
#else
NPY_NO_EXPORT PyBufferProcs array_as_buffer;
#endif
#endif
| #ifndef _NPY_PRIVATE_BUFFER_H_
#define _NPY_PRIVATE_BUFFER_H_
#ifdef NPY_ENABLE_SEPARATE_COMPILATION
extern NPY_NO_EXPORT PyBufferProcs array_as_buffer;
#else
NPY_NO_EXPORT PyBufferProcs array_as_buffer;
#endif
#endif
| Fix mispelled separate compilation macro. | Fix mispelled separate compilation macro.
| C | bsd-3-clause | numpy/numpy-refactor,ESSS/numpy,mhvk/numpy,ddasilva/numpy,gmcastil/numpy,sonnyhu/numpy,dwf/numpy,Srisai85/numpy,cjermain/numpy,mindw/numpy,GrimDerp/numpy,matthew-brett/numpy,anntzer/numpy,jorisvandenbossche/numpy,felipebetancur/numpy,mingwpy/numpy,SiccarPoint/numpy,rherault-insa/numpy,pbrod/numpy,pelson/numpy,has2k1/numpy,solarjoe/numpy,CMartelLML/numpy,drasmuss/numpy,pelson/numpy,utke1/numpy,MaPePeR/numpy,rgommers/numpy,ChristopherHogan/numpy,anntzer/numpy,behzadnouri/numpy,pdebuyl/numpy,dch312/numpy,rgommers/numpy,Srisai85/numpy,abalkin/numpy,ChanderG/numpy,rmcgibbo/numpy,skwbc/numpy,jankoslavic/numpy,GaZ3ll3/numpy,WarrenWeckesser/numpy,Linkid/numpy,cowlicks/numpy,sinhrks/numpy,mattip/numpy,Yusa95/numpy,mattip/numpy,sonnyhu/numpy,rherault-insa/numpy,solarjoe/numpy,rhythmsosad/numpy,sigma-random/numpy,cowlicks/numpy,njase/numpy,ahaldane/numpy,cjermain/numpy,andsor/numpy,hainm/numpy,charris/numpy,Srisai85/numpy,ssanderson/numpy,stefanv/numpy,rajathkumarmp/numpy,ajdawson/numpy,nguyentu1602/numpy,mwiebe/numpy,charris/numpy,tynn/numpy,BabeNovelty/numpy,trankmichael/numpy,yiakwy/numpy,dch312/numpy,dwillmer/numpy,mattip/numpy,jakirkham/numpy,pizzathief/numpy,seberg/numpy,rajathkumarmp/numpy,MSeifert04/numpy,Anwesh43/numpy,bmorris3/numpy,BabeNovelty/numpy,kiwifb/numpy,rmcgibbo/numpy,githubmlai/numpy,seberg/numpy,seberg/numpy,brandon-rhodes/numpy,KaelChen/numpy,mathdd/numpy,argriffing/numpy,immerrr/numpy,njase/numpy,andsor/numpy,simongibbons/numpy,jorisvandenbossche/numpy,Anwesh43/numpy,WillieMaddox/numpy,endolith/numpy,naritta/numpy,ewmoore/numpy,trankmichael/numpy,bertrand-l/numpy,ddasilva/numpy,dato-code/numpy,MichaelAquilina/numpy,NextThought/pypy-numpy,mathdd/numpy,grlee77/numpy,MSeifert04/numpy,pyparallel/numpy,ogrisel/numpy,brandon-rhodes/numpy,nbeaver/numpy,musically-ut/numpy,astrofrog/numpy,skymanaditya1/numpy,SiccarPoint/numpy,numpy/numpy,bertrand-l/numpy,jorisvandenbossche/numpy,numpy/numpy-refactor,simongibbons/numpy,ChristopherHogan/numpy,skwbc/numpy,felipebetancur/numpy,jakirkham/numpy,ContinuumIO/numpy,charris/numpy,leifdenby/numpy,njase/numpy,stuarteberg/numpy,drasmuss/numpy,BMJHayward/numpy,nguyentu1602/numpy,rudimeier/numpy,githubmlai/numpy,ewmoore/numpy,ewmoore/numpy,mhvk/numpy,embray/numpy,dimasad/numpy,simongibbons/numpy,BabeNovelty/numpy,stuarteberg/numpy,Eric89GXL/numpy,pizzathief/numpy,rmcgibbo/numpy,musically-ut/numpy,jakirkham/numpy,jonathanunderwood/numpy,utke1/numpy,bertrand-l/numpy,sigma-random/numpy,cowlicks/numpy,abalkin/numpy,rgommers/numpy,Yusa95/numpy,Eric89GXL/numpy,stefanv/numpy,nbeaver/numpy,ajdawson/numpy,brandon-rhodes/numpy,KaelChen/numpy,groutr/numpy,mortada/numpy,githubmlai/numpy,tynn/numpy,yiakwy/numpy,pizzathief/numpy,endolith/numpy,nbeaver/numpy,Eric89GXL/numpy,jorisvandenbossche/numpy,larsmans/numpy,embray/numpy,pizzathief/numpy,GrimDerp/numpy,anntzer/numpy,BabeNovelty/numpy,pbrod/numpy,SunghanKim/numpy,tdsmith/numpy,sigma-random/numpy,mindw/numpy,rudimeier/numpy,larsmans/numpy,rudimeier/numpy,sinhrks/numpy,CMartelLML/numpy,astrofrog/numpy,astrofrog/numpy,pbrod/numpy,pelson/numpy,b-carter/numpy,WarrenWeckesser/numpy,tacaswell/numpy,has2k1/numpy,stefanv/numpy,ekalosak/numpy,naritta/numpy,rherault-insa/numpy,empeeu/numpy,stuarteberg/numpy,chiffa/numpy,groutr/numpy,cjermain/numpy,jakirkham/numpy,WillieMaddox/numpy,immerrr/numpy,tdsmith/numpy,WarrenWeckesser/numpy,Dapid/numpy,mwiebe/numpy,ChanderG/numpy,shoyer/numpy,stefanv/numpy,WarrenWeckesser/numpy,numpy/numpy-refactor,mhvk/numpy,CMartelLML/numpy,jankoslavic/numpy,mindw/numpy,grlee77/numpy,skymanaditya1/numpy,stefanv/numpy,Srisai85/numpy,Anwesh43/numpy,MaPePeR/numpy,sinhrks/numpy,mwiebe/numpy,ewmoore/numpy,MaPePeR/numpy,skymanaditya1/numpy,gfyoung/numpy,empeeu/numpy,KaelChen/numpy,grlee77/numpy,trankmichael/numpy,musically-ut/numpy,tynn/numpy,jonathanunderwood/numpy,BMJHayward/numpy,mortada/numpy,shoyer/numpy,Linkid/numpy,ssanderson/numpy,Eric89GXL/numpy,has2k1/numpy,charris/numpy,numpy/numpy-refactor,Anwesh43/numpy,naritta/numpy,joferkington/numpy,githubmlai/numpy,ajdawson/numpy,pdebuyl/numpy,dimasad/numpy,SunghanKim/numpy,matthew-brett/numpy,AustereCuriosity/numpy,dimasad/numpy,cowlicks/numpy,ajdawson/numpy,bringingheavendown/numpy,ssanderson/numpy,empeeu/numpy,mathdd/numpy,ddasilva/numpy,madphysicist/numpy,hainm/numpy,brandon-rhodes/numpy,madphysicist/numpy,sonnyhu/numpy,astrofrog/numpy,mhvk/numpy,WillieMaddox/numpy,dwf/numpy,MichaelAquilina/numpy,ViralLeadership/numpy,rudimeier/numpy,rajathkumarmp/numpy,grlee77/numpy,shoyer/numpy,gmcastil/numpy,maniteja123/numpy,SiccarPoint/numpy,rmcgibbo/numpy,hainm/numpy,seberg/numpy,b-carter/numpy,Linkid/numpy,larsmans/numpy,ahaldane/numpy,rhythmsosad/numpy,dwillmer/numpy,AustereCuriosity/numpy,pelson/numpy,numpy/numpy,madphysicist/numpy,ekalosak/numpy,CMartelLML/numpy,argriffing/numpy,ChanderG/numpy,ahaldane/numpy,chiffa/numpy,rhythmsosad/numpy,musically-ut/numpy,rajathkumarmp/numpy,moreati/numpy,empeeu/numpy,jschueller/numpy,BMJHayward/numpy,GaZ3ll3/numpy,chatcannon/numpy,tacaswell/numpy,mattip/numpy,anntzer/numpy,kirillzhuravlev/numpy,ChanderG/numpy,ogrisel/numpy,ChristopherHogan/numpy,Dapid/numpy,GaZ3ll3/numpy,hainm/numpy,endolith/numpy,mindw/numpy,felipebetancur/numpy,nguyentu1602/numpy,MichaelAquilina/numpy,jschueller/numpy,Dapid/numpy,ogrisel/numpy,SiccarPoint/numpy,Linkid/numpy,dch312/numpy,madphysicist/numpy,madphysicist/numpy,mortada/numpy,ogrisel/numpy,WarrenWeckesser/numpy,kirillzhuravlev/numpy,ogrisel/numpy,chiffa/numpy,matthew-brett/numpy,MichaelAquilina/numpy,groutr/numpy,sonnyhu/numpy,mhvk/numpy,numpy/numpy,chatcannon/numpy,ekalosak/numpy,MaPePeR/numpy,ahaldane/numpy,naritta/numpy,andsor/numpy,skymanaditya1/numpy,drasmuss/numpy,mathdd/numpy,dwillmer/numpy,dato-code/numpy,bringingheavendown/numpy,felipebetancur/numpy,yiakwy/numpy,joferkington/numpy,dimasad/numpy,abalkin/numpy,KaelChen/numpy,jonathanunderwood/numpy,numpy/numpy,pyparallel/numpy,numpy/numpy-refactor,ContinuumIO/numpy,pbrod/numpy,ahaldane/numpy,rgommers/numpy,joferkington/numpy,joferkington/numpy,jschueller/numpy,matthew-brett/numpy,skwbc/numpy,Yusa95/numpy,dwf/numpy,MSeifert04/numpy,bmorris3/numpy,nguyentu1602/numpy,NextThought/pypy-numpy,MSeifert04/numpy,SunghanKim/numpy,maniteja123/numpy,simongibbons/numpy,mingwpy/numpy,dch312/numpy,maniteja123/numpy,leifdenby/numpy,ChristopherHogan/numpy,bmorris3/numpy,tdsmith/numpy,yiakwy/numpy,pelson/numpy,Yusa95/numpy,ContinuumIO/numpy,tacaswell/numpy,argriffing/numpy,grlee77/numpy,kiwifb/numpy,shoyer/numpy,behzadnouri/numpy,gfyoung/numpy,jankoslavic/numpy,NextThought/pypy-numpy,ViralLeadership/numpy,kirillzhuravlev/numpy,andsor/numpy,mingwpy/numpy,jankoslavic/numpy,mortada/numpy,BMJHayward/numpy,jorisvandenbossche/numpy,embray/numpy,tdsmith/numpy,behzadnouri/numpy,stuarteberg/numpy,kirillzhuravlev/numpy,solarjoe/numpy,embray/numpy,immerrr/numpy,GrimDerp/numpy,dwillmer/numpy,ESSS/numpy,larsmans/numpy,dato-code/numpy,leifdenby/numpy,simongibbons/numpy,ViralLeadership/numpy,SunghanKim/numpy,GrimDerp/numpy,moreati/numpy,bmorris3/numpy,NextThought/pypy-numpy,mingwpy/numpy,cjermain/numpy,jakirkham/numpy,sigma-random/numpy,ESSS/numpy,utke1/numpy,bringingheavendown/numpy,dwf/numpy,embray/numpy,GaZ3ll3/numpy,dwf/numpy,gfyoung/numpy,dato-code/numpy,pizzathief/numpy,ekalosak/numpy,jschueller/numpy,shoyer/numpy,pbrod/numpy,pyparallel/numpy,sinhrks/numpy,MSeifert04/numpy,rhythmsosad/numpy,pdebuyl/numpy,AustereCuriosity/numpy,kiwifb/numpy,endolith/numpy,astrofrog/numpy,moreati/numpy,pdebuyl/numpy,b-carter/numpy,matthew-brett/numpy,chatcannon/numpy,trankmichael/numpy,gmcastil/numpy,has2k1/numpy,immerrr/numpy,ewmoore/numpy |
7a332a1a17f9026e27b7df22bb44d6532f4232b6 | modlib.c | modlib.c | #include "modlib.h"
uint16_t MODBUSSwapEndian( uint16_t Data )
{
//Change big-endian to little-endian and vice versa
uint8_t Swap;
//Create 2 bytes long union
union Conversion
{
uint16_t Data;
uint8_t Bytes[2];
} Conversion;
//Swap bytes
Conversion.Data = Data;
Swap = Conversion.Bytes[0];
Conversion.Bytes[0] = Conversion.Bytes[1];
Conversion.Bytes[1] = Swap;
return Conversion.Data;
}
uint16_t MODBUSCRC16( uint8_t *Data, uint16_t Length )
{
//Calculate CRC16 checksum using given data and length
uint16_t CRC = 0xFFFF;
uint16_t i;
uint8_t j;
for ( i = 0; i < Length; i++ )
{
CRC ^= Data[i]; //XOR current data byte with CRC value
for ( j = 8; j != 0; j-- )
{
//For each bit
//Is least-significant-bit is set?
if ( ( CRC & 0x0001 ) != 0 )
{
CRC >>= 1; //Shift to right and xor
CRC ^= 0xA001;
}
else
CRC >>= 1;
}
}
return CRC;
}
| #include "modlib.h"
uint16_t MODBUSSwapEndian( uint16_t Data )
{
//Change big-endian to little-endian and vice versa
uint8_t Swap;
//Create 2 bytes long union
union Conversion
{
uint16_t Data;
uint8_t Bytes[2];
} Conversion;
//Swap bytes
Conversion.Data = Data;
Swap = Conversion.Bytes[0];
Conversion.Bytes[0] = Conversion.Bytes[1];
Conversion.Bytes[1] = Swap;
return Conversion.Data;
}
uint16_t MODBUSCRC16( uint8_t *Data, uint16_t Length )
{
//Calculate CRC16 checksum using given data and length
uint16_t CRC = 0xFFFF;
uint16_t i;
uint8_t j;
for ( i = 0; i < Length; i++ )
{
CRC ^= (uint16_t) Data[i]; //XOR current data byte with CRC value
for ( j = 8; j != 0; j-- )
{
//For each bit
//Is least-significant-bit is set?
if ( ( CRC & 0x0001 ) != 0 )
{
CRC >>= 1; //Shift to right and xor
CRC ^= 0xA001;
}
else
CRC >>= 1;
}
}
return CRC;
}
| Add cast to uint16_t in CRC function | Add cast to uint16_t in CRC function
| C | mit | Jacajack/modlib |
2240257c7f7cb075b43e844bae0749bd59005c80 | src/GNSMenuDelegate.h | src/GNSMenuDelegate.h | #import <Cocoa/Cocoa.h>
#include <gtk/gtk.h>
#if (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6)
@interface _GNSMenuDelegate : NSObject <NSMenuDelegate> {}
#else
@interface _GNSMenuDelegate : NSObject {}
#endif
@end
| #import <Cocoa/Cocoa.h>
#include <gtk/gtk.h>
#if (MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_5)
@interface _GNSMenuDelegate : NSObject <NSMenuDelegate> {}
#else
@interface _GNSMenuDelegate : NSObject {}
#endif
@end
| Fix minimum version to one that exists in 10.5 | Fix minimum version to one that exists in 10.5
| C | lgpl-2.1 | sharoonthomas/gtk-mac-integration,GNOME/gtk-mac-integration,jralls/gtk-mac-integration,GNOME/gtk-mac-integration,jralls/gtk-mac-integration,sharoonthomas/gtk-mac-integration,GNOME/gtk-mac-integration,jralls/gtk-mac-integration,sharoonthomas/gtk-mac-integration,sharoonthomas/gtk-mac-integration,sharoonthomas/gtk-mac-integration |
b94bcd4c0aa74f4f963aec368f8417add005fafe | lilthumb.h | lilthumb.h | #ifndef lilthumb
#define lilthumb
#include <ctime>
namespace lilthumb{
std::string timeString()
{
time_t rawtime;
struct tm * timeinfo;
char buffer[80];
time (&rawtime);
timeinfo = localtime(&rawtime);
strftime(buffer,80,"%d-%m-%Y %I:%M:%S",timeinfo);
std::string str(buffer);
return str;
}
}
#define logger(stream,message) stream << lilthumb::timeString() << " | "<< message << std::endl;
#endif
| #ifndef lilthumb
#define lilthumb
#include <ctime>
#include <ostream>
namespace lilthumb{
std::string timeString()
{
time_t rawtime;
struct tm * timeinfo;
char buffer[80];
time (&rawtime);
timeinfo = localtime(&rawtime);
strftime(buffer,80,"%d-%m-%Y %I:%M:%S",timeinfo);
std::string str(buffer);
return str;
}
void stone( std::ostream& stream, std::string message )
{
stream << timeString() << " | " << message << std::endl;
}
}
#endif
| Change logger define to namespace stone function | Change logger define to namespace stone function
| C | apache-2.0 | jeromevelut/lilthumb |
3ea520fdbc396ba8d1b859b669d8c16ee34820ad | util/parser/conf.h | util/parser/conf.h | #ifndef __LWP_CONFIG_H
#define __LWP_CONFIG_H
#include <stdint.h>
#include <stdbool.h>
typedef enum{
CFLAG_NWKSKEY = (1<<0),
CFLAG_APPSKEY = (1<<1),
CFLAG_APPKEY = (1<<2),
CFLAG_JOINR = (1<<3),
CFLAG_JOINA = (1<<4),
}config_flag_t;
typedef struct message{
uint8_t *buf;
int16_t len;
struct message *next;
}message_t;
typedef struct{
uint32_t flag;
uint8_t nwkskey[16];
uint8_t appskey[16];
uint8_t appkey[16];
uint8_t band;
bool joinkey;
uint8_t *joinr;
uint8_t joinr_size;
uint8_t *joina;
uint8_t joina_size;
message_t *message;
message_t *maccmd;
}config_t;
int config_parse(const char *file, config_t *config);
void config_free(config_t *config);
#endif // __CONFIG_H
| #ifndef __LWP_CONFIG_H
#define __LWP_CONFIG_H
#include <stdint.h>
#include <stdbool.h>
typedef enum{
CFLAG_NWKSKEY = (1<<0),
CFLAG_APPSKEY = (1<<1),
CFLAG_APPKEY = (1<<2),
CFLAG_JOINR = (1<<3),
CFLAG_JOINA = (1<<4),
}config_flag_t;
typedef struct message{
uint8_t *buf;
int16_t len;
struct message *next;
}message_t;
typedef struct motes_abp{
uint8_t band;
uint8_t devaddr[4];
uint8_t nwkskey[16];
uint8_t appskey[16];
struct message *next;
}motes_abp_t;
typedef struct motes_abp{
uint8_t band;
uint8_t devaddr[4];
uint8_t nwkskey[16];
uint8_t appskey[16];
struct message *next;
}motes_abp_t;
typedef struct{
uint32_t flag;
uint8_t nwkskey[16];
uint8_t appskey[16];
uint8_t appkey[16];
uint8_t band;
bool joinkey;
uint8_t *joinr;
uint8_t joinr_size;
uint8_t *joina;
uint8_t joina_size;
message_t *message;
message_t *maccmd;
}config_t;
int config_parse(const char *file, config_t *config);
void config_free(config_t *config);
#endif // __CONFIG_H
| Add motes_abp and motes_otaa link list structure definition. | Add motes_abp and motes_otaa link list structure definition.
| C | mit | JiapengLi/lorawan-parser,JiapengLi/lorawan-parser |
053300cfd6d2800cd3f744b1ffe4deca6c04082c | interpreter/cling/include/cling/Interpreter/RuntimeExceptions.h | interpreter/cling/include/cling/Interpreter/RuntimeExceptions.h | //--------------------------------------------------------------------*- C++ -*-
// CLING - the C++ LLVM-based InterpreterG :)
// version: $Id$
// author: Vassil Vassilev <[email protected]>
//------------------------------------------------------------------------------
#ifndef CLING_RUNTIME_EXCEPTIONS_H
#define CLING_RUNTIME_EXCEPTIONS_H
namespace cling {
namespace runtime {
///\brief Exception that is thrown when a null pointer dereference is found
/// or a method taking non-null arguments is called with NULL argument.
///
class cling_null_deref_exception { };
} // end namespace runtime
} // end namespace cling
#endif // CLING_RUNTIME_EXCEPTIONS_H
| //--------------------------------------------------------------------*- C++ -*-
// CLING - the C++ LLVM-based InterpreterG :)
// version: $Id$
// author: Vassil Vassilev <[email protected]>
//------------------------------------------------------------------------------
#ifndef CLING_RUNTIME_EXCEPTIONS_H
#define CLING_RUNTIME_EXCEPTIONS_H
namespace clang {
class Sema;
}
namespace cling {
namespace runtime {
///\brief Exception that is thrown when a null pointer dereference is found
/// or a method taking non-null arguments is called with NULL argument.
///
class cling_null_deref_exception {
private:
unsigned m_Location;
clang::Sema* m_Sema;
public:
cling_null_deref_exception(void* Loc, clang::Sema* S);
~cling_null_deref_exception();
void what() throw();
};
} // end namespace runtime
} // end namespace cling
#endif // CLING_RUNTIME_EXCEPTIONS_H
| Add missing header method declarations. | Add missing header method declarations.
| C | lgpl-2.1 | sirinath/root,esakellari/root,gganis/root,omazapa/root-old,cxx-hep/root-cern,CristinaCristescu/root,nilqed/root,CristinaCristescu/root,root-mirror/root,sbinet/cxx-root,gganis/root,sawenzel/root,mattkretz/root,thomaskeck/root,buuck/root,abhinavmoudgil95/root,veprbl/root,esakellari/root,agarciamontoro/root,pspe/root,omazapa/root,buuck/root,beniz/root,pspe/root,dfunke/root,0x0all/ROOT,CristinaCristescu/root,abhinavmoudgil95/root,veprbl/root,root-mirror/root,evgeny-boger/root,nilqed/root,krafczyk/root,veprbl/root,lgiommi/root,zzxuanyuan/root-compressor-dummy,esakellari/root,georgtroska/root,CristinaCristescu/root,alexschlueter/cern-root,CristinaCristescu/root,omazapa/root-old,mattkretz/root,perovic/root,Duraznos/root,omazapa/root,smarinac/root,esakellari/my_root_for_test,jrtomps/root,sirinath/root,smarinac/root,root-mirror/root,esakellari/my_root_for_test,0x0all/ROOT,satyarth934/root,zzxuanyuan/root-compressor-dummy,smarinac/root,abhinavmoudgil95/root,Y--/root,zzxuanyuan/root-compressor-dummy,alexschlueter/cern-root,lgiommi/root,lgiommi/root,vukasinmilosevic/root,dfunke/root,zzxuanyuan/root,omazapa/root,mkret2/root,pspe/root,buuck/root,pspe/root,arch1tect0r/root,root-mirror/root,abhinavmoudgil95/root,mattkretz/root,krafczyk/root,zzxuanyuan/root-compressor-dummy,davidlt/root,karies/root,nilqed/root,davidlt/root,georgtroska/root,buuck/root,cxx-hep/root-cern,BerserkerTroll/root,olifre/root,simonpf/root,zzxuanyuan/root-compressor-dummy,satyarth934/root,perovic/root,omazapa/root-old,dfunke/root,beniz/root,omazapa/root,mhuwiler/rootauto,arch1tect0r/root,satyarth934/root,esakellari/my_root_for_test,0x0all/ROOT,root-mirror/root,omazapa/root,vukasinmilosevic/root,Y--/root,omazapa/root-old,mattkretz/root,Duraznos/root,sawenzel/root,gbitzes/root,beniz/root,mattkretz/root,perovic/root,BerserkerTroll/root,smarinac/root,lgiommi/root,bbockelm/root,georgtroska/root,sbinet/cxx-root,evgeny-boger/root,veprbl/root,gganis/root,buuck/root,smarinac/root,mkret2/root,olifre/root,zzxuanyuan/root,esakellari/my_root_for_test,gbitzes/root,smarinac/root,thomaskeck/root,karies/root,agarciamontoro/root,omazapa/root,sirinath/root,olifre/root,vukasinmilosevic/root,abhinavmoudgil95/root,sirinath/root,arch1tect0r/root,beniz/root,abhinavmoudgil95/root,karies/root,sirinath/root,zzxuanyuan/root,Duraznos/root,smarinac/root,esakellari/my_root_for_test,agarciamontoro/root,nilqed/root,mhuwiler/rootauto,omazapa/root-old,arch1tect0r/root,arch1tect0r/root,gbitzes/root,Duraznos/root,dfunke/root,BerserkerTroll/root,zzxuanyuan/root-compressor-dummy,gbitzes/root,bbockelm/root,thomaskeck/root,olifre/root,veprbl/root,vukasinmilosevic/root,root-mirror/root,jrtomps/root,mhuwiler/rootauto,sirinath/root,BerserkerTroll/root,omazapa/root-old,CristinaCristescu/root,nilqed/root,sirinath/root,gganis/root,georgtroska/root,nilqed/root,BerserkerTroll/root,mattkretz/root,gbitzes/root,dfunke/root,zzxuanyuan/root,krafczyk/root,cxx-hep/root-cern,Duraznos/root,beniz/root,sawenzel/root,georgtroska/root,arch1tect0r/root,evgeny-boger/root,gganis/root,buuck/root,satyarth934/root,davidlt/root,veprbl/root,mhuwiler/rootauto,Duraznos/root,veprbl/root,sawenzel/root,evgeny-boger/root,Y--/root,jrtomps/root,Duraznos/root,bbockelm/root,zzxuanyuan/root,arch1tect0r/root,bbockelm/root,omazapa/root,thomaskeck/root,vukasinmilosevic/root,agarciamontoro/root,bbockelm/root,simonpf/root,root-mirror/root,cxx-hep/root-cern,esakellari/my_root_for_test,dfunke/root,davidlt/root,abhinavmoudgil95/root,mattkretz/root,Y--/root,mhuwiler/rootauto,esakellari/root,zzxuanyuan/root-compressor-dummy,beniz/root,perovic/root,simonpf/root,omazapa/root-old,jrtomps/root,mkret2/root,perovic/root,vukasinmilosevic/root,gganis/root,jrtomps/root,abhinavmoudgil95/root,sbinet/cxx-root,mattkretz/root,karies/root,CristinaCristescu/root,mkret2/root,Y--/root,dfunke/root,agarciamontoro/root,nilqed/root,jrtomps/root,pspe/root,zzxuanyuan/root-compressor-dummy,sbinet/cxx-root,Duraznos/root,esakellari/root,nilqed/root,olifre/root,evgeny-boger/root,thomaskeck/root,gbitzes/root,omazapa/root-old,mkret2/root,simonpf/root,mhuwiler/rootauto,olifre/root,0x0all/ROOT,root-mirror/root,beniz/root,satyarth934/root,0x0all/ROOT,sirinath/root,CristinaCristescu/root,sbinet/cxx-root,abhinavmoudgil95/root,arch1tect0r/root,sawenzel/root,Duraznos/root,simonpf/root,davidlt/root,Y--/root,nilqed/root,buuck/root,karies/root,vukasinmilosevic/root,mkret2/root,davidlt/root,veprbl/root,mhuwiler/rootauto,BerserkerTroll/root,pspe/root,smarinac/root,mhuwiler/rootauto,omazapa/root,lgiommi/root,Y--/root,arch1tect0r/root,olifre/root,esakellari/my_root_for_test,bbockelm/root,sawenzel/root,georgtroska/root,esakellari/root,alexschlueter/cern-root,jrtomps/root,karies/root,pspe/root,davidlt/root,root-mirror/root,agarciamontoro/root,gbitzes/root,vukasinmilosevic/root,sbinet/cxx-root,sirinath/root,Y--/root,cxx-hep/root-cern,krafczyk/root,esakellari/root,perovic/root,sbinet/cxx-root,root-mirror/root,esakellari/my_root_for_test,0x0all/ROOT,karies/root,beniz/root,zzxuanyuan/root-compressor-dummy,Duraznos/root,evgeny-boger/root,CristinaCristescu/root,gganis/root,jrtomps/root,lgiommi/root,pspe/root,gbitzes/root,mattkretz/root,CristinaCristescu/root,arch1tect0r/root,omazapa/root,esakellari/root,dfunke/root,olifre/root,veprbl/root,veprbl/root,sawenzel/root,krafczyk/root,cxx-hep/root-cern,krafczyk/root,Y--/root,simonpf/root,evgeny-boger/root,zzxuanyuan/root,beniz/root,lgiommi/root,gganis/root,davidlt/root,vukasinmilosevic/root,dfunke/root,BerserkerTroll/root,esakellari/my_root_for_test,sirinath/root,georgtroska/root,sawenzel/root,cxx-hep/root-cern,thomaskeck/root,buuck/root,root-mirror/root,agarciamontoro/root,sawenzel/root,zzxuanyuan/root,sbinet/cxx-root,omazapa/root,Duraznos/root,satyarth934/root,perovic/root,perovic/root,esakellari/my_root_for_test,veprbl/root,krafczyk/root,simonpf/root,Y--/root,krafczyk/root,simonpf/root,krafczyk/root,abhinavmoudgil95/root,sawenzel/root,omazapa/root,gganis/root,jrtomps/root,thomaskeck/root,olifre/root,dfunke/root,davidlt/root,evgeny-boger/root,thomaskeck/root,zzxuanyuan/root,gbitzes/root,mkret2/root,agarciamontoro/root,agarciamontoro/root,bbockelm/root,lgiommi/root,satyarth934/root,mattkretz/root,alexschlueter/cern-root,karies/root,mattkretz/root,mkret2/root,pspe/root,buuck/root,jrtomps/root,Y--/root,alexschlueter/cern-root,evgeny-boger/root,mhuwiler/rootauto,agarciamontoro/root,zzxuanyuan/root-compressor-dummy,thomaskeck/root,agarciamontoro/root,0x0all/ROOT,gganis/root,sbinet/cxx-root,smarinac/root,zzxuanyuan/root-compressor-dummy,krafczyk/root,BerserkerTroll/root,perovic/root,BerserkerTroll/root,evgeny-boger/root,esakellari/root,simonpf/root,olifre/root,gbitzes/root,sbinet/cxx-root,0x0all/ROOT,mkret2/root,zzxuanyuan/root,davidlt/root,omazapa/root-old,dfunke/root,zzxuanyuan/root,georgtroska/root,satyarth934/root,BerserkerTroll/root,buuck/root,omazapa/root-old,karies/root,beniz/root,nilqed/root,arch1tect0r/root,bbockelm/root,zzxuanyuan/root,bbockelm/root,gbitzes/root,sirinath/root,BerserkerTroll/root,cxx-hep/root-cern,satyarth934/root,alexschlueter/cern-root,beniz/root,perovic/root,karies/root,smarinac/root,satyarth934/root,satyarth934/root,bbockelm/root,bbockelm/root,mhuwiler/rootauto,0x0all/ROOT,evgeny-boger/root,lgiommi/root,karies/root,pspe/root,davidlt/root,lgiommi/root,nilqed/root,georgtroska/root,simonpf/root,esakellari/root,alexschlueter/cern-root,sawenzel/root,perovic/root,vukasinmilosevic/root,vukasinmilosevic/root,mkret2/root,pspe/root,krafczyk/root,abhinavmoudgil95/root,omazapa/root-old,sbinet/cxx-root,jrtomps/root,CristinaCristescu/root,georgtroska/root,buuck/root,mkret2/root,georgtroska/root,lgiommi/root,gganis/root,zzxuanyuan/root,mhuwiler/rootauto,olifre/root,simonpf/root,esakellari/root,thomaskeck/root |
aa81908f7a649ade93036b5f30b91307e20cb464 | include/clang/Rewrite/ASTConsumers.h | include/clang/Rewrite/ASTConsumers.h | //===--- ASTConsumers.h - ASTConsumer implementations -----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// AST Consumers.
//
//===----------------------------------------------------------------------===//
#ifndef REWRITE_ASTCONSUMERS_H
#define REWRITE_ASTCONSUMERS_H
#include <string>
namespace llvm {
class raw_ostream;
}
namespace clang {
class ASTConsumer;
class Diagnostic;
class LangOptions;
class Preprocessor;
// ObjC rewriter: attempts tp rewrite ObjC constructs into pure C code.
// This is considered experimental, and only works with Apple's ObjC runtime.
ASTConsumer *CreateObjCRewriter(const std::string &InFile,
llvm::raw_ostream *OS,
Diagnostic &Diags,
const LangOptions &LOpts,
bool SilenceRewriteMacroWarning);
/// CreateHTMLPrinter - Create an AST consumer which rewrites source code to
/// HTML with syntax highlighting suitable for viewing in a web-browser.
ASTConsumer *CreateHTMLPrinter(llvm::raw_ostream *OS, Preprocessor &PP,
bool SyntaxHighlight = true,
bool HighlightMacros = true);
} // end clang namespace
#endif
| //===--- ASTConsumers.h - ASTConsumer implementations -----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// AST Consumers.
//
//===----------------------------------------------------------------------===//
#ifndef REWRITE_ASTCONSUMERS_H
#define REWRITE_ASTCONSUMERS_H
#include <string>
namespace llvm {
class raw_ostream;
}
namespace clang {
class ASTConsumer;
class Diagnostic;
class LangOptions;
class Preprocessor;
// ObjC rewriter: attempts to rewrite ObjC constructs into pure C code.
// This is considered experimental, and only works with Apple's ObjC runtime.
ASTConsumer *CreateObjCRewriter(const std::string &InFile,
llvm::raw_ostream *OS,
Diagnostic &Diags,
const LangOptions &LOpts,
bool SilenceRewriteMacroWarning);
/// CreateHTMLPrinter - Create an AST consumer which rewrites source code to
/// HTML with syntax highlighting suitable for viewing in a web-browser.
ASTConsumer *CreateHTMLPrinter(llvm::raw_ostream *OS, Preprocessor &PP,
bool SyntaxHighlight = true,
bool HighlightMacros = true);
} // end clang namespace
#endif
| Fix typo spotted by Nico Weber. | Fix typo spotted by Nico Weber.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@117870 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-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,llvm-mirror/clang |
3a5041e79cbd70903d43608296e5b74e6473bd13 | config.h | config.h | /* Uncomment to compile with tcpd/libwrap support. */
//#define WITH_WRAP
/* Compile with database upgrading support? If disabled, mosquitto won't
* automatically upgrade old database versions. */
#define WITH_DB_UPGRADE
/* Compile with memory tracking support? If disabled, mosquitto won't track
* heap memory usage nor export '$SYS/broker/heap/current size', but will use
* slightly less memory and CPU time. */
#define WITH_MEMORY_TRACKING
| /* Uncomment to compile with tcpd/libwrap support. */
//#define WITH_WRAP
/* Compile with database upgrading support? If disabled, mosquitto won't
* automatically upgrade old database versions. */
//#define WITH_DB_UPGRADE
/* Compile with memory tracking support? If disabled, mosquitto won't track
* heap memory usage nor export '$SYS/broker/heap/current size', but will use
* slightly less memory and CPU time. */
#define WITH_MEMORY_TRACKING
| Disable db upgrade code for the moment. | Disable db upgrade code for the moment.
| C | bsd-3-clause | tempbottle/mosquitto,tempbottle/mosquitto,tempbottle/mosquitto,tempbottle/mosquitto,tempbottle/mosquitto |
d3e46ddf119944613580925c30d38a0dfa8f380e | test/CodeGen/pr5406.c | test/CodeGen/pr5406.c | // RUN: %clang_cc1 %s -emit-llvm -O0 -o - | FileCheck %s
// PR 5406
// XFAIL: *
// XTARGET: arm
typedef struct { char x[3]; } A0;
void foo (int i, ...);
// CHECK: call void (i32, ...)* @foo(i32 1, i32 {{.*}}) nounwind
int main (void)
{
A0 a3;
a3.x[0] = 0;
a3.x[0] = 0;
a3.x[2] = 26;
foo (1, a3 );
return 0;
}
| // RUN: %clang_cc1 %s -emit-llvm -triple arm-apple-darwin -o - | FileCheck %s
// PR 5406
typedef struct { char x[3]; } A0;
void foo (int i, ...);
// CHECK: call arm_aapcscc void (i32, ...)* @foo(i32 1, [1 x i32] {{.*}})
int main (void)
{
A0 a3;
a3.x[0] = 0;
a3.x[0] = 0;
a3.x[2] = 26;
foo (1, a3 );
return 0;
}
| Add a triple to this test and make sure it passes on arm where it was supposed to. | Add a triple to this test and make sure it passes on arm where it was
supposed to.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@136305 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | apple/swift-clang,llvm-mirror/clang,apple/swift-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,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang |
56b0b9bc9059bb25a5d7ea2ab8723f63fe1fed9f | src/Pomade.c | src/Pomade.c | #include "pebble_os.h"
#include "pebble_app.h"
#include "pebble_fonts.h"
#define MY_UUID { 0x78, 0x1D, 0x21, 0x66, 0x09, 0x09, 0x4F, 0x9C, 0x88, 0xFD, 0x89, 0x9B, 0x04, 0xBF, 0x5E, 0x32 }
PBL_APP_INFO(MY_UUID,
"Pomade", "Jon Speicher",
0, 1, /* App version */
DEFAULT_MENU_ICON,
APP_INFO_STANDARD_APP);
Window window;
void handle_init(AppContextRef ctx) {
window_init(&window, "Pomade");
window_stack_push(&window, true /* Animated */);
}
void pbl_main(void *params) {
PebbleAppHandlers handlers = {
.init_handler = &handle_init
};
app_event_loop(params, &handlers);
}
| #include "pebble_os.h"
#include "pebble_app.h"
#include "pebble_fonts.h"
#define MY_UUID { 0x78, 0x1D, 0x21, 0x66, 0x09, 0x09, 0x4F, 0x9C, 0x88, 0xFD, 0x89, 0x9B, 0x04, 0xBF, 0x5E, 0x32 }
PBL_APP_INFO(MY_UUID,
"Pomade", "Jon Speicher",
0, 1, /* App version */
DEFAULT_MENU_ICON,
APP_INFO_STANDARD_APP);
Window window;
TextLayer timerLayer;
AppTimerHandle timer_handle;
#define COOKIE_MY_TIMER 1
void handle_timer(AppContextRef ctx, AppTimerHandle handle, uint32_t cookie) {
if (cookie == COOKIE_MY_TIMER) {
text_layer_set_text(&timerLayer, "Timer happened!");
}
// If you want the timer to run again you need to call `app_timer_send_event()`
// again here.
}
void handle_init(AppContextRef ctx) {
window_init(&window, "Pomade");
window_stack_push(&window, true /* Animated */);
text_layer_init(&timerLayer, window.layer.frame);
text_layer_set_text(&timerLayer, "Waiting for timer...");
layer_add_child(&window.layer, &timerLayer.layer);
timer_handle = app_timer_send_event(ctx, 1500 /* milliseconds */, COOKIE_MY_TIMER);
}
void pbl_main(void *params) {
PebbleAppHandlers handlers = {
.init_handler = &handle_init,
.timer_handler = &handle_timer
};
app_event_loop(params, &handlers);
}
| Add framework timer code from Pebble feature_timer demo app | Add framework timer code from Pebble feature_timer demo app
| C | mit | jonspeicher/Pomade,jonspeicher/Pomade,elliots/simple-demo-pebble |
ad5ea012eb6f9ce2ce2ef182a17aab0697e1737d | fq/linked_list_queue.h | fq/linked_list_queue.h |
/*
* Copyright 2017 Brandon Yannoni
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef LINKED_LIST_QUEUE_H
#define LINKED_LIST_QUEUE_H
#include <pthread.h>
#include "../function_queue.h"
#include "../qterror.h"
/*
* This structure is a linked list node structure for function queue
* elements.
*/
struct fqellnode {
struct function_queue_element element; /* the element value */
struct fqellnode* next; /* the address of the next node */
};
/*
* This structure is used to store the function queue elements and any
* persistant data necessary for the manipulation procedures.
*/
struct fqlinkedlist {
struct fqellnode* head; /* a pointer to the head of the list */
struct fqellnode* tail; /* a pointer to the tail of the list */
size_t size; /* current number of elements */
};
extern const struct fqdispatchtable fqdispatchtablell;
#endif
| Add header file for linked list queue | Add header file for linked list queue
| C | apache-2.0 | byannoni/qthreads |
|
c8801b3611431a17c12c8b0842230ff8cf31033f | compiler/native/src/class/function_header.h | compiler/native/src/class/function_header.h | namespace NJS::Class
{
class Function
{
public:
int cnt = 0;
string code = "[native code]";
void Delete();
Function(void *_f);
void *__NJS_VALUE;
vector<pair<const char *, NJS::VAR>> __OBJECT;
template <class... Args>
NJS::VAR operator()(Args... args);
explicit NJS::Class::Function::operator std::string() const
{
return "function () { " + code + " }";
}
};
} // namespace NJS::CLASS | namespace NJS::Class
{
class Function
{
public:
int cnt = 0;
string code = "[native code]";
void Delete();
Function(void *_f);
void *__NJS_VALUE;
vector<pair<const char *, NJS::VAR>> __OBJECT;
template <class... Args>
NJS::VAR operator()(Args... args);
explicit operator std::string() const
{
return "function () { " + code + " }";
}
};
} // namespace NJS::CLASS | Add function.toString() and source code if --debug | Add function.toString() and source code if --debug
| C | mit | seraum/nectarjs,seraum/nectarjs,seraum/nectarjs,seraum/nectarjs,seraum/nectarjs |
653f37b8f1aa186ac1234e466dc5246ca34020d9 | webkit/glue/screen_info.h | webkit/glue/screen_info.h | // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this
// source code is governed by a BSD-style license that can be found in the
// LICENSE file.
#ifndef WEBKIT_GLUE_SCREEN_INFO_H_
#define WEBKIT_GLUE_SCREEN_INFO_H_
#include "base/gfx/rect.h"
namespace webkit_glue {
struct ScreenInfo {
int depth;
int depth_per_component;
bool is_monochrome;
gfx::Rect rect;
gfx::Rect available_rect;
};
} // namespace webkit_glue
#endif // WEBKIT_GLUE_SCREEN_INFO_H_
| Add missing file. Oops :( | Add missing file. Oops :(
TBR=dglazkov
Review URL: http://codereview.chromium.org/8789
git-svn-id: http://src.chromium.org/svn/trunk/src@4338 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
Former-commit-id: 6520b60844230204cf736f17b814d95b6c0e249b | C | bsd-3-clause | meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser |
|
685cc22bc92f5b35c9ec6fcc7fe8e65bda3ecf1e | src/math/p_asin.c | src/math/p_asin.c | #include <pal.h>
/**
*
* Caclulates the inverse sine (arc sine) of the argument 'a'. Arguments must be
* in the range -1 to 1. The function does not check for illegal input values.
* Results are in the range -pi/2 to pi/2.
*
* @param a Pointer to input vector
*
* @param c Pointer to output vector
*
* @param n Size of 'a' and 'c' vector.
*
* @return None
*
*/
#include <math.h>
void p_asin_f32(const float *a, float *c, int n)
{
int i;
for (i = 0; i < n; i++) {
*(c + i) = asinf(*(a + i));
}
}
| #include <math.h>
#include <pal.h>
static const float pi_2 = (float) M_PI / 2.f;
/*
* 0 <= x <= 1
* asin x = pi/2 - (1 - x)^(1/2) * (a0 + a1 * x + ... + a3 * x^3) + e(x)
* |e(x)| <= 5 * 10^-5
*/
static inline float __p_asin_pos(const float x)
{
const float a0 = 1.5707288f;
const float a1 = -0.2121144f;
const float a2 = 0.0742610f;
const float a3 = -0.0187293f;
float a_ = 1.f - x;
float a;
p_sqrt_f32(&a_, &a, 1);
return pi_2 - a * (a0 + a1 * x + a2 * x * x + a3 * x * x * x);
}
/*
* -1 <= x <= 1
* asin(-x) = - asin x
*/
static inline float _p_asin(const float x)
{
if (x >= 0.f)
return __p_asin_pos(x);
else
return -1.f * __p_asin_pos(-x);
}
/**
*
* Caclulates the inverse sine (arc sine) of the argument 'a'. Arguments must be
* in the range -1 to 1. The function does not check for illegal input values.
* Results are in the range -pi/2 to pi/2.
*
* @param a Pointer to input vector
*
* @param c Pointer to output vector
*
* @param n Size of 'a' and 'c' vector.
*
* @return None
*
*/
void p_asin_f32(const float *a, float *c, int n)
{
int i;
for (i = 0; i < n; i++) {
c[i] = _p_asin(a[i]);
}
}
| Implement the inverse sine function. | math:asin: Implement the inverse sine function.
Signed-off-by: Mansour Moufid <[email protected]>
| C | apache-2.0 | debug-de-su-ka/pal,8l/pal,eliteraspberries/pal,Adamszk/pal3,8l/pal,Adamszk/pal3,Adamszk/pal3,aolofsson/pal,debug-de-su-ka/pal,mateunho/pal,parallella/pal,parallella/pal,8l/pal,aolofsson/pal,debug-de-su-ka/pal,olajep/pal,mateunho/pal,8l/pal,eliteraspberries/pal,olajep/pal,parallella/pal,parallella/pal,debug-de-su-ka/pal,mateunho/pal,parallella/pal,debug-de-su-ka/pal,Adamszk/pal3,eliteraspberries/pal,mateunho/pal,aolofsson/pal,eliteraspberries/pal,olajep/pal,olajep/pal,eliteraspberries/pal,aolofsson/pal,mateunho/pal |
afaa27fd652fbc3555faa92f3e1e16957bafd751 | src/_usage.h | src/_usage.h | /*
* @file _usage.h
* @brief standardize help/usage output across all our programs
* @internal
*
* Copyright 2007 Gentoo Foundation
* Released under the GPLv2
*/
#define getoptstring_COMMON "Ch"
#define longopts_COMMON \
{ "help", 0, NULL, 'h'}, \
{ "nocolor", 0, NULL, 'C'},
#define case_RC_COMMON_GETOPT \
case 'C': setenv ("RC_NOCOLOR", "yes", 1); break; \
case 'h': usage (EXIT_SUCCESS); \
default: usage (EXIT_FAILURE);
| Add --nocolor to more programs | Add --nocolor to more programs
| C | bsd-2-clause | dwfreed/openrc,OpenRC/openrc,williamh/openrc,williamh/openrc,williamh/openrc,OpenRC/openrc,dwfreed/openrc,dwfreed/openrc,OpenRC/openrc |
|
70c33ced375baeccbb500446a861c7a61d04abc2 | tools/regression/bpf/bpf_filter/tests/test0083.h | tools/regression/bpf/bpf_filter/tests/test0083.h | /*-
* Test 0083: Check that the last instruction is BPF_RET.
*
* $FreeBSD$
*/
/* BPF program */
struct bpf_insn pc[] = {
BPF_JUMP(BPF_JMP+BPF_JA, 0, 0, 0),
};
/* Packet */
u_char pkt[] = {
0x00,
};
/* Packet length seen on wire */
u_int wirelen = sizeof(pkt);
/* Packet length passed on buffer */
u_int buflen = sizeof(pkt);
/* Invalid instruction */
int invalid = 1;
/* Expected return value */
u_int expect = 0;
/* Expected signal */
#ifdef BPF_JIT_COMPILER
int expect_signal = SIGSEGV;
#else
int expect_signal = SIGABRT;
#endif
| /*-
* Test 0083: Check that the last instruction is BPF_RET.
*
* $FreeBSD$
*/
/* BPF program */
struct bpf_insn pc[] = {
BPF_STMT(BPF_LD|BPF_IMM, 0),
};
/* Packet */
u_char pkt[] = {
0x00,
};
/* Packet length seen on wire */
u_int wirelen = sizeof(pkt);
/* Packet length passed on buffer */
u_int buflen = sizeof(pkt);
/* Invalid instruction */
int invalid = 1;
/* Expected return value */
u_int expect = 0;
/* Expected signal */
#ifdef BPF_JIT_COMPILER
int expect_signal = SIGSEGV;
#else
int expect_signal = SIGABRT;
#endif
| Adjust a test case and make it more jump optimization neutral for JIT case. | Adjust a test case and make it more jump optimization neutral for JIT case.
| C | bsd-3-clause | jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase |
ce580a9f30cc5d4058cb650498efe21b63f39d65 | src/toolbox/tbx/dns_cache.h | src/toolbox/tbx/dns_cache.h | /*
Copyright 2016 Vanderbilt University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#pragma once
#ifndef ACCRE_DNS_CACHE_H_INCLUDED
#define ACCRE_DNS_CACHE_H_INCLUDED
#include "tbx/toolbox_visibility.h"
#ifdef __cplusplus
extern "C" {
#endif
// Functions
TBX_API int tbx_dnsc_lookup(const char * name, char * byte_addr, char * ip_addr);
TBX_API int tbx_dnsc_shutdown();
TBX_API int tbx_dnsc_startup();
TBX_API int tbx_dnsc_startup_sized(int size);
// Preprocessor macros
#define DNS_ADDR_MAX 4
#define DNS_IPV4 0
#define DNS_IPV6 1
#ifdef __cplusplus
}
#endif
#endif
| /*
Copyright 2016 Vanderbilt University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#pragma once
#ifndef ACCRE_DNS_CACHE_H_INCLUDED
#define ACCRE_DNS_CACHE_H_INCLUDED
#include "tbx/toolbox_visibility.h"
#ifdef __cplusplus
extern "C" {
#endif
// Functions
TBX_API int tbx_dnsc_lookup(const char * name, char * byte_addr, char * ip_addr);
TBX_API int tbx_dnsc_shutdown();
TBX_API int tbx_dnsc_startup();
TBX_API int tbx_dnsc_startup_sized(int size);
// Preprocessor macros
#define DNS_ADDR_MAX 16
#define DNS_IPV4 0
#define DNS_IPV6 1
#ifdef __cplusplus
}
#endif
#endif
| Add enough space in DNS cache for IPV6 | Add enough space in DNS cache for IPV6
We have code supporting IPV6, but the structs only have enough space for
IPV4.
| C | apache-2.0 | PerilousApricot/lstore,accre/lstore,accre/lstore,PerilousApricot/lstore,tacketar/lstore,tacketar/lstore,PerilousApricot/lstore,accre/lstore,tacketar/lstore,accre/lstore,tacketar/lstore,PerilousApricot/lstore |
70beeb5a61cbf12a59000c8fd1e56c638e3a6aa4 | src/hardware_dep/dpdk/data_plane/dpdkx_hash.c | src/hardware_dep/dpdk/data_plane/dpdkx_hash.c | // SPDX-License-Identifier: Apache-2.0
// Copyright 2021 Eotvos Lorand University, Budapest, Hungary
#include "dpdk_model_v1model.h"
#include "util_packet.h"
#include "util_debug.h"
#include "dpdk_lib.h"
#include "stateful_memory.h"
#include <rte_ip.h>
void hash(uint16_t* result, enum_HashAlgorithm_t hash, uint16_t base, uint8_buffer_t data, uint32_t max, SHORT_STDPARAMS) {
debug(" : Executing hash\n");
}
| // SPDX-License-Identifier: Apache-2.0
// Copyright 2021 Eotvos Lorand University, Budapest, Hungary
#include "dpdk_model_v1model.h"
#include "util_packet.h"
#include "util_debug.h"
#include "dpdk_lib.h"
#include "stateful_memory.h"
#include "rte_hash_crc.h"
#include <rte_ip.h>
void hash(uint16_t* result, enum_HashAlgorithm_t hash, uint16_t base, uint8_buffer_t data, uint32_t max, SHORT_STDPARAMS) {
debug(" : Executing hash\n");
dbg_bytes(data.buffer, data.buffer_size, " Input: " T4LIT(%d) " bytes: ", data.buffer_size);
if (hash == enum_HashAlgorithm_crc32){
uint32_t crc32_result = rte_hash_crc(data.buffer, data.buffer_size, 0xffffffff);
memcpy(result, &crc32_result, 4);
}
else if (hash == enum_HashAlgorithm_identity) {
memcpy(result, data.buffer, data.buffer_size > 8 ? 8 : data.buffer_size);
}
else {
debug(" : Unkown hashing method!\n");
}
dbg_bytes(result, 4, " Result:");
}
| Add crc32 and identity hash functions | Add crc32 and identity hash functions
| C | apache-2.0 | P4ELTE/t4p4s,P4ELTE/t4p4s,P4ELTE/t4p4s |
fd5beb9c4c2d17aecd6ef51810b447c22580b187 | Josh_Zane_Sebastian/src/interpreter/interpreter.c | Josh_Zane_Sebastian/src/interpreter/interpreter.c | #include <stdlib.h>
#include <stdio.h>
#include <string.h>
void runStep(struct stack_node node, struct stack_node *top) {
switch( node.data.type ) {
case 0:
struct stack_node push;
push.cdr = top;
push.data = node.data;
*top = push;
break;
}
}
| Add support for pushing ints to the stack. | Add support for pushing ints to the stack.
| C | mit | aacoppa/final,aacoppa/final |
|
5609a9640f7c76ebd9374f0d8bc24417314d94d2 | c/src/base/ByteProducer.c | c/src/base/ByteProducer.c | #include "ByteProducer.h"
static void _start (struct ByteProducerInternal *self, struct ByteListenerInternal *listener) {
ByteProducer *producer = (ByteProducer *) self;
producer->start (producer, (ByteListener *) listener);
}
static void _stop (struct ByteProducerInternal *self) {
ByteProducer *producer = (ByteProducer *) self;
producer->stop (producer);
};
ByteProducer *byte_producer_create (byte_producer_start start, byte_producer_stop stop) {
ByteProducer *producer = xmalloc (sizeof (ByteProducer));
producer->start = start;
producer->stop = stop;
producer->_start = _start;
producer->_stop = _stop;
return producer;
} | Add a factory for Producer<Byte> | Add a factory for Producer<Byte>
| C | mit | artfuldev/RIoT |
|
128380f9f4693249367c5b34ea67507fd2e822c5 | src/ext/mruby_UI_control_hierarchy.c | src/ext/mruby_UI_control_hierarchy.c | {
struct RClass *Control_class = mrb_define_class_under(mrb, UI_module(mrb), "Control", mrb->object_class);
#define CONTROL_SUBCLASS(name) { struct RClass* subclass = mrb_define_class_under(mrb, UI_module(mrb), #name, Control_class); }
CONTROL_SUBCLASS(Area)
CONTROL_SUBCLASS(Box)
CONTROL_SUBCLASS(Button)
CONTROL_SUBCLASS(Checkbox)
CONTROL_SUBCLASS(ColorButton)
CONTROL_SUBCLASS(Combobox)
CONTROL_SUBCLASS(DateTimePicker)
CONTROL_SUBCLASS(EditableCombobox)
CONTROL_SUBCLASS(Entry)
CONTROL_SUBCLASS(FontButton)
CONTROL_SUBCLASS(Form)
CONTROL_SUBCLASS(Grid)
CONTROL_SUBCLASS(Group)
CONTROL_SUBCLASS(Label)
CONTROL_SUBCLASS(MultilineEntry)
CONTROL_SUBCLASS(ProgressBar)
CONTROL_SUBCLASS(RadioButtons)
CONTROL_SUBCLASS(Separator)
CONTROL_SUBCLASS(Slider)
CONTROL_SUBCLASS(Spinbox)
CONTROL_SUBCLASS(Tab)
CONTROL_SUBCLASS(Window)
#undef CONTROL_SUBCLASS
}
| {
struct RClass *Control_class = mrb_define_class_under(mrb, UI_module(mrb), "Control", mrb->object_class);
#define CONTROL_SUBCLASS(name) { mrb_define_class_under(mrb, UI_module(mrb), #name, Control_class); }
CONTROL_SUBCLASS(Area)
CONTROL_SUBCLASS(Box)
CONTROL_SUBCLASS(Button)
CONTROL_SUBCLASS(Checkbox)
CONTROL_SUBCLASS(ColorButton)
CONTROL_SUBCLASS(Combobox)
CONTROL_SUBCLASS(DateTimePicker)
CONTROL_SUBCLASS(EditableCombobox)
CONTROL_SUBCLASS(Entry)
CONTROL_SUBCLASS(FontButton)
CONTROL_SUBCLASS(Form)
CONTROL_SUBCLASS(Grid)
CONTROL_SUBCLASS(Group)
CONTROL_SUBCLASS(Label)
CONTROL_SUBCLASS(MultilineEntry)
CONTROL_SUBCLASS(ProgressBar)
CONTROL_SUBCLASS(RadioButtons)
CONTROL_SUBCLASS(Separator)
CONTROL_SUBCLASS(Slider)
CONTROL_SUBCLASS(Spinbox)
CONTROL_SUBCLASS(Tab)
CONTROL_SUBCLASS(Window)
#undef CONTROL_SUBCLASS
}
| Address compiler warning - unused variable | Address compiler warning - unused variable
| C | mit | jbreeden/mruby-ui,jbreeden/mruby-ui,jbreeden/mruby-ui |
7bc887f8c78d37decdb91612decd7dfd463c9727 | UIColor-Expanded.h | UIColor-Expanded.h | #import <UIKit/UIKit.h>
#define SUPPORTS_UNDOCUMENTED_API 1
@interface UIColor (expanded)
- (CGColorSpaceModel) colorSpaceModel;
- (NSString *) colorSpaceString;
- (BOOL) canProvideRGBComponents;
- (NSArray *) arrayFromRGBAComponents;
- (CGFloat) red;
- (CGFloat) blue;
- (CGFloat) green;
- (CGFloat) alpha;
- (NSString *) stringFromColor;
- (NSString *) hexStringFromColor;
#if SUPPORTS_UNDOCUMENTED_API
// Optional Undocumented API calls
- (NSString *) fetchStyleString;
- (UIColor *) rgbColor; // Via Poltras
#endif
+ (UIColor *) colorWithString: (NSString *) stringToConvert;
+ (UIColor *) colorWithHexString: (NSString *) stringToConvert;
@property (readonly) CGFloat red;
@property (readonly) CGFloat green;
@property (readonly) CGFloat blue;
@property (readonly) CGFloat alpha;
@end
| #import <UIKit/UIKit.h>
#define SUPPORTS_UNDOCUMENTED_API 1
@interface UIColor (expanded)
- (CGColorSpaceModel) colorSpaceModel;
- (NSString *) colorSpaceString;
- (BOOL) canProvideRGBComponents;
- (NSArray *) arrayFromRGBAComponents;
- (CGFloat) red;
- (CGFloat) blue;
- (CGFloat) green;
- (CGFloat) alpha;
- (NSString *) stringFromColor;
- (NSString *) hexStringFromColor;
#if SUPPORTS_UNDOCUMENTED_API
// Optional Undocumented API calls
- (NSString *) fetchStyleString;
- (UIColor *) rgbColor; // Via Poltras
#endif
+ (UIColor *) colorWithString: (NSString *) stringToConvert;
+ (UIColor *) colorWithHexString: (NSString *) stringToConvert;
@property (nonatomic, readonly) CGFloat red;
@property (nonatomic, readonly) CGFloat green;
@property (nonatomic, readonly) CGFloat blue;
@property (nonatomic, readonly) CGFloat alpha;
@end
| Declare the properties as nonatomic | Declare the properties as nonatomic
| C | bsd-3-clause | fcanas/uicolor-utilities |
12dea43b35daf92a6087f3a980aff767ac0b7043 | base/win/comptr.h | base/win/comptr.h | // LAF Base Library
// Copyright (c) 2017 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef BASE_WIN_COMPTR_H_INCLUDED
#define BASE_WIN_COMPTR_H_INCLUDED
#pragma once
#if !defined(_WIN32)
#error This header file can be used only on Windows platform
#endif
#include "base/disable_copying.h"
namespace base {
template<class T>
class ComPtr {
public:
ComPtr() : m_ptr(nullptr) { }
~ComPtr() { reset(); }
T** operator&() { return &m_ptr; }
T* operator->() { return m_ptr; }
T* get() {
return m_ptr;
}
void reset() {
if (m_ptr) {
m_ptr->Release();
m_ptr = nullptr;
}
}
private:
T* m_ptr;
DISABLE_COPYING(ComPtr);
};
} // namespace base
#endif
| // LAF Base Library
// Copyright (c) 2021 Igara Studio S.A.
// Copyright (c) 2017 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef BASE_WIN_COMPTR_H_INCLUDED
#define BASE_WIN_COMPTR_H_INCLUDED
#pragma once
#if !defined(_WIN32)
#error This header file can be used only on Windows platform
#endif
#include <algorithm>
namespace base {
template<class T>
class ComPtr {
public:
ComPtr() : m_ptr(nullptr) {
}
ComPtr<T>(const ComPtr<T>& p) : m_ptr(p.m_ptr) {
if (m_ptr)
m_ptr->AddRef();
}
ComPtr(ComPtr&& tmp) {
std::swap(m_ptr, tmp.m_ptr);
}
~ComPtr() {
reset();
}
T** operator&() { return &m_ptr; }
T* operator->() { return m_ptr; }
operator bool() const { return m_ptr != nullptr; }
// Add new reference using operator=()
ComPtr<T>& operator=(const ComPtr<T>& p) {
if (m_ptr)
m_ptr->Release();
m_ptr = p.m_ptr;
if (m_ptr)
m_ptr->AddRef();
return *this;
}
ComPtr& operator=(std::nullptr_t) {
reset();
return *this;
}
T* get() {
return m_ptr;
}
void reset() {
if (m_ptr) {
m_ptr->Release();
m_ptr = nullptr;
}
}
private:
T* m_ptr;
};
} // namespace base
#endif
| Add some extra operators to base::ComPtr | [win] Add some extra operators to base::ComPtr
| C | mit | aseprite/laf,aseprite/laf |
22513d07f2818c3697bbb8db64708a1a7258745c | tests/vio_tests/check_vio.c | tests/vio_tests/check_vio.c | #define _GNU_SOURCE /* asprintf */
#include <string.h>
#include "support.h"
#include "csync_private.h"
#include "vio/csync_vio.h"
CSYNC *csync;
static void setup(void) {
csync_create(&csync);
csync_init(csync);
}
static void teardown(void) {
csync_destroy(csync);
}
START_TEST (check_csync_vio_load)
{
fail_unless(csync_vio_init(csync, "smb", NULL) == 0, NULL);
csync_vio_shutdown(csync);
}
END_TEST
static Suite *csync_vio_suite(void) {
Suite *s = suite_create("csync_vio");
create_case_fixture(s, "check_csync_vio_load", check_csync_vio_load, setup, teardown);
return s;
}
int main(void) {
int nf;
Suite *s = csync_vio_suite();
SRunner *sr;
sr = srunner_create(s);
#if 0
srunner_set_fork_status(sr, CK_NOFORK);
#endif
srunner_run_all(sr, CK_VERBOSE);
nf = srunner_ntests_failed(sr);
srunner_free(sr);
return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}
| Add test for loading the module. | Add test for loading the module.
| C | lgpl-2.1 | gco/csync,meeh420/csync,gco/csync,gco/csync,meeh420/csync,gco/csync,meeh420/csync |
|
8ef7b8f1894730da660155b00e2c3b4e394ed4d7 | src/id.h | src/id.h | extern void change_id(const char *string);
| /*=============================================================================
Copyright 2008 Francois Laupretre ([email protected])
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=============================================================================*/
#ifndef __ID_H
#define __ID_H
/*----------------------------------------------*/
extern void change_id(const char *string);
/*----------------------------------------------*/
#endif /* __ID_H */
| Add copyright banner to source file | Add copyright banner to source file
| C | apache-2.0 | flaupretre/managelogs,flaupretre/managelogs |
412bbb8121b91e7447b05839df64b526edec2786 | event/timeout_queue.h | event/timeout_queue.h | #ifndef TIMEOUT_QUEUE_H
#define TIMEOUT_QUEUE_H
#include <map>
class TimeoutQueue {
typedef std::map<NanoTime, CallbackQueue> timeout_map_t;
LogHandle log_;
timeout_map_t timeout_queue_;
public:
TimeoutQueue(void)
: log_("/event/timeout/queue"),
timeout_queue_()
{ }
~TimeoutQueue()
{ }
bool empty(void) const
{
timeout_map_t::const_iterator it;
/*
* Since we allow elements within each CallbackQueue to be
* cancelled, we must scan them.
*
* XXX
* We really shouldn't allow this, even if it means we have
* to specialize CallbackQueue for this purpose or add
* virtual methods to it. As it is, we can return true
* for empty and for ready at the same time. And in those
* cases we have to call perform to garbage collect the
* unused CallbackQueues. We'll, quite conveniently,
* never make that call. Yikes.
*/
for (it = timeout_queue_.begin(); it != timeout_queue_.end(); ++it) {
if (it->second.empty())
continue;
return (false);
}
return (true);
}
Action *append(uintmax_t, SimpleCallback *);
uintmax_t interval(void) const;
void perform(void);
bool ready(void) const;
};
#endif /* !TIMEOUT_QUEUE_H */
| #ifndef TIMEOUT_QUEUE_H
#define TIMEOUT_QUEUE_H
#include <map>
#include <common/time/time.h>
class TimeoutQueue {
typedef std::map<NanoTime, CallbackQueue> timeout_map_t;
LogHandle log_;
timeout_map_t timeout_queue_;
public:
TimeoutQueue(void)
: log_("/event/timeout/queue"),
timeout_queue_()
{ }
~TimeoutQueue()
{ }
bool empty(void) const
{
timeout_map_t::const_iterator it;
/*
* Since we allow elements within each CallbackQueue to be
* cancelled, we must scan them.
*
* XXX
* We really shouldn't allow this, even if it means we have
* to specialize CallbackQueue for this purpose or add
* virtual methods to it. As it is, we can return true
* for empty and for ready at the same time. And in those
* cases we have to call perform to garbage collect the
* unused CallbackQueues. We'll, quite conveniently,
* never make that call. Yikes.
*/
for (it = timeout_queue_.begin(); it != timeout_queue_.end(); ++it) {
if (it->second.empty())
continue;
return (false);
}
return (true);
}
Action *append(uintmax_t, SimpleCallback *);
uintmax_t interval(void) const;
void perform(void);
bool ready(void) const;
};
#endif /* !TIMEOUT_QUEUE_H */
| Use new NanoTime location header, oops. | Use new NanoTime location header, oops.
git-svn-id: 9e2532540f1574e817ce42f20b9d0fb64899e451@799 4068ffdb-0463-0410-8185-8cc71e3bd399
| C | bsd-2-clause | diegows/wanproxy,splbio/wanproxy,diegows/wanproxy,diegows/wanproxy,splbio/wanproxy,splbio/wanproxy |
d38a75138ffc03fd7a1fff4e00a85229549c1492 | lib/libc/alpha/gen/_set_tp.c | lib/libc/alpha/gen/_set_tp.c | /*-
* Copyright (c) 2004 Doug Rabson
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $FreeBSD$
*/
#include <stdint.h>
#include <machine/alpha_cpu.h>
void
_set_tp(void *tp)
{
alpha_pal_wrunique((uintptr_t) tp);
}
| /*-
* Copyright (c) 2004 Doug Rabson
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $FreeBSD$
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <machine/alpha_cpu.h>
void
_set_tp(void *tp)
{
alpha_pal_wrunique((uintptr_t) tp);
}
| Fix alpha build and add __FBSDID. | Fix alpha build and add __FBSDID.
PR: 70518
| C | bsd-3-clause | jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase |
307f1a7087c28f139693feb9f0a773c5e4f0ec33 | SSPSolution/SSPSolution/GameState.h | SSPSolution/SSPSolution/GameState.h | #ifndef SSPAPPLICATION_GAMESTATES_GAMESTATE_H
#define SSPAPPLICATION_GAMESTATES_GAMESTATE_H
#include "InputHandler.h"
#include "ComponentHandler.h"
#include "../GraphicsDLL/Camera.h"
#include "../NetworkDLL/NetworkModule.h"
//class NetworkModule;
class GameStateHandler;
class GameState
{
private: //Variables
protected:
GameStateHandler* m_gsh;
ComponentHandler* m_cHandler;
Camera* m_cameraRef;
//static NetworkModule* m_networkModule;
char* m_ip = "192.168.1.25"; //Tobias NUC Specific local ip
int InitializeBase(GameStateHandler* gsh, ComponentHandler* cHandler, Camera* cameraRef);
public:
GameState();
virtual ~GameState();
virtual int ShutDown() = 0;
//Returns 1 for success and 0 for failure
virtual int Initialize(GameStateHandler* gsh, ComponentHandler* cHandler, Camera* cameraRef) = 0;
virtual int Update(float dt, InputHandler * inputHandler) = 0;
private: //Helper functions
};
#endif | #ifndef SSPAPPLICATION_GAMESTATES_GAMESTATE_H
#define SSPAPPLICATION_GAMESTATES_GAMESTATE_H
#include "InputHandler.h"
#include "ComponentHandler.h"
#include "../GraphicsDLL/Camera.h"
//#include "../NetworkDLL/NetworkModule.h"
//class NetworkModule;
class GameStateHandler;
class GameState
{
private: //Variables
protected:
GameStateHandler* m_gsh;
ComponentHandler* m_cHandler;
Camera* m_cameraRef;
//static NetworkModule* m_networkModule;
char* m_ip = "192.168.1.25"; //Tobias NUC Specific local ip
int InitializeBase(GameStateHandler* gsh, ComponentHandler* cHandler, Camera* cameraRef);
public:
GameState();
virtual ~GameState();
virtual int ShutDown() = 0;
//Returns 1 for success and 0 for failure
virtual int Initialize(GameStateHandler* gsh, ComponentHandler* cHandler, Camera* cameraRef) = 0;
virtual int Update(float dt, InputHandler * inputHandler) = 0;
private: //Helper functions
};
#endif | UPDATE doubble checked for Fransisco | UPDATE doubble checked for Fransisco
| C | apache-2.0 | Chringo/SSP,Chringo/SSP |
233f4d4e5bc298dbb9acf5bde745cd8504ce3f07 | stratego-libraries/lib/native/stratego-lib/collection-list-common.c | stratego-libraries/lib/native/stratego-lib/collection-list-common.c | #include <srts/stratego.h>
#include "stratego-lib-common.h"
ATerm SSL_get_list_length(ATerm term)
{
ATermList list = NULL;
ATerm result = NULL;
if(!ATisList(term)) {
_fail(term);
}
list = (ATermList) term;
result = (ATerm) ATmakeInt(ATgetLength(term));
return result;
}
| #include <srts/stratego.h>
#include "stratego-lib-common.h"
ATerm SSL_get_list_length(ATerm term)
{
ATermList list = NULL;
ATerm result = NULL;
if(!ATisList(term)) {
_fail(term);
}
list = (ATermList) term;
result = (ATerm) ATmakeInt(ATgetLength(list));
return result;
}
| Fix in native implementation of length strategy: ATgetLength should be applied to an ATermList. | Fix in native implementation of length strategy: ATgetLength should be
applied to an ATermList.
svn path=/strategoxt/trunk/; revision=16203
| C | apache-2.0 | Apanatshka/strategoxt,lichtemo/strategoxt,lichtemo/strategoxt,lichtemo/strategoxt,Apanatshka/strategoxt,metaborg/strategoxt,lichtemo/strategoxt,metaborg/strategoxt,metaborg/strategoxt,metaborg/strategoxt,Apanatshka/strategoxt,Apanatshka/strategoxt,Apanatshka/strategoxt,metaborg/strategoxt,lichtemo/strategoxt |
91b3d8878edeba4c7d1d1ba0c75e171bb38e46d4 | arch/powerpc/powerpc/db_interface.c | arch/powerpc/powerpc/db_interface.c | /* $OpenBSD: db_interface.c,v 1.2 1996/12/28 06:21:50 rahnds Exp $ */
#include <sys/param.h>
#include <sys/proc.h>
#include <machine/db_machdep.h>
void
Debugger()
{
db_trap(T_BREAKPOINT);
/*
__asm volatile ("tw 4,2,2");
*/
}
| /* $OpenBSD: db_interface.c,v 1.3 1999/07/05 20:23:08 rahnds Exp $ */
#include <sys/param.h>
#include <sys/proc.h>
#include <machine/db_machdep.h>
void
Debugger()
{
/*
db_trap(T_BREAKPOINT);
*/
__asm volatile ("tw 4,2,2");
}
| Use a breakpoint to cause an exception to cause the registers to be saved for debugging purposes. | Use a breakpoint to cause an exception to cause the registers to be
saved for debugging purposes.
| C | isc | orumin/openbsd-efivars,orumin/openbsd-efivars,orumin/openbsd-efivars,orumin/openbsd-efivars |
e5a8e3198f1990871e65d354b1cc53ed234f75d6 | src/navigationwidget.h | src/navigationwidget.h | #ifndef NAVIGATIONWIDGET_H
#define NAVIGATIONWIDGET_H
#include <QWidget>
#include <QLabel>
#include "qnavigation_global.h"
class QLabel;
class QPushButton;
namespace QNavigation
{
class SlidingStackedWidget;
class NavigationWidgetPrivate;
class NavigationWidget : public QWidget
{
Q_OBJECT
Q_DECLARE_PRIVATE(NavigationWidget)
NavigationWidgetPrivate * const d_ptr;
Q_PRIVATE_SLOT(d_func(), void cleanup())
public:
explicit NavigationWidget(QWidget *parent = 0);
virtual ~NavigationWidget();
bool level() const;
QLabel *titleLabel() const;
QPushButton *backButton() const;
SlidingStackedWidget *stackedWidget() const;
bool navigationBarHidden() const;
void setNavigationBarHidden(bool hidden);
public slots:
void push(QWidget *item);
void pop();
void popToTop();
};
} // namespace QNavigation
#endif // NAVIGATIONWIDGET_H
| #ifndef QNAVIGATION_NAVIGATIONWIDGET_H
#define QNAVIGATION_NAVIGATIONWIDGET_H
#include <QWidget>
#include <QLabel>
#include "qnavigation_global.h"
class QLabel;
class QPushButton;
namespace QNavigation
{
class SlidingStackedWidget;
class NavigationWidgetPrivate;
class NavigationWidget : public QWidget
{
Q_OBJECT
Q_DECLARE_PRIVATE(NavigationWidget)
NavigationWidgetPrivate * const d_ptr;
Q_PRIVATE_SLOT(d_func(), void cleanup())
public:
explicit NavigationWidget(QWidget *parent = 0);
virtual ~NavigationWidget();
bool level() const;
QLabel *titleLabel() const;
QPushButton *backButton() const;
SlidingStackedWidget *stackedWidget() const;
bool navigationBarHidden() const;
void setNavigationBarHidden(bool hidden);
public slots:
void push(QWidget *item);
void pop();
void popToTop();
};
} // namespace QNavigation
#endif // QNAVIGATION_NAVIGATIONWIDGET_H
| Fix inclusion guard for NavigationWidget | Fix inclusion guard for NavigationWidget
| C | bsd-3-clause | bimetek/qnavigation,bimetek/qnavigation |
6ce02abccdb68b9a19b45df7ce91a879980fecb3 | src/ios/RTCEAGLVideoView.h | src/ios/RTCEAGLVideoView.h | /*
* libjingle
* Copyright 2014, Google Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "RTCVideoRenderer.h"
@class RTCEAGLVideoView;
@protocol RTCEAGLVideoViewDelegate
- (void)videoView:(RTCEAGLVideoView*)videoView didChangeVideoSize:(CGSize)size;
@end
@class RTCVideoTrack;
// RTCEAGLVideoView renders |videoTrack| onto itself using OpenGLES.
@interface RTCEAGLVideoView : UIView
@property(nonatomic, strong) RTCVideoTrack* videoTrack;
@property(nonatomic, weak) id<RTCEAGLVideoViewDelegate> delegate;
@end
| Add missing WebRTC header file | Add missing WebRTC header file
| C | apache-2.0 | rogervaas/phonertc,alongubkin/phonertc,erhuabushuo/phonertc,IgorButirsky/rtc,yogomi/phonertc,MadBelette/phonertc,ravisr/phonertc,eug17/phonertc,hcxiong/phonertc,MadBelette/phonertc,kennu/phonertc,yogomi/phonertc,eug17/phonertc,Ycfx/phonertc,egorvinogradov/phonertc,BetterVoice/phonertc,MadBelette/phonertc,alongubkin/phonertc,moukail/phonertc,Ycfx/phonertc,De-Lac/phonertc,BetterVoice/phonertc,ravisr/phonertc,ravisr/phonertc,MartySchmidt/phonertc,noprotocol/phonertc,cesterlizi/phonertc,MadBelette/phonertc,kennu/phonertc,cesterlizi/phonertc,De-Lac/phonertc,egorvinogradov/phonertc,alongubkin/phonertc,Ycfx/phonertc,eug17/phonertc,MadBelette/phonertc,egorvinogradov/phonertc,IgorButirsky/rtc,moukail/phonertc,kennu/phonertc,hcxiong/phonertc,BetterVoice/phonertc,moukail/phonertc,alongubkin/phonertc,hcxiong/phonertc,hcxiong/phonertc,De-Lac/phonertc,moukail/phonertc,MartySchmidt/phonertc,erhuabushuo/phonertc,yogomi/phonertc,cesterlizi/phonertc,cesterlizi/phonertc,kennu/phonertc,Ycfx/phonertc,rogervaas/phonertc,yogomi/phonertc,Ycfx/phonertc,moukail/phonertc,MartySchmidt/phonertc,erhuabushuo/phonertc,De-Lac/phonertc,egorvinogradov/phonertc,kennu/phonertc,rogervaas/phonertc,noprotocol/phonertc,eug17/phonertc,rogervaas/phonertc,eug17/phonertc,erhuabushuo/phonertc,hcxiong/phonertc,MartySchmidt/phonertc,rogervaas/phonertc,yogomi/phonertc,ravisr/phonertc,erhuabushuo/phonertc,egorvinogradov/phonertc,noprotocol/phonertc,noprotocol/phonertc |
|
2c3316530d25d46038526902079fde1c3c643516 | Classes/Instapaper/InstapaperAPI.h | Classes/Instapaper/InstapaperAPI.h | //
// InstapaperAPI.h
// newsyc
//
// Created by Grant Paul on 3/10/11.
// Copyright 2011 Xuzz Productions, LLC. All rights reserved.
//
#import <HNKit/NSString+URLEncoding.h>
#define kInstapaperAPIRootURL [NSURL URLWithString:@"https://instapaper.com/api/"]
#define kInstapaperAPIAuthenticationURL [NSURL URLWithString:[[kInstapaperAPIRootURL absoluteString] stringByAppendingString:@"authenticate"]]
#define kInstapaperAPIAddItemURL [NSURL URLWithString:[[kInstapaperAPIRootURL absoluteString] stringByAppendingString:@"add"]]
| //
// InstapaperAPI.h
// newsyc
//
// Created by Grant Paul on 3/10/11.
// Copyright 2011 Xuzz Productions, LLC. All rights reserved.
//
#import <HNKit/NSString+URLEncoding.h>
#define kInstapaperAPIRootURL [NSURL URLWithString:@"https://www.instapaper.com/api/"]
#define kInstapaperAPIAuthenticationURL [NSURL URLWithString:[[kInstapaperAPIRootURL absoluteString] stringByAppendingString:@"authenticate"]]
#define kInstapaperAPIAddItemURL [NSURL URLWithString:[[kInstapaperAPIRootURL absoluteString] stringByAppendingString:@"add"]]
| Fix Instapaper Root API issue | Fix Instapaper Root API issue
Fixed issue that was causing login request to return a 403. | C | bsd-3-clause | ukkari/newsyc,tangqiaoboy/newsyc,ukkari/newsyc |
c2ed6a161b3242ff1f1222134fae6621e813362c | src/cons.h | src/cons.h | #ifndef MCLISP_CONS_H_
#define MCLISP_CONS_H_
namespace mclisp
{
class ConsCell
{
public:
ConsCell(): car_(nullptr), cdr_(nullptr) {}
ConsCell(ConsCell* car, ConsCell* cdr): car_(car), cdr_(cdr) {}
private:
ConsCell* car_;
ConsCell* cdr_;
};
} // namespace mclisp
#endif // MCLISP_CONS_H_
| #ifndef MCLISP_CONS_H_
#define MCLISP_CONS_H_
namespace mclisp
{
class ConsCell
{
public:
ConsCell(): car_(nullptr), cdr_(nullptr) {}
ConsCell(ConsCell* car, ConsCell* cdr): car_(car), cdr_(cdr) {}
ConsCell* car_;
ConsCell* cdr_;
};
} // namespace mclisp
#endif // MCLISP_CONS_H_
| Make Cons::car_ and Cons::cdr_ public members. | Make Cons::car_ and Cons::cdr_ public members.
| C | mit | appleby/mccarthy-lisp,appleby/mccarthy-lisp,appleby/mccarthy-lisp,appleby/mccarthy-lisp,appleby/mccarthy-lisp |
52ebde7b95206e2fd04f302595fc5fbfa17c4fce | memory/local_memory.h | memory/local_memory.h | /*
* Lift
*
* Copyright (c) 2014-2015, NVIDIA CORPORATION
* Copyright (c) 2015, Nuno Subtil <[email protected]>
* Copyright (c) 2015, Roche Molecular Systems Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
namespace lift {
#include "../types.h"
#include "../backends.h"
#include "../decorators.h"
// a statically-sized local memory vector
template <typename T, uint32 max_storage_size>
struct local_memory
{
typedef T value_type;
typedef T& reference;
typedef const T& const_reference;
typedef T* pointer;
typedef const T* const_pointer;
typedef uint32 index_type;
typedef uint32 size_type;
value_type storage[max_storage_size];
size_type storage_size = max_storage_size;
LIFT_HOST_DEVICE local_memory() = default;
LIFT_HOST_DEVICE void resize(size_type count)
{
storage_size = count;
}
LIFT_HOST_DEVICE size_type size(void) const
{
return storage_size;
}
LIFT_HOST_DEVICE pointer data(void)
{
return storage;
}
LIFT_HOST_DEVICE const_pointer data(void) const
{
return storage;
}
LIFT_HOST_DEVICE reference operator[] (const size_type index)
{
return storage[index];
}
LIFT_HOST_DEVICE const_reference operator[] (const size_type index) const
{
return storage[index];
}
};
} // namespace lift
| Add a local memory vector implementation | memory: Add a local memory vector implementation
Adds a statically allocated memory container. This is meant for accessing local
memory on the GPU, but can use stack memory on the CPU.
| C | bsd-3-clause | nsubtil/lift,chuckseberino/lift,chuckseberino/lift,nsubtil/lift,chuckseberino/lift,nsubtil/lift |
|
be81aa72665eaa6f2e4c84bbb7eab165dd918ad8 | src/os/emscripten/preamble.c | src/os/emscripten/preamble.c | #include "emscripten.h"
#include <stdlib.h>
#include <unistd.h>
#include "param.h"
int os_preamble()
{
if (access("/dev/zero", R_OK))
EM_ASM(({ FS.createDevice('/dev', 'zero', function () { return 0; }); }),/* dummy arg */0);
EM_ASM_(({
if (ENVIRONMENT_IS_NODE) {
var mnt = Pointer_stringify($0);
FS.mkdir(mnt);
FS.mount(NODEFS, { root: '/' }, mnt);
FS.chdir(mnt + process.cwd());
}
}), MOUNT_POINT);
return 0;
}
| #include "emscripten.h"
#include <stdlib.h>
#include <unistd.h>
#include "param.h"
int os_preamble()
{
if (access("/dev/zero", R_OK))
EM_ASM(({ FS.createDevice('/dev', 'zero', function () { return 0; }); }),/* dummy arg */0);
EM_ASM_(({
if (ENVIRONMENT_IS_NODE) {
var len = 1024; /* arbitrary */
var mnt = UTF8ToString($0, len);
FS.mkdir(mnt);
FS.mount(NODEFS, { root: '/' }, mnt);
FS.chdir(mnt + process.cwd());
}
}), MOUNT_POINT);
return 0;
}
| Replace removed Pointer_stringify with UTF8ToString | Replace removed Pointer_stringify with UTF8ToString
| C | mit | kulp/tenyr,kulp/tenyr,kulp/tenyr |
3d895b974d01f2c562a869921274f1198e29ff87 | test/FrontendC/2010-06-24-DbgInlinedFnParameter.c | test/FrontendC/2010-06-24-DbgInlinedFnParameter.c | // RUN: %llvmgcc -S -O2 -g %s -o - | llc -O2 -o %t.s
// RUN: grep "# DW_TAG_formal_parameter" %t.s | count 4
// Radar 8122864
// XFAIL: powerpc
static int foo(int a, int j) {
int k = 0;
if (a)
k = a + j;
else
k = j;
return k;
}
int bar(int o, int p) {
return foo(o, p);
}
| // RUN: %llvmgcc -S -O2 -g %s -o - | llc -O2 -o %t.s
// RUN: grep "# DW_TAG_formal_parameter" %t.s | count 4
// Radar 8122864
// XTARGET: x86,darwin
static int foo(int a, int j) {
int k = 0;
if (a)
k = a + j;
else
k = j;
return k;
}
int bar(int o, int p) {
return foo(o, p);
}
| Make this test darwin specific. | Make this test darwin specific.
git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@107025 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | GPUOpen-Drivers/llvm,dslab-epfl/asap,GPUOpen-Drivers/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,llvm-mirror/llvm,apple/swift-llvm,llvm-mirror/llvm,dslab-epfl/asap,apple/swift-llvm,apple/swift-llvm,chubbymaggie/asap,apple/swift-llvm,dslab-epfl/asap,llvm-mirror/llvm,apple/swift-llvm,apple/swift-llvm,chubbymaggie/asap,llvm-mirror/llvm,chubbymaggie/asap,dslab-epfl/asap,GPUOpen-Drivers/llvm,llvm-mirror/llvm,llvm-mirror/llvm,apple/swift-llvm,chubbymaggie/asap,dslab-epfl/asap,dslab-epfl/asap,llvm-mirror/llvm,chubbymaggie/asap,llvm-mirror/llvm,GPUOpen-Drivers/llvm,dslab-epfl/asap,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,apple/swift-llvm |
23b1acc06565d92692ce2e56ed7ede7b45c1e3a1 | iobuf/obuf_copyfromfd.c | iobuf/obuf_copyfromfd.c | #include <unistd.h>
#include "iobuf.h"
/** Copy all the data from an \c ibuf to an \c obuf. */
int obuf_copyfromfd(int in, obuf* out)
{
long rd;
if (obuf_error(out)) return 0;
out->count = 0;
for (;;) {
if ((rd = read(in,
out->io.buffer + out->bufpos,
out->io.bufsize - out->bufpos)) == -1)
return 0;
if (rd == 0)
break;
out->count += rd;
if (!obuf_flush(out))
return 0;
}
return 1;
}
| #include <unistd.h>
#include "iobuf.h"
/** Copy all the data from an \c ibuf to an \c obuf. */
int obuf_copyfromfd(int in, obuf* out)
{
long rd;
if (obuf_error(out)) return 0;
out->count = 0;
for (;;) {
if ((rd = read(in,
out->io.buffer + out->bufpos,
out->io.bufsize - out->bufpos)) == -1)
return 0;
if (rd == 0)
break;
out->bufpos += rd;
if (out->io.buflen < out->bufpos)
out->io.buflen = out->bufpos;
if (!obuf_flush(out))
return 0;
out->count += rd;
}
return 1;
}
| Mark the copied-in data as being present before flushing the buffer. Without this patch, no data is ever written. | Mark the copied-in data as being present before flushing the buffer.
Without this patch, no data is ever written.
| C | lgpl-2.1 | bruceg/bglibs,bruceg/bglibs,bruceg/bglibs,bruceg/bglibs,bruceg/bglibs,bruceg/bglibs |
0cbe606c96c439637b2468663f1b74891c917ee3 | test/test_parser_and.c | test/test_parser_and.c | #include "test_parser.h"
void and_false(void **state) {
grammar_t *grammar = grammar_init(
non_terminal("And"),
rule_init(
"And",
sequence(
and(terminal("hello")),
terminal("h")
)
), 1
);
parse_t *result = parse("help", grammar);
assert_null(result);
}
void and_true(void **state) {
grammar_t *grammar = grammar_init(
non_terminal("And"),
rule_init(
"And",
sequence(
and(terminal("hello")),
terminal("h")
)
), 1
);
parse_t *result = parse("hello", grammar);
assert_non_null(result);
assert_int_equal(result->length, 1);
assert_int_equal(result->n_children, 1);
assert_int_equal(result->children[0].length, 1);
assert_int_equal(result->children[0].n_children, 0);
}
| #include "test_parser.h"
void and_false(void **state) {
grammar_t *grammar = grammar_init(
non_terminal("And"),
rule_init(
"And",
sequence(
and(terminal("hello")),
terminal("h")
)
), 1
);
parse_result_t *result = parse("help", grammar);
assert_non_null(result);
assert_true(is_error(result));
}
void and_true(void **state) {
grammar_t *grammar = grammar_init(
non_terminal("And"),
rule_init(
"And",
sequence(
and(terminal("hello")),
terminal("h")
)
), 1
);
parse_result_t *result = parse("hello", grammar);
assert_non_null(result);
assert_true(is_success(result));
parse_t *suc = result->data.result;
assert_int_equal(suc->length, 1);
assert_int_equal(suc->n_children, 1);
assert_int_equal(suc->children[0].length, 1);
assert_int_equal(suc->children[0].n_children, 0);
}
| Use new API for and parsing | Use new API for and parsing
| C | mit | Baltoli/peggo,Baltoli/peggo |
8829ba195ce53ec60a1d9258fd4f478eeb56e0ed | include/llvm/ExecutionEngine/JITSymbolFlags.h | include/llvm/ExecutionEngine/JITSymbolFlags.h | //===------ JITSymbolFlags.h - Flags for symbols in the JIT -----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Symbol flags for symbols in the JIT (e.g. weak, exported).
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_EXECUTIONENGINE_JITSYMBOLFLAGS_H
#define LLVM_EXECUTIONENGINE_JITSYMBOLFLAGS_H
#include "llvm/IR/GlobalValue.h"
namespace llvm {
/// @brief Flags for symbols in the JIT.
enum class JITSymbolFlags : char {
None = 0,
Weak = 1U << 0,
Exported = 1U << 1
};
JITSymbolFlags operator|(JITSymbolFlags LHS, JITSymbolFlags RHS) {
typedef std::underlying_type<JITSymbolFlags>::type UT;
return static_cast<JITSymbolFlags>(
static_cast<UT>(LHS) | static_cast<UT>(RHS));
}
JITSymbolFlags& operator |=(JITSymbolFlags &LHS, JITSymbolFlags RHS) {
LHS = LHS | RHS;
return LHS;
}
JITSymbolFlags operator&(JITSymbolFlags LHS, JITSymbolFlags RHS) {
typedef std::underlying_type<JITSymbolFlags>::type UT;
return static_cast<JITSymbolFlags>(
static_cast<UT>(LHS) & static_cast<UT>(RHS));
}
JITSymbolFlags& operator &=(JITSymbolFlags &LHS, JITSymbolFlags RHS) {
LHS = LHS & RHS;
return LHS;
}
/// @brief Base class for symbols in the JIT.
class JITSymbolBase {
public:
JITSymbolBase(JITSymbolFlags Flags) : Flags(Flags) {}
JITSymbolFlags getFlags() const { return Flags; }
bool isWeak() const {
return (Flags & JITSymbolFlags::Weak) == JITSymbolFlags::Weak;
}
bool isExported() const {
return (Flags & JITSymbolFlags::Exported) == JITSymbolFlags::Exported;
}
static JITSymbolFlags flagsFromGlobalValue(const GlobalValue &GV) {
JITSymbolFlags Flags = JITSymbolFlags::None;
if (GV.hasWeakLinkage())
Flags |= JITSymbolFlags::Weak;
if (!GV.hasLocalLinkage() && !GV.hasHiddenVisibility())
Flags |= JITSymbolFlags::Exported;
return Flags;
}
private:
JITSymbolFlags Flags;
};
} // end namespace llvm
#endif
| Add header that was accidentally left out of r231724. | [Orc][MCJIT][RuntimeDyld] Add header that was accidentally left out of r231724.
git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@231726 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | apple/swift-llvm,apple/swift-llvm,apple/swift-llvm,llvm-mirror/llvm,apple/swift-llvm,dslab-epfl/asap,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,dslab-epfl/asap,llvm-mirror/llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,llvm-mirror/llvm,dslab-epfl/asap,apple/swift-llvm,GPUOpen-Drivers/llvm,dslab-epfl/asap,dslab-epfl/asap,GPUOpen-Drivers/llvm,llvm-mirror/llvm,dslab-epfl/asap,apple/swift-llvm,apple/swift-llvm,llvm-mirror/llvm,llvm-mirror/llvm,llvm-mirror/llvm,dslab-epfl/asap,GPUOpen-Drivers/llvm,apple/swift-llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm |
|
dd059c831429f6d3706ff8e824cb3afcde383d37 | check/tests/check_check_main.c | check/tests/check_check_main.c | #include <stdlib.h>
#include <stdio.h>
#include <check.h>
#include "check_check.h"
int main (void)
{
int n;
SRunner *sr;
fork_setup();
setup_fixture();
sr = srunner_create (make_master_suite());
srunner_add_suite(sr, make_list_suite());
srunner_add_suite(sr, make_msg_suite());
srunner_add_suite(sr, make_log_suite());
srunner_add_suite(sr, make_limit_suite());
srunner_add_suite(sr, make_fork_suite());
srunner_add_suite(sr, make_fixture_suite());
srunner_add_suite(sr, make_pack_suite());
setup();
printf ("Ran %d tests in subordinate suite\n", sub_nfailed);
srunner_run_all (sr, CK_NORMAL);
cleanup();
fork_teardown();
teardown_fixture();
n = srunner_ntests_failed(sr);
srunner_free(sr);
return (n == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}
| #include <stdlib.h>
#include <stdio.h>
#include <check.h>
#include "check_check.h"
int main (void)
{
int n;
SRunner *sr;
fork_setup();
setup_fixture();
sr = srunner_create (make_master_suite());
srunner_add_suite(sr, make_list_suite());
srunner_add_suite(sr, make_msg_suite());
srunner_add_suite(sr, make_log_suite());
srunner_add_suite(sr, make_limit_suite());
srunner_add_suite(sr, make_fork_suite());
srunner_add_suite(sr, make_fixture_suite());
srunner_add_suite(sr, make_pack_suite());
setup();
printf ("Ran %d tests in subordinate suite\n", sub_ntests);
srunner_run_all (sr, CK_NORMAL);
cleanup();
fork_teardown();
teardown_fixture();
n = srunner_ntests_failed(sr);
srunner_free(sr);
return (n == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}
| Use correct variable for number of tests | Use correct variable for number of tests
| C | lgpl-2.1 | tarruda/check,tarruda/check,tarruda/check,tarruda/check,tarruda/check |
461bf4f7c74b56d5944aab9b886ff30a50019e0e | check/tests/check_check_main.c | check/tests/check_check_main.c | #include <stdlib.h>
#include <stdio.h>
#include <check.h>
#include "check_check.h"
int main (void)
{
int n;
SRunner *sr;
fork_setup();
setup_fixture();
sr = srunner_create (make_master_suite());
srunner_add_suite(sr, make_list_suite());
srunner_add_suite(sr, make_msg_suite());
srunner_add_suite(sr, make_log_suite());
srunner_add_suite(sr, make_limit_suite());
srunner_add_suite(sr, make_fork_suite());
srunner_add_suite(sr, make_fixture_suite());
srunner_add_suite(sr, make_pack_suite());
setup();
printf ("Ran %d tests in subordinate suite\n", sub_nfailed);
srunner_run_all (sr, CK_NORMAL);
cleanup();
fork_teardown();
teardown_fixture();
n = srunner_ntests_failed(sr);
srunner_free(sr);
return (n == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}
| #include <stdlib.h>
#include <stdio.h>
#include <check.h>
#include "check_check.h"
int main (void)
{
int n;
SRunner *sr;
fork_setup();
setup_fixture();
sr = srunner_create (make_master_suite());
srunner_add_suite(sr, make_list_suite());
srunner_add_suite(sr, make_msg_suite());
srunner_add_suite(sr, make_log_suite());
srunner_add_suite(sr, make_limit_suite());
srunner_add_suite(sr, make_fork_suite());
srunner_add_suite(sr, make_fixture_suite());
srunner_add_suite(sr, make_pack_suite());
setup();
printf ("Ran %d tests in subordinate suite\n", sub_ntests);
srunner_run_all (sr, CK_NORMAL);
cleanup();
fork_teardown();
teardown_fixture();
n = srunner_ntests_failed(sr);
srunner_free(sr);
return (n == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}
| Use correct variable for number of tests | Use correct variable for number of tests
git-svn-id: d023f1085a36f7a677188d00334e37d38ffecf51@230 64e312b2-a51f-0410-8e61-82d0ca0eb02a
| C | lgpl-2.1 | libcheck/check,9fcc/check,krichter722/check,brarcher/check,brarcher/check,9fcc/check,krichter722/check,9fcc/check,libcheck/check,libcheck/check,krichter722/check,brarcher/check,brarcher/check,9fcc/check,libcheck/check,9fcc/check,libcheck/check,brarcher/check,krichter722/check,krichter722/check |
0200f506b06b8fce7ae6872910915f1e40ccf1b7 | framework/include/base/ComputeInitialConditionThread.h | framework/include/base/ComputeInitialConditionThread.h | /****************************************************************/
/* DO NOT MODIFY THIS HEADER */
/* MOOSE - Multiphysics Object Oriented Simulation Environment */
/* */
/* (c) 2010 Battelle Energy Alliance, LLC */
/* ALL RIGHTS RESERVED */
/* */
/* Prepared by Battelle Energy Alliance, LLC */
/* Under Contract No. DE-AC07-05ID14517 */
/* With the U. S. Department of Energy */
/* */
/* See COPYRIGHT for full restrictions */
/****************************************************************/
#ifndef COMPUTEREINITIALCONDITIONTHREAD_H
#define COMPUTEREINITIALCONDITIONTHREAD_H
#include "ParallelUniqueId.h"
// libmesh
#include "libmesh/elem_range.h"
class FEProblemBase;
class ComputeInitialConditionThread
{
public:
ComputeInitialConditionThread(FEProblemBase & fe_problem);
// Splitting Constructor
ComputeInitialConditionThread(ComputeInitialConditionThread & x, Threads::split split);
void operator() (const ConstElemRange & range);
void join(const ComputeInitialConditionThread & /*y*/);
protected:
FEProblemBase & _fe_problem;
THREAD_ID _tid;
};
#endif //COMPUTEINITIALCONDITIONTHREAD_H
| /****************************************************************/
/* DO NOT MODIFY THIS HEADER */
/* MOOSE - Multiphysics Object Oriented Simulation Environment */
/* */
/* (c) 2010 Battelle Energy Alliance, LLC */
/* ALL RIGHTS RESERVED */
/* */
/* Prepared by Battelle Energy Alliance, LLC */
/* Under Contract No. DE-AC07-05ID14517 */
/* With the U. S. Department of Energy */
/* */
/* See COPYRIGHT for full restrictions */
/****************************************************************/
#ifndef COMPUTEREINITIALCONDITIONTHREAD_H
#define COMPUTEREINITIALCONDITIONTHREAD_H
#include "MooseTypes.h"
// libmesh
#include "libmesh/elem_range.h"
#include "libmesh/threads.h"
class FEProblemBase;
class ComputeInitialConditionThread
{
public:
ComputeInitialConditionThread(FEProblemBase & fe_problem);
// Splitting Constructor
ComputeInitialConditionThread(ComputeInitialConditionThread & x, Threads::split split);
void operator() (const ConstElemRange & range);
void join(const ComputeInitialConditionThread & /*y*/);
protected:
FEProblemBase & _fe_problem;
THREAD_ID _tid;
};
#endif //COMPUTEINITIALCONDITIONTHREAD_H
| Include headers we need directly | Include headers we need directly
| C | lgpl-2.1 | backmari/moose,bwspenc/moose,permcody/moose,idaholab/moose,nuclear-wizard/moose,backmari/moose,idaholab/moose,liuwenf/moose,permcody/moose,jessecarterMOOSE/moose,liuwenf/moose,SudiptaBiswas/moose,sapitts/moose,laagesen/moose,andrsd/moose,dschwen/moose,bwspenc/moose,harterj/moose,sapitts/moose,andrsd/moose,liuwenf/moose,lindsayad/moose,idaholab/moose,idaholab/moose,andrsd/moose,harterj/moose,YaqiWang/moose,milljm/moose,sapitts/moose,nuclear-wizard/moose,lindsayad/moose,lindsayad/moose,idaholab/moose,SudiptaBiswas/moose,bwspenc/moose,sapitts/moose,milljm/moose,milljm/moose,jessecarterMOOSE/moose,Chuban/moose,backmari/moose,friedmud/moose,lindsayad/moose,laagesen/moose,laagesen/moose,andrsd/moose,nuclear-wizard/moose,dschwen/moose,permcody/moose,SudiptaBiswas/moose,lindsayad/moose,Chuban/moose,YaqiWang/moose,liuwenf/moose,harterj/moose,dschwen/moose,harterj/moose,friedmud/moose,sapitts/moose,jessecarterMOOSE/moose,milljm/moose,liuwenf/moose,laagesen/moose,yipenggao/moose,bwspenc/moose,YaqiWang/moose,Chuban/moose,permcody/moose,jessecarterMOOSE/moose,harterj/moose,yipenggao/moose,friedmud/moose,SudiptaBiswas/moose,milljm/moose,liuwenf/moose,laagesen/moose,dschwen/moose,nuclear-wizard/moose,andrsd/moose,jessecarterMOOSE/moose,yipenggao/moose,bwspenc/moose,SudiptaBiswas/moose,backmari/moose,Chuban/moose,friedmud/moose,dschwen/moose,yipenggao/moose,YaqiWang/moose |
f53d9f6cd370743d00f9d9a882941ff84d4bfb54 | LogDefer.h | LogDefer.h | #ifndef LOGDEFER_H
#define LOGDEFER_H
#include "picojson/picojson.h"
class LogDefer {
public:
LogDefer(std::function<void (const std::string&)> callback);
~LogDefer();
void add_log(int verbosity, std::string msg);
void error(std::string msg);
void warn(std::string msg);
void info(std::string msg);
void debug(std::string msg);
private:
std::function<void (const std::string &)> callback_;
struct timeval start_tv_;
picojson::object o_;
picojson::array logs_;
picojson::array timers_;
};
#endif
| #pragma once
#include "picojson/picojson.h"
class LogDefer {
public:
LogDefer(std::function<void (const std::string&)> callback);
~LogDefer();
void add_log(int verbosity, std::string msg);
void error(std::string msg);
void warn(std::string msg);
void info(std::string msg);
void debug(std::string msg);
private:
std::function<void (const std::string &)> callback_;
struct timeval start_tv_;
picojson::object o_;
picojson::array logs_;
picojson::array timers_;
};
| Use pragma once instead of define hack (thanks Natalia) | Use pragma once instead of define hack (thanks Natalia)
| C | bsd-2-clause | hoytech/LogDefer-CXX |
55130b9862bc2aab6a5498b3198fbdcf1c26acc2 | include/vl6180_pi.h | include/vl6180_pi.h | #ifdef __cplusplus
extern "C"{
#endif
typedef int vl6180;
#define VL1680_DEFALUT_ADDR 0x29
int vl6180_initialise(int device, int i2cAddr);
int get_distance(vl6180 handle);
void set_scaling(vl6180 handle, int scaling);
///After calling that, you should discrad the handle to talk to the device and re-initialize it
void vl6180_change_addr(vl6180 handle, int newAddr);
//hack:add access to lower_level functions
int read_byte(vl6180 handle, int reg);
void write_byte(vl6180 handle, int reg, char data);
void write_two_bytes(vl6180 handle, int reg, int data);
#ifdef __cplusplus
}
#endif
| #ifdef __cplusplus
extern "C"{
#endif
typedef int vl6180;
#define VL1680_DEFALUT_ADDR 0x29
///Initialize a vl6180 sensor on the i2c port
/// \param device The I2C bus to open. e.g. "1" for using /dev/i2c-1
/// \param i2c_addr addres of the device. If you don't know, pass VL1680_DEFALUT_ADDR to it
/// \return handle to the sensor. Keep this variable to talk to the sensor via the library
vl6180 vl6180_initialise(int device, int i2c_addr);
///Change the address of the device. Needed if you have an address conflict (for example: using two of theses sensors on the same design). The handle will also be updated
/// \param handle The handle to the sensor given by vl6180_initialise
/// \param new_addr The new address to use on the i2c bus for this device
void vl6180_change_addr(vl6180 handle, int new_addr);
//TODO some of theses functions doesn't have the vl6180 prefix. udpate them to avoid name clashing
///Return the current distance as readed by the sensor
/// \param handle The handle to the sensor given by vl6180_initialise
/// \return distance in milimeter as an integer
int get_distance(vl6180 handle);
///Set the scalinb mode (read datasheet to seee about the max range vs. precision deal on this sensor)
/// \param handle The handle to the sensor given by vl6180_initialise
/// \param scaling Index of the scaling mode to use
void set_scaling(vl6180 handle, int scaling);
//hack:add access to lower_level functions
int read_byte(vl6180 handle, int reg);
void write_byte(vl6180 handle, int reg, char data);
void write_two_bytes(vl6180 handle, int reg, int data);
#ifdef __cplusplus
}
#endif
| Comment the file "doxygen style" | Comment the file "doxygen style" | C | mit | leachj/vl6180_pi |
4a1ecb67f9ff1745422aecdd5cc70a9f630d7dc8 | driver/battery/bq20z453.c | driver/battery/bq20z453.c | /* Copyright (c) 2012 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.
*
* Smart battery driver for BQ20Z453.
*/
#include "battery_smart.h"
#include "host_command.h"
#define PARAM_CUT_OFF 0x0010
int battery_command_cut_off(struct host_cmd_handler_args *args)
{
/*
* TODO: Since this is a host command, the i2c bus is claimed by host.
* Thus, we would send back the response in advanced so that
* the host can release the bus and then EC can send command to
* battery.
*
* Refactoring this via task is a way. However, it is wasteful.
* Need a light-weight solution.
*/
args->result = EC_RES_SUCCESS;
host_send_response(args);
/* This function would try to claim i2c and then send to battery. */
sb_write(SB_MANUFACTURER_ACCESS, PARAM_CUT_OFF);
return EC_RES_SUCCESS;
/*
* Not sure if there is a side-effect since this could send result
* back to host TWICE.
*/
}
DECLARE_HOST_COMMAND(EC_CMD_BATTERY_CUT_OFF, battery_command_cut_off,
EC_VER_MASK(0));
| /* Copyright (c) 2012 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.
*
* Smart battery driver for BQ20Z453.
*/
#include "battery_smart.h"
#include "hooks.h"
#include "host_command.h"
#define PARAM_CUT_OFF 0x0010
static void cutoff(void)
{
/* Claim i2c and send cutoff command to battery. */
sb_write(SB_MANUFACTURER_ACCESS, PARAM_CUT_OFF);
}
DECLARE_DEFERRED(cutoff);
int battery_command_cut_off(struct host_cmd_handler_args *args)
{
/*
* Queue battery cutoff. This must be deferred so we can send the
* response to the host first. Some platforms (snow) share an I2C bus
* between the EC, AP, and battery, so we need the host to complete the
* transaction and release the I2C bus before we'll be abl eto send the
* cutoff command.
*/
hook_call_deferred(cutoff, 1000);
return EC_RES_SUCCESS;
}
DECLARE_HOST_COMMAND(EC_CMD_BATTERY_CUT_OFF, battery_command_cut_off,
EC_VER_MASK(0));
| Fix battery cutoff command to use deferred function call | pit: Fix battery cutoff command to use deferred function call
Rather than hackily sending a host response before sending the battery
cutoff command, just put the cutoff command in a deferred function
call and respond normally to the host command.
BUG=chrome-os-partner:23568
BRANCH=none
TEST=On battery power, 'ectool batterycutoff' prints success, then the
system loses power due to battery cutoff.
Change-Id: Ic42d08ef94a10f89d093290cda63da01fca985a5
Signed-off-by: Randall Spangler <[email protected]>
Reviewed-on: https://chromium-review.googlesource.com/174573
Reviewed-by: Bill Richardson <[email protected]>
| C | bsd-3-clause | mtk09422/chromiumos-platform-ec,longsleep/ec,gelraen/cros-ec,akappy7/ChromeOS_EC_LED_Diagnostics,alterapraxisptyltd/chromium-ec,akappy7/ChromeOS_EC_LED_Diagnostics,mtk09422/chromiumos-platform-ec,coreboot/chrome-ec,coreboot/chrome-ec,fourier49/BIZ_EC,md5555/ec,md5555/ec,thehobn/ec,fourier49/BIZ_EC,thehobn/ec,fourier49/BIZ_EC,alterapraxisptyltd/chromium-ec,alterapraxisptyltd/chromium-ec,akappy7/ChromeOS_EC_LED_Diagnostics,fourier49/BZ_DEV_EC,md5555/ec,akappy7/ChromeOS_EC_LED_Diagnostics,gelraen/cros-ec,fourier49/BZ_DEV_EC,mtk09422/chromiumos-platform-ec,eatbyte/chromium-ec,akappy7/ChromeOS_EC_LED_Diagnostics,coreboot/chrome-ec,coreboot/chrome-ec,thehobn/ec,coreboot/chrome-ec,eatbyte/chromium-ec,eatbyte/chromium-ec,fourier49/BZ_DEV_EC,longsleep/ec,thehobn/ec,alterapraxisptyltd/chromium-ec,fourier49/BIZ_EC,fourier49/BZ_DEV_EC,md5555/ec,longsleep/ec,eatbyte/chromium-ec,coreboot/chrome-ec,mtk09422/chromiumos-platform-ec,longsleep/ec,gelraen/cros-ec,gelraen/cros-ec |
05a2b367b649928bee66e8acbe2d8ef3440d36a9 | libc/include/sys/io.h | libc/include/sys/io.h | #ifndef _SYS_IO_H
#define _SYS_IO_H
#include <stdint.h>
unsigned char inb(uint16_t port);
void outb(uint16_t port, uint8_t value);
#endif
| #ifndef _SYS_IO_H
#define _SYS_IO_H
#include <stdint.h>
uint8_t inb(uint16_t port);
void outb(uint16_t port, uint8_t value);
uint16_t inw(uint16_t port);
void outw(uint16_t port, uint16_t value);
uint32_t inl(uint16_t port);
void outl(uint16_t port, uint32_t value);
#endif
| Add everything to header file | Add everything to header file
| C | mit | simon-andrews/norby,simon-andrews/norby,simon-andrews/norby |
12941ad2f700f9a2ca22057a099b1152fc86be74 | critmem.h | critmem.h | #ifndef CRITMEM_H
#define CRITMEM_H
#include <sys/types.h>
void *mycritmalloc(const char *f, long, size_t size, const char *message);
void *mycritcalloc(const char *f, long, size_t size, const char *message);
void *mycritrealloc(const char *f, long, void *a, size_t size,
const char *message);
char *mycritstrdup(const char *f, long, const char *, const char *message);
#define critmalloc(a,b) mycritmalloc(__FILE__,__LINE__,a,b)
#define critcalloc(a,b) mycritcalloc(__FILE__,__LINE__,a,b)
#define critrealloc(a,b,c) mycritrealloc(__FILE__,__LINE__,a,b,c)
#define critstrdup(a,b) mycritstrdup(__FILE__,__LINE__,a,b)
#endif
| #ifndef CRITMEM_H
#define CRITMEM_H
#include <sys/types.h>
/*@only@*//*@out@ */ void *mycritmalloc(const char *f, long, size_t size,
const char *message);
/*@only@*/ void *mycritcalloc(const char *f, long, size_t size,
const char *message);
/*@only@*//*@out@ *//*@notnull@ */ void *mycritrealloc(const char *f, long,
/*@null@ *//*@only@ *//*@out@ *//*@returned@ */
void *a, size_t size,
const char *message);
/*@only@*/ char *mycritstrdup(const char *f, long, const char *,
const char *message);
#define critmalloc(a,b) mycritmalloc(__FILE__,(long)__LINE__,a,b)
#define critcalloc(a,b) mycritcalloc(__FILE__,(long)__LINE__,a,b)
#define critrealloc(a,b,c) mycritrealloc(__FILE__,(long)__LINE__,a,b,c)
#define critstrdup(a,b) mycritstrdup(__FILE__,(long)__LINE__,a,b)
#endif
| Include Ralf Wildenhues' lclint annotations. | Include Ralf Wildenhues' lclint annotations. | C | lgpl-2.1 | BackupTheBerlios/leafnode,BackupTheBerlios/leafnode,BackupTheBerlios/leafnode,BackupTheBerlios/leafnode |
4d4fb33fce0803f9c923307bdf82b8fdd2ed140b | src/reverse_iterator.h | src/reverse_iterator.h | // Taken from https://gist.github.com/arvidsson/7231973
#ifndef BITCOIN_REVERSE_ITERATOR_HPP
#define BITCOIN_REVERSE_ITERATOR_HPP
/**
* Template used for reverse iteration in C++11 range-based for loops.
*
* std::vector<int> v = {1, 2, 3, 4, 5};
* for (auto x : reverse_iterate(v))
* std::cout << x << " ";
*/
template <typename T>
class reverse_range
{
T &x;
public:
reverse_range(T &x) : x(x) {}
auto begin() const -> decltype(this->x.rbegin())
{
return x.rbegin();
}
auto end() const -> decltype(this->x.rend())
{
return x.rend();
}
};
template <typename T>
reverse_range<T> reverse_iterate(T &x)
{
return reverse_range<T>(x);
}
#endif // BITCOIN_REVERSE_ITERATOR_HPP
| // Taken from https://gist.github.com/arvidsson/7231973
#ifndef BITCOIN_REVERSE_ITERATOR_H
#define BITCOIN_REVERSE_ITERATOR_H
/**
* Template used for reverse iteration in C++11 range-based for loops.
*
* std::vector<int> v = {1, 2, 3, 4, 5};
* for (auto x : reverse_iterate(v))
* std::cout << x << " ";
*/
template <typename T>
class reverse_range
{
T &m_x;
public:
reverse_range(T &x) : m_x(x) {}
auto begin() const -> decltype(this->m_x.rbegin())
{
return m_x.rbegin();
}
auto end() const -> decltype(this->m_x.rend())
{
return m_x.rend();
}
};
template <typename T>
reverse_range<T> reverse_iterate(T &x)
{
return reverse_range<T>(x);
}
#endif // BITCOIN_REVERSE_ITERATOR_H
| Rename member field according to the style guide. | Rename member field according to the style guide.
| C | mit | guncoin/guncoin,ahmedbodi/vertcoin,anditto/bitcoin,deeponion/deeponion,shelvenzhou/BTCGPU,OmniLayer/omnicore,prusnak/bitcoin,jambolo/bitcoin,practicalswift/bitcoin,Kogser/bitcoin,jtimon/bitcoin,trippysalmon/bitcoin,myriadteam/myriadcoin,stamhe/bitcoin,namecoin/namecoin-core,Exgibichi/statusquo,AkioNak/bitcoin,BitzenyCoreDevelopers/bitzeny,ElementsProject/elements,starwels/starwels,lateminer/bitcoin,fanquake/bitcoin,maaku/bitcoin,TheBlueMatt/bitcoin,MeshCollider/bitcoin,domob1812/huntercore,rnicoll/bitcoin,ajtowns/bitcoin,r8921039/bitcoin,randy-waterhouse/bitcoin,jmcorgan/bitcoin,Kogser/bitcoin,domob1812/huntercore,CryptArc/bitcoin,particl/particl-core,mitchellcash/bitcoin,nikkitan/bitcoin,digibyte/digibyte,thrasher-/litecoin,laudaa/bitcoin,jamesob/bitcoin,StarbuckBG/BTCGPU,sebrandon1/bitcoin,Gazer022/bitcoin,lbryio/lbrycrd,donaloconnor/bitcoin,lateminer/bitcoin,GroestlCoin/bitcoin,h4x3rotab/BTCGPU,paveljanik/bitcoin,shelvenzhou/BTCGPU,myriadteam/myriadcoin,untrustbank/litecoin,rawodb/bitcoin,ericshawlinux/bitcoin,qtumproject/qtum,pstratem/bitcoin,laudaa/bitcoin,ericshawlinux/bitcoin,untrustbank/litecoin,StarbuckBG/BTCGPU,romanornr/viacoin,GroestlCoin/bitcoin,kallewoof/bitcoin,deeponion/deeponion,stamhe/bitcoin,myriadcoin/myriadcoin,instagibbs/bitcoin,Exgibichi/statusquo,destenson/bitcoin--bitcoin,brandonrobertz/namecoin-core,mb300sd/bitcoin,romanornr/viacoin,Jcing95/iop-hd,stamhe/bitcoin,vertcoin/vertcoin,practicalswift/bitcoin,tjps/bitcoin,randy-waterhouse/bitcoin,gmaxwell/bitcoin,particl/particl-core,vmp32k/litecoin,sipsorcery/bitcoin,kazcw/bitcoin,bitcoin/bitcoin,practicalswift/bitcoin,stamhe/bitcoin,jlopp/statoshi,1185/starwels,myriadteam/myriadcoin,h4x3rotab/BTCGPU,cryptoprojects/ultimateonlinecash,vertcoin/vertcoin,r8921039/bitcoin,domob1812/namecore,achow101/bitcoin,alecalve/bitcoin,fujicoin/fujicoin,Xekyo/bitcoin,jlopp/statoshi,namecoin/namecore,cdecker/bitcoin,x-kalux/bitcoin_WiG-B,MazaCoin/maza,jnewbery/bitcoin,brandonrobertz/namecoin-core,monacoinproject/monacoin,instagibbs/bitcoin,bitcoinknots/bitcoin,Chancoin-core/CHANCOIN,GroestlCoin/GroestlCoin,brandonrobertz/namecoin-core,wellenreiter01/Feathercoin,kallewoof/bitcoin,randy-waterhouse/bitcoin,n1bor/bitcoin,romanornr/viacoin,aspanta/bitcoin,lateminer/bitcoin,AkioNak/bitcoin,ElementsProject/elements,myriadteam/myriadcoin,JeremyRubin/bitcoin,ahmedbodi/vertcoin,pataquets/namecoin-core,myriadcoin/myriadcoin,TheBlueMatt/bitcoin,MarcoFalke/bitcoin,sebrandon1/bitcoin,Christewart/bitcoin,OmniLayer/omnicore,jonasschnelli/bitcoin,sipsorcery/bitcoin,wellenreiter01/Feathercoin,JeremyRubin/bitcoin,RHavar/bitcoin,MazaCoin/maza,Gazer022/bitcoin,namecoin/namecoin-core,instagibbs/bitcoin,jnewbery/bitcoin,Anfauglith/iop-hd,jtimon/bitcoin,Jcing95/iop-hd,Rav3nPL/bitcoin,Bushstar/UFO-Project,MazaCoin/maza,vertcoin/vertcoin,digibyte/digibyte,simonmulser/bitcoin,nbenoit/bitcoin,sarielsaz/sarielsaz,rnicoll/bitcoin,wangxinxi/litecoin,destenson/bitcoin--bitcoin,digibyte/digibyte,kallewoof/bitcoin,kallewoof/bitcoin,Anfauglith/iop-hd,Anfauglith/iop-hd,JeremyRubin/bitcoin,ryanofsky/bitcoin,jambolo/bitcoin,untrustbank/litecoin,pstratem/bitcoin,simonmulser/bitcoin,andreaskern/bitcoin,Chancoin-core/CHANCOIN,dscotese/bitcoin,h4x3rotab/BTCGPU,bitcoinknots/bitcoin,UFOCoins/ufo,afk11/bitcoin,jambolo/bitcoin,droark/bitcoin,MeshCollider/bitcoin,Kogser/bitcoin,apoelstra/bitcoin,ericshawlinux/bitcoin,donaloconnor/bitcoin,Theshadow4all/ShadowCoin,RHavar/bitcoin,lbryio/lbrycrd,Exgibichi/statusquo,donaloconnor/bitcoin,mm-s/bitcoin,DigitalPandacoin/pandacoin,TheBlueMatt/bitcoin,romanornr/viacoin,Rav3nPL/bitcoin,prusnak/bitcoin,Chancoin-core/CHANCOIN,stamhe/bitcoin,alecalve/bitcoin,ericshawlinux/bitcoin,gjhiggins/vcoincore,gjhiggins/vcoincore,EthanHeilman/bitcoin,AkioNak/bitcoin,Friedbaumer/litecoin,h4x3rotab/BTCGPU,mitchellcash/bitcoin,nbenoit/bitcoin,Kogser/bitcoin,cdecker/bitcoin,sarielsaz/sarielsaz,deeponion/deeponion,OmniLayer/omnicore,domob1812/bitcoin,wellenreiter01/Feathercoin,gjhiggins/vcoincore,dscotese/bitcoin,RHavar/bitcoin,1185/starwels,fujicoin/fujicoin,Theshadow4all/ShadowCoin,tecnovert/particl-core,EthanHeilman/bitcoin,myriadteam/myriadcoin,h4x3rotab/BTCGPU,litecoin-project/litecoin,Sjors/bitcoin,midnightmagic/bitcoin,RHavar/bitcoin,domob1812/huntercore,sarielsaz/sarielsaz,Jcing95/iop-hd,domob1812/huntercore,domob1812/bitcoin,tecnovert/particl-core,wangxinxi/litecoin,Friedbaumer/litecoin,deeponion/deeponion,21E14/bitcoin,lateminer/bitcoin,jtimon/bitcoin,romanornr/viacoin,domob1812/namecore,kevcooper/bitcoin,sebrandon1/bitcoin,qtumproject/qtum,n1bor/bitcoin,jtimon/bitcoin,mruddy/bitcoin,Theshadow4all/ShadowCoin,prusnak/bitcoin,Rav3nPL/bitcoin,spiritlinxl/BTCGPU,Sjors/bitcoin,bitcoin/bitcoin,lbryio/lbrycrd,tjps/bitcoin,rawodb/bitcoin,21E14/bitcoin,r8921039/bitcoin,Xekyo/bitcoin,qtumproject/qtum,jnewbery/bitcoin,vmp32k/litecoin,starwels/starwels,jmcorgan/bitcoin,afk11/bitcoin,fanquake/bitcoin,n1bor/bitcoin,monacoinproject/monacoin,brandonrobertz/namecoin-core,Chancoin-core/CHANCOIN,rnicoll/bitcoin,thrasher-/litecoin,Xekyo/bitcoin,maaku/bitcoin,prusnak/bitcoin,bespike/litecoin,1185/starwels,maaku/bitcoin,cryptoprojects/ultimateonlinecash,GlobalBoost/GlobalBoost,nikkitan/bitcoin,Bushstar/UFO-Project,fujicoin/fujicoin,mm-s/bitcoin,prusnak/bitcoin,BTCGPU/BTCGPU,OmniLayer/omnicore,lateminer/bitcoin,mm-s/bitcoin,ElementsProject/elements,destenson/bitcoin--bitcoin,bitcoinknots/bitcoin,sipsorcery/bitcoin,fujicoin/fujicoin,ppcoin/ppcoin,untrustbank/litecoin,sarielsaz/sarielsaz,jonasschnelli/bitcoin,AkioNak/bitcoin,ElementsProject/elements,FeatherCoin/Feathercoin,jonasschnelli/bitcoin,kazcw/bitcoin,globaltoken/globaltoken,randy-waterhouse/bitcoin,aspanta/bitcoin,gmaxwell/bitcoin,sarielsaz/sarielsaz,litecoin-project/litecoin,viacoin/viacoin,Kogser/bitcoin,practicalswift/bitcoin,joshrabinowitz/bitcoin,aspanta/bitcoin,mm-s/bitcoin,gmaxwell/bitcoin,joshrabinowitz/bitcoin,domob1812/namecore,wellenreiter01/Feathercoin,sstone/bitcoin,guncoin/guncoin,sstone/bitcoin,sebrandon1/bitcoin,guncoin/guncoin,kazcw/bitcoin,domob1812/huntercore,Jcing95/iop-hd,n1bor/bitcoin,FeatherCoin/Feathercoin,x-kalux/bitcoin_WiG-B,r8921039/bitcoin,GroestlCoin/GroestlCoin,alecalve/bitcoin,FeatherCoin/Feathercoin,peercoin/peercoin,AkioNak/bitcoin,Gazer022/bitcoin,bitcoinsSG/bitcoin,myriadcoin/myriadcoin,FeatherCoin/Feathercoin,yenliangl/bitcoin,GroestlCoin/GroestlCoin,midnightmagic/bitcoin,cryptoprojects/ultimateonlinecash,peercoin/peercoin,ppcoin/ppcoin,brandonrobertz/namecoin-core,qtumproject/qtum,Friedbaumer/litecoin,maaku/bitcoin,lbryio/lbrycrd,nikkitan/bitcoin,jlopp/statoshi,destenson/bitcoin--bitcoin,Rav3nPL/bitcoin,digibyte/digibyte,nikkitan/bitcoin,EthanHeilman/bitcoin,FeatherCoin/Feathercoin,deeponion/deeponion,Exgibichi/statusquo,GlobalBoost/GlobalBoost,jtimon/bitcoin,21E14/bitcoin,wellenreiter01/Feathercoin,viacoin/viacoin,gmaxwell/bitcoin,StarbuckBG/BTCGPU,EthanHeilman/bitcoin,vmp32k/litecoin,tjps/bitcoin,jamesob/bitcoin,kallewoof/bitcoin,donaloconnor/bitcoin,pataquets/namecoin-core,BTCGPU/BTCGPU,GlobalBoost/GlobalBoost,laudaa/bitcoin,apoelstra/bitcoin,GroestlCoin/GroestlCoin,jambolo/bitcoin,destenson/bitcoin--bitcoin,vmp32k/litecoin,namecoin/namecore,Gazer022/bitcoin,Flowdalic/bitcoin,bitcoinsSG/bitcoin,Anfauglith/iop-hd,domob1812/namecore,myriadcoin/myriadcoin,achow101/bitcoin,cdecker/bitcoin,gmaxwell/bitcoin,namecoin/namecoin-core,joshrabinowitz/bitcoin,mruddy/bitcoin,peercoin/peercoin,globaltoken/globaltoken,GroestlCoin/bitcoin,bitcoinsSG/bitcoin,rnicoll/dogecoin,ElementsProject/elements,spiritlinxl/BTCGPU,tjps/bitcoin,21E14/bitcoin,particl/particl-core,tecnovert/particl-core,jmcorgan/bitcoin,bitcoin/bitcoin,Rav3nPL/bitcoin,namecoin/namecore,rnicoll/bitcoin,ppcoin/ppcoin,rnicoll/bitcoin,deeponion/deeponion,myriadteam/myriadcoin,monacoinproject/monacoin,GroestlCoin/bitcoin,kevcooper/bitcoin,wangxinxi/litecoin,Chancoin-core/CHANCOIN,Kogser/bitcoin,mb300sd/bitcoin,Theshadow4all/ShadowCoin,apoelstra/bitcoin,qtumproject/qtum,mruddy/bitcoin,Xekyo/bitcoin,practicalswift/bitcoin,digibyte/digibyte,MeshCollider/bitcoin,MazaCoin/maza,laudaa/bitcoin,litecoin-project/litecoin,bespike/litecoin,andreaskern/bitcoin,gjhiggins/vcoincore,prusnak/bitcoin,MazaCoin/maza,bitcoinknots/bitcoin,myriadcoin/myriadcoin,Sjors/bitcoin,UFOCoins/ufo,apoelstra/bitcoin,simonmulser/bitcoin,romanornr/viacoin,CryptArc/bitcoin,bitbrazilcoin-project/bitbrazilcoin,1185/starwels,Friedbaumer/litecoin,droark/bitcoin,jonasschnelli/bitcoin,globaltoken/globaltoken,bitbrazilcoin-project/bitbrazilcoin,r8921039/bitcoin,andreaskern/bitcoin,MarcoFalke/bitcoin,thrasher-/litecoin,domob1812/huntercore,Christewart/bitcoin,Sjors/bitcoin,1185/starwels,kallewoof/bitcoin,achow101/bitcoin,nbenoit/bitcoin,TheBlueMatt/bitcoin,donaloconnor/bitcoin,achow101/bitcoin,sipsorcery/bitcoin,ericshawlinux/bitcoin,tecnovert/particl-core,x-kalux/bitcoin_WiG-B,fanquake/bitcoin,OmniLayer/omnicore,fanquake/bitcoin,rawodb/bitcoin,guncoin/guncoin,sebrandon1/bitcoin,starwels/starwels,bespike/litecoin,domob1812/namecore,Christewart/bitcoin,mruddy/bitcoin,bitcoinknots/bitcoin,ajtowns/bitcoin,anditto/bitcoin,myriadcoin/myriadcoin,dscotese/bitcoin,maaku/bitcoin,nbenoit/bitcoin,GlobalBoost/GlobalBoost,simonmulser/bitcoin,vertcoin/vertcoin,GroestlCoin/GroestlCoin,Theshadow4all/ShadowCoin,Anfauglith/iop-hd,namecoin/namecoin-core,sipsorcery/bitcoin,rnicoll/dogecoin,vertcoin/vertcoin,Chancoin-core/CHANCOIN,digibyte/digibyte,MazaCoin/maza,joshrabinowitz/bitcoin,UFOCoins/ufo,CryptArc/bitcoin,cryptoprojects/ultimateonlinecash,sstone/bitcoin,cdecker/bitcoin,Flowdalic/bitcoin,tecnovert/particl-core,sarielsaz/sarielsaz,Flowdalic/bitcoin,Friedbaumer/litecoin,Flowdalic/bitcoin,rnicoll/dogecoin,gjhiggins/vcoincore,wangxinxi/litecoin,jamesob/bitcoin,anditto/bitcoin,droark/bitcoin,viacoin/viacoin,AkioNak/bitcoin,midnightmagic/bitcoin,Flowdalic/bitcoin,shelvenzhou/BTCGPU,spiritlinxl/BTCGPU,RHavar/bitcoin,21E14/bitcoin,ajtowns/bitcoin,mruddy/bitcoin,domob1812/bitcoin,GlobalBoost/GlobalBoost,GroestlCoin/bitcoin,jmcorgan/bitcoin,yenliangl/bitcoin,andreaskern/bitcoin,afk11/bitcoin,kevcooper/bitcoin,nbenoit/bitcoin,randy-waterhouse/bitcoin,Sjors/bitcoin,MarcoFalke/bitcoin,paveljanik/bitcoin,spiritlinxl/BTCGPU,sstone/bitcoin,mb300sd/bitcoin,trippysalmon/bitcoin,lateminer/bitcoin,Flowdalic/bitcoin,tjps/bitcoin,n1bor/bitcoin,ahmedbodi/vertcoin,peercoin/peercoin,qtumproject/qtum,untrustbank/litecoin,DigitalPandacoin/pandacoin,apoelstra/bitcoin,rnicoll/dogecoin,gmaxwell/bitcoin,lbryio/lbrycrd,qtumproject/qtum,spiritlinxl/BTCGPU,FeatherCoin/Feathercoin,Friedbaumer/litecoin,mb300sd/bitcoin,guncoin/guncoin,particl/particl-core,dscotese/bitcoin,Xekyo/bitcoin,x-kalux/bitcoin_WiG-B,dscotese/bitcoin,litecoin-project/litecoin,mitchellcash/bitcoin,mb300sd/bitcoin,maaku/bitcoin,anditto/bitcoin,namecoin/namecore,MarcoFalke/bitcoin,yenliangl/bitcoin,afk11/bitcoin,Bushstar/UFO-Project,rnicoll/bitcoin,droark/bitcoin,TheBlueMatt/bitcoin,domob1812/bitcoin,litecoin-project/litecoin,aspanta/bitcoin,anditto/bitcoin,Exgibichi/statusquo,dscotese/bitcoin,StarbuckBG/BTCGPU,JeremyRubin/bitcoin,jlopp/statoshi,peercoin/peercoin,rawodb/bitcoin,BTCGPU/BTCGPU,jlopp/statoshi,CryptArc/bitcoin,DigitalPandacoin/pandacoin,pstratem/bitcoin,GroestlCoin/GroestlCoin,fujicoin/fujicoin,yenliangl/bitcoin,DigitalPandacoin/pandacoin,guncoin/guncoin,rawodb/bitcoin,instagibbs/bitcoin,nbenoit/bitcoin,wangxinxi/litecoin,simonmulser/bitcoin,lbryio/lbrycrd,trippysalmon/bitcoin,UFOCoins/ufo,CryptArc/bitcoin,gjhiggins/vcoincore,midnightmagic/bitcoin,BitzenyCoreDevelopers/bitzeny,domob1812/bitcoin,mitchellcash/bitcoin,MeshCollider/bitcoin,wellenreiter01/Feathercoin,cdecker/bitcoin,jambolo/bitcoin,midnightmagic/bitcoin,JeremyRubin/bitcoin,andreaskern/bitcoin,tecnovert/particl-core,21E14/bitcoin,donaloconnor/bitcoin,mm-s/bitcoin,nikkitan/bitcoin,BitzenyCoreDevelopers/bitzeny,namecoin/namecore,jmcorgan/bitcoin,ryanofsky/bitcoin,Jcing95/iop-hd,paveljanik/bitcoin,bitcoinsSG/bitcoin,droark/bitcoin,apoelstra/bitcoin,destenson/bitcoin--bitcoin,MeshCollider/bitcoin,globaltoken/globaltoken,paveljanik/bitcoin,bitbrazilcoin-project/bitbrazilcoin,jtimon/bitcoin,paveljanik/bitcoin,jnewbery/bitcoin,kazcw/bitcoin,Kogser/bitcoin,EthanHeilman/bitcoin,monacoinproject/monacoin,afk11/bitcoin,ahmedbodi/vertcoin,DigitalPandacoin/pandacoin,sipsorcery/bitcoin,alecalve/bitcoin,BTCGPU/BTCGPU,vertcoin/vertcoin,monacoinproject/monacoin,bitbrazilcoin-project/bitbrazilcoin,particl/particl-core,Jcing95/iop-hd,DigitalPandacoin/pandacoin,shelvenzhou/BTCGPU,Christewart/bitcoin,yenliangl/bitcoin,joshrabinowitz/bitcoin,cryptoprojects/ultimateonlinecash,CryptArc/bitcoin,fanquake/bitcoin,GlobalBoost/GlobalBoost,achow101/bitcoin,jamesob/bitcoin,droark/bitcoin,Bushstar/UFO-Project,jnewbery/bitcoin,viacoin/viacoin,pstratem/bitcoin,starwels/starwels,Kogser/bitcoin,bitcoinsSG/bitcoin,Christewart/bitcoin,Exgibichi/statusquo,BitzenyCoreDevelopers/bitzeny,h4x3rotab/BTCGPU,mb300sd/bitcoin,alecalve/bitcoin,1185/starwels,Kogser/bitcoin,simonmulser/bitcoin,sstone/bitcoin,thrasher-/litecoin,Bushstar/UFO-Project,Gazer022/bitcoin,ppcoin/ppcoin,namecoin/namecore,jmcorgan/bitcoin,bespike/litecoin,BitzenyCoreDevelopers/bitzeny,lbryio/lbrycrd,ryanofsky/bitcoin,x-kalux/bitcoin_WiG-B,sstone/bitcoin,aspanta/bitcoin,afk11/bitcoin,bitbrazilcoin-project/bitbrazilcoin,x-kalux/bitcoin_WiG-B,MeshCollider/bitcoin,thrasher-/litecoin,Christewart/bitcoin,Kogser/bitcoin,bitcoin/bitcoin,trippysalmon/bitcoin,domob1812/bitcoin,ahmedbodi/vertcoin,StarbuckBG/BTCGPU,Anfauglith/iop-hd,thrasher-/litecoin,brandonrobertz/namecoin-core,ajtowns/bitcoin,BTCGPU/BTCGPU,laudaa/bitcoin,particl/particl-core,starwels/starwels,shelvenzhou/BTCGPU,ajtowns/bitcoin,andreaskern/bitcoin,joshrabinowitz/bitcoin,viacoin/viacoin,globaltoken/globaltoken,namecoin/namecoin-core,RHavar/bitcoin,jlopp/statoshi,rawodb/bitcoin,Bushstar/UFO-Project,Theshadow4all/ShadowCoin,litecoin-project/litecoin,laudaa/bitcoin,kevcooper/bitcoin,nikkitan/bitcoin,ericshawlinux/bitcoin,starwels/starwels,yenliangl/bitcoin,pataquets/namecoin-core,stamhe/bitcoin,mitchellcash/bitcoin,kevcooper/bitcoin,trippysalmon/bitcoin,pataquets/namecoin-core,instagibbs/bitcoin,n1bor/bitcoin,ryanofsky/bitcoin,EthanHeilman/bitcoin,achow101/bitcoin,JeremyRubin/bitcoin,tjps/bitcoin,ElementsProject/elements,ajtowns/bitcoin,GroestlCoin/bitcoin,Kogser/bitcoin,trippysalmon/bitcoin,ahmedbodi/vertcoin,OmniLayer/omnicore,shelvenzhou/BTCGPU,bitbrazilcoin-project/bitbrazilcoin,rnicoll/dogecoin,Kogser/bitcoin,cryptoprojects/ultimateonlinecash,BTCGPU/BTCGPU,monacoinproject/monacoin,jambolo/bitcoin,kazcw/bitcoin,practicalswift/bitcoin,anditto/bitcoin,mm-s/bitcoin,MarcoFalke/bitcoin,Rav3nPL/bitcoin,Gazer022/bitcoin,bitcoin/bitcoin,UFOCoins/ufo,pstratem/bitcoin,mitchellcash/bitcoin,GlobalBoost/GlobalBoost,pataquets/namecoin-core,TheBlueMatt/bitcoin,ryanofsky/bitcoin,namecoin/namecoin-core,MarcoFalke/bitcoin,alecalve/bitcoin,aspanta/bitcoin,Xekyo/bitcoin,ryanofsky/bitcoin,kevcooper/bitcoin,bespike/litecoin,pstratem/bitcoin,wangxinxi/litecoin,fanquake/bitcoin,r8921039/bitcoin,domob1812/namecore,kazcw/bitcoin,midnightmagic/bitcoin,StarbuckBG/BTCGPU,spiritlinxl/BTCGPU,randy-waterhouse/bitcoin,UFOCoins/ufo,fujicoin/fujicoin,paveljanik/bitcoin,cdecker/bitcoin,jamesob/bitcoin,bitcoin/bitcoin,jonasschnelli/bitcoin,bespike/litecoin,untrustbank/litecoin,sebrandon1/bitcoin,jamesob/bitcoin,vmp32k/litecoin,bitcoinsSG/bitcoin,mruddy/bitcoin,globaltoken/globaltoken,viacoin/viacoin,pataquets/namecoin-core,instagibbs/bitcoin,BitzenyCoreDevelopers/bitzeny,peercoin/peercoin,vmp32k/litecoin |
c970d8d8c6101a7e00fe91aef9a751d41c433569 | mudlib/mud/home/Kotaka/sys/testd.c | mudlib/mud/home/Kotaka/sys/testd.c | #include <kotaka/paths.h>
#include <kotaka/log.h>
static void create()
{
}
void test()
{
}
| #include <kotaka/paths.h>
#include <kotaka/log.h>
#include <kotaka/assert.h>
static void create()
{
}
private void test_qsort()
{
int *arr, i;
arr = allocate(1000);
for (i = 0; i < 1000; i++) {
arr[i] = random(1000000);
}
SUBD->qsort(arr, 0, 1000);
for (i = 0; i < 999; i++) {
ASSERT(arr[i] <= arr[i + 1]);
}
}
void test()
{
LOGD->post_message("test", LOG_DEBUG, "Testing qsort...");
test_qsort();
}
| Add regression test for qsort | Add regression test for qsort
| C | agpl-3.0 | shentino/kotaka,shentino/kotaka,shentino/kotaka |
2321a73ac4bc7ae3fc543c36e690d9831040160a | Sub-Terra/include/Oscillator.h | Sub-Terra/include/Oscillator.h | #pragma once
#include <math.h>
#include "WaveShape.h"
class Oscillator {
public:
WaveShape waveShape;
double frequency = 1.0;
double amplitude = 1.0;
double speed = 1.0;
uint32_t phaseAccumulator = 0;
Oscillator() = default;
Oscillator(const WaveShape &waveShape) : waveShape(waveShape), frequency(waveShape.preferredFrequency) {}
static constexpr uint32_t LowerMask(unsigned int n) {
return (n == 0)
? 0
: ((LowerMask(n - 1) << 1) | 1);
}
static constexpr uint32_t UpperMask(unsigned int n) {
return LowerMask(n) << (32 - n);
}
inline uint16_t Tick(const double sampleRate) {
double frequencyOut = frequency * speed;
uint32_t frequencyControlWord = frequencyOut * static_cast<double>(1ull << 32) / sampleRate;
phaseAccumulator += frequencyControlWord;
return amplitude * waveShape.table[(phaseAccumulator & UpperMask(WaveShape::granularity)) >> 22];
}
};
| #pragma once
#include "WaveShape.h"
class Oscillator {
public:
WaveShape waveShape;
double frequency = 1.0;
double amplitude = 1.0;
double speed = 1.0;
uint32_t phaseAccumulator = 0;
Oscillator() = default;
Oscillator(const WaveShape &waveShape) : waveShape(waveShape), frequency(waveShape.preferredFrequency) {}
static constexpr uint32_t LowerMask(unsigned int n) {
return (n == 0)
? 0
: ((LowerMask(n - 1) << 1) | 1);
}
static constexpr uint32_t UpperMask(unsigned int n) {
return LowerMask(n) << (32 - n);
}
inline uint16_t Tick(const double sampleRate) {
double frequencyOut = frequency * speed;
uint32_t frequencyControlWord = static_cast<uint32_t>(frequencyOut * static_cast<double>(1ull << 32) / sampleRate);
phaseAccumulator += frequencyControlWord;
return static_cast<uint32_t>(amplitude * waveShape.table[(phaseAccumulator & UpperMask(WaveShape::granularity)) >> 22]);
}
};
| Fix warnings and remove unused header | Fix warnings and remove unused header
| C | mpl-2.0 | polar-engine/polar,polar-engine/polar,shockkolate/polar4,shockkolate/polar4,shockkolate/polar4,shockkolate/polar4 |
f0b582a6639ad908211c938287fad26fc99a34dc | peertalk/PTPrivate.h | peertalk/PTPrivate.h | #if (defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && (!defined(__IPHONE_6_0) || __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_6_0)) || \
(defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && (!defined(__MAC_10_8) || __MAC_OS_X_VERSION_MIN_REQUIRED < __MAC_10_8))
#define PT_DISPATCH_RETAIN_RELEASE 1
#endif
#if PT_DISPATCH_RETAIN_RELEASE
#define PT_PRECISE_LIFETIME
#define PT_PRECISE_LIFETIME_UNUSED
#else
#define PT_PRECISE_LIFETIME __attribute__((objc_precise_lifetime))
#define PT_PRECISE_LIFETIME_UNUSED __attribute__((objc_precise_lifetime, unused))
#endif
| #if (defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && (!defined(__IPHONE_6_0) || __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_6_0)) || \
(defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && (!defined(__MAC_10_8) || __MAC_OS_X_VERSION_MIN_REQUIRED < __MAC_10_8))
#define PT_DISPATCH_RETAIN_RELEASE 1
#endif
#define PT_PRECISE_LIFETIME
#define PT_PRECISE_LIFETIME_UNUSED
#if defined(PT_DISPATCH_RETAIN_RELEASE) && PT_DISPATCH_RETAIN_RELEASE
#define PT_PRECISE_LIFETIME __attribute__((objc_precise_lifetime))
#define PT_PRECISE_LIFETIME_UNUSED __attribute__((objc_precise_lifetime, unused))
#endif
| Fix logic that enables pre-ARC behavior | Fix logic that enables pre-ARC behavior
| C | mit | fly19890211/peertalk,philikon/peertalk,fly19890211/peertalk,yexihu/peertalk,yexihu/peertalk,fly19890211/peertalk,rsms/peertalk,ChetanGandhi/peertalk,philikon/peertalk,ChetanGandhi/peertalk,yexihu/peertalk,rsms/peertalk,msdgwzhy6/peertalk,TaoXueCheng/peertalk,artifacts/peertalk,artifacts/peertalk,dguillamot/PFMacOSClient,ChetanGandhi/peertalk,2bbb/peertalk,msdgwzhy6/peertalk,artifacts/peertalk,2bbb/peertalk,dguillamot/PFMacOSClient,philikon/peertalk,TaoXueCheng/peertalk,TaoXueCheng/peertalk,msdgwzhy6/peertalk,rsms/peertalk,dguillamot/PFMacOSClient,2bbb/peertalk |
44415f1f4effc8953177bc365098750e92df20f4 | src/mpd-shell-defines.h | src/mpd-shell-defines.h |
/*
* Copyright © 2010 Intel Corp.
*
* Authors: Rob Staudinger <[email protected]>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU Lesser General Public License,
* version 2.1, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
* more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_SHELL_DEFINES_H
#define MPD_SHELL_DEFINES_H
#define MPD_SHELL_WIDTH 1024
#define MPD_SHELL_HEIGHT 300
#define MPD_SHELL_PADDING 12
#define MPD_SHELL_SPACING 24
#define MPD_COMPUTER_PANE_WIDTH 320
#endif /* MPD_SHELL_DEFINES_H */
|
/*
* Copyright © 2010 Intel Corp.
*
* Authors: Rob Staudinger <[email protected]>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU Lesser General Public License,
* version 2.1, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
* more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_SHELL_DEFINES_H
#define MPD_SHELL_DEFINES_H
#define MPD_SHELL_WIDTH 1024.0
#define MPD_SHELL_HEIGHT 300.0
#define MPD_SHELL_PADDING 12.0
#define MPD_SHELL_SPACING 24.0
#define MPD_COMPUTER_PANE_WIDTH 320.0
#endif /* MPD_SHELL_DEFINES_H */
| Define actor sized as float for type safety. | shell: Define actor sized as float for type safety.
| C | lgpl-2.1 | meego-netbook-ux/meego-panel-devices,meego-netbook-ux/meego-panel-devices,meego-netbook-ux/meego-panel-devices |
fe9f46ab6c0863c0a3c3345ebb43f32d50ab60ca | Generics/LWP/ICondVar.h | Generics/LWP/ICondVar.h |
#pragma once
namespace LWP
{
class ICondVar
{
public:
virtual void wait() = 0;
virtual void signal() = 0;
virtual void broadcast() = 0;
virtual ~ICondVar() {}
};
} |
#pragma once
namespace LWP
{
class ICondVar
{
public:
virtual void wait() = 0;
virtual void notify() = 0;
virtual void broadcast() = 0;
virtual ~ICondVar() {}
};
} | Change method name : `signal' => `notify' | [LWP] Change method name : `signal' => `notify'
| C | mit | fiahil/R-Type,fiahil/R-Type |
70065db2a0765b00473d8f40a640f0a4159f6387 | include/stdlib.h | include/stdlib.h | #ifndef __STDLIB_H__
#define __STDLIB_H__
void assert(int boolean, char * msg);
#endif // __STDLIB_H__
| #ifndef __STDLIB_H__
#define __STDLIB_H__
#include <kernel.h>
#include <task.h>
#include <types.h>
void assert(int boolean, char * msg);
#endif // __STDLIB_H__
| Add kernel.h, task.h and types.h, forming a facade interface | Add kernel.h, task.h and types.h, forming a facade interface
| C | mit | gregwym/ARM-Micro-Kernel,gregwym/ARM-Micro-Kernel,gregwym/ARM-Micro-Kernel |
cdbae732301c430a95c9328f6597f4ecfb26cbb0 | ios/NfcManager.h | ios/NfcManager.h | #if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#import <React/RCTEventEmitter.h>
#elif __has_include(“React/RCTBridgeModule.h”)
#import “React/RCTBridgeModule.h”
#else
#import “RCTBridgeModule.h”
#import <React/RCTEventEmitter.h>
#endif
#import <CoreNfc/CoreNfc.h>
@interface NfcManager : RCTEventEmitter <RCTBridgeModule, NFCNDEFReaderSessionDelegate> {
}
@property (strong, nonatomic) NFCNDEFReaderSession *session;
@end
| #if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#import <React/RCTEventEmitter.h>
#elif __has_include(“React/RCTBridgeModule.h”)
#import “React/RCTBridgeModule.h”
#else
#import “RCTBridgeModule.h”
#import <React/RCTEventEmitter.h>
#endif
#import <CoreNFC/CoreNFC.h>
@interface NfcManager : RCTEventEmitter <RCTBridgeModule, NFCNDEFReaderSessionDelegate> {
}
@property (strong, nonatomic) NFCNDEFReaderSession *session;
@end
| Fix case-sensitive file import from CoreNfc -> CoreNFC | Fix case-sensitive file import from CoreNfc -> CoreNFC
| C | apache-2.0 | whitedogg13/react-native-nfc-manager,whitedogg13/react-native-nfc-manager,whitedogg13/react-native-nfc-manager |
6ee28d6d3a65a014f4ad9f4454258b4eb5114364 | machine.h | machine.h | #ifndef __MACHINE_H__
#define __MACHINE_H__
#include <string>
#include <vector>
#include "job.h"
class Machine
{
public:
Machine(const std::string& machine_name);
const std::string& get_name() const;
void add_job(Job);
private:
std::string name;
std::vector<Job> jobs;
};
#endif /* __MACHINE_H__ */
| #ifndef __MACHINE_H__
#define __MACHINE_H__
#include <string>
#include <vector>
#include "job.h"
class Machine
{
public:
Machine(const std::string& machine_name);
const std::string& get_name() const;
void add_job(Job new_job);
private:
std::string name;
std::vector<Job> jobs;
};
#endif /* __MACHINE_H__ */
| Add name to add_job param | Add name to add_job param
| C | mit | mattportas/yejong |
bb843fdda3313e753959fdcb90332f627a127524 | inc/winchar.h | inc/winchar.h | //--------------------------------------------------------------------------//
/// Copyright (c) 2017 by Milos Tosic. All Rights Reserved. ///
/// License: http://www.opensource.org/licenses/BSD-2-Clause ///
//--------------------------------------------------------------------------//
#ifndef __RTM_RBASE_WINCHAR_H__
#define __RTM_RBASE_WINCHAR_H__
#include <rbase/inc/platform.h>
namespace rtm {
#if RTM_PLATFORM_WINDOWS
class MultiToWide
{
static const int S_ON_STACK_SIZE = 1024;
wchar_t m_string[S_ON_STACK_SIZE];
public:
wchar_t* m_ptr;
MultiToWide(const char* _string, bool _path = true);
~MultiToWide();
};
class WideToMulti
{
static const int S_ON_STACK_SIZE = 1024;
char m_string[S_ON_STACK_SIZE];
public:
char* m_ptr;
WideToMulti(const wchar_t* _string);
~WideToMulti();
};
#endif // RTM_PLATFORM_WINDOWS
} // namespace rtm
#endif // __RTM_RBASE_WINCHAR_H__
| //--------------------------------------------------------------------------//
/// Copyright (c) 2017 by Milos Tosic. All Rights Reserved. ///
/// License: http://www.opensource.org/licenses/BSD-2-Clause ///
//--------------------------------------------------------------------------//
#ifndef __RTM_RBASE_WINCHAR_H__
#define __RTM_RBASE_WINCHAR_H__
#include <rbase/inc/platform.h>
namespace rtm {
#if RTM_PLATFORM_WINDOWS
class MultiToWide
{
static const int S_ON_STACK_SIZE = 1024;
wchar_t m_string[S_ON_STACK_SIZE];
public:
wchar_t* m_ptr;
MultiToWide(const char* _string, bool _path = true);
~MultiToWide();
operator wchar_t* () { return m_ptr; }
};
class WideToMulti
{
static const int S_ON_STACK_SIZE = 1024;
char m_string[S_ON_STACK_SIZE];
public:
char* m_ptr;
WideToMulti(const wchar_t* _string);
~WideToMulti();
operator char* () { return m_ptr; }
};
#endif // RTM_PLATFORM_WINDOWS
} // namespace rtm
#endif // __RTM_RBASE_WINCHAR_H__
| Add (w)char casting operator to windows char classes | Add (w)char casting operator to windows char classes
| C | bsd-2-clause | milostosic/rbase,milostosic/rbase |
2e4e76b70806abf9a37f1a6b3f9ccdb56aa89448 | include/llvm/Transforms/Utils/SizeOpts.h | include/llvm/Transforms/Utils/SizeOpts.h | //===- llvm/Transforms/Utils/SizeOpts.h - size optimization -----*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file contains some shared code size optimization related code.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TRANSFORMS_UTILS_SIZEOPTS_H
#define LLVM_TRANSFORMS_UTILS_SiZEOPTS_H
namespace llvm {
class BasicBlock;
class BlockFrequencyInfo;
class Function;
class ProfileSummaryInfo;
/// Returns true if function \p F is suggested to be size-optimized base on the
/// profile.
bool shouldOptimizeForSize(Function *F, ProfileSummaryInfo *PSI,
BlockFrequencyInfo *BFI);
/// Returns true if basic block \p BB is suggested to be size-optimized base
/// on the profile.
bool shouldOptimizeForSize(BasicBlock *BB, ProfileSummaryInfo *PSI,
BlockFrequencyInfo *BFI);
} // end namespace llvm
#endif // LLVM_TRANSFORMS_UTILS_SiZEOPTS_H
| //===- llvm/Transforms/Utils/SizeOpts.h - size optimization -----*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file contains some shared code size optimization related code.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TRANSFORMS_UTILS_SIZEOPTS_H
#define LLVM_TRANSFORMS_UTILS_SIZEOPTS_H
namespace llvm {
class BasicBlock;
class BlockFrequencyInfo;
class Function;
class ProfileSummaryInfo;
/// Returns true if function \p F is suggested to be size-optimized base on the
/// profile.
bool shouldOptimizeForSize(Function *F, ProfileSummaryInfo *PSI,
BlockFrequencyInfo *BFI);
/// Returns true if basic block \p BB is suggested to be size-optimized base
/// on the profile.
bool shouldOptimizeForSize(BasicBlock *BB, ProfileSummaryInfo *PSI,
BlockFrequencyInfo *BFI);
} // end namespace llvm
#endif // LLVM_TRANSFORMS_UTILS_SIZEOPTS_H
| Fix header guard typo and build error. | Fix header guard typo and build error.
git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@358429 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | GPUOpen-Drivers/llvm,apple/swift-llvm,llvm-mirror/llvm,llvm-mirror/llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,llvm-mirror/llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,apple/swift-llvm,llvm-mirror/llvm,llvm-mirror/llvm,llvm-mirror/llvm,apple/swift-llvm,apple/swift-llvm,llvm-mirror/llvm,apple/swift-llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm |
dc258e02720308981a4f8a2e4848c582c1b71123 | l4common.h | l4common.h | #ifndef LBS_COMMON_H
#define LBS_COMMON_H
#include <stddef.h>
#ifdef __STDC_VERSION__
# include <stdbool.h>
# if __STDC_VERSION__ >= 201112L
# define LBS_COMMON_ISO_C11
# define LBS_COMMON_CHECK_TYPE(x,type) (_Generic ((x), type: (x)))
# else
# define LBS_COMMON_ISO_C99
# define LBS_COMMON_CHECK_TYPE(x,type) (x)
# endif
#else
# define bool char
# define true 1
# define false 0
# define LBS_COMMON_ISO_C89
# define LBS_COMMON_CHECK_TYPE(x,type) (x)
#endif /* __STDC_VERSION__ */
#define LBS_COMMON_NULL_PTR ((void*)NULL)
#endif /* LBS_COMMON_H */
| #ifndef LBS_COMMON_H
#define LBS_COMMON_H
#include <stddef.h>
#ifdef __STDC_VERSION__
# include <stdbool.h>
# if __STDC_VERSION__ >= 201112L
# define LBS_COMMON_ISO_C11
# define LBS_COMMON_CHECK_TYPE(x,type) (_Generic ((x), type: (x)))
# else
# define LBS_COMMON_ISO_C99
# define LBS_COMMON_CHECK_TYPE(x,type) (x)
# endif
#else
# define bool char
# define true 1
# define false 0
# define inline
# define LBS_COMMON_ISO_C89
# define LBS_COMMON_CHECK_TYPE(x,type) (x)
#endif /* __STDC_VERSION__ */
#define LBS_COMMON_NULL_PTR ((void*)NULL)
#define LBS_COMMON_DEFINE_GETTER(ns,xt,m,mt) \
static inline mt ns ## _get_ ## m (xt x) { \
return x->m; \
}
#define LBS_COMMON_DEFINE_SETTER(ns,xt,m,mt) \
static inline void ns ## _set_ ## m (xt x, mt v) { \
x->m = v; \
}
#endif /* LBS_COMMON_H */
| Add macros to define getters and setters | Add macros to define getters and setters
| C | bsd-3-clause | lantw44/l4basic,lantw44/l4basic |
35cd59f259b7058758f70b1ad5b679191e6fc116 | src/shift_objective.c | src/shift_objective.c | #include <assert.h>
#include <numbbo.h>
#include "numbbo_problem.c"
typedef struct {
double amount;
} shift_objective_state_t;
static void _so_evaluate_function(numbbo_problem_t *self, double *x, double *y) {
assert(problem->inner_problem != NULL);
assert(problem->state != NULL);
numbbo_transformed_problem_t *problem = (numbbo_transformed_problem_t *)self;
shift_objective_state_t *state = (shift_objective_state_t *)self->state;
numbbo_evaluate_function(problem->inner_problem, x, y);
y[0] += state->amount;
}
/* Shift the returned objective value of ${inner_problem} by ${amount}.
*/
numbbo_problem_t *shift_objective(const numbbo_problem_t *inner_problem,
const double amount) {
numbbo_transformed_problem_t *problem =
numbbo_allocate_transformed_problem(inner_problem);
shift_objective_state_t *state = numbbo_allocate_memory(sizeof(*state));
state->amount = amount;
problem->state = state;
problem->evaluate_function = _so_evaluate_function;
return problem;
}
| Add problem transformation to shift the objective. | Add problem transformation to shift the objective.
| C | bsd-3-clause | oaelhara/numbbo,oaelhara/numbbo,NDManh/numbbo,dtusar/coco,NDManh/numbbo,oaelhara/numbbo,dtusar/coco,NDManh/numbbo,oaelhara/numbbo,oaelhara/numbbo,NDManh/numbbo,oaelhara/numbbo,dtusar/coco,NDManh/numbbo,oaelhara/numbbo,dtusar/coco,oaelhara/numbbo,NDManh/numbbo,dtusar/coco,dtusar/coco,NDManh/numbbo,dtusar/coco,dtusar/coco,NDManh/numbbo,dtusar/coco,NDManh/numbbo,oaelhara/numbbo |
|
0e05d29e104107803c23e5be217bd6ed497c2b2f | src/test/slist_test.c | src/test/slist_test.c | #include <stdio.h>
#include <string.h>
#include "ausearch-string.h"
slist s;
int print_list(void)
{
int cnt = 0;
slist_first(&s);
do {
snode *cur = slist_get_cur(&s);
if (cur) {
cnt++;
printf("%s\n", cur->str);
}
} while (slist_next(&s));
return cnt;
}
int main(void)
{
snode n;
int rc;
slist_create(&s);
slist_add_if_uniq(&s, "test1");
slist_add_if_uniq(&s, "test2");
slist_first(&s);
slist_add_if_uniq(&s, "test3");
puts("should be 3");
rc = print_list();
if (s.cnt != 3 || rc !=3) {
puts("test count is wrong");
return 1;
}
n.str = strdup("test4");
n.key = NULL;
n.hits = 1;
slist_append(&s, &n);
puts("should add a #4");
rc = print_list();
if (s.cnt != 4 || rc != 4) {
puts("test count is wrong");
return 1;
}
slist_add_if_uniq(&s, "test2");
puts("should be same");
rc = print_list();
if (s.cnt != 4 || rc != 4) {
puts("test count is wrong");
return 1;
}
slist_clear(&s);
puts("should be empty");
rc = print_list();
if (s.cnt != 0 || rc != 0) {
puts("test count is wrong");
return 1;
}
return 0;
}
| Add the test program, too | Add the test program, too
git-svn-id: b2ed898cf2cd3316b62ee1cc50465f4560571194@982 03a675c2-f56d-4096-908f-63dba836b7e4
| C | lgpl-2.1 | yubo/audit,yubo/audit,yubo/audit,yubo/audit,yubo/audit |
|
ecb1728e6880e9368cc9bbd4ba3a82b47456152a | client_encoder/client_encoder_base.h | client_encoder/client_encoder_base.h | // Copyright (c) 2011 The WebM 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 project authors may
// be found in the AUTHORS file in the root of the source tree.
#ifndef CLIENT_ENCODER_CLIENT_ENCODER_BASE_H_
#define CLIENT_ENCODER_CLIENT_ENCODER_BASE_H_
#if _WIN32
#ifndef _WIN32_WINNT
# define _WIN32_WINNT 0x0501 // WinXP
#endif
#include <windows.h>
#ifdef ERROR
# undef ERROR // unused by webmlive/collides with glog.
#endif
#endif // _WIN32
#endif // CLIENT_ENCODER_CLIENT_ENCODER_BASE_H_
| // Copyright (c) 2011 The WebM 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 project authors may
// be found in the AUTHORS file in the root of the source tree.
#ifndef CLIENT_ENCODER_CLIENT_ENCODER_BASE_H_
#define CLIENT_ENCODER_CLIENT_ENCODER_BASE_H_
#if _WIN32
#ifndef _WIN32_WINNT
# define _WIN32_WINNT 0x0501 // WinXP
#endif
#include <windows.h>
#ifdef ERROR
# undef ERROR // unused by webmlive/collides with glog.
#endif
#endif // _WIN32
// App Version/Identity
namespace webmlive {
static const char* kClientName = "webmlive client encoder";
static const char* kClientVersion = "0.0.2.0";
} // namespace webmlive
#endif // CLIENT_ENCODER_CLIENT_ENCODER_BASE_H_
| Add client name and version constants. | Add client name and version constants.
Change-Id: Ic5aeafb91ebb9d04ca89679512d3088c612f84e1
| C | bsd-3-clause | kleopatra999/webm.webmlive,kalli123/webm.webmlive,gshORTON/webm.webmlive,reimaginemedia/webm.webmlive,ericmckean/webm.webmlive,kim42083/webm.webmlive,ericmckean/webm.webmlive,Acidburn0zzz/webm.webmlive,Maria1099/webm.webmlive,abwiz0086/webm.webmlive,kleopatra999/webm.webmlive,Acidburn0zzz/webm.webmlive,felipebetancur/webmlive,ericmckean/webm.webmlive,iniwf/webm.webmlive,Acidburn0zzz/webm.webmlive,kalli123/webm.webmlive,kalli123/webm.webmlive,gshORTON/webm.webmlive,reimaginemedia/webm.webmlive,Maria1099/webm.webmlive,felipebetancur/webmlive,webmproject/webmlive,matanbs/webm.webmlive,iniwf/webm.webmlive,Acidburn0zzz/webm.webmlive,gshORTON/webm.webmlive,matanbs/webm.webmlive,webmproject/webmlive,reimaginemedia/webm.webmlive,felipebetancur/webmlive,altogother/webm.webmlive,kleopatra999/webm.webmlive,kalli123/webm.webmlive,iniwf/webm.webmlive,Suvarna1488/webm.webmlive,reimaginemedia/webm.webmlive,webmproject/webmlive,iniwf/webm.webmlive,Suvarna1488/webm.webmlive,kim42083/webm.webmlive,abwiz0086/webm.webmlive,felipebetancur/webmlive,felipebetancur/webmlive,ericmckean/webm.webmlive,altogother/webm.webmlive,kim42083/webm.webmlive,altogother/webm.webmlive,gshORTON/webm.webmlive,kim42083/webm.webmlive,Maria1099/webm.webmlive,abwiz0086/webm.webmlive,abwiz0086/webm.webmlive,webmproject/webmlive,webmproject/webmlive,altogother/webm.webmlive,kleopatra999/webm.webmlive,Suvarna1488/webm.webmlive,matanbs/webm.webmlive,matanbs/webm.webmlive,Suvarna1488/webm.webmlive,Maria1099/webm.webmlive |
cb8d20c0988384fd67ed46bc6bdc5b5c3073c63a | src/x86/regname-x86.c | src/x86/regname-x86.c | #include "unwind_i.h"
static const char *regname[] =
{
"eax", "ebx", "ecx", "edx", "esi", "edi", "ebp", "eip", "esp"
};
const char *
unw_regname (unw_regnum_t reg)
{
if (reg < NELEMS (regname))
return regname[reg];
else
return "???";
}
| Use NELEMS() instead of open code. | (unw_regname): Use NELEMS() instead of open code.
(Logical change 1.39)
| C | mit | unkadoug/libunwind,atanasyan/libunwind,androidarmv6/android_external_libunwind,vtjnash/libunwind,mpercy/libunwind,maltek/platform_external_libunwind,atanasyan/libunwind,martyone/libunwind,frida/libunwind,jrmuizel/libunwind,fillexen/libunwind,android-ia/platform_external_libunwind,geekboxzone/lollipop_external_libunwind,bo-on-software/libunwind,cloudius-systems/libunwind,yuyichao/libunwind,androidarmv6/android_external_libunwind,tony/libunwind,wdv4758h/libunwind,maltek/platform_external_libunwind,wdv4758h/libunwind,tkelman/libunwind,tony/libunwind,evaautomation/libunwind,ehsan/libunwind,adsharma/libunwind,tkelman/libunwind,atanasyan/libunwind-android,jrmuizel/libunwind,SyndicateRogue/libunwind,libunwind/libunwind,ehsan/libunwind,project-zerus/libunwind,DroidSim/platform_external_libunwind,cms-externals/libunwind,dropbox/libunwind,Keno/libunwind,lat/libunwind,fdoray/libunwind,dreal-deps/libunwind,rantala/libunwind,lat/libunwind,geekboxzone/lollipop_external_libunwind,tkelman/libunwind,fillexen/libunwind,igprof/libunwind,lat/libunwind,wdv4758h/libunwind,evaautomation/libunwind,rogwfu/libunwind,olibc/libunwind,ehsan/libunwind,atanasyan/libunwind-android,unkadoug/libunwind,dagar/libunwind,rantala/libunwind,Chilledheart/libunwind,project-zerus/libunwind,atanasyan/libunwind-android,dreal-deps/libunwind,dagar/libunwind,0xlab/0xdroid-external_libunwind,martyone/libunwind,geekboxzone/mmallow_external_libunwind,mpercy/libunwind,frida/libunwind,joyent/libunwind,jrmuizel/libunwind,vtjnash/libunwind,dropbox/libunwind,pathscale/libunwind,yuyichao/libunwind,CyanogenMod/android_external_libunwind,bo-on-software/libunwind,tronical/libunwind,joyent/libunwind,maltek/platform_external_libunwind,project-zerus/libunwind,cloudius-systems/libunwind,rantala/libunwind,igprof/libunwind,fdoray/libunwind,bo-on-software/libunwind,frida/libunwind,adsharma/libunwind,martyone/libunwind,DroidSim/platform_external_libunwind,olibc/libunwind,atanasyan/libunwind,krytarowski/libunwind,zliu2014/libunwind-tilegx,djwatson/libunwind,vegard/libunwind,CyanogenMod/android_external_libunwind,0xlab/0xdroid-external_libunwind,SyndicateRogue/libunwind,Keno/libunwind,dreal-deps/libunwind,android-ia/platform_external_libunwind,dropbox/libunwind,krytarowski/libunwind,dagar/libunwind,CyanogenMod/android_external_libunwind,cms-externals/libunwind,vegard/libunwind,fillexen/libunwind,tony/libunwind,vegard/libunwind,adsharma/libunwind,zeldin/platform_external_libunwind,zeldin/platform_external_libunwind,rntz/libunwind,geekboxzone/lollipop_external_libunwind,tronical/libunwind,Keno/libunwind,zliu2014/libunwind-tilegx,evaautomation/libunwind,zeldin/platform_external_libunwind,djwatson/libunwind,DroidSim/platform_external_libunwind,djwatson/libunwind,geekboxzone/mmallow_external_libunwind,rogwfu/libunwind,rntz/libunwind,Chilledheart/libunwind,0xlab/0xdroid-external_libunwind,cms-externals/libunwind,fdoray/libunwind,rogwfu/libunwind,androidarmv6/android_external_libunwind,geekboxzone/mmallow_external_libunwind,mpercy/libunwind,unkadoug/libunwind,Chilledheart/libunwind,zliu2014/libunwind-tilegx,yuyichao/libunwind,rntz/libunwind,pathscale/libunwind,cloudius-systems/libunwind,vtjnash/libunwind,joyent/libunwind,android-ia/platform_external_libunwind,olibc/libunwind,pathscale/libunwind,krytarowski/libunwind,libunwind/libunwind,libunwind/libunwind,tronical/libunwind,SyndicateRogue/libunwind,igprof/libunwind |
|
3e94540ea6dba904c4025b2773a4f7b288ad4174 | polygon.h | polygon.h | /** Author : Paul TREHIOU & Victor SENE
* Date : November 2014
**/
/**
*
*
*/
typedef struct
{
float x;
float y;
}Point;
/**
* Function wich create a point with a specified abscisse and ordinate
* abscisse - real
* ordinate - real
* return a new point
*/
| /** Author : Paul TREHIOU & Victor SENE
* Date : November 2014
**/
/**
* Declaration Point structure
* x - real wich is the abscisse of the point
* y - real wich is the ordinate of the point
*/
typedef struct
{
float x;
float y;
}Point;
/**
* Function wich create a point with a specified abscisse and ordinate
* abscisse - real
* ordinate - real
* return a new point
*/
| Add comment for struc Point definition | Add comment for struc Point definition
| C | mit | UTBroM/GeometricLib |
0476f5a59b5285fa625089167ef3b373525060b8 | src/libreset/util/macros.h | src/libreset/util/macros.h | #ifndef __MACROS_H__
#define __MACROS_H__
/**
* @file macros.h
*
* This file contains simple helper macros
*/
/**
* @addtogroup internal_util_helper_macros "(internal) helper macros"
*
* This group contains helper macros for internal use only.
*
* @{
*/
/**
* Computes the maximum value of the two passed values
*
* @note Provides compile-time type checking by using temp variables before
* doing the comparison.
*
* @note Opens own scope, so the temp variables do not show up outside of the
* macro.
*/
#define MAX(x,y) \
({ __typeof__ (x) _x = (x); \
__typeof__ (y) _y = (y); \
_x > _y ? _x : _y; })
/**
* Computes the minimum value of the two passed values
*
* @note Provides compile-time type checking by using temp variables before
* doing the comparison.
*
* @note Opens own scope, so the temp variables do not show up outside of the
* macro.
*/
#define MIN(x,y) \
({ __typeof__ (x) _x = (x); \
__typeof__ (y) _y = (y); \
_x < _y ? _x : _y; })
/** @} */
#endif //__MACROS_H__
| #ifndef __MACROS_H__
#define __MACROS_H__
/**
* @file macros.h
*
* This file contains simple helper macros
*/
/**
* @addtogroup internal_util_helper_macros "(internal) helper macros"
*
* This group contains helper macros for internal use only.
*
* @{
*/
/**
* Computes the maximum value of the two passed values
*
* @note Provides compile-time type checking by using temp variables before
* doing the comparison.
*
* @note Opens own scope, so the temp variables do not show up outside of the
* macro.
*/
#define MAX(x,y) \
((__typeof__(x)) x > (__typeof__(x)) y ? \
(__typeof__(x)) x : (__typeof__(x)) y)
/**
* Computes the minimum value of the two passed values
*
* @note Provides compile-time type checking by using temp variables before
* doing the comparison.
*
* @note Opens own scope, so the temp variables do not show up outside of the
* macro.
*/
#define MIN(x,y) \
({ __typeof__ (x) _x = (x); \
__typeof__ (y) _y = (y); \
_x < _y ? _x : _y; })
/** @} */
#endif //__MACROS_H__
| Modify MAX(x,y) to not contain a scope | Modify MAX(x,y) to not contain a scope
| C | lgpl-2.1 | waysome/libreset,waysome/libreset |
83574cf0148dce723370e026f78e15c60ee94dec | 4_TimersBasicCountdown.c | 4_TimersBasicCountdown.c | /*
* main.c
*
* Created on: 2 Nov 2016
* Author: rafpe
*/
#include "stm32f4xx.h"
#include "stm32f407xx.h"
int main(void)
{
volatile uint32_t delay;
RCC->AHB1ENR |= RCC_AHB1ENR_GPIODEN | RCC_AHB1ENR_GPIOCEN; // enable the clock to GPIOD & GPIOC
RCC->APB2ENR |= RCC_APB2ENR_SYSCFGEN | RCC_APB2ENR_TIM1EN; // enable SYSCFG for external interrupts & TIM1
__DSB(); // Data Synchronization Barrier
TIM1->PSC = 15999; // Prescaler we want to be using 16Mhz/16000 = 1000Hz = 1ms
TIM1->ARR = 499; // How many values we will count
TIM1->DIER = TIM_DIER_UIE; // Update Event Interrupt
TIM1->CR1 = TIM_CR1_CEN; // Enable & Start timer
NVIC_EnableIRQ(TIM1_UP_TIM10_IRQn); // Set up interrupt handler
GPIOD->MODER = (1 << 26); // PIND to output mode
while (1)
{
} /* while */
} /* main */
void TIM1_UP_TIM10_IRQHandler(void)
{
if (TIM1->SR & TIM_SR_UIF)
{
GPIOD->ODR ^= (1 << 13); // Blink
TIM1->SR = ~TIM_SR_UIF; // clear flag - rc_w0 => Read Clear Write 0
}
}
| Add basis use of timers | Add basis use of timers
| C | apache-2.0 | RafPe/STM32F407VGTx-examples |
|
bfdefc0f025657cb3ce4fb90044809b9456d1e5f | src/vbox/vbox_V5_1.c | src/vbox/vbox_V5_1.c | /** @file vbox_V5_1.c
* C file to include support for multiple versions of VirtualBox
* at runtime.
*/
#include <config.h>
/** The API Version */
#define VBOX_API_VERSION 5001000
/** Version specific prefix. */
#define NAME(name) vbox51##name
#include "vbox_tmpl.c"
| Add vbox 5.1 driver file | Add vbox 5.1 driver file
Signed-off-by: Daniel P. Berrange <[email protected]>
| C | lgpl-2.1 | olafhering/libvirt,jfehlig/libvirt,zippy2/libvirt,crobinso/libvirt,taget/libvirt,andreabolognani/libvirt,nertpinx/libvirt,VenkatDatta/libvirt,andreabolognani/libvirt,nertpinx/libvirt,jardasgit/libvirt,andreabolognani/libvirt,datto/libvirt,andreabolognani/libvirt,nertpinx/libvirt,jardasgit/libvirt,fabianfreyer/libvirt,olafhering/libvirt,jfehlig/libvirt,libvirt/libvirt,fabianfreyer/libvirt,olafhering/libvirt,eskultety/libvirt,jfehlig/libvirt,andreabolognani/libvirt,datto/libvirt,eskultety/libvirt,jardasgit/libvirt,crobinso/libvirt,taget/libvirt,taget/libvirt,fabianfreyer/libvirt,fabianfreyer/libvirt,VenkatDatta/libvirt,zippy2/libvirt,eskultety/libvirt,libvirt/libvirt,datto/libvirt,VenkatDatta/libvirt,jfehlig/libvirt,datto/libvirt,zippy2/libvirt,datto/libvirt,VenkatDatta/libvirt,libvirt/libvirt,crobinso/libvirt,olafhering/libvirt,eskultety/libvirt,zippy2/libvirt,taget/libvirt,jardasgit/libvirt,libvirt/libvirt,VenkatDatta/libvirt,eskultety/libvirt,crobinso/libvirt,nertpinx/libvirt,jardasgit/libvirt,fabianfreyer/libvirt,nertpinx/libvirt,taget/libvirt |
|
c7611e7a0d2901ce05589c4815ca0f88c9788feb | src/utf.h | src/utf.h | /*
* Copyright (c) 2009, 2010 Petri Lehtinen <[email protected]>
*
* Jansson is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#ifndef UTF_H
#define UTF_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef HAVE_INTTYPES_H
/* inttypes.h includes stdint.h in a standard environment, so there's
no need to include stdint.h separately. If inttypes.h doesn't define
int32_t, it's defined in config.h. */
#include <inttypes.h>
#else
#ifdef _WIN32
typedef int int32_t;
#endif
#endif
int utf8_encode(int codepoint, char *buffer, int *size);
int utf8_check_first(char byte);
int utf8_check_full(const char *buffer, int size, int32_t *codepoint);
const char *utf8_iterate(const char *buffer, int32_t *codepoint);
int utf8_check_string(const char *string, int length);
#endif
| /*
* Copyright (c) 2009, 2010 Petri Lehtinen <[email protected]>
*
* Jansson is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#ifndef UTF_H
#define UTF_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#ifdef HAVE_INTTYPES_H
/* inttypes.h includes stdint.h in a standard environment, so there's
no need to include stdint.h separately. If inttypes.h doesn't define
int32_t, it's defined in config.h. */
#include <inttypes.h>
#endif /* HAVE_INTTYPES_H */
#else /* !HAVE_CONFIG_H */
#ifdef _WIN32
typedef int int32_t;
#else /* !_WIN32 */
/* Assume a standard environment */
#include <inttypes.h>
#endif /* _WIN32 */
#endif /* HAVE_CONFIG_H */
int utf8_encode(int codepoint, char *buffer, int *size);
int utf8_check_first(char byte);
int utf8_check_full(const char *buffer, int size, int32_t *codepoint);
const char *utf8_iterate(const char *buffer, int32_t *codepoint);
int utf8_check_string(const char *string, int length);
#endif
| Make int32_t available when the configure script is not used | Make int32_t available when the configure script is not used
| C | mit | markalanj/jansson,yahoo/ygloo-external-jansson,Mephistophiles/jansson,rogerz/jansson,chrullrich/jansson,rogerz/jansson,akheron/jansson,yahoo/ygloo-external-jansson,akheron/jansson-debian,slackner/jansson,attie/jansson,firepick-delta/FireSight,npmccallum/jansson,Mephistophiles/jansson,bstarynk/jansson,chrullrich/jansson,firepick1/FireSight,OlehKulykov/jansson,firepick1/jansson,attie/jansson,yahoo/ygloo-external-jansson,rogerz/jansson,markalanj/jansson,simonfojtu/FireSight,rogerz/jansson,OlehKulykov/jansson,liu3tao/jansson,AmesianX/jansson,wirebirdlabs/featherweight-jansson,akheron/jansson,simonfojtu/FireSight,janetuk/jansson,slackner/jansson,janetuk/jansson,akheron/jansson-debian,firepick-delta/FireSight,gameclosure/jansson,gameclosure/jansson,liu3tao/jansson,akheron/jansson,simonfojtu/FireSight,janetuk/jansson,yahoo/ygloo-external-jansson,gameclosure/jansson,akheron/jansson-debian,AmesianX/jansson,janetuk/jansson,firepick1/jansson,firepick1/FireSight,npmccallum/jansson,wirebirdlabs/featherweight-jansson,markalanj/jansson,firepick1/jansson,bstarynk/jansson,Vorne/jansson,firepick-delta/FireSight,firepick1/FireSight,akheron/jansson-debian,Vorne/jansson,bstarynk/jansson |
d37ccd40dffd64fcad614f152f33ceb755112484 | func_sim/func_memory/func_memory.h | func_sim/func_memory/func_memory.h | /**
* func_memory.h - Header of module implementing the concept of
* programer-visible memory space accesing via memory address.
* @author Alexander Titov <[email protected]>
* Copyright 2012 uArchSim iLab project
*/
// protection from multi-include
#ifndef FUNC_MEMORY__FUNC_MEMORY_H
#define FUNC_MEMORY__FUNC_MEMORY_H
// Generic C++
#include <string>
#include <map>
// uArchSim modules
#include <types.h>
#include <elf_parser.h>
using namespace std;
class FuncMemory
{
map<uint64 /*start addr*/, ElfSection *> sections;
typedef map<uint64, ElfSection *>::iterator Iter;
typedef map<uint64, ElfSection *>::const_iterator ConstIter;
// You could not create the object
// using this default constructor
FuncMemory(){}
public:
FuncMemory( const char* executable_file_name,
const char* const elf_sections_names[],
short num_of_elf_sections);
virtual ~FuncMemory();
uint64 read( uint64 addr, short num_of_bytes = 4) const;
string dump( string indent = "") const;
};
#endif // #ifndef FUNC_MEMORY__FUNC_MEMORY_H
| /**
* func_memory.h - Header of module implementing the concept of
* programer-visible memory space accesing via memory address.
* @author Alexander Titov <[email protected]>
* Copyright 2012 uArchSim iLab project
*/
// protection from multi-include
#ifndef FUNC_MEMORY__FUNC_MEMORY_H
#define FUNC_MEMORY__FUNC_MEMORY_H
// Generic C++
#include <string>
// uArchSim modules
#include <types.h>
#include <elf_parser.h>
using namespace std;
class FuncMemory
{
// You could not create the object
// using this default constructor
FuncMemory(){}
public:
FuncMemory( const char* executable_file_name,
const char* const elf_sections_names[],
short num_of_elf_sections);
virtual ~FuncMemory();
uint64 read( uint64 addr, short num_of_bytes = 4) const;
string dump( string indent = "") const;
};
#endif // #ifndef FUNC_MEMORY__FUNC_MEMORY_H
| Delete redundant staff from FuncMemory class | [trunk] Delete redundant staff from FuncMemory class | C | mit | Nagapetyan/mipt-mips-2015,MIPT-ILab/mipt-mips,MIPT-ILab/mipt-mips-2015,RomanZavodskikh/mipt-mips-2015,grigoriy-chirkov/mipt-mips-2015,MIPT-ILab/mipt-mips,RomanZavodskikh/mipt-mips-2015,gkorepanov/mipt-mips,RomanZavodskikh/mipt-mips-2015,grigoriy-chirkov/mipt-mips-2015,MIPT-ILab/mipt-mips-2015,RomanZavodskikh/mipt-mips-2015,MIPT-ILab/mipt-mips-2015,Nagapetyan/mipt-mips-2015,Nagapetyan/mipt-mips-2015,Nagapetyan/mipt-mips-2015,grigoriy-chirkov/mipt-mips-2015,MIPT-ILab/mipt-mips-2015,grigoriy-chirkov/mipt-mips-2015 |
1a064e381c2f9978dbdb7103a6d9faed5e5f3e32 | StoreSim/RegisterQueue.h | StoreSim/RegisterQueue.h | #pragma once
class RegisterQueue{
private:
public:
int numberOfCustomers;
int maxLineLength;
};
| #pragma once
#include "Customer.h"
class RegisterQueue{
private:
struct Node {
Node *next; // After previous sequentially
Node *previous; // First in line
Customer value;
// @next = NULL, this is a shorthand constructor to make NULL the default
Node(Customer value, Node *previous = nullptr) {
this->previous = previous;
this->value = value;
this->next = nullptr;
}
};
double minToPay;
double minPerItem;
Node *front;
Node *rear;
public:
int numberOfCustomers;
int maxLineLength;
RegisterQueue(double minToPay, double minPerItem) {
front, rear = nullptr;
maxLineLength = 8;
numberOfCustomers = 0;
}
~RegisterQueue() {
while (front) {
Node *next = front->next;
delete(front);
front = next;
}
}
void enqueue(Customer cust) {
if(numberOfCustomers >= maxLineLength)
throw("FullLineException");
Node next = new Node(cust, rear);
if(!numberOfCustomers)
front = next;
if(rear)
rear->next = next;
rear = next;
numberOfCustomers++;
}
Customer dequeue() {
Customer person = front->value;
front = front->next;
delete(front->previous);
front->previous = nullptr;
numberOfCustomers--;
return person;
}
};
| Create "checkout lines" as DLinkedList | Create "checkout lines" as DLinkedList
| C | mit | GPKyte/CSCI220,GPKyte/CSCI220 |
31a6e50a5f20b77c82cf2024ef8f0c8f586973b9 | TesseractOCR/Tesseract.h | TesseractOCR/Tesseract.h | //
// Tesseract.h
// Tesseract
//
// Created by Loïs Di Qual on 24/09/12.
// Copyright (c) 2012 Loïs Di Qual.
// Under MIT License. See 'LICENCE' for more informations.
//
#import <UIKit/UIKit.h>
@class Tesseract;
@protocol TesseractDelegate <NSObject>
@optional
- (BOOL)shouldCancelImageRecognitionForTesseract:(Tesseract*)tesseract;
@end
@interface Tesseract : NSObject
+ (NSString *)version;
@property (nonatomic, strong) NSString* language;
@property (nonatomic, strong) UIImage *image;
@property (nonatomic, assign) CGRect rect;
@property (nonatomic, readonly) short progress; // from 0 to 100
@property (nonatomic, readonly) NSString *recognizedText;
@property (nonatomic, weak) id<TesseractDelegate> delegate;
///
/// @warning deprecated method!
/// @deprecated - (id)initWithDataPath:(NSString *)dataPath language:(NSString *)language is deprecated. Please use - (id)initWithLanguage:(NSString*)language;
///
- (id)initWithDataPath:(NSString *)dataPath language:(NSString *)language DEPRECATED_ATTRIBUTE;
- (id)initWithLanguage:(NSString*)language;
- (void)setVariableValue:(NSString *)value forKey:(NSString *)key;
- (BOOL)recognize;
- (void)clear;
@end
| //
// Tesseract.h
// Tesseract
//
// Created by Loïs Di Qual on 24/09/12.
// Copyright (c) 2012 Loïs Di Qual.
// Under MIT License. See 'LICENCE' for more informations.
//
#import <UIKit/UIKit.h>
@class Tesseract;
@protocol TesseractDelegate <NSObject>
@optional
- (BOOL)shouldCancelImageRecognitionForTesseract:(Tesseract*)tesseract;
@end
@interface Tesseract : NSObject
+ (NSString *)version;
@property (nonatomic, strong) NSString* language;
@property (nonatomic, strong) UIImage *image;
@property (nonatomic, assign) CGRect rect;
@property (nonatomic, readonly) short progress; // from 0 to 100
@property (nonatomic, readonly) NSString *recognizedText;
@property (nonatomic, weak) id<TesseractDelegate> delegate;
///
/// @warning deprecated method!
/// @deprecated - (id)initWithDataPath:(NSString *)dataPath language:(NSString *)language is deprecated. Please use - (id)initWithLanguage:(NSString*)language;
///
- (id)initWithDataPath:(NSString *)dataPath language:(NSString *)language DEPRECATED_ATTRIBUTE;
- (id)initWithLanguage:(NSString*)language;
- (void)setVariableValue:(NSString *)value forKey:(NSString *)key;
- (BOOL)recognize;
///
/// @warning deprecated method!
/// @deprecated - (void)clear is deprecated. The memory will be freed in dealloc added by ARC;
///
- (void)clear DEPRECATED_ATTRIBUTE;
@end
| Add a deprecated warning for - (void)clear. | Add a deprecated warning for - (void)clear.
| C | mit | gank0326/Tesseract,lampkicking/Tesseract-OCR-iOS,zyggit/Tesseract-OCR-iOS,hejunbinlan/Tesseract-OCR-iOS,DanielShum/Tesseract-OCR-iOS,doo/Tesseract-OCR-iOS,StratAguilar/Tesseract-OCR-iOS,gank0326/Tesseract,lampkicking/Tesseract-OCR-iOS,ws233/Tesseract-OCR-iOS,Jaelene/Tesseract-OCR-iOS,gali8/Tesseract-OCR-iOS,cotsog/Tesseract-OCR-iOS,zilaiyedaren/Tesseract-OCR-iOS,jonesgithub/Tesseract-OCR-iOS,Richardlihui/Tesseract-OCR-iOS,amikey/Tesseract-OCR-iOS,ws233/Tesseract-OCR-iOS,zyggit/Tesseract-OCR-iOS,DanielShum/Tesseract-OCR-iOS,StratAguilar/Tesseract-OCR-iOS,cotsog/Tesseract-OCR-iOS,zilaiyedaren/Tesseract-OCR-iOS,zilaiyedaren/Tesseract-OCR-iOS,Jaelene/Tesseract-OCR-iOS,cookov/Tesseract-OCR-iOS,ryhor/Tesseract-OCR-iOS,lioonline/Tesseract-OCR-iOS,ninguchi/Tesseract-OCR-iOS,gali8/Tesseract-OCR-iOS,hoanganh6491/Tesseract-OCR-iOS,DanielShum/Tesseract-OCR-iOS,amikey/Tesseract-OCR-iOS,gali8/Tesseract-OCR-iOS,yangboz/Tesseract-OCR-iOS,lioonline/Tesseract-OCR-iOS,jeremiahyan/Tesseract-OCR-iOS,lioonline/Tesseract-OCR-iOS,zilaiyedaren/Tesseract-OCR-iOS,wenbo001/Tesseract-OCR-iOS,ChandlerNguyen/Tesseract-OCR-iOS,ryhor/Tesseract-OCR-iOS,cookov/Tesseract-OCR-iOS,lioonline/Tesseract-OCR-iOS,lioonline/Tesseract-OCR-iOS,IncredibleDucky/Tesseract-OCR-iOS,StratAguilar/Tesseract-OCR-iOS,hejunbinlan/Tesseract-OCR-iOS,zilaiyedaren/Tesseract-OCR-iOS,hejunbinlan/Tesseract-OCR-iOS,ChandlerNguyen/Tesseract-OCR-iOS,cookov/Tesseract-OCR-iOS,hoanganh6491/Tesseract-OCR-iOS,DanielShum/Tesseract-OCR-iOS,StratAguilar/Tesseract-OCR-iOS,doo/Tesseract-OCR-iOS,amikey/Tesseract-OCR-iOS,jeremiahyan/Tesseract-OCR-iOS,ChandlerNguyen/Tesseract-OCR-iOS,hoanganh6491/Tesseract-OCR-iOS,lampkicking/Tesseract-OCR-iOS,Richardlihui/Tesseract-OCR-iOS,jonesgithub/Tesseract-OCR-iOS,ChandlerNguyen/Tesseract-OCR-iOS,ryhor/Tesseract-OCR-iOS,Jaelene/Tesseract-OCR-iOS,hoanganh6491/Tesseract-OCR-iOS,jonesgithub/Tesseract-OCR-iOS,ChandlerNguyen/Tesseract-OCR-iOS,cookov/Tesseract-OCR-iOS,yangboz/Tesseract-OCR-iOS,zyggit/Tesseract-OCR-iOS,yangboz/Tesseract-OCR-iOS,hoanganh6491/Tesseract-OCR-iOS,gali8/Tesseract-OCR-iOS,zyggit/Tesseract-OCR-iOS,jonesgithub/Tesseract-OCR-iOS,lampkicking/Tesseract-OCR-iOS,ws233/Tesseract-OCR-iOS,cotsog/Tesseract-OCR-iOS,jonesgithub/Tesseract-OCR-iOS,jeremiahyan/Tesseract-OCR-iOS,IncredibleDucky/Tesseract-OCR-iOS,Jaelene/Tesseract-OCR-iOS,Jaelene/Tesseract-OCR-iOS,IncredibleDucky/Tesseract-OCR-iOS,gank0326/Tesseract,DanielShum/Tesseract-OCR-iOS,ninguchi/Tesseract-OCR-iOS,gank0326/Tesseract,doo/Tesseract-OCR-iOS,doo/Tesseract-OCR-iOS,ws233/Tesseract-OCR-iOS,doo/Tesseract-OCR-iOS,wenbo001/Tesseract-OCR-iOS,cookov/Tesseract-OCR-iOS,ninguchi/Tesseract-OCR-iOS,jeremiahyan/Tesseract-OCR-iOS,wenbo001/Tesseract-OCR-iOS,ws233/Tesseract-OCR-iOS,yangboz/Tesseract-OCR-iOS,yangboz/Tesseract-OCR-iOS,jeremiahyan/Tesseract-OCR-iOS,ninguchi/Tesseract-OCR-iOS,IncredibleDucky/Tesseract-OCR-iOS,amikey/Tesseract-OCR-iOS,StratAguilar/Tesseract-OCR-iOS,lampkicking/Tesseract-OCR-iOS,IncredibleDucky/Tesseract-OCR-iOS,cotsog/Tesseract-OCR-iOS,hejunbinlan/Tesseract-OCR-iOS,ninguchi/Tesseract-OCR-iOS,cotsog/Tesseract-OCR-iOS,wenbo001/Tesseract-OCR-iOS,doo/Tesseract-OCR-iOS,amikey/Tesseract-OCR-iOS,zyggit/Tesseract-OCR-iOS,wenbo001/Tesseract-OCR-iOS,Richardlihui/Tesseract-OCR-iOS,gank0326/Tesseract,ryhor/Tesseract-OCR-iOS,hejunbinlan/Tesseract-OCR-iOS,Richardlihui/Tesseract-OCR-iOS,gali8/Tesseract-OCR-iOS,Richardlihui/Tesseract-OCR-iOS,doo/Tesseract-OCR-iOS,ryhor/Tesseract-OCR-iOS |
082418d73b3473c0842f2664a69b4d731b5cf0e9 | netarray.h | netarray.h | #ifndef __netarray_H
#define __netarray_H
/*
* Copyright (c) 2012 Stephen Williams ([email protected])
* Copyright CERN 2012 / Stephen Williams ([email protected])
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
* General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
# include "LineInfo.h"
# include <vector>
class netarray_t : public LineInfo {
public:
explicit netarray_t(const std::list<netrange_t>&packed);
~netarray_t();
unsigned packed_width() const;
private:
std::list<netrange_t> packed_dims_;
};
inline netarray_t::netarray_t(const std::list<netrange_t>&packed)
: packed_dims_(packed)
{
}
netarray_t::~netarray_t()
{
}
#endif
| Add missing netdarray.h header file. | Add missing netdarray.h header file.
| C | lgpl-2.1 | CastMi/iverilog,CastMi/iverilog,themperek/iverilog,themperek/iverilog,themperek/iverilog,CastMi/iverilog |
|
e524e7ee97dcc87aee0616328e9be64d1c3daf57 | The_Eye/inc/Biquad_Filter.h | The_Eye/inc/Biquad_Filter.h | /*
* Biquad_Filter.h
*
* Created on: 24. 6. 2017
* Author: michp
*/
#ifndef BIQUAD_FILTER_H_
#define BIQUAD_FILTER_H_
#include <cmath>
namespace flyhero {
// Many thanks to http://www.earlevel.com/main/2012/11/26/biquad-c-source-code/
class Biquad_Filter {
private:
const double PI = 3.14159265358979323846;
float a0, a1, a2;
float b1, b2;
float z1, z2;
public:
enum Filter_Type { FILTER_LOW_PASS, FILTER_NOTCH };
Biquad_Filter(Filter_Type type, float sample_frequency, float cut_frequency);
inline float Apply_Filter(float value);
};
// 10 us
float Biquad_Filter::Apply_Filter(float value) {
float ret = value * this->a0 + this->z1;
this->z1 = value * this->a1 + this->z2 - this->b1 * ret;
this->z2 = value * this->a2 - this->b2 * ret;
return ret;
}
} /* namespace flyhero */
#endif /* BIQUAD_FILTER_H_ */
| /*
* Biquad_Filter.h
*
* Created on: 24. 6. 2017
* Author: michp
*/
#ifndef BIQUAD_FILTER_H_
#define BIQUAD_FILTER_H_
#include <cmath>
namespace flyhero {
// Many thanks to http://www.earlevel.com/main/2012/11/26/biquad-c-source-code/
class Biquad_Filter {
private:
const double PI = 3.14159265358979323846;
float a0, a1, a2;
float b1, b2;
float z1, z2;
public:
enum Filter_Type { FILTER_LOW_PASS, FILTER_NOTCH };
Biquad_Filter(Filter_Type type, float sample_frequency, float cut_frequency);
inline float Apply_Filter(float value);
};
// 10 us
// https://en.wikipedia.org/wiki/Digital_biquad_filter - Transposed direct forms
float Biquad_Filter::Apply_Filter(float value) {
float ret = value * this->a0 + this->z1;
this->z1 = value * this->a1 + this->z2 - this->b1 * ret;
this->z2 = value * this->a2 - this->b2 * ret;
return ret;
}
} /* namespace flyhero */
#endif /* BIQUAD_FILTER_H_ */
| Add source of formulas used in biquad filters | Add source of formulas used in biquad filters | C | mit | michprev/flyhero-esp32,michprev/flyhero-esp32 |
49444c722a3915e3eba1d478432f10fb32742a22 | src/test/call2.c | src/test/call2.c | #include <stdio.h>
int assertCount, errorCount;
void assertEq(int x, int y){
assertCount++; if(x == y) return; errorCount++;
printf("ASSERTION %d FAILED: %d does not equal %d\n", assertCount, x, y);
}
void endTest(){
if(errorCount > 0) printf("TEST FAILED: Encountered %d assertion error%s out of %d!", errorCount, errorCount==1?"":"s", assertCount);
else printf("TEST SUCCESSFUL: All %d assertions passed!", assertCount);
}
int a = 5;
int f(int b) {
return a * b;
}
int main() {
assertEq(f(4), 20);
a = 3;
assertEq(f(4), 12);
endTest();
}
| Test function that uses global value | Test function that uses global value
| C | mit | Sibert-Aerts/c2p,Sibert-Aerts/c2p,Sibert-Aerts/c2p |
|
597f26ce83a9cf540db9b4af20b34066c931fdf1 | src/mi-init.c | src/mi-init.c | /* libunwind - a platform-independent unwind library
Copyright (C) 2002-2003 Hewlett-Packard Co
Contributed by David Mosberger-Tang <[email protected]>
This file is part of libunwind.
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, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
#include <stdlib.h>
#include "internal.h"
#include "tdep.h"
sigset_t unwi_full_sigmask;
HIDDEN void
mi_init (void)
{
extern void unw_cursor_t_is_too_small (void);
#if UNW_DEBUG
const char *str = getenv ("UNW_DEBUG_LEVEL");
if (str)
tdep_debug_level = atoi (str);
#endif
if (sizeof (struct cursor) > sizeof (unw_cursor_t))
unw_cursor_t_is_too_small ();
sigfillset (&unwi_full_sigmask);
}
| Include "tdep.h". (unwi_full_sigmask): Define here. (mi_init): Initialize unwi_full_sigmask. | Include "tdep.h".
(unwi_full_sigmask): Define here.
(mi_init): Initialize unwi_full_sigmask.
(Logical change 1.59)
| C | mit | olibc/libunwind,atanasyan/libunwind-android,Chilledheart/libunwind,libunwind/libunwind,joyent/libunwind,rntz/libunwind,tronical/libunwind,atanasyan/libunwind,libunwind/libunwind,pathscale/libunwind,geekboxzone/lollipop_external_libunwind,atanasyan/libunwind-android,rantala/libunwind,Keno/libunwind,jrmuizel/libunwind,fillexen/libunwind,rntz/libunwind,krytarowski/libunwind,Keno/libunwind,igprof/libunwind,androidarmv6/android_external_libunwind,0xlab/0xdroid-external_libunwind,frida/libunwind,cms-externals/libunwind,zeldin/platform_external_libunwind,fillexen/libunwind,pathscale/libunwind,libunwind/libunwind,CyanogenMod/android_external_libunwind,wdv4758h/libunwind,dagar/libunwind,martyone/libunwind,android-ia/platform_external_libunwind,zliu2014/libunwind-tilegx,rogwfu/libunwind,lat/libunwind,zliu2014/libunwind-tilegx,cloudius-systems/libunwind,project-zerus/libunwind,yuyichao/libunwind,martyone/libunwind,frida/libunwind,ehsan/libunwind,tkelman/libunwind,igprof/libunwind,dreal-deps/libunwind,djwatson/libunwind,SyndicateRogue/libunwind,atanasyan/libunwind,lat/libunwind,dagar/libunwind,tkelman/libunwind,evaautomation/libunwind,adsharma/libunwind,tony/libunwind,joyent/libunwind,CyanogenMod/android_external_libunwind,androidarmv6/android_external_libunwind,ehsan/libunwind,project-zerus/libunwind,vegard/libunwind,geekboxzone/lollipop_external_libunwind,unkadoug/libunwind,olibc/libunwind,vegard/libunwind,yuyichao/libunwind,Chilledheart/libunwind,djwatson/libunwind,vtjnash/libunwind,SyndicateRogue/libunwind,cloudius-systems/libunwind,geekboxzone/mmallow_external_libunwind,lat/libunwind,geekboxzone/lollipop_external_libunwind,dreal-deps/libunwind,mpercy/libunwind,fillexen/libunwind,fdoray/libunwind,mpercy/libunwind,DroidSim/platform_external_libunwind,atanasyan/libunwind,olibc/libunwind,dropbox/libunwind,pathscale/libunwind,dagar/libunwind,geekboxzone/mmallow_external_libunwind,tony/libunwind,vtjnash/libunwind,bo-on-software/libunwind,igprof/libunwind,androidarmv6/android_external_libunwind,0xlab/0xdroid-external_libunwind,Keno/libunwind,dropbox/libunwind,cms-externals/libunwind,atanasyan/libunwind-android,rntz/libunwind,evaautomation/libunwind,adsharma/libunwind,SyndicateRogue/libunwind,djwatson/libunwind,krytarowski/libunwind,jrmuizel/libunwind,android-ia/platform_external_libunwind,maltek/platform_external_libunwind,jrmuizel/libunwind,wdv4758h/libunwind,cloudius-systems/libunwind,fdoray/libunwind,bo-on-software/libunwind,cms-externals/libunwind,CyanogenMod/android_external_libunwind,joyent/libunwind,mpercy/libunwind,unkadoug/libunwind,tkelman/libunwind,zeldin/platform_external_libunwind,DroidSim/platform_external_libunwind,ehsan/libunwind,tronical/libunwind,rantala/libunwind,frida/libunwind,rogwfu/libunwind,dropbox/libunwind,rogwfu/libunwind,martyone/libunwind,0xlab/0xdroid-external_libunwind,vtjnash/libunwind,tronical/libunwind,rantala/libunwind,DroidSim/platform_external_libunwind,maltek/platform_external_libunwind,tony/libunwind,maltek/platform_external_libunwind,geekboxzone/mmallow_external_libunwind,vegard/libunwind,zeldin/platform_external_libunwind,unkadoug/libunwind,adsharma/libunwind,Chilledheart/libunwind,yuyichao/libunwind,krytarowski/libunwind,fdoray/libunwind,dreal-deps/libunwind,android-ia/platform_external_libunwind,evaautomation/libunwind,project-zerus/libunwind,wdv4758h/libunwind,zliu2014/libunwind-tilegx,bo-on-software/libunwind |
|
e5e5f7dff34caa4772119ec04b7356abd25fde95 | src/transfer_function_parser.h | src/transfer_function_parser.h | #ifndef SRC_TRANSFER_FUNCTION_PARSER_H_
#define SRC_TRANSFER_FUNCTION_PARSER_H_
#include <QGradient>
#include <QString>
#include <QXmlDefaultHandler>
/**
* \brief
*
*
*/
class QGradientContentHandler;
class TransferFunctionParser
{
public:
TransferFunctionParser(QString path);
QGradient *parse();
private:
QXmlSimpleReader *xmlReader;
QXmlInputSource *source;
QGradientContentHandler *handler;
};
#endif // SRC_TRANSFER_FUNCTION_PARSER_H_
| #ifndef SRC_TRANSFER_FUNCTION_PARSER_H_
#define SRC_TRANSFER_FUNCTION_PARSER_H_
#include <QGradient>
#include <QString>
#include <QXmlDefaultHandler>
class QGradientContentHandler;
/**
* \brief Parser for XML representation of a QGradient used as transfer function
*
*/
class TransferFunctionParser
{
public:
TransferFunctionParser(QString path);
QGradient *parse();
private:
QXmlSimpleReader *xmlReader;
QXmlInputSource *source;
QGradientContentHandler *handler;
};
#endif // SRC_TRANSFER_FUNCTION_PARSER_H_
| Add brief description for TransferFunctionParser. | Add brief description for TransferFunctionParser.
| C | mit | Christof/tf-parser |
af2944ac5488f8d7e5f109f8a55f98d072ec377c | arch/mips/pci/pci-ev64120.c | arch/mips/pci/pci-ev64120.c | #include <linux/pci.h>
int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
{
int irq;
if (!pin)
return 0;
irq = allocate_irqno();
if (irq < 0)
return 0;
return irq;
}
/* Do platform specific device initialization at pci_enable_device() time */
int pcibios_plat_dev_init(struct pci_dev *dev)
{
return 0;
}
| #include <linux/pci.h>
#include <asm/irq.h>
int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
{
int irq;
if (!pin)
return 0;
irq = allocate_irqno();
if (irq < 0)
return 0;
return irq;
}
/* Do platform specific device initialization at pci_enable_device() time */
int pcibios_plat_dev_init(struct pci_dev *dev)
{
return 0;
}
| Include <asm/irq.h> to fix warning. | [MIPS] EV64120: Include <asm/irq.h> to fix warning.
arch/mips/pci/pci-ev64120.c:10: warning: implicit declaration of function 'allocate_irqno'
Signed-off-by: Ralf Baechle <[email protected]>
| C | mit | KristFoundation/Programs,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs |
e5bda7a4c107e91faa87657611bbd9ef174fadce | templates/c.c | templates/c.c | #include <stdio.h>
int
main(int argc, char const *argv[])
{
int answer = 0;
printf("%d\n");
return 0;
}
| #include <stdio.h>
int
main(int argc, char const *argv[])
{
int answer = 0;
printf("%d\n", answer);
return 0;
}
| Fix mistake in C template | Fix mistake in C template
| C | mit | yaworsw/euler-manager,yaworsw/euler-manager,yaworsw/euler-manager,yaworsw/euler-manager,yaworsw/euler-manager,yaworsw/euler-manager,yaworsw/euler-manager |
10698eca9f9890e28f60f6a417951e23d65ebfb6 | src/lib/serialize/str_join.h | src/lib/serialize/str_join.h | /* This code is subject to the terms of the Mozilla Public License, v.2.0. http://mozilla.org/MPL/2.0/. */
#pragma once
#include <sstream>
namespace turbo {
namespace str
{
template <class Iter>
std::string join(const Iter& start, const Iter& end, char delim=' ')
{
std::stringstream ss;
Iter it = start;
if (it != end)
ss << *it++;
for (; it != end; ++it)
ss << delim << *it;
return ss.str();
}
template <class Type>
std::string join(const Type& container, char delim=' ')
{
return join(container.begin(), container.end(), delim);
}
}
}// namespace turbo
| /* This code is subject to the terms of the Mozilla Public License, v.2.0. http://mozilla.org/MPL/2.0/. */
#pragma once
#include <sstream>
namespace turbo {
namespace str
{
template <class Iter>
inline std::string join(const Iter& start, const Iter& end, char delim=' ')
{
std::stringstream ss;
Iter it = start;
if (it != end)
ss << *it++;
for (; it != end; ++it)
ss << delim << *it;
return ss.str();
}
template <class Type>
inline std::string join(const Type& container, char delim=' ')
{
return join(container.begin(), container.end(), delim);
}
}
}// namespace turbo
| Make this explicitly inline for consistency's sake. | Make this explicitly inline for consistency's sake.
| C | mpl-2.0 | sz3/turbolib,sz3/turbolib,sz3/turbolib,sz3/turbolib |
831a01c04c02b61998d3adadf5db00eb7829427b | src/qt-ui/basicui.h | src/qt-ui/basicui.h |
#ifndef BASICUI_H_
#define BASICUI_H_
#include <QMainWindow>
#include "QsLog.h"
#include "mainwidget.h"
#include "workspace.h"
#include "uicontroller.h"
class BasicUi: public QMainWindow {
Q_OBJECT
public:
BasicUi(UiController * controller, QWidget *parent = 0);
void setWorkspace(Workspace *);
void setUiController(UiController *);
~BasicUi(){
if(NULL != mainWidget)
delete mainWidget;
}
private:
MainWidget *mainWidget;
// QGridLayout *layout;
// QPushButton *editModeButton;
// EditWidget *editWidget;
// PlayWidget *playWidget;
// bool editMode;
// Workspace *wsp;
// Controller *controller;
};
#endif
|
#ifndef BASICUI_H_
#define BASICUI_H_
#include <QMainWindow>
#include "QsLog.h"
#include "mainwidget.h"
#include "workspace.h"
#include "uicontroller.h"
class BasicUi: public QMainWindow {
Q_OBJECT
public:
BasicUi(UiController * controller, QWidget *parent = 0);
void setWorkspace(Workspace *);
void setUiController(UiController *);
private:
MainWidget *mainWidget;
// QGridLayout *layout;
// QPushButton *editModeButton;
// EditWidget *editWidget;
// PlayWidget *playWidget;
// bool editMode;
// Workspace *wsp;
// Controller *controller;
};
#endif
| Revert of a previous commit "Delete main widget in BasicUi" | Revert of a previous commit "Delete main widget in BasicUi" | C | apache-2.0 | jbruggem/jingles-impro,jbruggem/jingles-impro,jbruggem/jingles-impro |
ded8ea7469b305ee6ceb65103af010329b97ce9a | src/time-module.c | src/time-module.c | #include <stdlib.h>
#include "graphics.h"
#include "surface.h"
#include "time-module.h"
typedef struct TimeModule {
Module base;
} TimeModule;
Module* newTimeModule()
{
TimeModule* module = malloc(sizeof(TimeModule));
module->base.width = 150;
module->base.height = 100;
module->base.updateFunc = updateTimeModule;
module->base.freeFunc = freeTimeModule;
return (Module*)module;
}
void freeTimeModule(Module* module)
{
free(module);
}
void updateTimeModule(Module* module, Surface* surface)
{
setDrawColor(surface, 1.0, 1.0, 1.0, 0.8);
drawRect(surface, 0, 0, module->width, module->height);
setDrawColor(surface, 0, 0, 0, 0.8);
drawText(surface, 10, 10, 32, "monaco", "Good");
}
| #include <stdlib.h>
#include <time.h>
#include "graphics.h"
#include "surface.h"
#include "time-module.h"
typedef struct TimeModule {
Module base;
} TimeModule;
Module* newTimeModule()
{
TimeModule* module = malloc(sizeof(TimeModule));
module->base.width = 150;
module->base.height = 100;
module->base.updateFunc = updateTimeModule;
module->base.freeFunc = freeTimeModule;
return (Module*)module;
}
void freeTimeModule(Module* module)
{
free(module);
}
void updateTimeModule(Module* module, Surface* surface)
{
// Get the current time
time_t t;
struct tm* tm;
t = time(NULL);
tm = localtime(&t);
char strTime[6];
strftime(strTime, sizeof strTime, "%H:%M", tm);
// Draw the rect
setDrawColor(surface, 1.0, 1.0, 1.0, 0.8);
drawRect(surface, 0, 0, module->width, module->height);
// Draw the time
setDrawColor(surface, 0, 0, 0, 0.8);
drawText(surface, 10, 10, 32, "monaco", strTime);
}
| Replace placeholder string in time module with time. | Replace placeholder string in time module with time.
| C | mit | jamiesyme/minfo,jamiesyme/minfo |
de041647db8aeed049ce1124362a022472e7d899 | src/main.c | src/main.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "emulator.h"
void usage(char *programName);
int main(int argsNum, char *args[])
{
int i;
int debugMode = 0;
char *filename = NULL;
emulator *e;
/* Handle arguments */
for (i = 0; i < argsNum; i++)
{
char *arg = args[i];
if (strcmp(arg, "-d") == 0)
debugMode = 1;
else
filename = arg;
}
/* Check if we have the right arguments */
if (argsNum < 2 || filename == NULL)
usage(args[0]);
/* Create an emulator, load in the file, and run the contents of memory */
e = emulator_new();
emulator_load_file(e, filename);
emulator_run(e);
/* Print out register and memory info if debug mode is enabled */
if (debugMode)
{
emulator_print_memory(e);
emulator_print_registers(e);
}
/* Close the emulator */
emulator_close(e);
return EXIT_SUCCESS;
}
void usage(char *programName)
{
printf("usage: %s <options> <input file>\n", programName);
printf("Options:\n");
printf("-d\tDebug mode\n");
printf("\nMade by AndyRoth\n");
exit(EXIT_SUCCESS);
} | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "emulator.h"
void usage(char *programName);
int main(int argsNum, char *args[])
{
int i;
int debugMode = 0;
char *filename = NULL;
emulator *e;
/* Handle arguments */
for (i = 1; i < argsNum; i++)
{
char *arg = args[i];
if (strcmp(arg, "-d") == 0)
debugMode = 1;
else
filename = arg;
}
/* Check if we have the right arguments */
if (argsNum < 2 || filename == NULL)
usage(args[0]);
/* Create an emulator, load in the file, and run the contents of memory */
e = emulator_new();
emulator_load_file(e, filename);
emulator_run(e);
/* Print out register and memory info if debug mode is enabled */
if (debugMode)
{
emulator_print_memory(e);
emulator_print_registers(e);
}
/* Close the emulator */
emulator_close(e);
return EXIT_SUCCESS;
}
void usage(char *programName)
{
printf("usage: %s <options> <input file>\n", programName);
printf("Options:\n");
printf("-d\tDebug mode\n");
printf("\nMade by AndyRoth\n");
exit(EXIT_SUCCESS);
} | Print usage if the only argument is "-d" | Print usage if the only argument is "-d"
| C | mit | andrewrothman/4917,andrewrothman/4917 |
fb9ae2faae28b7ab57651261c1ec98f9bf5b87bb | components/TARGET_PSA/services/platform/COMPONENT_PSA_SRV_EMUL/platform_emul.c | components/TARGET_PSA/services/platform/COMPONENT_PSA_SRV_EMUL/platform_emul.c | /* Copyright (c) 2019 ARM Limited
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "psa/lifecycle.h"
#include "platform_srv_impl.h"
uint32_t psa_security_lifecycle_state(void)
{
uint32_t lc_state = 0;
return psa_platfrom_lifecycle_get_impl(&lc_state);
}
psa_status_t mbed_psa_reboot_and_request_new_security_state(uint32_t new_state)
{
return psa_platfrom_lifecycle_change_request_impl(new_state);
}
| /* Copyright (c) 2019 ARM Limited
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "psa/lifecycle.h"
#include "platform_srv_impl.h"
uint32_t psa_security_lifecycle_state(void)
{
uint32_t lc_state = 0;
psa_status_t status = PSA_LIFECYCLE_SUCCESS;
status = psa_platfrom_lifecycle_get_impl(&lc_state);
if (status != PSA_LIFECYCLE_SUCCESS) {
lc_state = PSA_LIFECYCLE_UNKNOWN;
}
return lc_state;
}
psa_status_t mbed_psa_reboot_and_request_new_security_state(uint32_t new_state)
{
return psa_platfrom_lifecycle_change_request_impl(new_state);
}
| Fix incorrect return value in psa_security_lifecycle_state (emul) | Fix incorrect return value in psa_security_lifecycle_state (emul)
psa_security_lifecycle_state should return uint32_t of the security
lifecycle state.
bug: psa_platfrom_lifecycle_get_impl return value
is psa_status_t.
| C | apache-2.0 | mbedmicro/mbed,andcor02/mbed-os,andcor02/mbed-os,andcor02/mbed-os,andcor02/mbed-os,andcor02/mbed-os,mbedmicro/mbed,kjbracey-arm/mbed,mbedmicro/mbed,kjbracey-arm/mbed,kjbracey-arm/mbed,kjbracey-arm/mbed,andcor02/mbed-os,mbedmicro/mbed,mbedmicro/mbed |
1308c45bcd3738e339e257bf17899230a4a62456 | src/search/util/atomic_int.h | src/search/util/atomic_int.h | /* -*- mode:linux -*- */
/**
* \file atomic_int.h
*
* Atomic integer operations. This code uses code from
* liblinuxkernel, which means that it was indirrectly taken from the
* Linux kernel.
*
* \author Ethan Burns
* \date 2008-10-14
*/
#if !defined(_ATOMIC_INT_H_)
#define _ATOMIC_INT_H_
#define LOCK_PREFIX "lock;"
/**
* This class defines an atomic integer. The operations provided as
* methods of this class can be used concurrently by multiple
* processors to access this interger value.
*
* \note A these methods are currently x86 specific. Unfortunately we
* will need to add pre-processor macros to make them portable.
*/
class AtomicInt {
public:
AtomicInt(int val);
inline int read(void) { return value; }
inline void set(int i) { value = i; }
inline void add(int i) {
__asm__ __volatile__(LOCK_PREFIX "addl %1,%0"
:"=m"(value)
:"ir"(i), "m"(value));
}
inline void sub(int i) {
__asm__ __volatile__(LOCK_PREFIX "subl %1,%0"
:"=m"(value)
:"ir"(i), "m"(value));
}
inline void inc(void) {
__asm__ __volatile__(LOCK_PREFIX "incl %0"
:"=m"(value)
:"m"(value));
}
inline void dec(void) {
__asm__ __volatile__(LOCK_PREFIX "decl %0"
:"=m"(value)
:"m"(value));
}
private:
volatile int value;
};
#endif /* !_ATOMIC_INT_H_ */
| Add an AtomicInt class... completely untested. | Add an AtomicInt class... completely untested.
| C | mit | eaburns/pbnf,eaburns/pbnf,eaburns/pbnf,eaburns/pbnf |
|
596cd371eab5e2a5a7112f6fe62adc68e3527526 | tests/regression/00-sanity/20-if-0-realnode.c | tests/regression/00-sanity/20-if-0-realnode.c | #include <assert.h>
void stuff() {
}
int main() {
// MyCFG shouldn't ignore loops with exp 0 because they may have else branches
bar:
if (0) {
foo: // label prevents CIL from optimizing away this branch
stuff(); // something non-empty
}
else {
goto bar; // direct realnode to If via goto
stuff(); // something non-empty
}
return 0;
} | #include <assert.h>
void stuff() {
}
int main() {
// MyCFG shouldn't ignore loops with exp 0 because they may have else branches
bar:
if (0) {
foo: // label prevents CIL from optimizing away this branch
stuff(); // something non-empty
}
else {
goto bar; // direct realnode to If via goto
}
return 0;
} | Remove unreachable code after goto in 00/20 | Remove unreachable code after goto in 00/20
| C | mit | goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer |
31d76c90b066974ce8fe710d75c8d315f8a45d03 | MBContactPicker/ContactCollectionViewCellModel.h | MBContactPicker/ContactCollectionViewCellModel.h | //
// ContactCollectionViewCellModel.h
// MBContactPicker
//
// Created by Matt Bowman on 11/20/13.
// Copyright (c) 2013 Citrrus, LLC. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface ContactCollectionViewCellModel : NSObject
@property (nonatomic, weak) id contactObject;
@property (nonatomic, copy) NSString *contactTitle;
@end
| //
// ContactCollectionViewCellModel.h
// MBContactPicker
//
// Created by Matt Bowman on 11/20/13.
// Copyright (c) 2013 Citrrus, LLC. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface ContactCollectionViewCellModel : NSObject
@property (nonatomic) id contactObject;
@property (nonatomic, copy) NSString *contactTitle;
@end
| Use a strong reference for the contactObject on the contact view model. Makes it easier to use if you don't have a object that is strongly ref'ed to begin with, like a string ID. | Use a strong reference for the contactObject on the contact view model. Makes it easier to use if you don't have a object that is strongly ref'ed to begin with, like a string ID.
| C | mit | xuzhiming/MBContactPicker,octanner/MBContactPicker,Citrrus/MBContactPicker |
e6281f57ea8ea965db6dfa7ed45f07c1ac95aeaa | src/auth/mycrypt.c | src/auth/mycrypt.c | #define _XOPEN_SOURCE 4
#define _XOPEN_SOURCE_EXTENDED 1 /* 1 needed for AIX */
#define _XOPEN_VERSION 4
#define _XPG4_2
#include <unistd.h>
#include "mycrypt.h"
char *mycrypt(const char *key, const char *salt)
{
return crypt(key, salt);
}
| #define _XOPEN_SOURCE 4
#define _XOPEN_SOURCE_EXTENDED 1 /* 1 needed for AIX */
#define _XOPEN_VERSION 4
#define _XPG4_2
#ifdef CRYPT_USE_XPG6
# define _XPG6 /* Some Solaris versions require this, some break with this */
#endif
#include <unistd.h>
#include "mycrypt.h"
char *mycrypt(const char *key, const char *salt)
{
return crypt(key, salt);
}
| Add _XPG6 macro if needed.. | Add _XPG6 macro if needed..
--HG--
branch : HEAD
| C | mit | jwm/dovecot-notmuch,jwm/dovecot-notmuch,dscho/dovecot,dscho/dovecot,jkerihuel/dovecot,jkerihuel/dovecot,jwm/dovecot-notmuch,dscho/dovecot,jkerihuel/dovecot,jwm/dovecot-notmuch,jkerihuel/dovecot,dscho/dovecot,jkerihuel/dovecot,jwm/dovecot-notmuch,dscho/dovecot |
e6dfb05d7deddc82060c8a34944b2166e8e26870 | DeltaDNA/DeltaDNA.h | DeltaDNA/DeltaDNA.h | //
// Copyright (c) 2016 deltaDNA Ltd. 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 applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#ifndef _DELTADNA_
#define _DELTADNA_
#import <DeltaDNA/DDNASDK.h>
#import <DeltaDNA/DDNALog.h>
#import <DeltaDNA/DDNASettings.h>
#import <DeltaDNA/DDNAParams.h>
#import <DeltaDNA/DDNAEvent.h>
#import <DeltaDNA/DDNAProduct.h>
#import <DeltaDNA/DDNATransaction.h>
#import <DeltaDNA/DDNAEngagement.h>
#import <DeltaDNA/DDNAEngageFactory.h>
#import <DeltaDNA/DDNAImageMessage.h>
#import <DeltaDNA/DDNAEventAction.h>
#import <DeltaDNA/DDNAEventActionHandler.h>
#import <DeltaDNA/DDNAPinpointer.h>
#endif /* _DELTADNA_ */
| //
// Copyright (c) 2016 deltaDNA Ltd. 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 applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#ifndef _DELTADNA_
#define _DELTADNA_
#import <DeltaDNA/DDNASDK.h>
#import <DeltaDNA/DDNALog.h>
#import <DeltaDNA/DDNASettings.h>
#import <DeltaDNA/DDNAParams.h>
#import <DeltaDNA/DDNAEvent.h>
#import <DeltaDNA/DDNAProduct.h>
#import <DeltaDNA/DDNATransaction.h>
#import <DeltaDNA/DDNAEngagement.h>
#import <DeltaDNA/DDNAEngageFactory.h>
#import <DeltaDNA/DDNAImageMessage.h>
#import <DeltaDNA/DDNAEventAction.h>
#import <DeltaDNA/DDNAEventActionHandler.h>
#endif /* _DELTADNA_ */
| Remove header that is no longer present | DDSDK-7: Remove header that is no longer present
| C | apache-2.0 | deltaDNA/ios-sdk,deltaDNA/ios-sdk,deltaDNA/ios-sdk |
273595f90735f3294c1a33968db69cfc3031cb0d | runtime/libprofile/Profiling.h | runtime/libprofile/Profiling.h | /*===-- Profiling.h - Profiling support library support routines --*- C -*-===*\
|*
|* The LLVM Compiler Infrastructure
|*
|* This file was developed by the LLVM research group and is distributed under
|* the University of Illinois Open Source License. See LICENSE.TXT for details.
|*
|*===----------------------------------------------------------------------===*|
|*
|* This file defines functions shared by the various different profiling
|* implementations.
|*
\*===----------------------------------------------------------------------===*/
#ifndef PROFILING_H
#define PROFILING_H
/* save_arguments - Save argc and argv as passed into the program for the file
* we output.
*/
int save_arguments(int argc, const char **argv);
enum ProfilingType {
Arguments = 1, /* The command line argument block */
Function = 2, /* Function profiling information */
Block = 3, /* Block profiling information */
Edge = 4, /* Edge profiling information */
Path = 5 /* Path profiling information */
};
void write_profiling_data(enum ProfilingType PT, unsigned *Start,
unsigned NumElements);
#endif
| /*===-- Profiling.h - Profiling support library support routines --*- C -*-===*\
|*
|* The LLVM Compiler Infrastructure
|*
|* This file was developed by the LLVM research group and is distributed under
|* the University of Illinois Open Source License. See LICENSE.TXT for details.
|*
|*===----------------------------------------------------------------------===*|
|*
|* This file defines functions shared by the various different profiling
|* implementations.
|*
\*===----------------------------------------------------------------------===*/
#ifndef PROFILING_H
#define PROFILING_H
/* save_arguments - Save argc and argv as passed into the program for the file
* we output.
*/
int save_arguments(int argc, const char **argv);
enum ProfilingType {
Arguments = 1, /* The command line argument block */
Function = 2, /* Function profiling information */
Block = 3, /* Block profiling information */
Edge = 4, /* Edge profiling information */
Path = 5, /* Path profiling information */
BBTrace = 6 /* Basic block trace information */
};
void write_profiling_data(enum ProfilingType PT, unsigned *Start,
unsigned NumElements);
#endif
| Add basic block tracing information as a type of "profiling" information. | Add basic block tracing information as a type of "profiling" information.
git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@13337 91177308-0d34-0410-b5e6-96231b3b80d8
| C | bsd-2-clause | chubbymaggie/asap,dslab-epfl/asap,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,apple/swift-llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,chubbymaggie/asap,llvm-mirror/llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,chubbymaggie/asap,llvm-mirror/llvm,GPUOpen-Drivers/llvm,dslab-epfl/asap,chubbymaggie/asap,dslab-epfl/asap,GPUOpen-Drivers/llvm,apple/swift-llvm,llvm-mirror/llvm,dslab-epfl/asap,apple/swift-llvm,llvm-mirror/llvm,llvm-mirror/llvm,dslab-epfl/asap,dslab-epfl/asap,dslab-epfl/asap,chubbymaggie/asap,apple/swift-llvm,apple/swift-llvm,chubbymaggie/asap,apple/swift-llvm,llvm-mirror/llvm |
5bb57a199d5ba7b70b2f1c4a566bfe9bdb0ce1c1 | sauce/internal/self_injector.h | sauce/internal/self_injector.h | #ifndef SAUCE_INTERNAL_SELF_INJECTOR_H_
#define SAUCE_INTERNAL_SELF_INJECTOR_H_
#include <sauce/memory.h>
namespace sauce {
namespace internal {
/**
* If a type requests injection of its own smart pointer, do so.
*
* An interface Iface requests this by exposing void setSelf(sauce::weak_ptr<Iface>), detected by SFINAE.
*/
template<typename T>
class SelfInjector {
typedef sauce::shared_ptr<T> Ptr;
typedef void (T::* SetterMethod)(sauce::weak_ptr<T>);
template<typename U, U>
struct EqualTypes;
template<typename DoesNotRequestSelf>
void setSelfIfRequested(Ptr, ...) {}
template<typename RequestsSelf>
void setSelfIfRequested(Ptr ptr, EqualTypes<SetterMethod, & RequestsSelf::setSelf> *) {
sauce::weak_ptr<T> weak(ptr);
ptr->setSelf(weak);
}
public:
void setSelf(Ptr ptr) {
setSelfIfRequested<T>(ptr, 0);
}
};
}
namespace i = ::sauce::internal;
}
#endif // SAUCE_INTERNAL_SELF_INJECTOR_H_
| #ifndef SAUCE_INTERNAL_SELF_INJECTOR_H_
#define SAUCE_INTERNAL_SELF_INJECTOR_H_
#include <sauce/memory.h>
namespace sauce {
namespace internal {
/**
* If a type requests injection of its own smart pointer, do so.
*
* An interface Iface requests this by exposing void setSelf(sauce::weak_ptr<Iface>), detected by SFINAE.
*/
template<typename T>
class SelfInjector {
struct Guard {
void setSelf(sauce::weak_ptr<T>) {}
};
struct WithGuard: public T, public Guard {};
typedef sauce::shared_ptr<T> Ptr;
typedef void (Guard::* NoMethod)(sauce::weak_ptr<T>);
template<typename U, U>
struct EqualTypes;
template<typename RequestsSelf>
void setSelfIfRequested(Ptr ptr, ...) {
sauce::weak_ptr<T> weak(ptr);
ptr->setSelf(weak);
}
template<typename DoesNotRequestSelf>
void setSelfIfRequested(Ptr, EqualTypes<NoMethod, & DoesNotRequestSelf::setSelf> *) {}
public:
void setSelf(Ptr ptr) {
setSelfIfRequested<WithGuard>(ptr, 0);
}
};
}
namespace i = ::sauce::internal;
}
#endif // SAUCE_INTERNAL_SELF_INJECTOR_H_
| Make SelfInjector aware of inherited methods. | Make SelfInjector aware of inherited methods.
See http://stackoverflow.com/questions/1966362/sfinae-to-check-for-inherited-member-functions
| C | mit | phs/sauce,phs/sauce,phs/sauce,phs/sauce |
717bd6ed8cd2f28f9838de3d8506ba2ab5152d0d | test.c | test.c | /* a test file for ArgyrisPack */
#include <stdio.h>
#include "argyris_pack.h"
#define ORDER(row,col,nrows,ncols) (row)*(ncols) + (col)
void print_matrix(double* matrix, int rows, int cols)
{
int i, j;
for (i = 0; i < rows; i++) {
for (j = 0; j < cols; j++) {
printf("%.16f ", matrix[ORDER(i,j,rows,cols)]);
}
printf("\n");
}
}
void print_matrix_flat(double* matrix, int rows, int cols)
{
int i;
for (i = 0; i < rows*cols; i++) {
printf("%.16f ", matrix[i]);
}
printf("\n");
}
int main(int argc, char *argv[])
{
double x[3] = {0.1, 0.2, 0.3};
double y[3] = {0.2, 0.2, 0.3};
double ref_dx[21*3];
double ref_dy[21*3];
ap_local_gradients(x, y, 3, ref_dx, ref_dy);
printf("ref_dx: ");
print_matrix(ref_dx, 21, 3);
printf("ref_dy: ");
print_matrix(ref_dy, 21, 3);
return 0;
}
| /* a test file for ArgyrisPack */
#include <stdio.h>
#include "argyris_pack.h"
#include "order_logic.h"
void print_matrix(double* matrix, int rows, int cols)
{
int i, j;
for (i = 0; i < rows; i++) {
for (j = 0; j < cols; j++) {
printf("%.16f ", matrix[ORDER(i,j,rows,cols)]);
}
printf("\n");
}
}
void print_matrix_flat(double* matrix, int rows, int cols)
{
int i;
for (i = 0; i < rows*cols; i++) {
printf("%.16f ", matrix[i]);
}
printf("\n");
}
int main(int argc, char *argv[])
{
double x[3] = {0.1, 0.2, 0.3};
double y[3] = {0.2, 0.2, 0.3};
double ref_dx[21*3];
double ref_dy[21*3];
ap_local_gradients(x, y, 3, ref_dx, ref_dy);
printf("ref_dx: ");
print_matrix(ref_dx, 21, 3);
printf("ref_dy: ");
print_matrix(ref_dy, 21, 3);
return 0;
}
| REFACTOR include the more general macro collection in order_logic.h | REFACTOR include the more general macro collection in order_logic.h
| C | bsd-3-clause | VT-ICAM/ArgyrisPack,VT-ICAM/ArgyrisPack,VT-ICAM/ArgyrisPack |
33231a276ae9ac84ae779531e9f346fb7719a4cb | Include/sysmodule.h | Include/sysmodule.h |
/* System module interface */
#ifndef Py_SYSMODULE_H
#define Py_SYSMODULE_H
#ifdef __cplusplus
extern "C" {
#endif
DL_IMPORT(PyObject *) PySys_GetObject(char *);
DL_IMPORT(int) PySys_SetObject(char *, PyObject *);
DL_IMPORT(FILE *) PySys_GetFile(char *, FILE *);
DL_IMPORT(void) PySys_SetArgv(int, char **);
DL_IMPORT(void) PySys_SetPath(char *);
DL_IMPORT(void) PySys_WriteStdout(const char *format, ...);
DL_IMPORT(void) PySys_WriteStderr(const char *format, ...);
extern DL_IMPORT(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc;
extern DL_IMPORT(int) _PySys_CheckInterval;
#ifdef __cplusplus
}
#endif
#endif /* !Py_SYSMODULE_H */
|
/* System module interface */
#ifndef Py_SYSMODULE_H
#define Py_SYSMODULE_H
#ifdef __cplusplus
extern "C" {
#endif
DL_IMPORT(PyObject *) PySys_GetObject(char *);
DL_IMPORT(int) PySys_SetObject(char *, PyObject *);
DL_IMPORT(FILE *) PySys_GetFile(char *, FILE *);
DL_IMPORT(void) PySys_SetArgv(int, char **);
DL_IMPORT(void) PySys_SetPath(char *);
DL_IMPORT(void) PySys_WriteStdout(const char *format, ...);
DL_IMPORT(void) PySys_WriteStderr(const char *format, ...);
extern DL_IMPORT(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc;
extern DL_IMPORT(int) _PySys_CheckInterval;
DL_IMPORT(void) PySys_ResetWarnOptions(void);
DL_IMPORT(void) PySys_AddWarnOption(char *);
#ifdef __cplusplus
}
#endif
#endif /* !Py_SYSMODULE_H */
| Add declarations for PySys_ResetWarnOptions() and PySys_AddWarnOption(). | Add declarations for PySys_ResetWarnOptions() and
PySys_AddWarnOption().
| C | mit | sk-/python2.7-type-annotator,sk-/python2.7-type-annotator,sk-/python2.7-type-annotator |
fceeec91fa4bba9f4240e7e43eec3066b434cc6b | test/Sema/stdcall-fastcall.c | test/Sema/stdcall-fastcall.c | // RUN: clang -fsyntax-only -verify %s
// CC qualifier can be applied only to functions
int __attribute__((stdcall)) var1; // expected-warning{{'stdcall' attribute only applies to function types}}
int __attribute__((fastcall)) var2; // expected-warning{{'fastcall' attribute only applies to function types}}
// Different CC qualifiers are not compatible
void __attribute__((stdcall, fastcall)) foo3(); // expected-error{{stdcall and fastcall attributes are not compatible}}
// FIXME: Something went wrong recently and diagnostics is not generated anymore
void __attribute__((stdcall)) foo4();
void __attribute__((fastcall)) foo4();
| // RUN: clang -fsyntax-only -verify %s
// CC qualifier can be applied only to functions
int __attribute__((stdcall)) var1; // expected-warning{{'stdcall' attribute only applies to function types}}
int __attribute__((fastcall)) var2; // expected-warning{{'fastcall' attribute only applies to function types}}
// Different CC qualifiers are not compatible
void __attribute__((stdcall, fastcall)) foo3(); // expected-error{{stdcall and fastcall attributes are not compatible}}
void __attribute__((stdcall)) foo4();
void __attribute__((fastcall)) foo4(); // expected-error{{fastcall and stdcall attributes are not compatible}}
| Complete the test after adding handling of merged attributes on decls. | Complete the test after adding handling of merged attributes on decls.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@61438 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,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,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang |
ccf3af77c10c3b06acde8ee55930051a862bd728 | src/qt/bitcoinaddressvalidator.h | src/qt/bitcoinaddressvalidator.h | #ifndef BITCOINADDRESSVALIDATOR_H
#define BITCOINADDRESSVALIDATOR_H
#include <QValidator>
/** Base48 entry widget validator.
Corrects near-miss characters and refuses characters that are no part of base48.
*/
class BitcoinAddressValidator : public QValidator
{
Q_OBJECT
public:
explicit BitcoinAddressValidator(QObject *parent = 0);
State validate(QString &input, int &pos) const;
static const int MaxAddressLength = 35;
};
#endif // BITCOINADDRESSVALIDATOR_H
| #ifndef BITCOINADDRESSVALIDATOR_H
#define BITCOINADDRESSVALIDATOR_H
#include <QValidator>
/** Base58 entry widget validator.
Corrects near-miss characters and refuses characters that are not part of base58.
*/
class BitcoinAddressValidator : public QValidator
{
Q_OBJECT
public:
explicit BitcoinAddressValidator(QObject *parent = 0);
State validate(QString &input, int &pos) const;
static const int MaxAddressLength = 35;
};
#endif // BITCOINADDRESSVALIDATOR_H
| Fix typo in a comment: it's base58, not base48. | Fix typo in a comment: it's base58, not base48.
| C | mit | GroundRod/anoncoin,Mrs-X/Darknet,donaloconnor/bitcoin,sstone/bitcoin,ahmedbodi/vertcoin,11755033isaprimenumber/Feathercoin,Earlz/renamedcoin,jimmykiselak/lbrycrd,shouhuas/bitcoin,litecoin-project/litecoin,rustyrussell/bitcoin,nmarley/dash,pstratem/elements,goku1997/bitcoin,BTCTaras/bitcoin,NicolasDorier/bitcoin,Flowdalic/bitcoin,Petr-Economissa/gvidon,MazaCoin/maza,botland/bitcoin,sipa/bitcoin,ClusterCoin/ClusterCoin,bitcoinxt/bitcoinxt,krzysztofwos/BitcoinUnlimited,MikeAmy/bitcoin,hyperwang/bitcoin,HeliumGas/helium,greenaddress/bitcoin,kevcooper/bitcoin,dexX7/mastercore,174high/bitcoin,dgarage/bc3,slingcoin/sling-market,unsystemizer/bitcoin,bcpki/nonce2testblocks,m0gliE/fastcoin-cli,dpayne9000/Rubixz-Coin,shomeser/bitcoin,mincoin-project/mincoin,DSPay/DSPay,Tetpay/bitcoin,shouhuas/bitcoin,basicincome/unpcoin-core,digideskio/namecoin,Domer85/dogecoin,ixcoinofficialpage/master,iQcoin/iQcoin,DogTagRecon/Still-Leraning,deadalnix/bitcoin,AdrianaDinca/bitcoin,48thct2jtnf/P,ptschip/bitcoinxt,gandrewstone/BitcoinUnlimited,bickojima/bitzeny,sipsorcery/bitcoin,tjth/lotterycoin,Darknet-Crypto/Darknet,matlongsi/micropay,btcdrak/bitcoin,lclc/bitcoin,llluiop/bitcoin,ShadowMyst/creativechain-core,hyperwang/bitcoin,cculianu/bitcoin-abc,kallewoof/bitcoin,Domer85/dogecoin,Diapolo/bitcoin,domob1812/bitcoin,robvanbentem/bitcoin,koharjidan/dogecoin,daveperkins-github/bitcoin-dev,dmrtsvetkov/flowercoin,sarielsaz/sarielsaz,constantine001/bitcoin,apoelstra/elements,s-matthew-english/bitcoin,upgradeadvice/MUE-Src,djpnewton/bitcoin,pouta/bitcoin,koharjidan/dogecoin,FeatherCoin/Feathercoin,randy-waterhouse/bitcoin,RHavar/bitcoin,ashleyholman/bitcoin,HeliumGas/helium,basicincome/unpcoin-core,misdess/bitcoin,oleganza/bitcoin-duo,jtimon/elements,pstratem/bitcoin,RibbitFROG/ribbitcoin,ftrader-bitcoinabc/bitcoin-abc,sickpig/BitcoinUnlimited,sbaks0820/bitcoin,LIMXTEC/DMDv3,shouhuas/bitcoin,coinkeeper/2015-06-22_18-39_feathercoin,guncoin/guncoin,achow101/bitcoin,achow101/bitcoin,MasterX1582/bitcoin-becoin,TrainMAnB/vcoincore,zenywallet/bitzeny,jakeva/bitcoin-pwcheck,instagibbs/bitcoin,Krellan/bitcoin,meighti/bitcoin,npccoin/npccoin,my-first/octocoin,GwangJin/gwangmoney-core,Mirobit/bitcoin,faircoin/faircoin2,BlockchainTechLLC/3dcoin,TGDiamond/Diamond,initaldk/bitcoin,xurantju/bitcoin,AllanDoensen/BitcoinUnlimited,guncoin/guncoin,Kcoin-project/kcoin,brishtiteveja/truthcoin-cpp,kallewoof/elements,jimmysong/bitcoin,jimmysong/bitcoin,Bitcoinsulting/bitcoinxt,andreaskern/bitcoin,gandrewstone/BitcoinUnlimited,mycointest/owncoin,UASF/bitcoin,deeponion/deeponion,tjth/lotterycoin,shaulkf/bitcoin,dan-mi-sun/bitcoin,bitbrazilcoin-project/bitbrazilcoin,torresalyssa/bitcoin,coinkeeper/2015-06-22_19-00_ziftrcoin,sdaftuar/bitcoin,myriadcoin/myriadcoin,TheBlueMatt/bitcoin,Alex-van-der-Peet/bitcoin,particl/particl-core,parvez3019/bitcoin,genavarov/brcoin,h4x3rotab/BTCGPU,mikehearn/bitcoinxt,myriadteam/myriadcoin,jnewbery/bitcoin,Kogser/bitcoin,MazaCoin/maza,octocoin-project/octocoin,h4x3rotab/BTCGPU,mruddy/bitcoin,braydonf/bitcoin,AllanDoensen/BitcoinUnlimited,balajinandhu/bitcoin,Kixunil/keynescoin,markf78/dollarcoin,rromanchuk/bitcoinxt,cdecker/bitcoin,donaloconnor/bitcoin,deeponion/deeponion,plncoin/PLNcoin_Core,bmp02050/ReddcoinUpdates,jlopp/statoshi,anditto/bitcoin,shaolinfry/litecoin,mockcoin/mockcoin,ftrader-bitcoinabc/bitcoin-abc,sebrandon1/bitcoin,imharrywu/fastcoin,Rav3nPL/doubloons-0.10,segwit/atbcoin-insight,TierNolan/bitcoin,FarhanHaque/bitcoin,RyanLucchese/energi,faircoin/faircoin2,Gazer022/bitcoin,AdrianaDinca/bitcoin,deuscoin/deuscoin,Kenwhite23/litecoin,mycointest/owncoin,langerhans/dogecoin,TBoehm/greedynode,irvingruan/bitcoin,crowning-/dash,Rav3nPL/PLNcoin,ctwiz/stardust,genavarov/ladacoin,paveljanik/bitcoin,haraldh/bitcoin,kfitzgerald/titcoin,prusnak/bitcoin,core-bitcoin/bitcoin,ryanofsky/bitcoin,BitcoinHardfork/bitcoin,EthanHeilman/bitcoin,deadalnix/bitcoin,shaulkf/bitcoin,kleetus/bitcoin,genavarov/ladacoin,wiggi/huntercore,jtimon/bitcoin,1185/starwels,lakepay/lake,psionin/smartcoin,aspirecoin/aspire,DMDcoin/Diamond,XertroV/bitcoin-nulldata,sugruedes/bitcoin,nbenoit/bitcoin,digibyte/digibyte,butterflypay/bitcoin,gjhiggins/vcoincore,FarhanHaque/bitcoin,ivansib/sib16,BTCTaras/bitcoin,maaku/bitcoin,diggcoin/diggcoin,wederw/bitcoin,superjudge/bitcoin,basicincome/unpcoin-core,BTCGPU/BTCGPU,scippio/bitcoin,JeremyRubin/bitcoin,jarymoth/dogecoin,bitcoinclassic/bitcoinclassic,tjth/lotterycoin,XertroV/bitcoin-nulldata,hasanatkazmi/bitcoin,llluiop/bitcoin,CryptArc/bitcoin,lakepay/lake,AllanDoensen/BitcoinUnlimited,world-bank/unpay-core,SartoNess/BitcoinUnlimited,domob1812/bitcoin,fullcoins/fullcoin,truthcoin/blocksize-market,qtumproject/qtum,viacoin/viacoin,nathaniel-mahieu/bitcoin,cculianu/bitcoin-abc,jonasschnelli/bitcoin,brishtiteveja/sherlockcoin,rnicoll/dogecoin,EntropyFactory/creativechain-core,gwillen/elements,dexX7/bitcoin,jmgilbert2/energi,coinkeeper/2015-06-22_18-31_bitcoin,psionin/smartcoin,sickpig/BitcoinUnlimited,brishtiteveja/sherlockcoin,tropa/axecoin,tecnovert/particl-core,stevemyers/bitcoinxt,gravio-net/graviocoin,sbellem/bitcoin,Diapolo/bitcoin,xuyangcn/opalcoin,laudaa/bitcoin,laudaa/bitcoin,Krellan/bitcoin,shelvenzhou/BTCGPU,funkshelper/woodcore,jn2840/bitcoin,Exgibichi/statusquo,rromanchuk/bitcoinxt,tuaris/bitcoin,wellenreiter01/Feathercoin,faircoin/faircoin,keesdewit82/LasVegasCoin,dashpay/dash,isocolsky/bitcoinxt,kallewoof/elements,myriadcoin/myriadcoin,coinkeeper/2015-06-22_18-52_viacoin,maaku/bitcoin,BTCTaras/bitcoin,omefire/bitcoin,nathan-at-least/zcash,iQcoin/iQcoin,marlengit/BitcoinUnlimited,dgenr8/bitcoin,ardsu/bitcoin,BTCGPU/BTCGPU,grumpydevelop/singularity,DGCDev/digitalcoin,patricklodder/dogecoin,ediston/energi,jmcorgan/bitcoin,aspanta/bitcoin,terracoin/terracoin,myriadcoin/myriadcoin,balajinandhu/bitcoin,bespike/litecoin,mincoin-project/mincoin,bittylicious/bitcoin,leofidus/glowing-octo-ironman,cybermatatu/bitcoin,TGDiamond/Diamond,Gazer022/bitcoin,ravenbyron/phtevencoin,bitcoin-hivemind/hivemind,GroundRod/anoncoin,odemolliens/bitcoinxt,rat4/bitcoin,CodeShark/bitcoin,elecoin/elecoin,rnicoll/bitcoin,Mrs-X/PIVX,CryptArc/bitcoin,Bitcoinsulting/bitcoinxt,bitcoinsSG/zcash,jiangyonghang/bitcoin,amaivsimau/bitcoin,Vsync-project/Vsync,peercoin/peercoin,gandrewstone/BitcoinUnlimited,rsdevgun16e/energi,dpayne9000/Rubixz-Coin,ericshawlinux/bitcoin,dscotese/bitcoin,stevemyers/bitcoinxt,experiencecoin/experiencecoin,arnuschky/bitcoin,janko33bd/bitcoin,anditto/bitcoin,scmorse/bitcoin,jonghyeopkim/bitcoinxt,SartoNess/BitcoinUnlimited,ajweiss/bitcoin,Kogser/bitcoin,mitchellcash/bitcoin,wangliu/bitcoin,Bitcoin-ABC/bitcoin-abc,haraldh/bitcoin,jmcorgan/bitcoin,ajtowns/bitcoin,adpg211/bitcoin-master,skaht/bitcoin,Metronotes/bitcoin,gazbert/bitcoin,Exgibichi/statusquo,peercoin/peercoin,langerhans/dogecoin,vtafaucet/virtacoin,senadmd/coinmarketwatch,TrainMAnB/vcoincore,gravio-net/graviocoin,mb300sd/bitcoin,xurantju/bitcoin,jtimon/bitcoin,UASF/bitcoin,droark/elements,zetacoin/zetacoin,GwangJin/gwangmoney-core,cotner/bitcoin,Vsync-project/Vsync,myriadteam/myriadcoin,NateBrune/bitcoin-fio,1185/starwels,REAP720801/bitcoin,genavarov/brcoin,Exceltior/dogecoin,tuaris/bitcoin,appop/bitcoin,FeatherCoin/Feathercoin,nathan-at-least/zcash,bitcoin/bitcoin,HeliumGas/helium,Cocosoft/bitcoin,appop/bitcoin,OstlerDev/florincoin,error10/bitcoin,NicolasDorier/bitcoin,bdelzell/creditcoin-org-creditcoin,greencoin-dev/digitalcoin,xurantju/bitcoin,untrustbank/litecoin,dgarage/bc2,ArgonToken/ArgonToken,presstab/PIVX,21E14/bitcoin,coinkeeper/2015-06-22_18-37_dogecoin,experiencecoin/experiencecoin,atgreen/bitcoin,cryptoprojects/ultimateonlinecash,dagurval/bitcoinxt,jonasschnelli/bitcoin,fedoracoin-dev/fedoracoin,rsdevgun16e/energi,MazaCoin/mazacoin-new,rawodb/bitcoin,rnicoll/dogecoin,supcoin/supcoin,schildbach/bitcoin,langerhans/dogecoin,denverl/bitcoin,terracoin/terracoin,kallewoof/elements,sbellem/bitcoin,gazbert/bitcoin,jlopp/statoshi,terracoin/terracoin,bitcoinsSG/bitcoin,afk11/bitcoin,jimmysong/bitcoin,GroestlCoin/bitcoin,shea256/bitcoin,BitcoinPOW/BitcoinPOW,dev1972/Satellitecoin,droark/elements,gameunits/gameunits,Jeff88Ho/bitcoin,dgenr8/bitcoinxt,alejandromgk/Lunar,scippio/bitcoin,zotherstupidguy/bitcoin,GroestlCoin/bitcoin,fanquake/bitcoin,ahmedbodi/vertcoin,safecoin/safecoin,gandrewstone/bitcoinxt,destenson/bitcoin--bitcoin,UdjinM6/dash,willwray/dash,DGCDev/digitalcoin,practicalswift/bitcoin,viacoin/viacoin,shomeser/bitcoin,DigitalPandacoin/pandacoin,omefire/bitcoin,capitalDIGI/DIGI-v-0-10-4,petertodd/bitcoin,nmarley/dash,lbryio/lbrycrd,coinwarp/dogecoin,sdaftuar/bitcoin,dpayne9000/Rubixz-Coin,wcwu/bitcoin,okinc/bitcoin,anditto/bitcoin,Rav3nPL/doubloons-0.10,Sjors/bitcoin,CTRoundTable/Encrypted.Cash,haobtc/bitcoin,kbccoin/kbc,Darknet-Crypto/Darknet,marlengit/BitcoinUnlimited,Anoncoin/anoncoin,dgarage/bc3,BitcoinPOW/BitcoinPOW,imharrywu/fastcoin,mrbandrews/bitcoin,brishtiteveja/truthcoin-cpp,error10/bitcoin,rawodb/bitcoin,ingresscoin/ingresscoin,petertodd/bitcoin,joroob/reddcoin,monacoinproject/monacoin,Rav3nPL/PLNcoin,ElementsProject/elements,crowning-/dash,inkvisit/sarmacoins,odemolliens/bitcoinxt,bmp02050/ReddcoinUpdates,FeatherCoin/Feathercoin,rustyrussell/bitcoin,core-bitcoin/bitcoin,ekankyesme/bitcoinxt,haobtc/bitcoin,domob1812/huntercore,ZiftrCOIN/ziftrcoin,koharjidan/bitcoin,gazbert/bitcoin,m0gliE/fastcoin-cli,jamesob/bitcoin,cculianu/bitcoin-abc,litecoin-project/litecore-litecoin,isle2983/bitcoin,ArgonToken/ArgonToken,fullcoins/fullcoin,sipsorcery/bitcoin,jimmykiselak/lbrycrd,Friedbaumer/litecoin,ShwoognationHQ/bitcoin,svost/bitcoin,Tetpay/bitcoin,btc1/bitcoin,lateminer/bitcoin,bitpay/bitcoin,jiangyonghang/bitcoin,ajtowns/bitcoin,meighti/bitcoin,Bushstar/UFO-Project,Metronotes/bitcoin,sebrandon1/bitcoin,matlongsi/micropay,Thracky/monkeycoin,domob1812/namecore,spiritlinxl/BTCGPU,deadalnix/bitcoin,Jcing95/iop-hd,thelazier/dash,Justaphf/BitcoinUnlimited,bickojima/bitzeny,UFOCoins/ufo,bitbrazilcoin-project/bitbrazilcoin,midnightmagic/bitcoin,nsacoin/nsacoin,ElementsProject/elements,rnicoll/bitcoin,stamhe/bitcoin,s-matthew-english/bitcoin,karek314/bitcoin,pstratem/bitcoin,coinkeeper/2015-06-22_18-52_viacoin,ediston/energi,Diapolo/bitcoin,Horrorcoin/horrorcoin,Har01d/bitcoin,itmanagerro/tresting,SoreGums/bitcoinxt,experiencecoin/experiencecoin,GroestlCoin/GroestlCoin,UFOCoins/ufo,psionin/smartcoin,pataquets/namecoin-core,florincoin/florincoin,zotherstupidguy/bitcoin,vertcoin/vertcoin,cyrixhero/bitcoin,XertroV/bitcoin-nulldata,Vector2000/bitcoin,bcpki/testblocks,world-bank/unpay-core,denverl/bitcoin,diggcoin/diggcoin,CoinProjects/AmsterdamCoin-v4,reddink/reddcoin,mrbandrews/bitcoin,misdess/bitcoin,Lucky7Studio/bitcoin,terracoin/terracoin,coinkeeper/2015-06-22_18-37_dogecoin,jonghyeopkim/bitcoinxt,ripper234/bitcoin,TierNolan/bitcoin,roques/bitcoin,ingresscoin/ingresscoin,JeremyRand/namecoin-core,millennial83/bitcoin,simdeveloper/bitcoin,kevcooper/bitcoin,jamesob/bitcoin,rnicoll/bitcoin,grumpydevelop/singularity,coinkeeper/2015-06-22_19-00_ziftrcoin,PandaPayProject/PandaPay,sickpig/BitcoinUnlimited,antonio-fr/bitcoin,donaloconnor/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,spiritlinxl/BTCGPU,ekankyesme/bitcoinxt,antcheck/antcoin,appop/bitcoin,wederw/bitcoin,XertroV/bitcoin-nulldata,dpayne9000/Rubixz-Coin,XertroV/bitcoin-nulldata,faircoin/faircoin2,UFOCoins/ufo,Cocosoft/bitcoin,cdecker/bitcoin,coinkeeper/2015-06-22_19-07_digitalcoin,nailtaras/nailcoin,coinkeeper/2015-06-22_18-37_dogecoin,fanquake/bitcoin,denverl/bitcoin,HashUnlimited/Einsteinium-Unlimited,mastercoin-MSC/mastercore,keesdewit82/LasVegasCoin,Rav3nPL/PLNcoin,likecoin-dev/bitcoin,funkshelper/woodcore,habibmasuro/bitcoin,x-kalux/bitcoin_WiG-B,omefire/bitcoin,skaht/bitcoin,itmanagerro/tresting,bmp02050/ReddcoinUpdates,pastday/bitcoinproject,safecoin/safecoin,REAP720801/bitcoin,ripper234/bitcoin,JeremyRubin/bitcoin,hophacker/bitcoin_malleability,AkioNak/bitcoin,nomnombtc/bitcoin,nikkitan/bitcoin,bitcoin-hivemind/hivemind,coinerd/krugercoin,dgenr8/bitcoin,benosa/bitcoin,inkvisit/sarmacoins,dagurval/bitcoinxt,mm-s/bitcoin,marcusdiaz/BitcoinUnlimited,ludbb/bitcoin,capitalDIGI/litecoin,goldcoin/Goldcoin-GLD,bitjson/hivemind,marlengit/hardfork_prototype_1_mvf-bu,scmorse/bitcoin,bitcoinec/bitcoinec,ahmedbodi/temp_vert,wellenreiter01/Feathercoin,alecalve/bitcoin,Domer85/dogecoin,ahmedbodi/temp_vert,ryanofsky/bitcoin,credits-currency/credits,petertodd/bitcoin,tdudz/elements,biblepay/biblepay,DGCDev/digitalcoin,jarymoth/dogecoin,phelix/bitcoin,Darknet-Crypto/Darknet,coinkeeper/2015-06-22_18-31_bitcoin,PandaPayProject/PandaPay,maaku/bitcoin,GlobalBoost/GlobalBoost,butterflypay/bitcoin,Thracky/monkeycoin,elecoin/elecoin,npccoin/npccoin,TeamBitBean/bitcoin-core,ashleyholman/bitcoin,nvmd/bitcoin,KaSt/ekwicoin,tmagik/catcoin,GroundRod/anoncoin,cerebrus29301/crowncoin,elecoin/elecoin,CodeShark/bitcoin,BTCGPU/BTCGPU,Bushstar/UFO-Project,btcdrak/bitcoin,pstratem/elements,ixcoinofficialpage/master,starwels/starwels,antonio-fr/bitcoin,RongxinZhang/bitcoinxt,Chancoin-core/CHANCOIN,crowning-/dash,djpnewton/bitcoin,Kogser/bitcoin,mruddy/bitcoin,zander/bitcoinclassic,syscoin/syscoin,hsavit1/bitcoin,Rav3nPL/polcoin,kevcooper/bitcoin,RibbitFROG/ribbitcoin,riecoin/riecoin,ticclassic/ic,trippysalmon/bitcoin,Metronotes/bitcoin,janko33bd/bitcoin,Michagogo/bitcoin,zottejos/merelcoin,joroob/reddcoin,jrmithdobbs/bitcoin,pinkevich/dash,GlobalBoost/GlobalBoost,GIJensen/bitcoin,monacoinproject/monacoin,okinc/bitcoin,digibyte/digibyte,genavarov/lamacoin,21E14/bitcoin,Jcing95/iop-hd,21E14/bitcoin,steakknife/bitcoin-qt,capitalDIGI/DIGI-v-0-10-4,constantine001/bitcoin,fussl/elements,myriadteam/myriadcoin,AkioNak/bitcoin,aspirecoin/aspire,ashleyholman/bitcoin,dan-mi-sun/bitcoin,odemolliens/bitcoinxt,thrasher-/litecoin,droark/bitcoin,Cocosoft/bitcoin,BTCfork/hardfork_prototype_1_mvf-bu,genavarov/lamacoin,marcusdiaz/BitcoinUnlimited,goldcoin/goldcoin,gzuser01/zetacoin-bitcoin,ClusterCoin/ClusterCoin,destenson/bitcoin--bitcoin,ppcoin/ppcoin,ftrader-bitcoinabc/bitcoin-abc,BitcoinUnlimited/BitcoinUnlimited,ryanxcharles/bitcoin,StarbuckBG/BTCGPU,anditto/bitcoin,czr5014iph/bitcoin4e,reorder/viacoin,jambolo/bitcoin,core-bitcoin/bitcoin,jamesob/bitcoin,Krellan/bitcoin,MazaCoin/maza,NateBrune/bitcoin-fio,nvmd/bitcoin,UdjinM6/dash,REAP720801/bitcoin,TrainMAnB/vcoincore,alecalve/bitcoin,dev1972/Satellitecoin,segwit/atbcoin-insight,rdqw/sscoin,simonmulser/bitcoin,shaolinfry/litecoin,tecnovert/particl-core,rebroad/bitcoin,dperel/bitcoin,tuaris/bitcoin,markf78/dollarcoin,accraze/bitcoin,SoreGums/bitcoinxt,kevcooper/bitcoin,shelvenzhou/BTCGPU,segwit/atbcoin-insight,aburan28/elements,ahmedbodi/test2,rawodb/bitcoin,Kixunil/keynescoin,thormuller/yescoin2,sbaks0820/bitcoin,instagibbs/bitcoin,litecoin-project/bitcoinomg,n1bor/bitcoin,jmcorgan/bitcoin,upgradeadvice/MUE-Src,kazcw/bitcoin,pinkevich/dash,oleganza/bitcoin-duo,zcoinofficial/zcoin,shaolinfry/litecoin,dagurval/bitcoinxt,achow101/bitcoin,ashleyholman/bitcoin,ahmedbodi/temp_vert,inutoshi/inutoshi,jl2012/litecoin,aniemerg/zcash,vlajos/bitcoin,SoreGums/bitcoinxt,faircoin/faircoin,bittylicious/bitcoin,bitreserve/bitcoin,my-first/octocoin,acid1789/bitcoin,FarhanHaque/bitcoin,Bushstar/UFO-Project,sugruedes/bitcoinxt,imton/bitcoin,reddink/reddcoin,NateBrune/bitcoin-nate,rjshaver/bitcoin,BlockchainTechLLC/3dcoin,truthcoin/blocksize-market,dperel/bitcoin,experiencecoin/experiencecoin,jameshilliard/bitcoin,upgradeadvice/MUE-Src,litecoin-project/litecore-litecoin,JeremyRand/bitcoin,willwray/dash,TripleSpeeder/bitcoin,ajtowns/bitcoin,bitcoinsSG/bitcoin,CoinProjects/AmsterdamCoin-v4,guncoin/guncoin,jaromil/faircoin2,TheBlueMatt/bitcoin,XertroV/bitcoin-nulldata,Tetpay/bitcoin,ivansib/sib16,jaromil/faircoin2,FarhanHaque/bitcoin,JeremyRand/namecore,goldcoin/Goldcoin-GLD,dgenr8/bitcoinxt,nomnombtc/bitcoin,btc1/bitcoin,kaostao/bitcoin,DynamicCoinOrg/DMC,rromanchuk/bitcoinxt,xurantju/bitcoin,misdess/bitcoin,DGCDev/argentum,namecoin/namecore,lbrtcoin/albertcoin,AdrianaDinca/bitcoin,bitcoin/bitcoin,koharjidan/litecoin,habibmasuro/bitcoinxt,Cloudsy/bitcoin,jtimon/elements,patricklodder/dogecoin,mockcoin/mockcoin,starwels/starwels,ivansib/sibcoin,chaincoin/chaincoin,amaivsimau/bitcoin,tdudz/elements,PIVX-Project/PIVX,brishtiteveja/truthcoin-cpp,janko33bd/bitcoin,dgenr8/bitcoin,DynamicCoinOrg/DMC,scmorse/bitcoin,pstratem/elements,appop/bitcoin,balajinandhu/bitcoin,error10/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,accraze/bitcoin,thesoftwarejedi/bitcoin,mm-s/bitcoin,ivansib/sib16,joshrabinowitz/bitcoin,vmp32k/litecoin,multicoins/marycoin,acid1789/bitcoin,Mirobit/bitcoin,lakepay/lake,globaltoken/globaltoken,TeamBitBean/bitcoin-core,ekankyesme/bitcoinxt,zcoinofficial/zcoin,welshjf/bitcoin,scippio/bitcoin,mb300sd/bitcoin,slingcoin/sling-market,ingresscoin/ingresscoin,haraldh/bitcoin,vlajos/bitcoin,jmgilbert2/energi,guncoin/guncoin,andres-root/bitcoinxt,CryptArc/bitcoinxt,Kogser/bitcoin,apoelstra/elements,apoelstra/bitcoin,schinzelh/dash,schinzelh/dash,shea256/bitcoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,syscoin/syscoin,wellenreiter01/Feathercoin,aspirecoin/aspire,blocktrail/bitcoin,jn2840/bitcoin,aniemerg/zcash,rromanchuk/bitcoinxt,Kcoin-project/kcoin,grumpydevelop/singularity,Kogser/bitcoin,keesdewit82/LasVegasCoin,janko33bd/bitcoin,awemany/BitcoinUnlimited,cryptoprojects/ultimateonlinecash,cotner/bitcoin,mruddy/bitcoin,schinzelh/dash,ElementsProject/elements,tecnovert/particl-core,riecoin/riecoin,Bushstar/UFO-Project,guncoin/guncoin,CTRoundTable/Encrypted.Cash,romanornr/viacoin,jimmysong/bitcoin,dexX7/bitcoin,Domer85/dogecoin,ticclassic/ic,misdess/bitcoin,111t8e/bitcoin,Bitcoin-ABC/bitcoin-abc,sipa/elements,jmgilbert2/energi,dscotese/bitcoin,kleetus/bitcoin,adpg211/bitcoin-master,riecoin/riecoin,biblepay/biblepay,Rav3nPL/polcoin,sugruedes/bitcoinxt,welshjf/bitcoin,bcpki/testblocks,viacoin/viacoin,kallewoof/bitcoin,leofidus/glowing-octo-ironman,GroestlCoin/GroestlCoin,mrbandrews/bitcoin,presstab/PIVX,terracoin/terracoin,nathan-at-least/zcash,RHavar/bitcoin,rdqw/sscoin,bitcoinclassic/bitcoinclassic,ShwoognationHQ/bitcoin,Metronotes/bitcoin,xuyangcn/opalcoin,bitpay/bitcoin,fullcoins/fullcoin,aburan28/elements,PRabahy/bitcoin,credits-currency/credits,monacoinproject/monacoin,n1bor/bitcoin,faircoin/faircoin2,dgarage/bc3,TierNolan/bitcoin,ptschip/bitcoin,dogecoin/dogecoin,jonghyeopkim/bitcoinxt,PandaPayProject/PandaPay,kleetus/bitcoin,schildbach/bitcoin,koharjidan/bitcoin,Kenwhite23/litecoin,mikehearn/bitcoinxt,vericoin/vericoin-core,bitcoinxt/bitcoinxt,ajweiss/bitcoin,kallewoof/bitcoin,Mirobit/bitcoin,fsb4000/bitcoin,crowning2/dash,coinkeeper/2015-06-22_18-37_dogecoin,genavarov/brcoin,elliotolds/bitcoin,ashleyholman/bitcoin,Kogser/bitcoin,worldbit/worldbit,royosherove/bitcoinxt,untrustbank/litecoin,EthanHeilman/bitcoin,ericshawlinux/bitcoin,TrainMAnB/vcoincore,markf78/dollarcoin,stamhe/bitcoin,error10/bitcoin,leofidus/glowing-octo-ironman,svost/bitcoin,Cloudsy/bitcoin,21E14/bitcoin,practicalswift/bitcoin,kirkalx/bitcoin,bitcoinsSG/bitcoin,martindale/elements,antonio-fr/bitcoin,schinzelh/dash,zcoinofficial/zcoin,particl/particl-core,rjshaver/bitcoin,npccoin/npccoin,martindale/elements,scmorse/bitcoin,irvingruan/bitcoin,genavarov/lamacoin,anditto/bitcoin,andreaskern/bitcoin,DGCDev/argentum,Electronic-Gulden-Foundation/egulden,111t8e/bitcoin,Ziftr/bitcoin,Friedbaumer/litecoin,coinkeeper/2015-06-22_18-39_feathercoin,bcpki/nonce2testblocks,RHavar/bitcoin,faircoin/faircoin2,marcusdiaz/BitcoinUnlimited,biblepay/biblepay,KnCMiner/bitcoin,jlopp/statoshi,dogecoin/dogecoin,botland/bitcoin,sarielsaz/sarielsaz,Kixunil/keynescoin,millennial83/bitcoin,BitcoinUnlimited/BitcoinUnlimited,MonetaryUnit/MUE-Src,steakknife/bitcoin-qt,JeremyRand/bitcoin,safecoin/safecoin,BitcoinPOW/BitcoinPOW,fujicoin/fujicoin,ryanxcharles/bitcoin,PandaPayProject/PandaPay,BitzenyCoreDevelopers/bitzeny,alecalve/bitcoin,presstab/PIVX,ivansib/sib16,ivansib/sibcoin,bitpay/bitcoin,nathan-at-least/zcash,myriadteam/myriadcoin,aciddude/Feathercoin,reorder/viacoin,jnewbery/bitcoin,tedlz123/Bitcoin,jiangyonghang/bitcoin,meighti/bitcoin,gapcoin/gapcoin,dcousens/bitcoin,mastercoin-MSC/mastercore,AkioNak/bitcoin,nmarley/dash,rawodb/bitcoin,lbrtcoin/albertcoin,Xekyo/bitcoin,nightlydash/darkcoin,UdjinM6/dash,xawksow/GroestlCoin,namecoin/namecore,ludbb/bitcoin,DogTagRecon/Still-Leraning,ppcoin/ppcoin,fsb4000/bitcoin,fsb4000/bitcoin,cmgustavo/bitcoin,PRabahy/bitcoin,Michagogo/bitcoin,ShadowMyst/creativechain-core,Horrorcoin/horrorcoin,Kogser/bitcoin,deuscoin/deuscoin,midnight-miner/LasVegasCoin,atgreen/bitcoin,JeremyRand/bitcoin,jonghyeopkim/bitcoinxt,Mrs-X/PIVX,wederw/bitcoin,lbrtcoin/albertcoin,RazorLove/cloaked-octo-spice,coinkeeper/2015-06-22_19-07_digitalcoin,chaincoin/chaincoin,ptschip/bitcoin,ShadowMyst/creativechain-core,Har01d/bitcoin,UASF/bitcoin,josephbisch/namecoin-core,Kogser/bitcoin,zottejos/merelcoin,scippio/bitcoin,antonio-fr/bitcoin,cryptoprojects/ultimateonlinecash,lbryio/lbrycrd,coinkeeper/2015-06-22_19-07_digitalcoin,jaromil/faircoin2,UdjinM6/dash,bcpki/nonce2testblocks,octocoin-project/octocoin,rnicoll/dogecoin,cmgustavo/bitcoin,lateminer/bitcoin,zixan/bitcoin,sipa/bitcoin,ArgonToken/ArgonToken,Sjors/bitcoin,litecoin-project/litecoin,kfitzgerald/titcoin,Rav3nPL/doubloons-0.10,riecoin/riecoin,HashUnlimited/Einsteinium-Unlimited,cculianu/bitcoin-abc,digideskio/namecoin,dperel/bitcoin,marlengit/hardfork_prototype_1_mvf-bu,blood2/bloodcoin-0.9,benma/bitcoin,r8921039/bitcoin,Xekyo/bitcoin,willwray/dash,CTRoundTable/Encrypted.Cash,dannyperez/bolivarcoin,goku1997/bitcoin,crowning2/dash,isle2983/bitcoin,40thoughts/Coin-QualCoin,EntropyFactory/creativechain-core,RongxinZhang/bitcoinxt,initaldk/bitcoin,bankonmecoin/bitcoin,CryptArc/bitcoinxt,myriadteam/myriadcoin,ardsu/bitcoin,benosa/bitcoin,phelix/namecore,DMDcoin/Diamond,wcwu/bitcoin,BlockchainTechLLC/3dcoin,jlopp/statoshi,wellenreiter01/Feathercoin,RazorLove/cloaked-octo-spice,Friedbaumer/litecoin,dmrtsvetkov/flowercoin,benma/bitcoin,wtogami/bitcoin,isle2983/bitcoin,MasterX1582/bitcoin-becoin,genavarov/lamacoin,MonetaryUnit/MUE-Src,FinalHashLLC/namecore,blocktrail/bitcoin,ticclassic/ic,PIVX-Project/PIVX,pinheadmz/bitcoin,PIVX-Project/PIVX,lakepay/lake,coinkeeper/2015-06-22_18-52_viacoin,bitcoinclassic/bitcoinclassic,Xekyo/bitcoin,Anoncoin/anoncoin,Bitcoin-ABC/bitcoin-abc,irvingruan/bitcoin,scippio/bitcoin,habibmasuro/bitcoinxt,genavarov/brcoin,acid1789/bitcoin,matlongsi/micropay,fanquake/bitcoin,plncoin/PLNcoin_Core,capitalDIGI/litecoin,iosdevzone/bitcoin,capitalDIGI/litecoin,gjhiggins/vcoincore,aburan28/elements,TierNolan/bitcoin,jonasnick/bitcoin,schinzelh/dash,fanquake/bitcoin,Jeff88Ho/bitcoin,Theshadow4all/ShadowCoin,neuroidss/bitcoin,dcousens/bitcoin,prark/bitcoinxt,simdeveloper/bitcoin,masterbraz/dg,chaincoin/chaincoin,BTCDDev/bitcoin,funbucks/notbitcoinxt,SartoNess/BitcoinUnlimited,Friedbaumer/litecoin,haobtc/bitcoin,Lucky7Studio/bitcoin,Bitcoin-com/BUcash,BitzenyCoreDevelopers/bitzeny,syscoin/syscoin,bitcoinknots/bitcoin,GroestlCoin/bitcoin,deadalnix/bitcoin,jakeva/bitcoin-pwcheck,goldcoin/goldcoin,jonghyeopkim/bitcoinxt,xuyangcn/opalcoin,rustyrussell/bitcoin,funkshelper/woodcore,JeremyRand/namecore,oklink-dev/bitcoin,tjps/bitcoin,dgenr8/bitcoinxt,wangliu/bitcoin,dperel/bitcoin,ivansib/sib16,jambolo/bitcoin,lclc/bitcoin,Alonzo-Coeus/bitcoin,vertcoin/vertcoin,btc1/bitcoin,bcpki/nonce2,Bloom-Project/Bloom,jtimon/elements,Vsync-project/Vsync,paveljanik/bitcoin,oleganza/bitcoin-duo,Diapolo/bitcoin,robvanbentem/bitcoin,bitcoinknots/bitcoin,stevemyers/bitcoinxt,afk11/bitcoin,phplaboratory/psiacoin,experiencecoin/experiencecoin,jn2840/bitcoin,morcos/bitcoin,blocktrail/bitcoin,MazaCoin/mazacoin-new,destenson/bitcoin--bitcoin,shomeser/bitcoin,kbccoin/kbc,bcpki/nonce2,supcoin/supcoin,KibiCoin/kibicoin,dpayne9000/Rubixz-Coin,coinwarp/dogecoin,nathan-at-least/zcash,gwillen/elements,syscoin/syscoin,cryptodev35/icash,EthanHeilman/bitcoin,jrmithdobbs/bitcoin,tmagik/catcoin,arruah/ensocoin,hsavit1/bitcoin,namecoin/namecoin-core,starwels/starwels,stamhe/bitcoin,putinclassic/putic,fujicoin/fujicoin,capitalDIGI/DIGI-v-0-10-4,prark/bitcoinxt,psionin/smartcoin,Thracky/monkeycoin,ionomy/ion,gjhiggins/vcoincore,cheehieu/bitcoin,bitjson/hivemind,greencoin-dev/digitalcoin,cannabiscoindev/cannabiscoin420,RHavar/bitcoin,ShwoognationHQ/bitcoin,Christewart/bitcoin,jeromewu/bitcoin-opennet,inkvisit/sarmacoins,peercoin/peercoin,misdess/bitcoin,h4x3rotab/BTCGPU,sipsorcery/bitcoin,monacoinproject/monacoin,aniemerg/zcash,wangliu/bitcoin,oklink-dev/bitcoin,schildbach/bitcoin,steakknife/bitcoin-qt,bitcoin/bitcoin,h4x3rotab/BTCGPU,Bitcoinsulting/bitcoinxt,Friedbaumer/litecoin,wtogami/bitcoin,1185/starwels,GroundRod/anoncoin,credits-currency/credits,ediston/energi,marcusdiaz/BitcoinUnlimited,Justaphf/BitcoinUnlimited,shaolinfry/litecoin,aspirecoin/aspire,nbenoit/bitcoin,myriadteam/myriadcoin,shomeser/bitcoin,ajweiss/bitcoin,uphold/bitcoin,droark/elements,ahmedbodi/terracoin,mobicoins/mobicoin-core,particl/particl-core,goldcoin/Goldcoin-GLD,ardsu/bitcoin,bitcoinxt/bitcoinxt,gwillen/elements,haisee/dogecoin,segsignal/bitcoin,zander/bitcoinclassic,BTCTaras/bitcoin,ahmedbodi/temp_vert,mapineda/litecoin,capitalDIGI/litecoin,dogecoin/dogecoin,dogecoin/dogecoin,bitcoin/bitcoin,xuyangcn/opalcoin,Jcing95/iop-hd,argentumproject/argentum,sdaftuar/bitcoin,iosdevzone/bitcoin,s-matthew-english/bitcoin,untrustbank/litecoin,dmrtsvetkov/flowercoin,marlengit/hardfork_prototype_1_mvf-bu,destenson/bitcoin--bitcoin,zetacoin/zetacoin,kleetus/bitcoinxt,freelion93/mtucicoin,nailtaras/nailcoin,bitcoinsSG/bitcoin,bitbrazilcoin-project/bitbrazilcoin,bitcoinclassic/bitcoinclassic,funkshelper/woodcoin-b,48thct2jtnf/P,aniemerg/zcash,krzysztofwos/BitcoinUnlimited,s-matthew-english/bitcoin,Anfauglith/iop-hd,midnight-miner/LasVegasCoin,globaltoken/globaltoken,earonesty/bitcoin,lbrtcoin/albertcoin,TGDiamond/Diamond,n1bor/bitcoin,ClusterCoin/ClusterCoin,Electronic-Gulden-Foundation/egulden,pstratem/elements,pstratem/bitcoin,instagibbs/bitcoin,wederw/bitcoin,s-matthew-english/bitcoin,dcousens/bitcoin,drwasho/bitcoinxt,bespike/litecoin,fedoracoin-dev/fedoracoin,wellenreiter01/Feathercoin,Gazer022/bitcoin,truthcoin/blocksize-market,syscoin/syscoin2,Petr-Economissa/gvidon,simonmulser/bitcoin,pastday/bitcoinproject,joroob/reddcoin,tropa/axecoin,metacoin/florincoin,haobtc/bitcoin,aciddude/Feathercoin,iosdevzone/bitcoin,freelion93/mtucicoin,sipa/elements,Rav3nPL/polcoin,metacoin/florincoin,sipa/elements,welshjf/bitcoin,ftrader-bitcoinabc/bitcoin-abc,ColossusCoinXT/ColossusCoinXT,BTCfork/hardfork_prototype_1_mvf-core,loxal/zcash,Jeff88Ho/bitcoin,TrainMAnB/vcoincore,prark/bitcoinxt,neuroidss/bitcoin,senadmd/coinmarketwatch,elliotolds/bitcoin,ixcoinofficialpage/master,pinkevich/dash,Justaphf/BitcoinUnlimited,phelix/bitcoin,Metronotes/bitcoin,sugruedes/bitcoin,skaht/bitcoin,torresalyssa/bitcoin,cmgustavo/bitcoin,NicolasDorier/bitcoin,Flurbos/Flurbo,jtimon/elements,Jcing95/iop-hd,vcoin-project/vcoincore,funkshelper/woodcore,mapineda/litecoin,Alex-van-der-Peet/bitcoin,slingcoin/sling-market,11755033isaprimenumber/Feathercoin,donaloconnor/bitcoin,PRabahy/bitcoin,worldbit/worldbit,jnewbery/bitcoin,theuni/bitcoin,koharjidan/dogecoin,jambolo/bitcoin,dogecoin/dogecoin,apoelstra/elements,benzmuircroft/REWIRE.io,ingresscoin/ingresscoin,sebrandon1/bitcoin,wtogami/bitcoin,theuni/bitcoin,dagurval/bitcoinxt,btcdrak/bitcoin,krzysztofwos/BitcoinUnlimited,ahmedbodi/terracoin,fsb4000/bitcoin,Kangmo/bitcoin,Kenwhite23/litecoin,midnight-miner/LasVegasCoin,dexX7/mastercore,mapineda/litecoin,bitcoinknots/bitcoin,MeshCollider/bitcoin,Bitcoin-com/BUcash,coinkeeper/2015-06-22_19-00_ziftrcoin,maaku/bitcoin,21E14/bitcoin,litecoin-project/litecore-litecoin,globaltoken/globaltoken,puticcoin/putic,error10/bitcoin,Anfauglith/iop-hd,bitjson/hivemind,cryptoprojects/ultimateonlinecash,kaostao/bitcoin,chaincoin/chaincoin,goldcoin/goldcoin,ColossusCoinXT/ColossusCoinXT,GreenParhelia/bitcoin,presstab/PIVX,kazcw/bitcoin,bitcoinec/bitcoinec,jnewbery/bitcoin,alejandromgk/Lunar,cdecker/bitcoin,Flowdalic/bitcoin,StarbuckBG/BTCGPU,zenywallet/bitzeny,phplaboratory/psiacoin,roques/bitcoin,arruah/ensocoin,xurantju/bitcoin,stamhe/bitcoin,rawodb/bitcoin,blood2/bloodcoin-0.9,botland/bitcoin,FarhanHaque/bitcoin,coinkeeper/2015-06-22_18-36_darkcoin,Mrs-X/PIVX,uphold/bitcoin,bitcoin/bitcoin,ediston/energi,ahmedbodi/terracoin,sugruedes/bitcoin,se3000/bitcoin,BigBlueCeiling/augmentacoin,dexX7/bitcoin,tecnovert/particl-core,nathaniel-mahieu/bitcoin,dagurval/bitcoinxt,amaivsimau/bitcoin,domob1812/bitcoin,error10/bitcoin,daveperkins-github/bitcoin-dev,nmarley/dash,m0gliE/fastcoin-cli,TBoehm/greedynode,randy-waterhouse/bitcoin,gameunits/gameunits,achow101/bitcoin,aspirecoin/aspire,Alex-van-der-Peet/bitcoin,cryptodev35/icash,jtimon/elements,millennial83/bitcoin,lbrtcoin/albertcoin,48thct2jtnf/P,petertodd/bitcoin,MeshCollider/bitcoin,UFOCoins/ufo,n1bor/bitcoin,namecoin/namecore,JeremyRand/bitcoin,xuyangcn/opalcoin,11755033isaprimenumber/Feathercoin,domob1812/bitcoin,se3000/bitcoin,Gazer022/bitcoin,Darknet-Crypto/Darknet,BTCfork/hardfork_prototype_1_mvf-core,puticcoin/putic,jaromil/faircoin2,pascalguru/florincoin,ivansib/sibcoin,particl/particl-core,cculianu/bitcoin-abc,ArgonToken/ArgonToken,ticclassic/ic,hasanatkazmi/bitcoin,Kogser/bitcoin,npccoin/npccoin,btc1/bitcoin,gzuser01/zetacoin-bitcoin,peercoin/peercoin,vmp32k/litecoin,rustyrussell/bitcoin,Earlz/renamedcoin,TeamBitBean/bitcoin-core,viacoin/viacoin,shaulkf/bitcoin,digibyte/digibyte,nathaniel-mahieu/bitcoin,josephbisch/namecoin-core,Mrs-X/Darknet,morcos/bitcoin,ekankyesme/bitcoinxt,nmarley/dash,Earlz/renamedcoin,litecoin-project/litecore-litecoin,Mrs-X/Darknet,elecoin/elecoin,xieta/mincoin,Christewart/bitcoin,litecoin-project/litecoin,bitbrazilcoin-project/bitbrazilcoin,cheehieu/bitcoin,viacoin/viacoin,jlopp/statoshi,presstab/PIVX,coinwarp/dogecoin,alejandromgk/Lunar,habibmasuro/bitcoin,supcoin/supcoin,Bitcoinsulting/bitcoinxt,Darknet-Crypto/Darknet,rsdevgun16e/energi,pascalguru/florincoin,Bitcoin-ABC/bitcoin-abc,jakeva/bitcoin-pwcheck,marlengit/hardfork_prototype_1_mvf-bu,fullcoins/fullcoin,putinclassic/putic,arnuschky/bitcoin,rat4/bitcoin,unsystemizer/bitcoin,cannabiscoindev/cannabiscoin420,BTCDDev/bitcoin,loxal/zcash,dcousens/bitcoin,ahmedbodi/vertcoin,ahmedbodi/vertcoin,Ziftr/bitcoin,capitalDIGI/litecoin,zotherstupidguy/bitcoin,BitzenyCoreDevelopers/bitzeny,tdudz/elements,BitcoinHardfork/bitcoin,ptschip/bitcoinxt,omefire/bitcoin,HeliumGas/helium,1185/starwels,tjps/bitcoin,shaolinfry/litecoin,brandonrobertz/namecoin-core,BigBlueCeiling/augmentacoin,gandrewstone/bitcoinxt,nigeriacoin/nigeriacoin,jrick/bitcoin,mobicoins/mobicoin-core,ftrader-bitcoinabc/bitcoin-abc,phelix/bitcoin,metacoin/florincoin,likecoin-dev/bitcoin,arnuschky/bitcoin,ptschip/bitcoin,m0gliE/fastcoin-cli,acid1789/bitcoin,donaloconnor/bitcoin,Rav3nPL/bitcoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,alejandromgk/Lunar,KibiCoin/kibicoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,Kore-Core/kore,benosa/bitcoin,biblepay/biblepay,Chancoin-core/CHANCOIN,jn2840/bitcoin,CryptArc/bitcoin,litecoin-project/litecoin,ticclassic/ic,droark/elements,haraldh/bitcoin,midnight-miner/LasVegasCoin,domob1812/namecore,SoreGums/bitcoinxt,cryptodev35/icash,svost/bitcoin,octocoin-project/octocoin,PIVX-Project/PIVX,cdecker/bitcoin,marlengit/BitcoinUnlimited,vcoin-project/vcoincore,vcoin-project/vcoincore,uphold/bitcoin,biblepay/biblepay,ColossusCoinXT/ColossusCoinXT,pelorusjack/BlockDX,Mrs-X/Darknet,romanornr/viacoin,ripper234/bitcoin,zenywallet/bitzeny,EntropyFactory/creativechain-core,isle2983/bitcoin,braydonf/bitcoin,coinkeeper/2015-06-22_18-37_dogecoin,phelix/bitcoin,dashpay/dash,biblepay/biblepay,kazcw/bitcoin,ionomy/ion,cannabiscoindev/cannabiscoin420,cculianu/bitcoin-abc,prark/bitcoinxt,funbucks/notbitcoinxt,Bloom-Project/Bloom,collapsedev/cashwatt,isghe/bitcoinxt,mockcoin/mockcoin,bittylicious/bitcoin,jameshilliard/bitcoin,Xekyo/bitcoin,kfitzgerald/titcoin,elliotolds/bitcoin,dscotese/bitcoin,my-first/octocoin,GIJensen/bitcoin,rawodb/bitcoin,Horrorcoin/horrorcoin,MonetaryUnit/MUE-Src,kaostao/bitcoin,ctwiz/stardust,Rav3nPL/polcoin,zixan/bitcoin,bitcoinplusorg/xbcwalletsource,48thct2jtnf/P,koharjidan/dogecoin,zotherstupidguy/bitcoin,goldcoin/goldcoin,FeatherCoin/Feathercoin,botland/bitcoin,roques/bitcoin,BitcoinPOW/BitcoinPOW,andres-root/bitcoinxt,instagibbs/bitcoin,Bitcoin-com/BUcash,coinkeeper/2015-06-22_19-00_ziftrcoin,svost/bitcoin,bitcoin-hivemind/hivemind,DogTagRecon/Still-Leraning,zsulocal/bitcoin,CryptArc/bitcoin,Exgibichi/statusquo,bespike/litecoin,multicoins/marycoin,Krellan/bitcoin,upgradeadvice/MUE-Src,multicoins/marycoin,langerhans/dogecoin,aciddude/Feathercoin,btcdrak/bitcoin,ctwiz/stardust,sebrandon1/bitcoin,gazbert/bitcoin,BTCDDev/bitcoin,marlengit/BitcoinUnlimited,reddcoin-project/reddcoin,dev1972/Satellitecoin,sugruedes/bitcoin,SartoNess/BitcoinUnlimited,daveperkins-github/bitcoin-dev,oklink-dev/bitcoin,bittylicious/bitcoin,Lucky7Studio/bitcoin,Christewart/bitcoin,nbenoit/bitcoin,aspirecoin/aspire,elliotolds/bitcoin,KaSt/ekwicoin,DMDcoin/Diamond,Tetpay/bitcoin,mikehearn/bitcoinxt,coinerd/krugercoin,gameunits/gameunits,octocoin-project/octocoin,DigiByte-Team/digibyte,keo/bitcoin,anditto/bitcoin,MarcoFalke/bitcoin,reorder/viacoin,JeremyRand/namecoin-core,apoelstra/bitcoin,FinalHashLLC/namecore,bitcoin-hivemind/hivemind,achow101/bitcoin,oklink-dev/bitcoin,pstratem/elements,koharjidan/litecoin,Exceltior/dogecoin,brishtiteveja/sherlockcoin,zander/bitcoinclassic,martindale/elements,apoelstra/elements,bitcoinec/bitcoinec,thormuller/yescoin2,jrick/bitcoin,simonmulser/bitcoin,tropa/axecoin,x-kalux/bitcoin_WiG-B,MeshCollider/bitcoin,qtumproject/qtum,MazaCoin/maza,drwasho/bitcoinxt,blood2/bloodcoin-0.9,deeponion/deeponion,gjhiggins/vcoincore,andres-root/bitcoinxt,kirkalx/bitcoin,jn2840/bitcoin,jrmithdobbs/bitcoin,iosdevzone/bitcoin,Horrorcoin/horrorcoin,tjps/bitcoin,FeatherCoin/Feathercoin,bitcoinsSG/bitcoin,jamesob/bitcoin,crowning2/dash,48thct2jtnf/P,cotner/bitcoin,josephbisch/namecoin-core,EntropyFactory/creativechain-core,hasanatkazmi/bitcoin,jeromewu/bitcoin-opennet,EntropyFactory/creativechain-core,rsdevgun16e/energi,BTCGPU/BTCGPU,acid1789/bitcoin,bitjson/hivemind,monacoinproject/monacoin,ryanxcharles/bitcoin,dannyperez/bolivarcoin,misdess/bitcoin,rat4/bitcoin,hyperwang/bitcoin,simdeveloper/bitcoin,simonmulser/bitcoin,joshrabinowitz/bitcoin,royosherove/bitcoinxt,coinkeeper/2015-06-22_18-31_bitcoin,CTRoundTable/Encrypted.Cash,cddjr/BitcoinUnlimited,brishtiteveja/truthcoin-cpp,pinkevich/dash,AdrianaDinca/bitcoin,NateBrune/bitcoin-nate,Jeff88Ho/bitcoin,elecoin/elecoin,roques/bitcoin,Diapolo/bitcoin,jrmithdobbs/bitcoin,vericoin/vericoin-core,mitchellcash/bitcoin,spiritlinxl/BTCGPU,benma/bitcoin,funkshelper/woodcore,BitzenyCoreDevelopers/bitzeny,se3000/bitcoin,isghe/bitcoinxt,nmarley/dash,MazaCoin/maza,RibbitFROG/ribbitcoin,ctwiz/stardust,collapsedev/cashwatt,bitcoin-hivemind/hivemind,h4x3rotab/BTCGPU,PIVX-Project/PIVX,rat4/bitcoin,emc2foundation/einsteinium,reddink/reddcoin,adpg211/bitcoin-master,unsystemizer/bitcoin,ahmedbodi/temp_vert,skaht/bitcoin,jambolo/bitcoin,shouhuas/bitcoin,BTCDDev/bitcoin,greenaddress/bitcoin,stamhe/bitcoin,Krellan/bitcoin,gjhiggins/vcoincore,arruah/ensocoin,zixan/bitcoin,kleetus/bitcoinxt,zander/bitcoinclassic,wederw/bitcoin,jrick/bitcoin,vlajos/bitcoin,qtumproject/qtum,Vector2000/bitcoin,pelorusjack/BlockDX,trippysalmon/bitcoin,nikkitan/bitcoin,pastday/bitcoinproject,senadmd/coinmarketwatch,BTCfork/hardfork_prototype_1_mvf-bu,DGCDev/digitalcoin,mitchellcash/bitcoin,sarielsaz/sarielsaz,uphold/bitcoin,jiangyonghang/bitcoin,dcousens/bitcoin,kleetus/bitcoin,cyrixhero/bitcoin,dannyperez/bolivarcoin,jameshilliard/bitcoin,sirk390/bitcoin,ravenbyron/phtevencoin,lbryio/lbrycrd,Vsync-project/Vsync,KaSt/ekwicoin,40thoughts/Coin-QualCoin,coinkeeper/2015-06-22_18-36_darkcoin,florincoin/florincoin,GroestlCoin/bitcoin,nigeriacoin/nigeriacoin,sickpig/BitcoinUnlimited,martindale/elements,ElementsProject/elements,kleetus/bitcoin,dgenr8/bitcoin,reddcoin-project/reddcoin,plncoin/PLNcoin_Core,jimmykiselak/lbrycrd,habibmasuro/bitcoin,vericoin/vericoin-core,scmorse/bitcoin,markf78/dollarcoin,jameshilliard/bitcoin,domob1812/bitcoin,AllanDoensen/BitcoinUnlimited,pelorusjack/BlockDX,sbaks0820/bitcoin,neuroidss/bitcoin,unsystemizer/bitcoin,hophacker/bitcoin_malleability,174high/bitcoin,simdeveloper/bitcoin,Flurbos/Flurbo,tedlz123/Bitcoin,ShwoognationHQ/bitcoin,Kogser/bitcoin,antcheck/antcoin,wangxinxi/litecoin,isocolsky/bitcoinxt,Rav3nPL/PLNcoin,alecalve/bitcoin,adpg211/bitcoin-master,koharjidan/bitcoin,benzmuircroft/REWIRE.io,tdudz/elements,KnCMiner/bitcoin,dgarage/bc2,bitcoinsSG/zcash,shea256/bitcoin,habibmasuro/bitcoinxt,zotherstupidguy/bitcoin,knolza/gamblr,sipa/elements,octocoin-project/octocoin,TheBlueMatt/bitcoin,thesoftwarejedi/bitcoin,irvingruan/bitcoin,itmanagerro/tresting,gandrewstone/BitcoinUnlimited,royosherove/bitcoinxt,genavarov/ladacoin,zottejos/merelcoin,josephbisch/namecoin-core,brishtiteveja/sherlockcoin,bitcoinclassic/bitcoinclassic,trippysalmon/bitcoin,genavarov/brcoin,fsb4000/bitcoin,vtafaucet/virtacoin,ZiftrCOIN/ziftrcoin,coinkeeper/2015-06-22_18-39_feathercoin,wiggi/huntercore,daliwangi/bitcoin,Kixunil/keynescoin,alejandromgk/Lunar,dexX7/mastercore,gjhiggins/vcoincore,emc2foundation/einsteinium,steakknife/bitcoin-qt,amaivsimau/bitcoin,sipa/bitcoin,brandonrobertz/namecoin-core,terracoin/terracoin,RazorLove/cloaked-octo-spice,bitcoinxt/bitcoinxt,Petr-Economissa/gvidon,coinkeeper/2015-06-22_18-39_feathercoin,UASF/bitcoin,reddcoin-project/reddcoin,MikeAmy/bitcoin,Kangmo/bitcoin,djpnewton/bitcoin,Xekyo/bitcoin,mikehearn/bitcoinxt,dscotese/bitcoin,magacoin/magacoin,Kangmo/bitcoin,ryanofsky/bitcoin,coinkeeper/2015-06-22_18-36_darkcoin,joshrabinowitz/bitcoin,dan-mi-sun/bitcoin,BitcoinUnlimited/BitcoinUnlimited,nvmd/bitcoin,andres-root/bitcoinxt,slingcoin/sling-market,nikkitan/bitcoin,dmrtsvetkov/flowercoin,donaloconnor/bitcoin,mb300sd/bitcoin,omefire/bitcoin,crowning-/dash,arnuschky/bitcoin,stevemyers/bitcoinxt,mincoin-project/mincoin,domob1812/i0coin,capitalDIGI/DIGI-v-0-10-4,robvanbentem/bitcoin,se3000/bitcoin,untrustbank/litecoin,pouta/bitcoin,mikehearn/bitcoin,Rav3nPL/PLNcoin,my-first/octocoin,simdeveloper/bitcoin,domob1812/huntercore,Thracky/monkeycoin,puticcoin/putic,gavinandresen/bitcoin-git,BitcoinUnlimited/BitcoinUnlimited,dashpay/dash,czr5014iph/bitcoin4e,senadmd/coinmarketwatch,Alonzo-Coeus/bitcoin,antcheck/antcoin,m0gliE/fastcoin-cli,prusnak/bitcoin,cannabiscoindev/cannabiscoin420,prusnak/bitcoin,trippysalmon/bitcoin,Rav3nPL/doubloons-0.10,butterflypay/bitcoin,MikeAmy/bitcoin,RyanLucchese/energi,BTCGPU/BTCGPU,Rav3nPL/bitcoin,ahmedbodi/temp_vert,faircoin/faircoin,coinerd/krugercoin,Rav3nPL/bitcoin,unsystemizer/bitcoin,pouta/bitcoin,digibyte/digibyte,knolza/gamblr,randy-waterhouse/bitcoin,MarcoFalke/bitcoin,daveperkins-github/bitcoin-dev,ZiftrCOIN/ziftrcoin,Vsync-project/Vsync,guncoin/guncoin,Bloom-Project/Bloom,CryptArc/bitcoinxt,constantine001/bitcoin,gmaxwell/bitcoin,bcpki/testblocks,jonasnick/bitcoin,matlongsi/micropay,antonio-fr/bitcoin,shouhuas/bitcoin,bitreserve/bitcoin,NicolasDorier/bitcoin,MarcoFalke/bitcoin,lbryio/lbrycrd,litecoin-project/bitcoinomg,odemolliens/bitcoinxt,fedoracoin-dev/fedoracoin,rnicoll/dogecoin,worldbit/worldbit,cqtenq/feathercoin_core,Vsync-project/Vsync,mitchellcash/bitcoin,Exgibichi/statusquo,GroestlCoin/GroestlCoin,starwels/starwels,DGCDev/argentum,initaldk/bitcoin,tropa/axecoin,dmrtsvetkov/flowercoin,MikeAmy/bitcoin,SoreGums/bitcoinxt,isghe/bitcoinxt,2XL/bitcoin,andreaskern/bitcoin,Alex-van-der-Peet/bitcoin,deuscoin/deuscoin,mycointest/owncoin,Kenwhite23/litecoin,ionomy/ion,lclc/bitcoin,particl/particl-core,Cloudsy/bitcoin,ptschip/bitcoinxt,sstone/bitcoin,kirkalx/bitcoin,Anfauglith/iop-hd,dexX7/bitcoin,drwasho/bitcoinxt,grumpydevelop/singularity,gravio-net/graviocoin,acid1789/bitcoin,mikehearn/bitcoinxt,funkshelper/woodcoin-b,jonghyeopkim/bitcoinxt,Anfauglith/iop-hd,wangxinxi/litecoin,Rav3nPL/bitcoin,Bitcoinsulting/bitcoinxt,JeremyRand/namecore,syscoin/syscoin2,inutoshi/inutoshi,NunoEdgarGub1/elements,keo/bitcoin,coinkeeper/2015-06-22_18-39_feathercoin,Har01d/bitcoin,trippysalmon/bitcoin,wbchen99/bitcoin-hnote0,dogecoin/dogecoin,tmagik/catcoin,peercoin/peercoin,Theshadow4all/ShadowCoin,Mrs-X/PIVX,cheehieu/bitcoin,loxal/zcash,RHavar/bitcoin,gmaxwell/bitcoin,benzmuircroft/REWIRE.io,neuroidss/bitcoin,untrustbank/litecoin,haisee/dogecoin,LIMXTEC/DMDv3,isghe/bitcoinxt,freelion93/mtucicoin,zottejos/merelcoin,Kore-Core/kore,pascalguru/florincoin,haobtc/bitcoin,bitcoinsSG/zcash,bitcoinplusorg/xbcwalletsource,cybermatatu/bitcoin,prark/bitcoinxt,chaincoin/chaincoin,Gazer022/bitcoin,iosdevzone/bitcoin,TripleSpeeder/bitcoin,genavarov/ladacoin,nailtaras/nailcoin,brandonrobertz/namecoin-core,cotner/bitcoin,nathaniel-mahieu/bitcoin,rebroad/bitcoin,martindale/elements,Thracky/monkeycoin,tuaris/bitcoin,projectinterzone/ITZ,puticcoin/putic,romanornr/viacoin,welshjf/bitcoin,nailtaras/nailcoin,shelvenzhou/BTCGPU,shea256/bitcoin,Jeff88Ho/bitcoin,collapsedev/cashwatt,bmp02050/ReddcoinUpdates,willwray/dash,xawksow/GroestlCoin,BitcoinUnlimited/BitcoinUnlimited,ClusterCoin/ClusterCoin,bittylicious/bitcoin,langerhans/dogecoin,nomnombtc/bitcoin,cyrixhero/bitcoin,royosherove/bitcoinxt,jamesob/bitcoin,theuni/bitcoin,DMDcoin/Diamond,llluiop/bitcoin,Mirobit/bitcoin,reddcoin-project/reddcoin,HashUnlimited/Einsteinium-Unlimited,phelix/namecore,21E14/bitcoin,metacoin/florincoin,kirkalx/bitcoin,appop/bitcoin,tdudz/elements,LIMXTEC/DMDv3,bittylicious/bitcoin,Kixunil/keynescoin,coinkeeper/2015-06-22_18-52_viacoin,Lucky7Studio/bitcoin,superjudge/bitcoin,marlengit/BitcoinUnlimited,MazaCoin/mazacoin-new,JeremyRubin/bitcoin,schildbach/bitcoin,kallewoof/bitcoin,keesdewit82/LasVegasCoin,OmniLayer/omnicore,MonetaryUnit/MUE-Src,joulecoin/joulecoin,drwasho/bitcoinxt,MasterX1582/bitcoin-becoin,pataquets/namecoin-core,Kangmo/bitcoin,Mirobit/bitcoin,prusnak/bitcoin,BlockchainTechLLC/3dcoin,core-bitcoin/bitcoin,Christewart/bitcoin,kleetus/bitcoinxt,LIMXTEC/DMDv3,willwray/dash,myriadcoin/myriadcoin,patricklodder/dogecoin,NateBrune/bitcoin-nate,mm-s/bitcoin,superjudge/bitcoin,stevemyers/bitcoinxt,axelxod/braincoin,NicolasDorier/bitcoin,dashpay/dash,tedlz123/Bitcoin,zetacoin/zetacoin,habibmasuro/bitcoinxt,deadalnix/bitcoin,sebrandon1/bitcoin,174high/bitcoin,sbaks0820/bitcoin,HeliumGas/helium,btcdrak/bitcoin,Mrs-X/Darknet,ericshawlinux/bitcoin,tjth/lotterycoin,oklink-dev/bitcoin_block,gavinandresen/bitcoin-git,cryptoprojects/ultimateonlinecash,sbellem/bitcoin,sbellem/bitcoin,dgarage/bc3,Exceltior/dogecoin,theuni/bitcoin,hyperwang/bitcoin,Mrs-X/PIVX,ionomy/ion,bankonmecoin/bitcoin,NunoEdgarGub1/elements,funkshelper/woodcoin-b,jrick/bitcoin,pinkevich/dash,ptschip/bitcoin,ajweiss/bitcoin,tjps/bitcoin,KaSt/ekwicoin,gapcoin/gapcoin,bitreserve/bitcoin,NateBrune/bitcoin-fio,n1bor/bitcoin,bickojima/bitzeny,sugruedes/bitcoinxt,GreenParhelia/bitcoin,TeamBitBean/bitcoin-core,nsacoin/nsacoin,Bitcoin-ABC/bitcoin-abc,greencoin-dev/digitalcoin,basicincome/unpcoin-core,appop/bitcoin,zander/bitcoinclassic,marlengit/hardfork_prototype_1_mvf-bu,Christewart/bitcoin,jeromewu/bitcoin-opennet,alecalve/bitcoin,greencoin-dev/digitalcoin,plncoin/PLNcoin_Core,jameshilliard/bitcoin,nigeriacoin/nigeriacoin,pinheadmz/bitcoin,GlobalBoost/GlobalBoost,shea256/bitcoin,senadmd/coinmarketwatch,coinkeeper/2015-06-22_19-07_digitalcoin,ivansib/sibcoin,truthcoin/blocksize-market,kleetus/bitcoinxt,mitchellcash/bitcoin,koharjidan/dogecoin,vericoin/vericoin-core,qtumproject/qtum,OmniLayer/omnicore,nlgcoin/guldencoin-official,ericshawlinux/bitcoin,imton/bitcoin,meighti/bitcoin,mycointest/owncoin,Kore-Core/kore,Kcoin-project/kcoin,wangxinxi/litecoin,Bitcoin-ABC/bitcoin-abc,world-bank/unpay-core,bickojima/bitzeny,vericoin/vericoin-core,TierNolan/bitcoin,koharjidan/litecoin,RyanLucchese/energi,oklink-dev/bitcoin,RongxinZhang/bitcoinxt,segwit/atbcoin-insight,DGCDev/digitalcoin,elliotolds/bitcoin,x-kalux/bitcoin_WiG-B,vtafaucet/virtacoin,xurantju/bitcoin,inutoshi/inutoshi,DMDcoin/Diamond,litecoin-project/litecore-litecoin,leofidus/glowing-octo-ironman,wcwu/bitcoin,nmarley/dash,1185/starwels,pouta/bitcoin,monacoinproject/monacoin,mockcoin/mockcoin,mockcoin/mockcoin,parvez3019/bitcoin,Justaphf/BitcoinUnlimited,ingresscoin/ingresscoin,midnightmagic/bitcoin,balajinandhu/bitcoin,ArgonToken/ArgonToken,janko33bd/bitcoin,cculianu/bitcoin-abc,bitcoinplusorg/xbcwalletsource,dagurval/bitcoinxt,ingresscoin/ingresscoin,magacoin/magacoin,haraldh/bitcoin,vlajos/bitcoin,ivansib/sib16,spiritlinxl/BTCGPU,karek314/bitcoin,KibiCoin/kibicoin,tjth/lotterycoin,truthcoin/truthcoin-cpp,amaivsimau/bitcoin,xieta/mincoin,jl2012/litecoin,Diapolo/bitcoin,wiggi/huntercore,dperel/bitcoin,DSPay/DSPay,sbellem/bitcoin,nightlydash/darkcoin,ixcoinofficialpage/master,nomnombtc/bitcoin,bitcoinplusorg/xbcwalletsource,ixcoinofficialpage/master,droark/bitcoin,JeremyRand/namecore,dannyperez/bolivarcoin,midnight-miner/LasVegasCoin,FinalHashLLC/namecore,cannabiscoindev/cannabiscoin420,cdecker/bitcoin,Vector2000/bitcoin,gandrewstone/BitcoinUnlimited,axelxod/braincoin,OmniLayer/omnicore,florincoin/florincoin,freelion93/mtucicoin,trippysalmon/bitcoin,OstlerDev/florincoin,royosherove/bitcoinxt,safecoin/safecoin,nvmd/bitcoin,llluiop/bitcoin,shelvenzhou/BTCGPU,40thoughts/Coin-QualCoin,jl2012/litecoin,rebroad/bitcoin,deuscoin/deuscoin,NateBrune/bitcoin-nate,tuaris/bitcoin,yenliangl/bitcoin,keo/bitcoin,ppcoin/ppcoin,ftrader-bitcoinabc/bitcoin-abc,welshjf/bitcoin,Petr-Economissa/gvidon,aspanta/bitcoin,pataquets/namecoin-core,BitcoinHardfork/bitcoin,digideskio/namecoin,isocolsky/bitcoinxt,metacoin/florincoin,isghe/bitcoinxt,awemany/BitcoinUnlimited,GIJensen/bitcoin,GlobalBoost/GlobalBoost,spiritlinxl/BTCGPU,pascalguru/florincoin,zcoinofficial/zcoin,sipsorcery/bitcoin,likecoin-dev/bitcoin,TBoehm/greedynode,romanornr/viacoin,sirk390/bitcoin,vmp32k/litecoin,thelazier/dash,jmgilbert2/energi,keesdewit82/LasVegasCoin,ptschip/bitcoin,fedoracoin-dev/fedoracoin,Flowdalic/bitcoin,Bitcoin-com/BUcash,KaSt/ekwicoin,Chancoin-core/CHANCOIN,sipsorcery/bitcoin,dashpay/dash,rdqw/sscoin,apoelstra/elements,oklink-dev/bitcoin_block,viacoin/viacoin,2XL/bitcoin,safecoin/safecoin,jonasschnelli/bitcoin,litecoin-project/litecoin,MasterX1582/bitcoin-becoin,destenson/bitcoin--bitcoin,litecoin-project/litecoin,HashUnlimited/Einsteinium-Unlimited,Michagogo/bitcoin,nlgcoin/guldencoin-official,kallewoof/elements,brishtiteveja/truthcoin-cpp,wbchen99/bitcoin-hnote0,nsacoin/nsacoin,rnicoll/bitcoin,rat4/bitcoin,gapcoin/gapcoin,zcoinofficial/zcoin,patricklodder/dogecoin,cqtenq/feathercoin_core,putinclassic/putic,Ziftr/bitcoin,CryptArc/bitcoinxt,sirk390/bitcoin,GroundRod/anoncoin,ZiftrCOIN/ziftrcoin,apoelstra/elements,AllanDoensen/BitcoinUnlimited,Ziftr/bitcoin,lakepay/lake,BTCfork/hardfork_prototype_1_mvf-bu,BitcoinPOW/BitcoinPOW,butterflypay/bitcoin,awemany/BitcoinUnlimited,dan-mi-sun/bitcoin,btc1/bitcoin,PRabahy/bitcoin,itmanagerro/tresting,nailtaras/nailcoin,accraze/bitcoin,JeremyRubin/bitcoin,bitjson/hivemind,111t8e/bitcoin,brishtiteveja/sherlockcoin,r8921039/bitcoin,wtogami/bitcoin,ekankyesme/bitcoinxt,BTCfork/hardfork_prototype_1_mvf-bu,marcusdiaz/BitcoinUnlimited,CoinProjects/AmsterdamCoin-v4,kaostao/bitcoin,syscoin/syscoin,fussl/elements,ahmedbodi/test2,antcheck/antcoin,nightlydash/darkcoin,HeliumGas/helium,kallewoof/elements,Cocosoft/bitcoin,CodeShark/bitcoin,zottejos/merelcoin,ahmedbodi/terracoin,cerebrus29301/crowncoin,reddcoin-project/reddcoin,ardsu/bitcoin,namecoin/namecoin-core,mobicoins/mobicoin-core,nsacoin/nsacoin,bitjson/hivemind,jeromewu/bitcoin-opennet,pelorusjack/BlockDX,xieta/mincoin,goldcoin/goldcoin,prusnak/bitcoin,stevemyers/bitcoinxt,coinkeeper/2015-06-22_18-52_viacoin,bitcoinknots/bitcoin,paveljanik/bitcoin,joshrabinowitz/bitcoin,marklai9999/Taiwancoin,CoinProjects/AmsterdamCoin-v4,JeremyRubin/bitcoin,imton/bitcoin,kaostao/bitcoin,NicolasDorier/bitcoin,wangxinxi/litecoin,sugruedes/bitcoinxt,digibyte/digibyte,CTRoundTable/Encrypted.Cash,fussl/elements,cerebrus29301/crowncoin,wtogami/bitcoin,PRabahy/bitcoin,ShwoognationHQ/bitcoin,OstlerDev/florincoin,thesoftwarejedi/bitcoin,rnicoll/bitcoin,hasanatkazmi/bitcoin,npccoin/npccoin,jmgilbert2/energi,awemany/BitcoinUnlimited,lclc/bitcoin,nomnombtc/bitcoin,funkshelper/woodcoin-b,bcpki/testblocks,phelix/bitcoin,DMDcoin/Diamond,blocktrail/bitcoin,braydonf/bitcoin,MasterX1582/bitcoin-becoin,segsignal/bitcoin,DigiByte-Team/digibyte,ColossusCoinXT/ColossusCoinXT,bitcoinec/bitcoinec,gavinandresen/bitcoin-git,benosa/bitcoin,aniemerg/zcash,funbucks/notbitcoinxt,digideskio/namecoin,thormuller/yescoin2,daveperkins-github/bitcoin-dev,REAP720801/bitcoin,joshrabinowitz/bitcoin,bespike/litecoin,namecoin/namecore,botland/bitcoin,namecoin/namecoin-core,ediston/energi,masterbraz/dg,h4x3rotab/BTCGPU,benzmuircroft/REWIRE.io,ahmedbodi/vertcoin,DSPay/DSPay,mycointest/owncoin,habibmasuro/bitcoin,dexX7/bitcoin,matlongsi/micropay,GreenParhelia/bitcoin,itmanagerro/tresting,Flurbos/Flurbo,kazcw/bitcoin,oklink-dev/bitcoin_block,Flowdalic/bitcoin,imton/bitcoin,ixcoinofficialpage/master,111t8e/bitcoin,torresalyssa/bitcoin,goku1997/bitcoin,coinkeeper/2015-06-22_18-31_bitcoin,thelazier/dash,Exgibichi/statusquo,kazcw/bitcoin,DynamicCoinOrg/DMC,CodeShark/bitcoin,MazaCoin/mazacoin-new,domob1812/i0coin,Flowdalic/bitcoin,rromanchuk/bitcoinxt,worldbit/worldbit,mruddy/bitcoin,pelorusjack/BlockDX,sipa/elements,PIVX-Project/PIVX,zixan/bitcoin,Kcoin-project/kcoin,ShadowMyst/creativechain-core,Bitcoin-ABC/bitcoin-abc,cyrixhero/bitcoin,NateBrune/bitcoin-nate,shaulkf/bitcoin,joulecoin/joulecoin,lbrtcoin/albertcoin,Flurbos/Flurbo,earonesty/bitcoin,globaltoken/globaltoken,AllanDoensen/BitcoinUnlimited,2XL/bitcoin,NateBrune/bitcoin-fio,pinheadmz/bitcoin,r8921039/bitcoin,Bitcoin-ABC/bitcoin-abc,vertcoin/vertcoin,bitcoinplusorg/xbcwalletsource,Kangmo/bitcoin,czr5014iph/bitcoin4e,gravio-net/graviocoin,mockcoin/mockcoin,jeromewu/bitcoin-opennet,gazbert/bitcoin,mm-s/bitcoin,Alonzo-Coeus/bitcoin,zsulocal/bitcoin,marklai9999/Taiwancoin,benma/bitcoin,domob1812/huntercore,supcoin/supcoin,genavarov/ladacoin,magacoin/magacoin,ajtowns/bitcoin,mikehearn/bitcoinxt,gavinandresen/bitcoin-git,ajtowns/bitcoin,digibyte/digibyte,joulecoin/joulecoin,midnightmagic/bitcoin,daliwangi/bitcoin,jrmithdobbs/bitcoin,capitalDIGI/litecoin,GroestlCoin/bitcoin,argentumproject/argentum,cddjr/BitcoinUnlimited,Kenwhite23/litecoin,zetacoin/zetacoin,brandonrobertz/namecoin-core,daveperkins-github/bitcoin-dev,joulecoin/joulecoin,sirk390/bitcoin,ajweiss/bitcoin,JeremyRand/bitcoin,nathaniel-mahieu/bitcoin,Vector2000/bitcoin,hophacker/bitcoin_malleability,jimmykiselak/lbrycrd,midnightmagic/bitcoin,puticcoin/putic,thrasher-/litecoin,crowning-/dash,domob1812/namecore,RongxinZhang/bitcoinxt,loxal/zcash,ludbb/bitcoin,syscoin/syscoin,markf78/dollarcoin,odemolliens/bitcoinxt,psionin/smartcoin,andreaskern/bitcoin,Electronic-Gulden-Foundation/egulden,UASF/bitcoin,nightlydash/darkcoin,ptschip/bitcoin,wangxinxi/litecoin,greenaddress/bitcoin,DigitalPandacoin/pandacoin,truthcoin/truthcoin-cpp,zcoinofficial/zcoin,inutoshi/inutoshi,cqtenq/feathercoin_core,cybermatatu/bitcoin,theuni/bitcoin,superjudge/bitcoin,48thct2jtnf/P,dgarage/bc3,DSPay/DSPay,mapineda/litecoin,dexX7/bitcoin,BTCDDev/bitcoin,DynamicCoinOrg/DMC,BitcoinHardfork/bitcoin,se3000/bitcoin,pinkevich/dash,isocolsky/bitcoinxt,BTCDDev/bitcoin,Michagogo/bitcoin,Rav3nPL/polcoin,KnCMiner/bitcoin,prark/bitcoinxt,cryptoprojects/ultimateonlinecash,earonesty/bitcoin,TripleSpeeder/bitcoin,ericshawlinux/bitcoin,iosdevzone/bitcoin,aspanta/bitcoin,shouhuas/bitcoin,mb300sd/bitcoin,apoelstra/bitcoin,RyanLucchese/energi,Cocosoft/bitcoin,cryptodev35/icash,nailtaras/nailcoin,Alonzo-Coeus/bitcoin,Flowdalic/bitcoin,bitpay/bitcoin,pouta/bitcoin,benzmuircroft/REWIRE.io,BitcoinPOW/BitcoinPOW,biblepay/biblepay,okinc/bitcoin,rustyrussell/bitcoin,hsavit1/bitcoin,worldbit/worldbit,Kore-Core/kore,wangxinxi/litecoin,174high/bitcoin,sbaks0820/bitcoin,worldbit/worldbit,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,brishtiteveja/truthcoin-cpp,bmp02050/ReddcoinUpdates,masterbraz/dg,practicalswift/bitcoin,collapsedev/cashwatt,Kore-Core/kore,droark/bitcoin,coinkeeper/2015-06-22_19-00_ziftrcoin,knolza/gamblr,REAP720801/bitcoin,earonesty/bitcoin,TheBlueMatt/bitcoin,BitzenyCoreDevelopers/bitzeny,balajinandhu/bitcoin,parvez3019/bitcoin,meighti/bitcoin,vmp32k/litecoin,antcheck/antcoin,MeshCollider/bitcoin,segsignal/bitcoin,segwit/atbcoin-insight,Chancoin-core/CHANCOIN,PIVX-Project/PIVX,royosherove/bitcoinxt,TheBlueMatt/bitcoin,JeremyRand/namecoin-core,koharjidan/bitcoin,ppcoin/ppcoin,ludbb/bitcoin,antcheck/antcoin,oklink-dev/bitcoin,habibmasuro/bitcoin,atgreen/bitcoin,uphold/bitcoin,tuaris/bitcoin,oklink-dev/bitcoin_block,pelorusjack/BlockDX,jonasnick/bitcoin,Jcing95/iop-hd,xuyangcn/opalcoin,hophacker/bitcoin_malleability,namecoin/namecore,rjshaver/bitcoin,habibmasuro/bitcoin,karek314/bitcoin,midnightmagic/bitcoin,core-bitcoin/bitcoin,gameunits/gameunits,koharjidan/litecoin,ahmedbodi/test2,bitreserve/bitcoin,bitcoinsSG/zcash,ryanxcharles/bitcoin,scippio/bitcoin,KnCMiner/bitcoin,ptschip/bitcoinxt,HashUnlimited/Einsteinium-Unlimited,ediston/energi,joulecoin/joulecoin,koharjidan/litecoin,coinwarp/dogecoin,coinkeeper/2015-06-22_18-36_darkcoin,TripleSpeeder/bitcoin,krzysztofwos/BitcoinUnlimited,AkioNak/bitcoin,Sjors/bitcoin,phplaboratory/psiacoin,multicoins/marycoin,paveljanik/bitcoin,freelion93/mtucicoin,Darknet-Crypto/Darknet,PRabahy/bitcoin,bitcoin-hivemind/hivemind,mobicoins/mobicoin-core,dgarage/bc2,hsavit1/bitcoin,sdaftuar/bitcoin,constantine001/bitcoin,llluiop/bitcoin,OmniLayer/omnicore,RibbitFROG/ribbitcoin,lbrtcoin/albertcoin,bankonmecoin/bitcoin,benzmuircroft/REWIRE.io,Theshadow4all/ShadowCoin,elliotolds/bitcoin,reorder/viacoin,kleetus/bitcoinxt,svost/bitcoin,credits-currency/credits,wiggi/huntercore,sdaftuar/bitcoin,11755033isaprimenumber/Feathercoin,genavarov/lamacoin,phelix/bitcoin,r8921039/bitcoin,mrbandrews/bitcoin,CryptArc/bitcoin,SartoNess/BitcoinUnlimited,putinclassic/putic,ravenbyron/phtevencoin,oklink-dev/bitcoin_block,thesoftwarejedi/bitcoin,nbenoit/bitcoin,crowning2/dash,DigitalPandacoin/pandacoin,genavarov/brcoin,dan-mi-sun/bitcoin,langerhans/dogecoin,jarymoth/dogecoin,knolza/gamblr,vcoin-project/vcoincore,cheehieu/bitcoin,okinc/bitcoin,cryptodev35/icash,kazcw/bitcoin,zcoinofficial/zcoin,kirkalx/bitcoin,zcoinofficial/zcoin,fussl/elements,RHavar/bitcoin,daliwangi/bitcoin,pstratem/elements,GwangJin/gwangmoney-core,Sjors/bitcoin,Cocosoft/bitcoin,zenywallet/bitzeny,vlajos/bitcoin,goku1997/bitcoin,myriadcoin/myriadcoin,Bitcoin-ABC/bitcoin-abc,practicalswift/bitcoin,coinkeeper/2015-06-22_18-31_bitcoin,initaldk/bitcoin,grumpydevelop/singularity,ptschip/bitcoinxt,presstab/PIVX,haisee/dogecoin,reddink/reddcoin,upgradeadvice/MUE-Src,bitreserve/bitcoin,REAP720801/bitcoin,Anfauglith/iop-hd,domob1812/huntercore,cerebrus29301/crowncoin,ZiftrCOIN/ziftrcoin,knolza/gamblr,DogTagRecon/Still-Leraning,x-kalux/bitcoin_WiG-B,Jeff88Ho/bitcoin,Thracky/monkeycoin,tedlz123/Bitcoin,bitcoin/bitcoin,emc2foundation/einsteinium,truthcoin/truthcoin-cpp,globaltoken/globaltoken,RazorLove/cloaked-octo-spice,truthcoin/blocksize-market,syscoin/syscoin,Jcing95/iop-hd,metacoin/florincoin,leofidus/glowing-octo-ironman,rnicoll/dogecoin,pstratem/bitcoin,practicalswift/bitcoin,sickpig/BitcoinUnlimited,gandrewstone/bitcoinxt,denverl/bitcoin,GreenParhelia/bitcoin,accraze/bitcoin,skaht/bitcoin,fsb4000/bitcoin,chaincoin/chaincoin,karek314/bitcoin,oklink-dev/bitcoin_block,thelazier/dash,Anoncoin/anoncoin,fullcoins/fullcoin,diggcoin/diggcoin,bitcoinsSG/zcash,kbccoin/kbc,rnicoll/bitcoin,antonio-fr/bitcoin,TGDiamond/Diamond,atgreen/bitcoin,bcpki/nonce2,wcwu/bitcoin,cddjr/BitcoinUnlimited,ravenbyron/phtevencoin,mycointest/owncoin,tropa/axecoin,fanquake/bitcoin,Bushstar/UFO-Project,Electronic-Gulden-Foundation/egulden,GIJensen/bitcoin,RibbitFROG/ribbitcoin,RibbitFROG/ribbitcoin,Lucky7Studio/bitcoin,digideskio/namecoin,mastercoin-MSC/mastercore,KibiCoin/kibicoin,GroestlCoin/GroestlCoin,Kogser/bitcoin,laudaa/bitcoin,magacoin/magacoin,imton/bitcoin,tmagik/catcoin,xawksow/GroestlCoin,mincoin-project/mincoin,Sjors/bitcoin,janko33bd/bitcoin,meighti/bitcoin,bankonmecoin/bitcoin,droark/bitcoin,goldcoin/Goldcoin-GLD,namecoin/namecore,basicincome/unpcoin-core,BitcoinUnlimited/BitcoinUnlimited,lateminer/bitcoin,zixan/bitcoin,pataquets/namecoin-core,TeamBitBean/bitcoin-core,emc2foundation/einsteinium,credits-currency/credits,irvingruan/bitcoin,vertcoin/vertcoin,CodeShark/bitcoin,ShadowMyst/creativechain-core,fedoracoin-dev/fedoracoin,mruddy/bitcoin,jonasnick/bitcoin,myriadcoin/myriadcoin,riecoin/riecoin,BigBlueCeiling/augmentacoin,florincoin/florincoin,simonmulser/bitcoin,starwels/starwels,RazorLove/cloaked-octo-spice,syscoin/syscoin2,MonetaryUnit/MUE-Src,goldcoin/Goldcoin-GLD,brandonrobertz/namecoin-core,jakeva/bitcoin-pwcheck,174high/bitcoin,11755033isaprimenumber/Feathercoin,thormuller/yescoin2,CryptArc/bitcoin,2XL/bitcoin,globaltoken/globaltoken,Chancoin-core/CHANCOIN,magacoin/magacoin,litecoin-project/bitcoinomg,ludbb/bitcoin,reddink/reddcoin,shaolinfry/litecoin,fujicoin/fujicoin,romanornr/viacoin,Bloom-Project/Bloom,NateBrune/bitcoin-fio,core-bitcoin/bitcoin,jimmysong/bitcoin,robvanbentem/bitcoin,funkshelper/woodcoin-b,domob1812/huntercore,Rav3nPL/doubloons-0.10,FeatherCoin/Feathercoin,JeremyRand/namecoin-core,diggcoin/diggcoin,Rav3nPL/PLNcoin,ahmedbodi/test2,earonesty/bitcoin,40thoughts/Coin-QualCoin,loxal/zcash,segsignal/bitcoin,mb300sd/bitcoin,ElementsProject/elements,habibmasuro/bitcoinxt,nlgcoin/guldencoin-official,gameunits/gameunits,instagibbs/bitcoin,projectinterzone/ITZ,scmorse/bitcoin,NunoEdgarGub1/elements,TGDiamond/Diamond,SartoNess/BitcoinUnlimited,Bitcoinsulting/bitcoinxt,BTCfork/hardfork_prototype_1_mvf-core,goldcoin/Goldcoin-GLD,cheehieu/bitcoin,dgenr8/bitcoinxt,hyperwang/bitcoin,slingcoin/sling-market,romanornr/viacoin,tjth/lotterycoin,cddjr/BitcoinUnlimited,1185/starwels,JeremyRand/bitcoin,bcpki/nonce2,ryanxcharles/bitcoin,cmgustavo/bitcoin,Anoncoin/anoncoin,GlobalBoost/GlobalBoost,apoelstra/bitcoin,DGCDev/argentum,marklai9999/Taiwancoin,cotner/bitcoin,111t8e/bitcoin,qtumproject/qtum,bespike/litecoin,MonetaryUnit/MUE-Src,zsulocal/bitcoin,bdelzell/creditcoin-org-creditcoin,ClusterCoin/ClusterCoin,phelix/namecore,GIJensen/bitcoin,braydonf/bitcoin,dgarage/bc2,xawksow/GroestlCoin,KibiCoin/kibicoin,bcpki/testblocks,segwit/atbcoin-insight,GwangJin/gwangmoney-core,morcos/bitcoin,Tetpay/bitcoin,jonasnick/bitcoin,lbrtcoin/albertcoin,diggcoin/diggcoin,axelxod/braincoin,goku1997/bitcoin,bankonmecoin/bitcoin,starwels/starwels,upgradeadvice/MUE-Src,arruah/ensocoin,gavinandresen/bitcoin-git,GlobalBoost/GlobalBoost,diggcoin/diggcoin,fussl/elements,AdrianaDinca/bitcoin,OstlerDev/florincoin,ashleyholman/bitcoin,ftrader-bitcoinabc/bitcoin-abc,bitcoinsSG/zcash,denverl/bitcoin,aburan28/elements,BitcoinHardfork/bitcoin,syscoin/syscoin,bitpay/bitcoin,constantine001/bitcoin,hsavit1/bitcoin,robvanbentem/bitcoin,marlengit/hardfork_prototype_1_mvf-bu,pinheadmz/bitcoin,imharrywu/fastcoin,cheehieu/bitcoin,gandrewstone/bitcoinxt,Kcoin-project/kcoin,pascalguru/florincoin,Bitcoin-ABC/bitcoin-abc,fujicoin/fujicoin,bdelzell/creditcoin-org-creditcoin,sugruedes/bitcoinxt,reddcoin-project/reddcoin,Cloudsy/bitcoin,droark/bitcoin,gzuser01/zetacoin-bitcoin,xieta/mincoin,dgarage/bc2,vcoin-project/vcoincore,ahmedbodi/vertcoin,Vector2000/bitcoin,willwray/dash,jtimon/bitcoin,syscoin/syscoin2,nvmd/bitcoin,bespike/litecoin,dcousens/bitcoin,adpg211/bitcoin-master,wangliu/bitcoin,daliwangi/bitcoin,zixan/bitcoin,wbchen99/bitcoin-hnote0,RongxinZhang/bitcoinxt,segsignal/bitcoin,Mrs-X/PIVX,greencoin-dev/digitalcoin,GlobalBoost/GlobalBoost,vmp32k/litecoin,amaivsimau/bitcoin,arnuschky/bitcoin,x-kalux/bitcoin_WiG-B,UFOCoins/ufo,dev1972/Satellitecoin,sipsorcery/bitcoin,arnuschky/bitcoin,kfitzgerald/titcoin,RongxinZhang/bitcoinxt,xieta/mincoin,ColossusCoinXT/ColossusCoinXT,lbryio/lbrycrd,torresalyssa/bitcoin,zenywallet/bitzeny,lclc/bitcoin,zetacoin/zetacoin,djpnewton/bitcoin,coinkeeper/2015-06-22_18-31_bitcoin,sstone/bitcoin,bcpki/nonce2testblocks,octocoin-project/octocoin,gapcoin/gapcoin,Gazer022/bitcoin,KnCMiner/bitcoin,Electronic-Gulden-Foundation/egulden,jmgilbert2/energi,crowning-/dash,lbryio/lbrycrd,my-first/octocoin,tecnovert/particl-core,isle2983/bitcoin,torresalyssa/bitcoin,cybermatatu/bitcoin,BTCTaras/bitcoin,pascalguru/florincoin,goldcoin/goldcoin,dannyperez/bolivarcoin,blocktrail/bitcoin,ptschip/bitcoinxt,ColossusCoinXT/ColossusCoinXT,deuscoin/deuscoin,mikehearn/bitcoin,thrasher-/litecoin,ludbb/bitcoin,sugruedes/bitcoin,isocolsky/bitcoinxt,haisee/dogecoin,jiangyonghang/bitcoin,fanquake/bitcoin,gameunits/gameunits,tecnovert/particl-core,bitbrazilcoin-project/bitbrazilcoin,loxal/zcash,dgenr8/bitcoin,braydonf/bitcoin,jmcorgan/bitcoin,Exceltior/dogecoin,bankonmecoin/bitcoin,my-first/octocoin,keesdewit82/LasVegasCoin,r8921039/bitcoin,kevcooper/bitcoin,sarielsaz/sarielsaz,Exceltior/dogecoin,ripper234/bitcoin,awemany/BitcoinUnlimited,pouta/bitcoin,TrainMAnB/vcoincore,benma/bitcoin,dan-mi-sun/bitcoin,andres-root/bitcoinxt,morcos/bitcoin,afk11/bitcoin,Bitcoin-ABC/bitcoin-abc,thrasher-/litecoin,imharrywu/fastcoin,dannyperez/bolivarcoin,kbccoin/kbc,zcoinofficial/zcoin,truthcoin/truthcoin-cpp,bitcoinsSG/bitcoin,keo/bitcoin,BTCGPU/BTCGPU,zsulocal/bitcoin,BTCfork/hardfork_prototype_1_mvf-bu,argentumproject/argentum,JeremyRand/namecore,Flurbos/Flurbo,pstratem/bitcoin,emc2foundation/einsteinium,earonesty/bitcoin,Bushstar/UFO-Project,lbryio/lbrycrd,qtumproject/qtum,butterflypay/bitcoin,GroestlCoin/bitcoin,djpnewton/bitcoin,millennial83/bitcoin,dmrtsvetkov/flowercoin,bitcoin-hivemind/hivemind,collapsedev/cashwatt,paveljanik/bitcoin,Bitcoin-com/BUcash,pinheadmz/bitcoin,cddjr/BitcoinUnlimited,NunoEdgarGub1/elements,vertcoin/vertcoin,jaromil/faircoin2,jtimon/elements,shaulkf/bitcoin,simdeveloper/bitcoin,LIMXTEC/DMDv3,sebrandon1/bitcoin,yenliangl/bitcoin,Justaphf/BitcoinUnlimited,Michagogo/bitcoin,randy-waterhouse/bitcoin,pataquets/namecoin-core,dpayne9000/Rubixz-Coin,deeponion/deeponion,Michagogo/bitcoin,ArgonToken/ArgonToken,zander/bitcoinclassic,keo/bitcoin,jmcorgan/bitcoin,faircoin/faircoin,Ziftr/bitcoin,kbccoin/kbc,josephbisch/namecoin-core,domob1812/i0coin,bitcoinxt/bitcoinxt,gwillen/elements,rjshaver/bitcoin,JeremyRubin/bitcoin,destenson/bitcoin--bitcoin,wiggi/huntercore,xawksow/GroestlCoin,DigiByte-Team/digibyte,Horrorcoin/horrorcoin,atgreen/bitcoin,lbrtcoin/albertcoin,UFOCoins/ufo,randy-waterhouse/bitcoin,pastday/bitcoinproject,nikkitan/bitcoin,jn2840/bitcoin,Alex-van-der-Peet/bitcoin,syscoin/syscoin2,aspanta/bitcoin,Rav3nPL/polcoin,hasanatkazmi/bitcoin,domob1812/namecore,111t8e/bitcoin,initaldk/bitcoin,rat4/bitcoin,marlengit/BitcoinUnlimited,ripper234/bitcoin,aspanta/bitcoin,stamhe/bitcoin,projectinterzone/ITZ,coinkeeper/2015-06-22_18-52_viacoin,segsignal/bitcoin,sugruedes/bitcoinxt,balajinandhu/bitcoin,neuroidss/bitcoin,lbrtcoin/albertcoin,thormuller/yescoin2,marcusdiaz/BitcoinUnlimited,joroob/reddcoin,masterbraz/dg,yenliangl/bitcoin,sugruedes/bitcoin,accraze/bitcoin,thrasher-/litecoin,supcoin/supcoin,coinkeeper/2015-06-22_18-36_darkcoin,likecoin-dev/bitcoin,vcoin-project/vcoincore,DigitalPandacoin/pandacoin,PIVX-Project/PIVX,ravenbyron/phtevencoin,Cloudsy/bitcoin,Har01d/bitcoin,morcos/bitcoin,FinalHashLLC/namecore,litecoin-project/litecore-litecoin,fedoracoin-dev/fedoracoin,argentumproject/argentum,matlongsi/micropay,ryanofsky/bitcoin,truthcoin/truthcoin-cpp,neuroidss/bitcoin,ryanofsky/bitcoin,domob1812/i0coin,gmaxwell/bitcoin,sipa/bitcoin,cdecker/bitcoin,nsacoin/nsacoin,Earlz/renamedcoin,haraldh/bitcoin,omefire/bitcoin,jrick/bitcoin,Anoncoin/anoncoin,jimmysong/bitcoin,atgreen/bitcoin,nathan-at-least/zcash,jimmykiselak/lbrycrd,joulecoin/joulecoin,mb300sd/bitcoin,vlajos/bitcoin,vtafaucet/virtacoin,ftrader-bitcoinabc/bitcoin-abc,thrasher-/litecoin,AkioNak/bitcoin,kallewoof/bitcoin,vtafaucet/virtacoin,lakepay/lake,MarcoFalke/bitcoin,sbellem/bitcoin,world-bank/unpay-core,oleganza/bitcoin-duo,crowning2/dash,CoinProjects/AmsterdamCoin-v4,parvez3019/bitcoin,thesoftwarejedi/bitcoin,NunoEdgarGub1/elements,JeremyRand/namecoin-core,Kangmo/bitcoin,midnightmagic/bitcoin,kirkalx/bitcoin,Bitcoin-ABC/bitcoin-abc,sstone/bitcoin,zsulocal/bitcoin,nbenoit/bitcoin,greenaddress/bitcoin,blood2/bloodcoin-0.9,gravio-net/graviocoin,AkioNak/bitcoin,CTRoundTable/Encrypted.Cash,ShwoognationHQ/bitcoin,cybermatatu/bitcoin,afk11/bitcoin,ericshawlinux/bitcoin,magacoin/magacoin,constantine001/bitcoin,jakeva/bitcoin-pwcheck,djpnewton/bitcoin,NunoEdgarGub1/elements,TeamBitBean/bitcoin-core,ajweiss/bitcoin,PandaPayProject/PandaPay,ravenbyron/phtevencoin,bitcoinec/bitcoinec,funbucks/notbitcoinxt,UdjinM6/dash,2XL/bitcoin,mruddy/bitcoin,DigiByte-Team/digibyte,czr5014iph/bitcoin4e,ajtowns/bitcoin,MazaCoin/maza,droark/elements,aspanta/bitcoin,gandrewstone/BitcoinUnlimited,jlopp/statoshi,plncoin/PLNcoin_Core,SartoNess/BitcoinUnlimited,namecoin/namecoin-core,steakknife/bitcoin-qt,capitalDIGI/DIGI-v-0-10-4,MarcoFalke/bitcoin,Bloom-Project/Bloom,krzysztofwos/BitcoinUnlimited,mobicoins/mobicoin-core,phelix/namecore,morcos/bitcoin,ahmedbodi/test2,GIJensen/bitcoin,pinheadmz/bitcoin,jrmithdobbs/bitcoin,blocktrail/bitcoin,m0gliE/fastcoin-cli,OmniLayer/omnicore,nikkitan/bitcoin,sbaks0820/bitcoin,czr5014iph/bitcoin4e,paveljanik/bitcoin,174high/bitcoin,instagibbs/bitcoin,drwasho/bitcoinxt,funbucks/notbitcoinxt,hsavit1/bitcoin,freelion93/mtucicoin,GroestlCoin/GroestlCoin,gzuser01/zetacoin-bitcoin,nigeriacoin/nigeriacoin,GreenParhelia/bitcoin,gandrewstone/bitcoinxt,elecoin/elecoin,yenliangl/bitcoin,fujicoin/fujicoin,afk11/bitcoin,laudaa/bitcoin,cyrixhero/bitcoin,jarymoth/dogecoin,funbucks/notbitcoinxt,cddjr/BitcoinUnlimited,btcdrak/bitcoin,TripleSpeeder/bitcoin,braydonf/bitcoin,emc2foundation/einsteinium,xieta/mincoin,SoreGums/bitcoinxt,pataquets/namecoin-core,joshrabinowitz/bitcoin,NateBrune/bitcoin-nate,cerebrus29301/crowncoin,apoelstra/bitcoin,okinc/bitcoin,marklai9999/Taiwancoin,cculianu/bitcoin-abc,domob1812/i0coin,zottejos/merelcoin,axelxod/braincoin,sirk390/bitcoin,MikeAmy/bitcoin,drwasho/bitcoinxt,namecoin/namecoin-core,martindale/elements,jamesob/bitcoin,DGCDev/argentum,Rav3nPL/bitcoin,parvez3019/bitcoin,petertodd/bitcoin,BigBlueCeiling/augmentacoin,vericoin/vericoin-core,PIVX-Project/PIVX,parvez3019/bitcoin,kfitzgerald/titcoin,cqtenq/feathercoin_core,wbchen99/bitcoin-hnote0,iQcoin/iQcoin,BTCfork/hardfork_prototype_1_mvf-core,unsystemizer/bitcoin,ivansib/sibcoin,okinc/bitcoin,bcpki/nonce2testblocks,projectinterzone/ITZ,mrbandrews/bitcoin,maaku/bitcoin,Electronic-Gulden-Foundation/egulden,gmaxwell/bitcoin,MarcoFalke/bitcoin,kallewoof/elements,BitzenyCoreDevelopers/bitzeny,mapineda/litecoin,DigiByte-Team/digibyte,nightlydash/darkcoin,lbrtcoin/albertcoin,untrustbank/litecoin,BigBlueCeiling/augmentacoin,vmp32k/litecoin,randy-waterhouse/bitcoin,Christewart/bitcoin,jl2012/litecoin,putinclassic/putic,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,superjudge/bitcoin,jameshilliard/bitcoin,Bloom-Project/Bloom,Kenwhite23/litecoin,capitalDIGI/DIGI-v-0-10-4,mikehearn/bitcoin,TBoehm/greedynode,initaldk/bitcoin,millennial83/bitcoin,awemany/BitcoinUnlimited,schinzelh/dash,rustyrussell/bitcoin,jmcorgan/bitcoin,aburan28/elements,isocolsky/bitcoinxt,ctwiz/stardust,bitpay/bitcoin,superjudge/bitcoin,BigBlueCeiling/augmentacoin,dev1972/Satellitecoin,MasterX1582/bitcoin-becoin,ElementsProject/elements,tedlz123/Bitcoin,knolza/gamblr,fussl/elements,NateBrune/bitcoin-fio,shomeser/bitcoin,lbrtcoin/albertcoin,imharrywu/fastcoin,yenliangl/bitcoin,ardsu/bitcoin,bcpki/nonce2,mitchellcash/bitcoin,shaulkf/bitcoin,rdqw/sscoin,MeshCollider/bitcoin,arruah/ensocoin,domob1812/bitcoin,afk11/bitcoin,cmgustavo/bitcoin,keo/bitcoin,ftrader-bitcoinabc/bitcoin-abc,genavarov/lamacoin,FinalHashLLC/namecore,argentumproject/argentum,gwillen/elements,MazaCoin/mazacoin-new,DigitalPandacoin/pandacoin,florincoin/florincoin,MikeAmy/bitcoin,mincoin-project/mincoin,sipa/elements,tdudz/elements,grumpydevelop/singularity,schildbach/bitcoin,tmagik/catcoin,bitcoinec/bitcoinec,krzysztofwos/BitcoinUnlimited,bitjson/hivemind,domob1812/huntercore,coinwarp/dogecoin,accraze/bitcoin,uphold/bitcoin,sickpig/BitcoinUnlimited,zsulocal/bitcoin,BlockchainTechLLC/3dcoin,faircoin/faircoin2,Alonzo-Coeus/bitcoin,StarbuckBG/BTCGPU,aburan28/elements,jambolo/bitcoin,wederw/bitcoin,dscotese/bitcoin,faircoin/faircoin,jtimon/bitcoin,ShadowMyst/creativechain-core,aniemerg/zcash,StarbuckBG/BTCGPU,Har01d/bitcoin,phelix/namecore,jiangyonghang/bitcoin,irvingruan/bitcoin,habibmasuro/bitcoinxt,RyanLucchese/energi,DSPay/DSPay,BlockchainTechLLC/3dcoin,hasanatkazmi/bitcoin,deadalnix/bitcoin,btc1/bitcoin,BTCfork/hardfork_prototype_1_mvf-bu,likecoin-dev/bitcoin,sarielsaz/sarielsaz,shelvenzhou/BTCGPU,ctwiz/stardust,CryptArc/bitcoinxt,Theshadow4all/ShadowCoin,aciddude/Feathercoin,jrick/bitcoin,StarbuckBG/BTCGPU,ryanxcharles/bitcoin,patricklodder/dogecoin,Mirobit/bitcoin,DynamicCoinOrg/DMC,bitcoinknots/bitcoin,aciddude/Feathercoin,dexX7/bitcoin,gravio-net/graviocoin,jarymoth/dogecoin,npccoin/npccoin,koharjidan/dogecoin,dev1972/Satellitecoin,dgarage/bc2,practicalswift/bitcoin,simonmulser/bitcoin,LIMXTEC/DMDv3,Earlz/renamedcoin,jakeva/bitcoin-pwcheck,wangliu/bitcoin,AdrianaDinca/bitcoin,zetacoin/zetacoin,truthcoin/blocksize-market,puticcoin/putic,lateminer/bitcoin,droark/elements,sstone/bitcoin,jimmykiselak/lbrycrd,fullcoins/fullcoin,jl2012/litecoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,mincoin-project/mincoin,Chancoin-core/CHANCOIN,Alex-van-der-Peet/bitcoin,mikehearn/bitcoin,haisee/dogecoin,nathaniel-mahieu/bitcoin,OstlerDev/florincoin,Friedbaumer/litecoin,mm-s/bitcoin,kleetus/bitcoinxt,andres-root/bitcoinxt,multicoins/marycoin,hyperwang/bitcoin,arruah/ensocoin,isghe/bitcoinxt,ionomy/ion,rjshaver/bitcoin,botland/bitcoin,koharjidan/bitcoin,Kogser/bitcoin,coinkeeper/2015-06-22_19-07_digitalcoin,rsdevgun16e/energi,rdqw/sscoin,OmniLayer/omnicore,r8921039/bitcoin,EthanHeilman/bitcoin,DogTagRecon/Still-Leraning,wcwu/bitcoin,FarhanHaque/bitcoin,koharjidan/bitcoin,bickojima/bitzeny,40thoughts/Coin-QualCoin,pastday/bitcoinproject,roques/bitcoin,vtafaucet/virtacoin,gwillen/elements,andreaskern/bitcoin,millennial83/bitcoin,RyanLucchese/energi,czr5014iph/bitcoin4e,axelxod/braincoin,GreenParhelia/bitcoin,syscoin/syscoin2,argentumproject/argentum,tjps/bitcoin,domob1812/namecore,svost/bitcoin,lclc/bitcoin,bitcoinclassic/bitcoinclassic,nvmd/bitcoin,ahmedbodi/terracoin,pastday/bitcoinproject,putinclassic/putic,rebroad/bitcoin,ionomy/ion,Alonzo-Coeus/bitcoin,nlgcoin/guldencoin-official,n1bor/bitcoin,genavarov/ladacoin,butterflypay/bitcoin,CoinProjects/AmsterdamCoin-v4,bdelzell/creditcoin-org-creditcoin,Vector2000/bitcoin,supcoin/supcoin,projectinterzone/ITZ,Lucky7Studio/bitcoin,phelix/namecore,benosa/bitcoin,mikehearn/bitcoin,prusnak/bitcoin,daliwangi/bitcoin,bitcoinxt/bitcoinxt,argentumproject/argentum,alejandromgk/Lunar,laudaa/bitcoin,ardsu/bitcoin,dscotese/bitcoin,haobtc/bitcoin,sdaftuar/bitcoin,iQcoin/iQcoin,odemolliens/bitcoinxt,peercoin/peercoin,deeponion/deeponion,Xekyo/bitcoin,Justaphf/BitcoinUnlimited,qtumproject/qtum,jl2012/litecoin,Theshadow4all/ShadowCoin,nbenoit/bitcoin,cqtenq/feathercoin_core,andreaskern/bitcoin,Flurbos/Flurbo,cannabiscoindev/cannabiscoin420,EntropyFactory/creativechain-core,rjshaver/bitcoin,rsdevgun16e/energi,thelazier/dash,nikkitan/bitcoin,particl/particl-core,namecoin/namecoin-core,cerebrus29301/crowncoin,nlgcoin/guldencoin-official,wcwu/bitcoin,deeponion/deeponion,kleetus/bitcoin,wellenreiter01/Feathercoin,cyrixhero/bitcoin,x-kalux/bitcoin_WiG-B,cybermatatu/bitcoin,yenliangl/bitcoin,sipa/bitcoin,mm-s/bitcoin,laudaa/bitcoin,rebroad/bitcoin,brandonrobertz/namecoin-core,goku1997/bitcoin,imharrywu/fastcoin,vertcoin/vertcoin,rdqw/sscoin,Exgibichi/statusquo,mastercoin-MSC/mastercore,oleganza/bitcoin-duo,40thoughts/Coin-QualCoin,reorder/viacoin,dperel/bitcoin,ryanofsky/bitcoin,joroob/reddcoin,adpg211/bitcoin-master,jonasschnelli/bitcoin,rebroad/bitcoin,spiritlinxl/BTCGPU,ahmedbodi/terracoin,MeshCollider/bitcoin,senadmd/coinmarketwatch,lateminer/bitcoin,gzuser01/zetacoin-bitcoin,masterbraz/dg,DigiByte-Team/digibyte,domob1812/namecore,Petr-Economissa/gvidon,kevcooper/bitcoin,kallewoof/bitcoin,truthcoin/truthcoin-cpp,axelxod/braincoin,bitbrazilcoin-project/bitbrazilcoin,KibiCoin/kibicoin,nomnombtc/bitcoin,slingcoin/sling-market,roques/bitcoin,Petr-Economissa/gvidon,dgarage/bc3,lateminer/bitcoin,Kore-Core/kore,Mrs-X/Darknet,multicoins/marycoin,s-matthew-english/bitcoin,BTCTaras/bitcoin,tjps/bitcoin,nlgcoin/guldencoin-official,maaku/bitcoin,oleganza/bitcoin-duo,jnewbery/bitcoin,world-bank/unpay-core,faircoin/faircoin,welshjf/bitcoin,jambolo/bitcoin,mastercoin-MSC/mastercore,phplaboratory/psiacoin,thesoftwarejedi/bitcoin,psionin/smartcoin,dexX7/mastercore,bitcoinplusorg/xbcwalletsource,Krellan/bitcoin,tropa/axecoin,gmaxwell/bitcoin,inkvisit/sarmacoins,DynamicCoinOrg/DMC,bitreserve/bitcoin,bdelzell/creditcoin-org-creditcoin,josephbisch/namecoin-core,Cloudsy/bitcoin,wiggi/huntercore,alecalve/bitcoin,inkvisit/sarmacoins,droark/bitcoin,sstone/bitcoin,gazbert/bitcoin,wbchen99/bitcoin-hnote0,jonasschnelli/bitcoin,litecoin-project/bitcoinomg,apoelstra/bitcoin,ivansib/sibcoin,gavinandresen/bitcoin-git,isle2983/bitcoin,fujicoin/fujicoin,wbchen99/bitcoin-hnote0,florincoin/florincoin,DigitalPandacoin/pandacoin,2XL/bitcoin,inkvisit/sarmacoins,xawksow/GroestlCoin,phplaboratory/psiacoin,OstlerDev/florincoin,iQcoin/iQcoin,theuni/bitcoin,koharjidan/litecoin,gzuser01/zetacoin-bitcoin,nigeriacoin/nigeriacoin,biblepay/biblepay,mapineda/litecoin,greenaddress/bitcoin,CryptArc/bitcoinxt,StarbuckBG/BTCGPU,Rav3nPL/bitcoin,gandrewstone/bitcoinxt,Anfauglith/iop-hd,robvanbentem/bitcoin,HashUnlimited/Einsteinium-Unlimited,blood2/bloodcoin-0.9,phplaboratory/psiacoin,llluiop/bitcoin,jtimon/bitcoin,pstratem/bitcoin,BitcoinHardfork/bitcoin,plncoin/PLNcoin_Core,MazaCoin/mazacoin-new,KnCMiner/bitcoin,Bitcoin-ABC/bitcoin-abc,zcoinofficial/zcoin,mrbandrews/bitcoin,se3000/bitcoin,jaromil/faircoin2,torresalyssa/bitcoin,denverl/bitcoin,zotherstupidguy/bitcoin,ticclassic/ic,bdelzell/creditcoin-org-creditcoin,TheBlueMatt/bitcoin,shelvenzhou/BTCGPU,karek314/bitcoin,ahmedbodi/test2,rromanchuk/bitcoinxt,TierNolan/bitcoin,Theshadow4all/ShadowCoin,EthanHeilman/bitcoin,karek314/bitcoin,jtimon/bitcoin,hophacker/bitcoin_malleability,daliwangi/bitcoin,achow101/bitcoin,Rav3nPL/doubloons-0.10,midnight-miner/LasVegasCoin,reorder/viacoin,UASF/bitcoin,CodeShark/bitcoin,ftrader-bitcoinabc/bitcoin-abc,EthanHeilman/bitcoin,itmanagerro/tresting,cmgustavo/bitcoin,Har01d/bitcoin,GroestlCoin/GroestlCoin,gmaxwell/bitcoin,sarielsaz/sarielsaz,experiencecoin/experiencecoin,ekankyesme/bitcoinxt,coinerd/krugercoin,PandaPayProject/PandaPay,Kcoin-project/kcoin,domob1812/i0coin,Bitcoin-com/BUcash |
0d689b75f51c61e0fd54169a714770a4b8573985 | 7segments.c | 7segments.c | #define L for(char*c=a[1],y;*c;)printf("%c%c%c%c",(y="$ֶ<&"[*c++-48])&u/2?33:32,y&u?95:32,y&u/4?33:32,*c?32:10);u*=8;
main(int u,char**a){L;L;L} | #define L for(char*c=a[1],y;*c;)printf("%c%c%c ",(y="$ֶ<&"[*c++-48])&u/2?33:32,y&u?95:32,y&u/4?33:32);puts("");u*=8;
main(int u,char**a){L;L;L} | Use puts() to save 1 byte. | Use puts() to save 1 byte.
| C | mit | McZonk/7segements,McZonk/7segements |
464f20cf7bef622fcdc77fa636388e9a3e207aca | src/include/libpq/hba.h | src/include/libpq/hba.h | /*-------------------------------------------------------------------------
*
* hba.h
* Interface to hba.c
*
*
* $Id: hba.h,v 1.27 2001/09/21 20:31:48 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef HBA_H
#define HBA_H
#ifndef WIN32
#include <netinet/in.h>
#endif
#define CONF_FILE "pg_hba.conf"
/* Name of the config file */
#define USERMAP_FILE "pg_ident.conf"
/* Name of the usermap file */
#define OLD_CONF_FILE "pg_hba"
/* Name of the config file in prior releases of Postgres. */
#define IDENT_PORT 113
/* Standard TCP port number for Ident service. Assigned by IANA */
#define MAX_AUTH_ARG 80 /* Max size of an authentication arg */
typedef enum UserAuth
{
uaReject,
uaKrb4,
uaKrb5,
uaTrust,
uaIdent,
uaPassword,
uaCrypt,
uaMD5,
#ifdef USE_PAM
uaPAM
#endif /* USE_PAM */
} UserAuth;
typedef struct Port hbaPort;
extern int hba_getauthmethod(hbaPort *port);
extern int authident(hbaPort *port);
extern void load_hba_and_ident(void);
#endif
| /*-------------------------------------------------------------------------
*
* hba.h
* Interface to hba.c
*
*
* $Id: hba.h,v 1.28 2001/10/01 02:26:36 ishii Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef HBA_H
#define HBA_H
#ifndef WIN32
#include <netinet/in.h>
#endif
#define CONF_FILE "pg_hba.conf"
/* Name of the config file */
#define USERMAP_FILE "pg_ident.conf"
/* Name of the usermap file */
#define OLD_CONF_FILE "pg_hba"
/* Name of the config file in prior releases of Postgres. */
#define IDENT_PORT 113
/* Standard TCP port number for Ident service. Assigned by IANA */
#define MAX_AUTH_ARG 80 /* Max size of an authentication arg */
typedef enum UserAuth
{
uaReject,
uaKrb4,
uaKrb5,
uaTrust,
uaIdent,
uaPassword,
uaCrypt,
uaMD5
#ifdef USE_PAM
,uaPAM
#endif /* USE_PAM */
} UserAuth;
typedef struct Port hbaPort;
extern int hba_getauthmethod(hbaPort *port);
extern int authident(hbaPort *port);
extern void load_hba_and_ident(void);
#endif
| Fix a compile error on a platform that does not have PAM. | Fix a compile error on a platform that does not have PAM.
| C | apache-2.0 | zaksoup/gpdb,edespino/gpdb,oberstet/postgres-xl,ovr/postgres-xl,janebeckman/gpdb,CraigHarris/gpdb,janebeckman/gpdb,postmind-net/postgres-xl,ashwinstar/gpdb,Quikling/gpdb,ahachete/gpdb,rubikloud/gpdb,cjcjameson/gpdb,edespino/gpdb,greenplum-db/gpdb,royc1/gpdb,yazun/postgres-xl,foyzur/gpdb,xuegang/gpdb,royc1/gpdb,janebeckman/gpdb,jmcatamney/gpdb,50wu/gpdb,chrishajas/gpdb,greenplum-db/gpdb,ashwinstar/gpdb,lintzc/gpdb,zeroae/postgres-xl,ahachete/gpdb,atris/gpdb,kaknikhil/gpdb,lpetrov-pivotal/gpdb,xinzweb/gpdb,50wu/gpdb,ahachete/gpdb,yazun/postgres-xl,kaknikhil/gpdb,foyzur/gpdb,0x0FFF/gpdb,cjcjameson/gpdb,snaga/postgres-xl,50wu/gpdb,xinzweb/gpdb,zaksoup/gpdb,CraigHarris/gpdb,postmind-net/postgres-xl,cjcjameson/gpdb,yuanzhao/gpdb,lintzc/gpdb,Quikling/gpdb,yuanzhao/gpdb,lpetrov-pivotal/gpdb,Chibin/gpdb,rvs/gpdb,edespino/gpdb,cjcjameson/gpdb,jmcatamney/gpdb,yuanzhao/gpdb,chrishajas/gpdb,pavanvd/postgres-xl,tangp3/gpdb,Chibin/gpdb,adam8157/gpdb,postmind-net/postgres-xl,rubikloud/gpdb,lisakowen/gpdb,janebeckman/gpdb,CraigHarris/gpdb,royc1/gpdb,50wu/gpdb,xinzweb/gpdb,postmind-net/postgres-xl,cjcjameson/gpdb,rvs/gpdb,edespino/gpdb,lpetrov-pivotal/gpdb,lpetrov-pivotal/gpdb,kaknikhil/gpdb,50wu/gpdb,techdragon/Postgres-XL,yazun/postgres-xl,pavanvd/postgres-xl,Postgres-XL/Postgres-XL,Quikling/gpdb,tpostgres-projects/tPostgres,lpetrov-pivotal/gpdb,atris/gpdb,edespino/gpdb,yuanzhao/gpdb,0x0FFF/gpdb,chrishajas/gpdb,arcivanov/postgres-xl,adam8157/gpdb,rvs/gpdb,foyzur/gpdb,lisakowen/gpdb,ashwinstar/gpdb,xuegang/gpdb,lintzc/gpdb,cjcjameson/gpdb,xuegang/gpdb,janebeckman/gpdb,kmjungersen/PostgresXL,0x0FFF/gpdb,edespino/gpdb,cjcjameson/gpdb,techdragon/Postgres-XL,tangp3/gpdb,CraigHarris/gpdb,rubikloud/gpdb,Quikling/gpdb,zaksoup/gpdb,lpetrov-pivotal/gpdb,royc1/gpdb,ashwinstar/gpdb,yuanzhao/gpdb,xuegang/gpdb,CraigHarris/gpdb,zeroae/postgres-xl,pavanvd/postgres-xl,jmcatamney/gpdb,tangp3/gpdb,ashwinstar/gpdb,yuanzhao/gpdb,atris/gpdb,zaksoup/gpdb,snaga/postgres-xl,ovr/postgres-xl,Quikling/gpdb,greenplum-db/gpdb,greenplum-db/gpdb,xinzweb/gpdb,lisakowen/gpdb,xuegang/gpdb,royc1/gpdb,snaga/postgres-xl,edespino/gpdb,xinzweb/gpdb,ahachete/gpdb,kmjungersen/PostgresXL,xinzweb/gpdb,atris/gpdb,zeroae/postgres-xl,janebeckman/gpdb,greenplum-db/gpdb,xuegang/gpdb,janebeckman/gpdb,kmjungersen/PostgresXL,cjcjameson/gpdb,randomtask1155/gpdb,atris/gpdb,ovr/postgres-xl,yuanzhao/gpdb,tpostgres-projects/tPostgres,kaknikhil/gpdb,Postgres-XL/Postgres-XL,zaksoup/gpdb,50wu/gpdb,edespino/gpdb,techdragon/Postgres-XL,tpostgres-projects/tPostgres,rubikloud/gpdb,ashwinstar/gpdb,kaknikhil/gpdb,kaknikhil/gpdb,foyzur/gpdb,oberstet/postgres-xl,arcivanov/postgres-xl,cjcjameson/gpdb,randomtask1155/gpdb,50wu/gpdb,lintzc/gpdb,lisakowen/gpdb,snaga/postgres-xl,Chibin/gpdb,Chibin/gpdb,kaknikhil/gpdb,cjcjameson/gpdb,xinzweb/gpdb,xinzweb/gpdb,tangp3/gpdb,kmjungersen/PostgresXL,ahachete/gpdb,tpostgres-projects/tPostgres,rvs/gpdb,greenplum-db/gpdb,0x0FFF/gpdb,chrishajas/gpdb,chrishajas/gpdb,tangp3/gpdb,foyzur/gpdb,lintzc/gpdb,yazun/postgres-xl,foyzur/gpdb,postmind-net/postgres-xl,rvs/gpdb,Quikling/gpdb,kaknikhil/gpdb,Quikling/gpdb,CraigHarris/gpdb,rvs/gpdb,randomtask1155/gpdb,janebeckman/gpdb,jmcatamney/gpdb,rubikloud/gpdb,arcivanov/postgres-xl,lpetrov-pivotal/gpdb,lintzc/gpdb,jmcatamney/gpdb,ahachete/gpdb,rvs/gpdb,ovr/postgres-xl,adam8157/gpdb,royc1/gpdb,tangp3/gpdb,tpostgres-projects/tPostgres,0x0FFF/gpdb,tangp3/gpdb,rvs/gpdb,lisakowen/gpdb,greenplum-db/gpdb,lisakowen/gpdb,adam8157/gpdb,Chibin/gpdb,jmcatamney/gpdb,Chibin/gpdb,arcivanov/postgres-xl,oberstet/postgres-xl,rubikloud/gpdb,zaksoup/gpdb,techdragon/Postgres-XL,royc1/gpdb,kmjungersen/PostgresXL,kaknikhil/gpdb,ahachete/gpdb,yuanzhao/gpdb,Quikling/gpdb,CraigHarris/gpdb,yazun/postgres-xl,ashwinstar/gpdb,zaksoup/gpdb,randomtask1155/gpdb,zeroae/postgres-xl,rubikloud/gpdb,adam8157/gpdb,Chibin/gpdb,Chibin/gpdb,lintzc/gpdb,royc1/gpdb,Quikling/gpdb,ahachete/gpdb,randomtask1155/gpdb,xuegang/gpdb,xuegang/gpdb,Postgres-XL/Postgres-XL,pavanvd/postgres-xl,randomtask1155/gpdb,Chibin/gpdb,zaksoup/gpdb,arcivanov/postgres-xl,zeroae/postgres-xl,janebeckman/gpdb,0x0FFF/gpdb,foyzur/gpdb,pavanvd/postgres-xl,rvs/gpdb,adam8157/gpdb,edespino/gpdb,janebeckman/gpdb,50wu/gpdb,ashwinstar/gpdb,chrishajas/gpdb,kaknikhil/gpdb,Postgres-XL/Postgres-XL,edespino/gpdb,yuanzhao/gpdb,CraigHarris/gpdb,lpetrov-pivotal/gpdb,arcivanov/postgres-xl,ovr/postgres-xl,atris/gpdb,rubikloud/gpdb,foyzur/gpdb,chrishajas/gpdb,xuegang/gpdb,lintzc/gpdb,CraigHarris/gpdb,adam8157/gpdb,snaga/postgres-xl,jmcatamney/gpdb,oberstet/postgres-xl,Postgres-XL/Postgres-XL,randomtask1155/gpdb,greenplum-db/gpdb,randomtask1155/gpdb,tangp3/gpdb,Quikling/gpdb,chrishajas/gpdb,jmcatamney/gpdb,lisakowen/gpdb,rvs/gpdb,adam8157/gpdb,atris/gpdb,0x0FFF/gpdb,lintzc/gpdb,yuanzhao/gpdb,techdragon/Postgres-XL,0x0FFF/gpdb,lisakowen/gpdb,oberstet/postgres-xl,Chibin/gpdb,atris/gpdb |
8578c3133ace5a4cc6cca7119e6ed96eeee37f78 | src/ia64/Gget_accessors-ia64.c | src/ia64/Gget_accessors-ia64.c | /* libunwind - a platform-independent unwind library
Copyright (C) 2002 Hewlett-Packard Co
Contributed by David Mosberger-Tang <[email protected]>
This file is part of libunwind.
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, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
#include "unwind_i.h"
PROTECTED unw_accessors_t *
unw_get_accessors (unw_addr_space_t as)
{
if (unw.needs_initialization)
ia64_init ();
return &as->acc;
}
| Declare libunwind-entry-points as PROTECTED to ensure local uses get resolved within the library itself. | Declare libunwind-entry-points as PROTECTED to ensure local uses get
resolved within the library itself.
2004/01/03 00:24:50-08:00 hp.com!davidm
Rename: src/ia64/get_accessors-ia64.c -> src/ia64/Gget_accessors-ia64.c
(Logical change 1.151)
| C | mit | yuyichao/libunwind,Keno/libunwind,vegard/libunwind,olibc/libunwind,igprof/libunwind,krytarowski/libunwind,vegard/libunwind,evaautomation/libunwind,ehsan/libunwind,pathscale/libunwind,androidarmv6/android_external_libunwind,libunwind/libunwind,rogwfu/libunwind,tony/libunwind,maltek/platform_external_libunwind,jrmuizel/libunwind,cms-externals/libunwind,rntz/libunwind,tronical/libunwind,atanasyan/libunwind-android,bo-on-software/libunwind,tkelman/libunwind,unkadoug/libunwind,zeldin/platform_external_libunwind,SyndicateRogue/libunwind,dropbox/libunwind,vegard/libunwind,atanasyan/libunwind-android,Keno/libunwind,tronical/libunwind,cloudius-systems/libunwind,rantala/libunwind,fillexen/libunwind,djwatson/libunwind,SyndicateRogue/libunwind,evaautomation/libunwind,zeldin/platform_external_libunwind,bo-on-software/libunwind,zliu2014/libunwind-tilegx,Keno/libunwind,jrmuizel/libunwind,yuyichao/libunwind,tony/libunwind,rogwfu/libunwind,DroidSim/platform_external_libunwind,frida/libunwind,tkelman/libunwind,geekboxzone/lollipop_external_libunwind,fdoray/libunwind,rntz/libunwind,krytarowski/libunwind,wdv4758h/libunwind,adsharma/libunwind,joyent/libunwind,rogwfu/libunwind,tronical/libunwind,zliu2014/libunwind-tilegx,zeldin/platform_external_libunwind,DroidSim/platform_external_libunwind,0xlab/0xdroid-external_libunwind,pathscale/libunwind,joyent/libunwind,rntz/libunwind,0xlab/0xdroid-external_libunwind,geekboxzone/mmallow_external_libunwind,rantala/libunwind,dagar/libunwind,mpercy/libunwind,wdv4758h/libunwind,geekboxzone/lollipop_external_libunwind,atanasyan/libunwind,ehsan/libunwind,cms-externals/libunwind,tony/libunwind,dreal-deps/libunwind,androidarmv6/android_external_libunwind,vtjnash/libunwind,vtjnash/libunwind,tkelman/libunwind,mpercy/libunwind,bo-on-software/libunwind,frida/libunwind,androidarmv6/android_external_libunwind,frida/libunwind,dreal-deps/libunwind,adsharma/libunwind,djwatson/libunwind,libunwind/libunwind,joyent/libunwind,android-ia/platform_external_libunwind,maltek/platform_external_libunwind,CyanogenMod/android_external_libunwind,ehsan/libunwind,vtjnash/libunwind,project-zerus/libunwind,SyndicateRogue/libunwind,geekboxzone/mmallow_external_libunwind,libunwind/libunwind,atanasyan/libunwind,project-zerus/libunwind,atanasyan/libunwind-android,zliu2014/libunwind-tilegx,dagar/libunwind,android-ia/platform_external_libunwind,olibc/libunwind,rantala/libunwind,martyone/libunwind,igprof/libunwind,lat/libunwind,adsharma/libunwind,unkadoug/libunwind,0xlab/0xdroid-external_libunwind,Chilledheart/libunwind,martyone/libunwind,DroidSim/platform_external_libunwind,Chilledheart/libunwind,dropbox/libunwind,fillexen/libunwind,lat/libunwind,evaautomation/libunwind,jrmuizel/libunwind,krytarowski/libunwind,maltek/platform_external_libunwind,dagar/libunwind,pathscale/libunwind,dreal-deps/libunwind,project-zerus/libunwind,geekboxzone/mmallow_external_libunwind,cms-externals/libunwind,lat/libunwind,atanasyan/libunwind,geekboxzone/lollipop_external_libunwind,olibc/libunwind,cloudius-systems/libunwind,CyanogenMod/android_external_libunwind,fdoray/libunwind,Chilledheart/libunwind,mpercy/libunwind,fdoray/libunwind,djwatson/libunwind,martyone/libunwind,CyanogenMod/android_external_libunwind,android-ia/platform_external_libunwind,cloudius-systems/libunwind,unkadoug/libunwind,dropbox/libunwind,fillexen/libunwind,wdv4758h/libunwind,igprof/libunwind,yuyichao/libunwind |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.