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
|
---|---|---|---|---|---|---|---|---|---|
32c768d0c03717f729871dc666388c6ca785aedb | Sources/OMValidation.h | Sources/OMValidation.h | //
// OMValidation.h
// OMValidation
//
// Copyright (C) 2015 Oliver Mader
//
// 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.
//
#import "OMValidationFailure.h"
#import "NSObject+OMValidation.h"
#import "NSString+OMValidation.h"
#import "NSNumber+OMValidation.h"
#import "OMValidate.h"
#ifdef OMVALIDATION_PROMISES_AVAILABLE
#import "OMValidationTask.h"
#endif | //
// OMValidation.h
// OMValidation
//
// Copyright (C) 2015 Oliver Mader
//
// 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.
//
#import "OMValidationFailure.h"
#import "NSObject+OMValidation.h"
#import "NSString+OMValidation.h"
#import "NSNumber+OMValidation.h"
#import "NSArray+OMValidation.h"
#import "OMValidate.h"
#ifdef OMVALIDATION_PROMISES_AVAILABLE
#import "OMValidationTask.h"
#endif | Include NSArray category into main header | Include NSArray category into main header
| C | mit | b52/OMValidation |
c7672beb8d218d7b403d4cb801614d40206c00d5 | sipXmediaLib/include/mp/MprnRtpStreamActivityMsg.h | sipXmediaLib/include/mp/MprnRtpStreamActivityMsg.h | //
// Copyright (C) 2008 SIPez LLC.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2008 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// $$
///////////////////////////////////////////////////////////////////////////////
#ifndef _MprnRtpStreamActivityMsg_h_
#define _MprnRtpStreamActivityMsg_h_
// SYSTEM INCLUDES
// APPLICATION INCLUDES
#include "os/OsMsg.h"
#include "utl/UtlString.h"
#include "MpResNotificationMsg.h"
// DEFINES
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
/**
* Notification used to communicate RTP stream activity.
*/
class MprnRtpStreamActivityMsg : public MpResNotificationMsg
{
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
/* ============================ CREATORS ================================== */
///@name Creators
//@{
enum StreamState {
STREAM_START, ///< Stream have been started
STREAM_STOP, ///< Stream have been stopped
STREAM_CHANGE ///< Stream attributes have been changed
};
/// Constructor
MprnRtpStreamActivityMsg(const UtlString& namedResOriginator,
StreamState state,
RtpSRC ssrc,
unsigned address,
int port,
MpConnectionID connId = MP_INVALID_CONNECTION_ID,
int streamId = -1);
/// Copy constructor
MprnRtpStreamActivityMsg(const MprnRtpStreamActivityMsg& rMsg);
/// Create a copy of this msg object (which may be of a derived type)
virtual OsMsg* createCopy() const;
/// Destructor
virtual ~MprnRtpStreamActivityMsg();
//@}
/* ============================ MANIPULATORS ============================== */
///@name Manipulators
//@{
/// Assignment operator
MprnRtpStreamActivityMsg& operator=(const MprnRtpStreamActivityMsg& rhs);
//@}
/* ============================ ACCESSORS ================================= */
///@name Accessors
//@{
/// Get the stream state.
StreamState getState() const;
/// Get the stream SSRC.
unsigned getSsrc() const;
/// Get IP address of the stream source/destination.
unsigned getAddress() const;
/// Get port of the stream source/destination.
int getPort() const;
//@}
/* ============================ INQUIRY =================================== */
///@name Inquiry
//@{
//@}
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
StreamState mState; ///< Stream state to be reported.
RtpSRC mSsrc; ///< SSRC of the stream.
unsigned mAddress; ///< IP of the stream source/destination.
int mPort; ///< Port of the stream source/destination.
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
};
/* ============================ INLINE METHODS ============================ */
#endif // _MprnRtpStreamActivityMsg_h_
| Add notification message which will be used to notify about voice activity. | Add notification message which will be used to notify about voice activity.
git-svn-id: f26ccc5efe72c2bd8e1c40f599fe313f2692e4de@10875 a612230a-c5fa-0310-af8b-88eea846685b
| C | lgpl-2.1 | sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror |
|
068460e74885378bade28d1c8184b8867128fd39 | test/Driver/XRay/xray-instrument-cpu.c | test/Driver/XRay/xray-instrument-cpu.c | // RUN: not %clang -o /dev/null -v -fxray-instrument -c %s
// XFAIL: amd64-, x86_64-, x86_64h-, arm, aarch64, arm64
// REQUIRES: linux
typedef int a;
| // RUN: not %clang -o /dev/null -v -fxray-instrument -c %s
// XFAIL: amd64-, x86_64-, x86_64h-, arm, aarch64, arm64, powerpc64le-
// REQUIRES: linux
typedef int a;
| Update XFAIL line after r294781. | Update XFAIL line after r294781.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@294820 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang |
a0b806ff87bf32930f6713f256068a650d0a8ce5 | ui/views/controls/button/menu_button_delegate.h | ui/views/controls/button/menu_button_delegate.h | // Copyright (c) 2012 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 UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_
#define UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_
#pragma once
namespace gfx {
class Point;
}
namespace views {
class View;
////////////////////////////////////////////////////////////////////////////////
//
// MenuButtonDelegate
//
// An interface that allows a component to tell a View about a menu that it
// has constructed that the view can show (e.g. for MenuButton views, or as a
// context menu.)
//
////////////////////////////////////////////////////////////////////////////////
class MenuButtonDelegate {
public:
// Creates and shows a menu at the specified position. |source| is the view
// the MenuButtonDelegate was set on.
virtual void RunMenu(View* source, const gfx::Point& point) = 0;
protected:
virtual ~MenuButtonDelegate() {}
};
} // namespace views
#endif // UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_
| // Copyright (c) 2012 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 UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_
#define UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_
#pragma once
#include "ui/views/views_export.h"
namespace gfx {
class Point;
}
namespace views {
class View;
////////////////////////////////////////////////////////////////////////////////
//
// MenuButtonDelegate
//
// An interface that allows a component to tell a View about a menu that it
// has constructed that the view can show (e.g. for MenuButton views, or as a
// context menu.)
//
////////////////////////////////////////////////////////////////////////////////
class VIEWS_EXPORT MenuButtonDelegate {
public:
// Creates and shows a menu at the specified position. |source| is the view
// the MenuButtonDelegate was set on.
virtual void RunMenu(View* source, const gfx::Point& point) = 0;
protected:
virtual ~MenuButtonDelegate() {}
};
} // namespace views
#endif // UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_
| Fix win builder by tagging MenuButtonDelegate with VIEWS_EXPORT. | views: Fix win builder by tagging MenuButtonDelegate with VIEWS_EXPORT.
BUG=117092
[email protected]
Review URL: https://chromiumcodereview.appspot.com/9647003
git-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@125656 0039d316-1c4b-4281-b951-d872f2087c98
| C | bsd-3-clause | yitian134/chromium,yitian134/chromium,ropik/chromium,yitian134/chromium,gavinp/chromium,yitian134/chromium,ropik/chromium,yitian134/chromium,ropik/chromium,adobe/chromium,yitian134/chromium,adobe/chromium,gavinp/chromium,adobe/chromium,ropik/chromium,gavinp/chromium,gavinp/chromium,yitian134/chromium,adobe/chromium,gavinp/chromium,gavinp/chromium,adobe/chromium,yitian134/chromium,yitian134/chromium,gavinp/chromium,ropik/chromium,gavinp/chromium,ropik/chromium,gavinp/chromium,adobe/chromium,gavinp/chromium,ropik/chromium,adobe/chromium,ropik/chromium,ropik/chromium,adobe/chromium,yitian134/chromium,adobe/chromium,adobe/chromium,adobe/chromium |
cf0e1ef6f2cde1d075141ded1b12395475fee83a | Archs/Architecture.h | Archs/Architecture.h | #pragma once
class IElfRelocator;
enum class Endianness { Big, Little };
class CArchitecture
{
public:
virtual void AssembleOpcode(const std::wstring& name, const std::wstring& args) = 0;
virtual bool AssembleDirective(const std::wstring& name, const std::wstring& args) = 0;
virtual void NextSection() = 0;
virtual void Pass2() = 0;
virtual void Revalidate() = 0;
virtual int GetWordSize() = 0;
virtual IElfRelocator* getElfRelocator() = 0;
virtual Endianness getEndianness() = 0;
};
class CInvalidArchitecture: public CArchitecture
{
public:
virtual void AssembleOpcode(const std::wstring& name, const std::wstring& args);
virtual bool AssembleDirective(const std::wstring& name, const std::wstring& args);
virtual void NextSection();
virtual void Pass2();
virtual void Revalidate();
virtual int GetWordSize();
virtual IElfRelocator* getElfRelocator();
virtual Endianness getEndianness() { return Endianness::Little; };
};
extern CInvalidArchitecture InvalidArchitecture;
| #pragma once
class IElfRelocator;
class CAssemblerCommand;
class Tokenizer;
enum class Endianness { Big, Little };
class CArchitecture
{
public:
virtual void AssembleOpcode(const std::wstring& name, const std::wstring& args) = 0;
virtual bool AssembleDirective(const std::wstring& name, const std::wstring& args) = 0;
virtual CAssemblerCommand* parseDirective(Tokenizer& tokenizer) { return nullptr; };
virtual CAssemblerCommand* parseOpcode(Tokenizer& tokenizer) { return nullptr; };
virtual void NextSection() = 0;
virtual void Pass2() = 0;
virtual void Revalidate() = 0;
virtual int GetWordSize() = 0;
virtual IElfRelocator* getElfRelocator() = 0;
virtual Endianness getEndianness() = 0;
};
class CInvalidArchitecture: public CArchitecture
{
public:
virtual void AssembleOpcode(const std::wstring& name, const std::wstring& args);
virtual bool AssembleDirective(const std::wstring& name, const std::wstring& args);
virtual void NextSection();
virtual void Pass2();
virtual void Revalidate();
virtual int GetWordSize();
virtual IElfRelocator* getElfRelocator();
virtual Endianness getEndianness() { return Endianness::Little; };
};
extern CInvalidArchitecture InvalidArchitecture;
| Extend interfaces with new parsing functions | Extend interfaces with new parsing functions
| C | mit | Kingcom/armips,sp1187/armips,sp1187/armips,Kingcom/armips,hrydgard/armips,sp1187/armips,Kingcom/armips,hrydgard/armips,hrydgard/armips |
892f9a9a7049bee59f4e64ee8245fcf5430ec128 | vespalib/src/vespa/vespalib/tensor/default_tensor.h | vespalib/src/vespa/vespalib/tensor/default_tensor.h | // Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
#include "compact/compact_tensor.h"
#include "compact/compact_tensor_builder.h"
namespace vespalib {
namespace tensor {
struct DefaultTensor {
using type = CompactTensor;
using builder = CompactTensorBuilder;
};
} // namespace vespalib::tensor
} // namespace vespalib
| // Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
#include "compact/compact_tensor_v2.h"
#include "compact/compact_tensor_v2_builder.h"
namespace vespalib {
namespace tensor {
struct DefaultTensor {
using type = CompactTensorV2;
using builder = CompactTensorV2Builder;
};
} // namespace vespalib::tensor
} // namespace vespalib
| Change to using CompactTensorV2 as default impl for sparse tensors. | Change to using CompactTensorV2 as default impl for sparse tensors.
| C | apache-2.0 | vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa |
d65adf9603243c66f9c7f4b5adc2a850c40a146c | tmpgb.c | tmpgb.c | #include <stdio.h>
#include <stdlib.h>
#include "error.h"
#include "memory.h"
#define READ_SIZE 0x4000
static void usage(void)
{
fprintf(stderr, "usage: tmpgb <file>");
exit(EXIT_FAILURE);
}
static void load_rom(const char *rom)
{
FILE *fp;
unsigned char *buffer[READ_SIZE];
size_t nread;
int i = -1;
fp = fopen(rom, "rb");
if (fp == NULL) {
fprintf(stderr, "Could not open %s", rom);
exit(EXIT_FAILURE);
}
while (!feof(fp)) {
nread = fread(buffer, READ_SIZE, 1, fp);
if (nread == 0) {
if (ferror(fp)) {
fprintf(stderr, "Error reading %s", rom);
exit(EXIT_FAILURE);
}
}
read_rom(buffer, i);
}
fclose(fp);
}
static void run(void)
{
int ret;
if ((ret = init_memory()) != 0) {
errnr = ret;
exit_error();
}
}
int main(int argc, char **argv)
{
char *rom;
if (argc != 2)
usage();
rom = argv[1];
load_rom(rom);
run();
return 0;
}
| #include <stdio.h>
#include <stdlib.h>
#include "error.h"
#include "memory.h"
#define READ_SIZE 0x4000
static void usage(void)
{
fprintf(stderr, "usage: tmpgb <file>");
exit(EXIT_FAILURE);
}
static void load_rom(const char *rom)
{
FILE *fp;
unsigned char buffer[READ_SIZE];
size_t nread;
int i = -1;
fp = fopen(rom, "rb");
if (fp == NULL) {
fprintf(stderr, "Could not open %s", rom);
exit(EXIT_FAILURE);
}
while (!feof(fp)) {
nread = fread(buffer, READ_SIZE, 1, fp);
if (nread == 0) {
if (ferror(fp)) {
fprintf(stderr, "Error reading %s", rom);
exit(EXIT_FAILURE);
}
}
read_rom(buffer, i);
}
fclose(fp);
}
static void run(void)
{
int ret;
if ((ret = init_memory()) != 0) {
errnr = ret;
exit_error();
}
}
int main(int argc, char **argv)
{
char *rom;
if (argc != 2)
usage();
rom = argv[1];
load_rom(rom);
run();
return 0;
}
| Fix error with char pointer | Fix error with char pointer
| C | mit | hoferm/tmpgb,hoferm/tmpgb |
f0dce4e4ff0dad5a12a2178caa6ddccc4b72debd | tests/simple.h | tests/simple.h | #pragma once
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <stdbool.h>
#include <check.h>
#include <pal.h>
#include "../../src/base/pal_base_private.h"
#include <common.h>
/* Max allowed diff against expected value */
#define EPSILON_MAX 0.001f
#define EPSILON_RELMAX 0.00001f
struct gold {
float ai;
float bi;
float res;
float gold;
};
extern float *ai, *bi, *res, *ref;
/* Functions that can be overridden by individual tests */
/* Compare two values */
bool compare(float x, float y);
/* Allow individual tests to add more test cases, e.g. against a reference
* function */
void add_more_tests(TCase *tcase);
/* Needs to be implemented by tests that define REF_FUNCTION */
void generate_ref(float *out, size_t n);
| #pragma once
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <stdbool.h>
#include <check.h>
#include <pal.h>
#include "../../src/base/pal_base_private.h"
#include <common.h>
/* Max allowed diff against expected value */
#ifndef EPSILON_MAX
#define EPSILON_MAX 0.001f
#endif
#ifndef EPSILON_RELMAX
#define EPSILON_RELMAX 0.00001f
#endif
struct gold {
float ai;
float bi;
float res;
float gold;
};
extern float *ai, *bi, *res, *ref;
/* Functions that can be overridden by individual tests */
/* Compare two values */
bool compare(float x, float y);
/* Allow individual tests to add more test cases, e.g. against a reference
* function */
void add_more_tests(TCase *tcase);
/* Needs to be implemented by tests that define REF_FUNCTION */
void generate_ref(float *out, size_t n);
| Allow tests to override error tolerance | tests: Allow tests to override error tolerance
Signed-off-by: Ola Jeppsson <[email protected]>
| C | apache-2.0 | Adamszk/pal3,olajep/pal,eliteraspberries/pal,8l/pal,debug-de-su-ka/pal,eliteraspberries/pal,Adamszk/pal3,eliteraspberries/pal,parallella/pal,aolofsson/pal,olajep/pal,Adamszk/pal3,aolofsson/pal,mateunho/pal,mateunho/pal,debug-de-su-ka/pal,parallella/pal,aolofsson/pal,olajep/pal,olajep/pal,8l/pal,eliteraspberries/pal,mateunho/pal,parallella/pal,Adamszk/pal3,parallella/pal,8l/pal,mateunho/pal,parallella/pal,aolofsson/pal,debug-de-su-ka/pal,eliteraspberries/pal,debug-de-su-ka/pal,mateunho/pal,8l/pal,debug-de-su-ka/pal |
07eda65a17fbf97ef7b1a5da06fde0817d0dc7ef | test2/initialisation/struct/empty/init.c | test2/initialisation/struct/empty/init.c | // RUN: %layout_check %s
// RUN: %check %s
struct A
{
}; // CHEKC: /warning: empty struct/
struct Containter
{
struct A a;
};
struct Pre
{
int i;
struct A a;
int j;
};
struct Pre p = { 1, /* warn */ 2 }; // CHECK: /warning: missing {} initialiser for empty struct/
struct Pre q = { 1, {}, 2 };
main()
{
struct A a = { 5 }; // CHECK: /warning: missing {} initialiser for empty struct/
struct A b = {};
struct Containter c = {{}};
c.a = (struct A){};
}
| // RUN: %layout_check %s
// RUN: %check %s
struct A
{
}; // CHECK: /warning: empty struct/
struct Container
{
struct A a;
};
struct Pre
{
int i;
struct A a;
int j;
};
struct Pre p = { 1, /* warn */ 2 }; // CHECK: /warning: missing {} initialiser for empty struct/
struct Pre q = { 1, {}, 2 };
main()
{
struct A a = { 5 }; // CHECK: /warning: missing {} initialiser for empty struct/
struct A b = {};
struct Container c = {{}};
c.a = (struct A){};
}
| Fix typo in empty struct test check | Fix typo in empty struct test check
| C | mit | bobrippling/ucc-c-compiler,bobrippling/ucc-c-compiler,bobrippling/ucc-c-compiler |
d8474b64fa65283e503821475ac6d13c28e51b41 | lib/common/globals.c | lib/common/globals.c | /* $Id$ $Revision$ */
/* vim:set shiftwidth=4 ts=8: */
/**********************************************************
* This software is part of the graphviz package *
* http://www.graphviz.org/ *
* *
* Copyright (c) 1994-2004 AT&T Corp. *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Corp. *
* *
* Information and Software Systems Research *
* AT&T Research, Florham Park NJ *
**********************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#define EXTERN
#include "types.h"
#include "globals.h"
| /* $Id$ $Revision$ */
/* vim:set shiftwidth=4 ts=8: */
/**********************************************************
* This software is part of the graphviz package *
* http://www.graphviz.org/ *
* *
* Copyright (c) 1994-2004 AT&T Corp. *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Corp. *
* *
* Information and Software Systems Research *
* AT&T Research, Florham Park NJ *
**********************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#define EXTERN
#include "types.h"
#include "globals.h"
/* Default layout values, possibly set via command line; -1 indicates unset */
fdpParms_t fdp_parms = {
1, /* useGrid */
1, /* useNew */
-1, /* numIters */
50, /* unscaled */
0.0, /* C */
1.0, /* Tfact */
-1.0, /* K - set in initParams; used in init_edge */
-1.0, /* T0 */
};
| Make sure fdp global parameters are statically initialized. This avoids making the algorithm independent of processing argv[]. | Make sure fdp global parameters are statically initialized.
This avoids making the algorithm independent of processing argv[].
| C | epl-1.0 | BMJHayward/graphviz,jho1965us/graphviz,jho1965us/graphviz,jho1965us/graphviz,BMJHayward/graphviz,tkelman/graphviz,tkelman/graphviz,BMJHayward/graphviz,kbrock/graphviz,MjAbuz/graphviz,BMJHayward/graphviz,MjAbuz/graphviz,tkelman/graphviz,BMJHayward/graphviz,pixelglow/graphviz,ellson/graphviz,BMJHayward/graphviz,tkelman/graphviz,MjAbuz/graphviz,pixelglow/graphviz,MjAbuz/graphviz,ellson/graphviz,pixelglow/graphviz,MjAbuz/graphviz,kbrock/graphviz,pixelglow/graphviz,kbrock/graphviz,jho1965us/graphviz,tkelman/graphviz,ellson/graphviz,kbrock/graphviz,MjAbuz/graphviz,MjAbuz/graphviz,kbrock/graphviz,jho1965us/graphviz,tkelman/graphviz,ellson/graphviz,jho1965us/graphviz,kbrock/graphviz,pixelglow/graphviz,ellson/graphviz,kbrock/graphviz,pixelglow/graphviz,tkelman/graphviz,jho1965us/graphviz,BMJHayward/graphviz,kbrock/graphviz,BMJHayward/graphviz,pixelglow/graphviz,ellson/graphviz,ellson/graphviz,BMJHayward/graphviz,kbrock/graphviz,ellson/graphviz,MjAbuz/graphviz,jho1965us/graphviz,MjAbuz/graphviz,tkelman/graphviz,kbrock/graphviz,tkelman/graphviz,jho1965us/graphviz,ellson/graphviz,MjAbuz/graphviz,jho1965us/graphviz,pixelglow/graphviz,tkelman/graphviz,BMJHayward/graphviz,MjAbuz/graphviz,pixelglow/graphviz,pixelglow/graphviz,jho1965us/graphviz,ellson/graphviz,tkelman/graphviz,kbrock/graphviz,ellson/graphviz,pixelglow/graphviz,BMJHayward/graphviz |
ac6241f2f5f470d14938510c5cd04d1b8f2cb4af | Solutions/01/include/validator.h | Solutions/01/include/validator.h | #ifndef LPSLCD_VALIDATOR_H
#define LPSLCD_VALIDATOR_H
#include "generator.h"
class Validator
{
public:
static bool Validate (const Code & code)
{
// | N - k |
// | ____ |
// | \ a + a | < L
// | /___ i i + k |
// | i = 1 |
//
// k - 0 < k < N;
// N - length of sequence.
// L - limit of sidelobe level.
const ssize_t sideLobeLimit = code.size () < 14 ? 1 : floor (code.size () / 14.0f);
for (size_t shift = 1; shift < code.size (); ++shift) {
ssize_t sideLobe = 0;
for (size_t i = 0; i < code.size () - shift; ++i) {
sideLobe += (code [i + shift] == '+' ? 1 : -1) *
(code [i ] == '+' ? 1 : -1);
}
if (std::abs (sideLobe) > sideLobeLimit) {
return false;
}
}
return true;
};
};
#endif//LPSLCD_VALIDATOR_H
| #ifndef LPSLCD_VALIDATOR_H
#define LPSLCD_VALIDATOR_H
#include "generator.h"
#include <cmath>
class Validator
{
public:
static bool Validate (const Code & code)
{
// | N - k |
// | ____ |
// | \ a + a | < L
// | /___ i i + k |
// | i = 1 |
//
// k - 0 < k < N;
// N - length of sequence.
// L - limit of sidelobe level.
const ssize_t sideLobeLimit = code.size () < 14 ? 1 : std::floor (code.size () / 14.0f);
for (size_t shift = 1; shift < code.size (); ++shift) {
ssize_t sideLobe = 0;
for (size_t i = 0; i < code.size () - shift; ++i) {
sideLobe += (code [i + shift] == '+' ? 1 : -1) *
(code [i ] == '+' ? 1 : -1);
}
if (std::abs (sideLobe) > sideLobeLimit) {
return false;
}
}
return true;
};
};
#endif//LPSLCD_VALIDATOR_H
| Fix compile error on gcc 6.3.0. | Fix compile error on gcc 6.3.0.
| C | mit | Gluttton/PslRK,Gluttton/PslRK,Gluttton/PslRK |
8144596da658cd3854610f51094b7b3407c0d4b4 | solutions/uri/1039/1039.c | solutions/uri/1039/1039.c | #include <math.h>
#include <stdio.h>
int main() {
double r1, x1, y1, r2, x2, y2;
double distance;
while (scanf("%lf %lf %lf %lf %lf %lf", &r1, &x1, &y1, &r2, &x2, &y2) != EOF) {
distance = sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2));
if (r1 >= distance + r2) {
puts("RICO");
} else {
puts("MORTO");
}
}
return 0;
}
| #include <math.h>
#include <stdio.h>
int main() {
double r1, x1, y1, r2, x2, y2;
double distance;
while (scanf("%lf %lf %lf %lf %lf %lf", &r1, &x1, &y1, &r2, &x2, &y2)
!= EOF) {
distance = sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2));
if (r1 >= distance + r2) {
puts("RICO");
} else {
puts("MORTO");
}
}
return 0;
}
| Solve Fire Flowers in c | Solve Fire Flowers in c
| C | mit | deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground |
3ed71339b1bb80eec219c142aca03a0cf0be0ffa | src/condor_includes/_condor_fix_types.h | src/condor_includes/_condor_fix_types.h | #ifndef FIX_TYPES_H
#define FIX_TYPES_H
#include <sys/types.h>
/*
The system include file defines this in terms of bzero(), but ANSI says
we should use memset().
*/
#if defined(OSF1)
#undef FD_ZERO
#define FD_ZERO(p) memset((char *)(p), 0, sizeof(*(p)))
#endif
/*
Various non-POSIX conforming files which depend on sys/types.h will
need these extra definitions...
*/
typedef unsigned int u_int;
#if defined(ULTRIX42) || defined(ULTRIX43)
typedef char * caddr_t;
#endif
#endif
| #ifndef FIX_TYPES_H
#define FIX_TYPES_H
#include <sys/types.h>
/*
The system include file defines this in terms of bzero(), but ANSI says
we should use memset().
*/
#if defined(OSF1)
#undef FD_ZERO
#define FD_ZERO(p) memset((char *)(p), 0, sizeof(*(p)))
#endif
/*
Various non-POSIX conforming files which depend on sys/types.h will
need these extra definitions...
*/
typedef unsigned int u_int;
#if defined(AIX32)
typedef unsigned short ushort;
#endif
#if defined(ULTRIX42) || defined(ULTRIX43)
typedef char * caddr_t;
#endif
#if defined(AIX32)
typedef unsigned long rlim_t;
#endif
#endif
| Add types "ushort" and "rlim_t" for AIX. | Add types "ushort" and "rlim_t" for AIX.
| C | apache-2.0 | bbockelm/condor-network-accounting,zhangzhehust/htcondor,djw8605/condor,neurodebian/htcondor,clalancette/condor-dcloud,djw8605/htcondor,mambelli/osg-bosco-marco,neurodebian/htcondor,zhangzhehust/htcondor,zhangzhehust/htcondor,mambelli/osg-bosco-marco,bbockelm/condor-network-accounting,clalancette/condor-dcloud,bbockelm/condor-network-accounting,djw8605/htcondor,bbockelm/condor-network-accounting,htcondor/htcondor,neurodebian/htcondor,zhangzhehust/htcondor,clalancette/condor-dcloud,mambelli/osg-bosco-marco,djw8605/condor,djw8605/htcondor,clalancette/condor-dcloud,zhangzhehust/htcondor,djw8605/htcondor,bbockelm/condor-network-accounting,bbockelm/condor-network-accounting,djw8605/condor,htcondor/htcondor,clalancette/condor-dcloud,djw8605/htcondor,djw8605/htcondor,mambelli/osg-bosco-marco,djw8605/condor,mambelli/osg-bosco-marco,htcondor/htcondor,htcondor/htcondor,neurodebian/htcondor,clalancette/condor-dcloud,neurodebian/htcondor,djw8605/condor,bbockelm/condor-network-accounting,mambelli/osg-bosco-marco,djw8605/condor,htcondor/htcondor,neurodebian/htcondor,zhangzhehust/htcondor,bbockelm/condor-network-accounting,zhangzhehust/htcondor,neurodebian/htcondor,htcondor/htcondor,mambelli/osg-bosco-marco,djw8605/htcondor,htcondor/htcondor,zhangzhehust/htcondor,clalancette/condor-dcloud,djw8605/condor,djw8605/condor,mambelli/osg-bosco-marco,djw8605/htcondor,djw8605/htcondor,zhangzhehust/htcondor,neurodebian/htcondor,htcondor/htcondor,neurodebian/htcondor |
6bb6c383a5acfcd734a4453d4f7f20caa727c744 | 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;
}
}
| #include <stdlib.h>
#include <stdio.h>
#include <string.h>
void runStep(struct stack_node node, struct stack_node *top) {
switch( node.data.type ) {
case T_INT: push(node, top);
break;
case T_SBRTN:
push(node, top);
break;
case T_char 1:
switch( nonde.data.numval ) {
case '+':
int x = pop(top);
int y = pop(top);
push(x + y);
break;
case '_':
push(0);
case '-':
int x = pop(top);
int y = pop(top);
push(x - y);
break;
case '*':
int x = pop(top);
int y = pop(top);
push(x * y);
break;
case '/':
int x = pop(top);
int y = pop(top);
push(x / y);
break;
case '=':
int x = pop(top);
int y = pop(top);
if(x == y)
push(-1);
else
push(0);
break;
case '<':
int x = pop(top);
int y = pop(top);
if(x < y)
push(-1);
else
push(0);
break;
case '~':
int x = pop(top);
int y = pop(top);
if(x == y):
push(0);
else
push(-1);
}
}
}
struct stack_node pop(struct stack_node *top) {
struct stack_node pop = *top;
*top = *(pop.cdr);
return pop;
}
void push(struct stack_node node, struct stack_node *top) {
node.cdr = top;
*top = node;
}
| Implement interpretation of basic arithmetic and comparatory functions. | Implement interpretation of basic arithmetic and comparatory functions.
| C | mit | aacoppa/final,aacoppa/final |
feb177aed55637fa0cfd1c788ff1ecfcc25db293 | arch/luna88k/include/loadfile_machdep.h | arch/luna88k/include/loadfile_machdep.h | /* $OpenBSD: loadfile_machdep.h,v 1.1 2013/10/18 10:55:33 miod Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Christos Zoulas.
*
* 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
*/
#define BOOT_ELF
#define LOAD_KERNEL LOAD_ALL
#define COUNT_KERNEL COUNT_ALL
#define LOADADDR(a) (((u_long)(a)) + offset)
#define ALIGNENTRY(a) ((u_long)(a) & ~0x0fff)
#define READ(f, b, c) read((f), (void *)LOADADDR(b), (c))
#define BCOPY(s, d, c) memcpy((void *)LOADADDR(d), (void *)(s), (c))
#define BZERO(d, c) memset((void *)LOADADDR(d), 0, (c))
#define WARN(a) (void)(printf a, \
printf((errno ? ": %s\n" : "\n"), \
strerror(errno)))
#define PROGRESS(a) (void) printf a
#define ALLOC(a) alloc(a)
#define FREE(a, b) free(a, b)
| Add configuration for MI libsa loadfile, to be used soon. | Add configuration for MI libsa loadfile, to be used soon.
| C | isc | orumin/openbsd-efivars,orumin/openbsd-efivars,orumin/openbsd-efivars,orumin/openbsd-efivars |
|
a70643b3c43dccc4cf855ad3d793044eaf959553 | Wangscape/noise/module/codecs/NoiseSourcesCodec.h | Wangscape/noise/module/codecs/NoiseSourcesCodec.h | #pragma once
#include <spotify/json.hpp>
#include <spotify/json/codec/boost.hpp>
#include "noise/module/NoiseSources.h"
namespace spotify
{
namespace json
{
template<>
struct default_codec_t<noise::module::NoiseSources>
{
typedef noise::module::NoiseSources NoiseSources;
static codec::object_t<NoiseSources> codec()
{
auto codec = codec::object<NoiseSources>();
auto single_module_codec = codec::string();
auto module_list_codec = codec::array<std::vector<std::string>>(single_module_codec);
auto optional_single_module_codec = codec::optional(single_module_codec);
auto optional_module_list_codec = codec::optional(module_list_codec);
codec.optional("SourceModule", &NoiseSources::sourceModules, optional_module_list_codec);
codec.optional("ControlModule", &NoiseSources::controlModule, optional_single_module_codec);
codec.optional("DisplaceModule", &NoiseSources::displaceModules, optional_module_list_codec);
return codec;
}
};
}
}
| #pragma once
#include <spotify/json.hpp>
#include <spotify/json/codec/boost.hpp>
#include "noise/module/NoiseSources.h"
namespace spotify
{
namespace json
{
template<>
struct default_codec_t<noise::module::NoiseSources>
{
typedef noise::module::NoiseSources NoiseSources;
static codec::object_t<NoiseSources> codec()
{
auto codec = codec::object<NoiseSources>();
auto single_module_codec = codec::string();
auto module_list_codec = codec::array<std::vector<std::string>>(single_module_codec);
auto optional_single_module_codec = codec::optional(single_module_codec);
auto optional_module_list_codec = codec::optional(module_list_codec);
codec.optional("SourceModule", &NoiseSources::sourceModules, optional_module_list_codec);
codec.optional("ControlModule", &NoiseSources::controlModule, optional_single_module_codec);
codec.optional("DisplaceModules", &NoiseSources::displaceModules, optional_module_list_codec);
return codec;
}
};
}
}
| Correct name of "DisplaceModules" field | Correct name of "DisplaceModules" field
| C | mit | serin-delaunay/Wangscape,Wangscape/Wangscape,Wangscape/Wangscape,serin-delaunay/Wangscape,Wangscape/Wangscape |
1da49b17817fdfb4709976c462cc4a9ca943d989 | scripts/start.c | scripts/start.c | start
Go to Layout [ “budget” (budget) ]
Set Window Title [ Current Window; New Title: "Budget Research" ]
Set Zoom Level
[ 100% ]
#
#Report version number to Memory Switch Table.
Set Field [ MemorySwitch::versionBudget; Reference::version ]
#
#Show regular menus if Admin logs in only.
Show/Hide Text Ruler
[ Hide ]
If [ Get ( AccountName ) = "Admin" ]
Show/Hide Status Area
[ Hide ]
Install Menu Set [ “[Standard FileMaker Menus]” ]
Else
Show/Hide Status Area
[ Lock; Hide ]
Install Menu Set [ “Custom Menu Set 1” ]
End If
January 8, 平成26 18:44:18 Budget Research.fp7 - start -1-
| start
Go to Layout [ “budget” (budget) ]
Set Window Title [ Current Window; New Title: "Budget Planner" ]
Set Zoom Level
[ 100% ]
#
#Report version number to Memory Switch Table.
Set Field [ MemorySwitch::versionBudget; Reference::version ]
#
#Show regular menus if Admin logs in only.
Show/Hide Text Ruler
[ Hide ]
If [ Get ( AccountName ) = "Admin" ]
Show/Hide Status Area
[ Hide ]
Install Menu Set [ “[Standard FileMaker Menus]” ]
Else
Show/Hide Status Area
[ Lock; Hide ]
Install Menu Set [ “Custom Menu Set 1” ]
End If
January 30, 平成26 22:13:52 Budget Planner.fp7 - start -1- | Change solution name to Budget Planner | Change solution name to Budget Planner
| C | apache-2.0 | HelpGiveThanks/Budget |
e97b81bf0b9a6521c2a8994efd1a67f9d305da7e | bitboard-test.c | bitboard-test.c | #include "bitboard.h"
int main(int argc, char** argv)
{
Bitboard test = board_init();
board_print(test);
return 0;
}
| Add a little test driver | Add a little test driver
| C | bsd-3-clause | jwatzman/nameless-chessbot,jwatzman/nameless-chessbot |
|
8bb57148432a0aea834343b0c5bfae98d28131b7 | src/buffer.c | src/buffer.c | /*
* buffer.c
*
* Created on: 06.02.2015.
* Author: ichiro
*/
/* Includes ------------------------------------------------------------------*/
#include "buffer.h"
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/* Private functions ---------------------------------------------------------*/
void buff_init(__IO fifo_t *buffer)
{
buffer->counter = 0; // 0 bytes in buffer
buffer->head = 0; // Index points to start
buffer->tail = 0; // Index points to start
}
void buff_put(__IO fifo_t *buffer, uint8_t ch)
{
buffer->buff[BUFF_MASK & (buffer->head++)] = ch;
buffer->counter++;
}
uint8_t buff_get(__IO fifo_t *buffer)
{
uint8_t ch;
ch = buffer->buff[BUFF_MASK & (buffer->tail++)];
buffer->counter--;
return ch;
}
bool buff_empty(__IO fifo_t buffer)
{
return (buffer.counter == 0) ? true : false;
}
bool buff_full(__IO fifo_t buffer)
{
return (buffer.counter == BUFF_SIZE) ? true : false;
}
| /*
* buffer.c
*
* Created on: 06.02.2015.
* Author: ichiro
*/
/* Includes ------------------------------------------------------------------*/
#include "buffer.h"
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/* Private functions ---------------------------------------------------------*/
void buff_init(__IO fifo_t *buffer)
{
buffer->counter = 0; // 0 bytes in the buffer
buffer->head = 0; // Index points to start
buffer->tail = 0; // Index points to start
}
void buff_put(__IO fifo_t *buffer, uint8_t ch)
{
buffer->buff[BUFF_MASK & (buffer->head++)] = ch;
buffer->counter++;
}
uint8_t buff_get(__IO fifo_t *buffer)
{
uint8_t ch;
ch = buffer->buff[BUFF_MASK & (buffer->tail++)];
buffer->counter--;
return ch;
}
bool buff_empty(__IO fifo_t buffer)
{
return (buffer.counter == 0) ? true : false;
}
bool buff_full(__IO fifo_t buffer)
{
return (buffer.counter == BUFF_SIZE) ? true : false;
}
| Add a new feature, lol | Add a new feature, lol
| C | mit | futoke/cnc,futoke/cnc,futoke/cnc |
b1d73df29598cb3df43425377a395c1e4cafc1db | src/canard.c | src/canard.c | #include "canard.h"
#include "canard_internals.h"
void canardInitPoolAllocator(CanardPoolAllocator* allocator, CanardPoolAllocatorBlock* buf, unsigned int buf_len)
{
unsigned int current_index = 0;
CanardPoolAllocatorBlock** current_block = &(allocator->free_list);
while (current_index < buf_len)
{
*current_block = &buf[current_index];
current_block = &((*current_block)->next);
current_index++;
}
*current_block = NULL;
}
void* canardAllocateBlock(CanardPoolAllocator* allocator)
{
/* Check if there are any blocks available in the free list. */
if (allocator->free_list == NULL)
{
return NULL;
}
/* Take first available block and prepares next block for use. */
void* result = allocator->free_list;
allocator->free_list = allocator->free_list->next;
return result;
}
void canardFreeBlock(CanardPoolAllocator* allocator, void* p)
{
CanardPoolAllocatorBlock* block = (CanardPoolAllocatorBlock*)p;
block->next = allocator->free_list;
allocator->free_list = block;
}
| #include "canard.h"
#include "canard_internals.h"
CANARD_INTERNAL void canardInitPoolAllocator(CanardPoolAllocator* allocator, CanardPoolAllocatorBlock* buf, unsigned int buf_len)
{
unsigned int current_index = 0;
CanardPoolAllocatorBlock** current_block = &(allocator->free_list);
while (current_index < buf_len)
{
*current_block = &buf[current_index];
current_block = &((*current_block)->next);
current_index++;
}
*current_block = NULL;
}
CANARD_INTERNAL void* canardAllocateBlock(CanardPoolAllocator* allocator)
{
/* Check if there are any blocks available in the free list. */
if (allocator->free_list == NULL)
{
return NULL;
}
/* Take first available block and prepares next block for use. */
void* result = allocator->free_list;
allocator->free_list = allocator->free_list->next;
return result;
}
CANARD_INTERNAL void canardFreeBlock(CanardPoolAllocator* allocator, void* p)
{
CanardPoolAllocatorBlock* block = (CanardPoolAllocatorBlock*)p;
block->next = allocator->free_list;
allocator->free_list = block;
}
| Apply internal API marker to declarations too | Apply internal API marker to declarations too
| C | mit | UAVCAN/libcanard,UAVCAN/libcanard,antoinealb/libcanard,UAVCAN/libcanard,antoinealb/libcanard |
1fdc33b04d25fee097eab8b8614569992a0a4bf4 | staging_vespalib/src/vespa/vespalib/util/scheduledexecutor.h | staging_vespalib/src/vespa/vespalib/util/scheduledexecutor.h | // Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
#include <vespa/vespalib/util/executor.h>
#include <vespa/vespalib/util/time.h>
#include <vector>
class FNET_Transport;
namespace vespalib {
class TimerTask;
/**
* ScheduledExecutor is a class capable of running Tasks at a regular
* interval. The timer can be reset to clear all tasks currently being
* scheduled.
*/
class ScheduledExecutor
{
private:
using TaskList = std::vector<std::unique_ptr<TimerTask>>;
FNET_Transport & _transport;
std::mutex _lock;
TaskList _taskList;
public:
/**
* Create a new timer, capable of scheduling tasks at fixed intervals.
*/
ScheduledExecutor(FNET_Transport & transport);
/**
* Destroys this timer, finishing the current task executing and then
* finishing.
*/
~ScheduledExecutor();
/**
* Schedule new task to be executed at specified intervals.
*
* @param task The task to schedule.
* @param delay The delay to wait before first execution.
* @param interval The interval in seconds.
*/
void scheduleAtFixedRate(std::unique_ptr<Executor::Task> task, duration delay, duration interval);
/**
* Reset timer, clearing the list of task to execute.
*/
void reset();
};
}
| // Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
#include <vespa/vespalib/util/executor.h>
#include <vespa/vespalib/util/time.h>
#include <mutex>
#include <vector>
class FNET_Transport;
namespace vespalib {
class TimerTask;
/**
* ScheduledExecutor is a class capable of running Tasks at a regular
* interval. The timer can be reset to clear all tasks currently being
* scheduled.
*/
class ScheduledExecutor
{
private:
using TaskList = std::vector<std::unique_ptr<TimerTask>>;
FNET_Transport & _transport;
std::mutex _lock;
TaskList _taskList;
public:
/**
* Create a new timer, capable of scheduling tasks at fixed intervals.
*/
ScheduledExecutor(FNET_Transport & transport);
/**
* Destroys this timer, finishing the current task executing and then
* finishing.
*/
~ScheduledExecutor();
/**
* Schedule new task to be executed at specified intervals.
*
* @param task The task to schedule.
* @param delay The delay to wait before first execution.
* @param interval The interval in seconds.
*/
void scheduleAtFixedRate(std::unique_ptr<Executor::Task> task, duration delay, duration interval);
/**
* Reset timer, clearing the list of task to execute.
*/
void reset();
};
}
| Add include to get declaration for std::mutex (staging_vespalib). | Add include to get declaration for std::mutex (staging_vespalib).
| C | apache-2.0 | vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa |
7434edc3b555319df75e77ed644f875a3d6f6ed6 | Menu/Code/UI/BRMenuOrderingGroupViewController.h | Menu/Code/UI/BRMenuOrderingGroupViewController.h | //
// BRMenuOrderingGroupViewController.h
// MenuKit
//
// Created by Matt on 29/07/15.
// Copyright (c) 2015 Blue Rocket. Distributable under the terms of the Apache License, Version 2.0.
//
#import <UIKit/UIKit.h>
#import "BRMenuOrderingDelegate.h"
#import <BRStyle/BRUIStylish.h>
@class BRMenuOrderingFlowController;
extern NSString * const BRMenuOrderingItemCellIdentifier;
extern NSString * const BRMenuOrderingItemWithoutComponentsCellIdentifier;
extern NSString * const BRMenuOrderingItemGroupHeaderCellIdentifier;
/**
Present a list of menu item groups as sections of menu items.
*/
@interface BRMenuOrderingGroupViewController : UITableViewController <BRMenuOrderingDelegate, BRUIStylish>
@property (nonatomic, assign, getter=isUsePrototypeCells) IBInspectable BOOL usePrototypeCells;
@property (nonatomic, strong) BRMenuOrderingFlowController *flowController;
@property (nonatomic, weak) id<BRMenuOrderingDelegate> orderingDelegate;
@end
| //
// BRMenuOrderingGroupViewController.h
// MenuKit
//
// Created by Matt on 29/07/15.
// Copyright (c) 2015 Blue Rocket. Distributable under the terms of the Apache License, Version 2.0.
//
#import <UIKit/UIKit.h>
#import "BRMenuOrderingDelegate.h"
#import <BRStyle/BRUIStylish.h>
@class BRMenuOrderingFlowController;
@class BRMenuStepper;
extern NSString * const BRMenuOrderingItemCellIdentifier;
extern NSString * const BRMenuOrderingItemWithoutComponentsCellIdentifier;
extern NSString * const BRMenuOrderingItemGroupHeaderCellIdentifier;
/**
Present a list of menu item groups as sections of menu items.
*/
@interface BRMenuOrderingGroupViewController : UITableViewController <BRMenuOrderingDelegate, BRUIStylish>
@property (nonatomic, assign, getter=isUsePrototypeCells) IBInspectable BOOL usePrototypeCells;
@property (nonatomic, strong) BRMenuOrderingFlowController *flowController;
@property (nonatomic, weak) id<BRMenuOrderingDelegate> orderingDelegate;
/**
Action sent to go backwards in the navigation flow.
@param sender The action sender.
*/
- (IBAction)goBack:(id)sender;
/**
Action when changes are requested to be saved into the active order.
@param sender The action sender.
*/
- (IBAction)saveToOrder:(id)sender;
/**
Action sent when the quantity should be adjusted via a stepper.
@param sender The stepper.
*/
- (IBAction)didAdjustQuantity:(BRMenuStepper *)sender;
@end
| Move some action methods into header for subclasses to support. | Move some action methods into header for subclasses to support.
| C | apache-2.0 | Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu |
87a138305ce52782e192094f292c67d060619200 | hw/mcu/stm/stm32f3xx/src/hal_watchdog.c | hw/mcu/stm/stm32f3xx/src/hal_watchdog.c | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 "hal/hal_watchdog.h"
#include "mcu/stm32f30x.h"
#include "mcu/stm32f30x_iwdg.h"
struct stm_wdt_cfg
{
uint8_t prescaler;
uint16_t reload
};
struct stm_wdt_cfg g_wdt_cfg;
int
hal_watchdog_init(uint32_t expire_msecs)
{
uint32_t reload;
/* Max prescaler is 256 */
reload = 32768 / 256;
reload = (reload * expire_msecs) / 1000;
/* Check to make sure we are not trying a reload value that is too large */
if (reload > IWDG_RLR_RL) {
return -1;
}
g_wdt_cfg.prescaler = IWDG_Prescaler_256;
g_wdt_cfg.reload = reload;
return 0;
}
void
hal_watchdog_enable(void)
{
FlagStatus rc;
DBGMCU->APB1FZ |= DBGMCU_IWDG_STOP;
IWDG_Enable();
IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable);
IWDG_SetPrescaler(g_wdt_cfg.prescaler);
IWDG_SetReload(g_wdt_cfg.reload);
rc = SET;
while (rc != RESET) {
rc = IWDG_GetFlagStatus();
/* XXX: need to break out of this somehow. */
}
IWDG_ReloadCounter();
}
void
hal_watchdog_tickle(void)
{
HAL_IWDG_Refresh(&g_wdt_cfg);
}
| Add hal watchdog for stm32f3 | MYNEWT-448: Add hal watchdog for stm32f3
NOTE: there is one issue unresolved with this commit. There is no
way to exit the loop where we are waiting for the register
changes to take effect. Not sure the best way to do this at this
point so for now we just skip it. This has been noted in the ticket
and should be addressed soon.
| C | apache-2.0 | runtimeinc/mynewt_stm32f3,runtimeinc/mynewt_stm32f3 |
|
5eca7b2e8306af5398797d89d8aa6784ae6602a8 | src/condor_includes/condor_nfs.h | src/condor_includes/condor_nfs.h | /***************************Copyright-DO-NOT-REMOVE-THIS-LINE**
* CONDOR Copyright Notice
*
* See LICENSE.TXT for additional notices and disclaimers.
*
* Copyright (c)1990-1998 CONDOR Team, Computer Sciences Department,
* University of Wisconsin-Madison, Madison, WI. All Rights Reserved.
* No use of the CONDOR Software Program Source Code is authorized
* without the express consent of the CONDOR Team. For more information
* contact: CONDOR Team, Attention: Professor Miron Livny,
* 7367 Computer Sciences, 1210 W. Dayton St., Madison, WI 53706-1685,
* (608) 262-0856 or [email protected].
*
* U.S. Government Rights Restrictions: Use, duplication, or disclosure
* by the U.S. Government is subject to restrictions as set forth in
* subparagraph (c)(1)(ii) of The Rights in Technical Data and Computer
* Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and
* (2) of Commercial Computer Software-Restricted Rights at 48 CFR
* 52.227-19, as applicable, CONDOR Team, Attention: Professor Miron
* Livny, 7367 Computer Sciences, 1210 W. Dayton St., Madison,
* WI 53706-1685, (608) 262-0856 or [email protected].
****************************Copyright-DO-NOT-REMOVE-THIS-LINE**/
#ifndef _CONDOR_NFS_H
#define _CONDOR_NFS_H
#include <sys/mount.h>
#if defined(LINUX)
# include <linux/nfs.h>
# include <linux/ipc.h>
# include <dirent.h>
typedef struct fhandle fhandle_t;
#elif !defined(IRIX62)
# include <rpc/rpc.h>
# include <nfs/nfs.h>
#if !defined(OSF1)
# include <nfs/export.h>
#endif
#endif
#endif /* _CONDOR_NFS_H */
| Put all NFS-related header files (and the platform-dependent ugliness) in one place. | Put all NFS-related header files (and the platform-dependent ugliness)
in one place.
| C | apache-2.0 | mambelli/osg-bosco-marco,djw8605/condor,djw8605/condor,htcondor/htcondor,htcondor/htcondor,djw8605/condor,bbockelm/condor-network-accounting,bbockelm/condor-network-accounting,djw8605/htcondor,zhangzhehust/htcondor,djw8605/htcondor,djw8605/condor,djw8605/condor,neurodebian/htcondor,neurodebian/htcondor,djw8605/htcondor,mambelli/osg-bosco-marco,htcondor/htcondor,zhangzhehust/htcondor,djw8605/htcondor,mambelli/osg-bosco-marco,zhangzhehust/htcondor,djw8605/htcondor,djw8605/htcondor,bbockelm/condor-network-accounting,djw8605/htcondor,djw8605/htcondor,bbockelm/condor-network-accounting,clalancette/condor-dcloud,mambelli/osg-bosco-marco,neurodebian/htcondor,mambelli/osg-bosco-marco,zhangzhehust/htcondor,clalancette/condor-dcloud,htcondor/htcondor,clalancette/condor-dcloud,mambelli/osg-bosco-marco,zhangzhehust/htcondor,neurodebian/htcondor,htcondor/htcondor,clalancette/condor-dcloud,bbockelm/condor-network-accounting,djw8605/condor,neurodebian/htcondor,zhangzhehust/htcondor,neurodebian/htcondor,mambelli/osg-bosco-marco,djw8605/condor,neurodebian/htcondor,neurodebian/htcondor,bbockelm/condor-network-accounting,zhangzhehust/htcondor,htcondor/htcondor,mambelli/osg-bosco-marco,bbockelm/condor-network-accounting,clalancette/condor-dcloud,clalancette/condor-dcloud,zhangzhehust/htcondor,djw8605/condor,bbockelm/condor-network-accounting,htcondor/htcondor,djw8605/htcondor,zhangzhehust/htcondor,clalancette/condor-dcloud,neurodebian/htcondor,htcondor/htcondor |
|
a207b100fb33525adf5166ad0e1113ed8dd1358b | chapter27/chapter27_ex16.c | chapter27/chapter27_ex16.c | /* Chapter 27, exercise 16: "improve" (obfuscate) exercise 15 by using macros */
#include<stdio.h>
#include<stdlib.h>
#define GET_PTR(type,var_name) type* var_name = (type*)malloc(sizeof(type))
#define SET_FCT_PTR(pshape,pfct,fct) pshape->shape.pvtable->pfct = &fct
typedef void (*Pfct0)(struct Shape*);
typedef void (*Pfct1int)(struct Shape*, int);
typedef struct {
Pfct0 draw;
Pfct1int rotate;
} Vtable;
typedef struct {
Vtable* pvtable;
int x;
int y;
} Shape;
typedef struct {
Shape shape;
int radius;
} Circle;
void draw(Shape* this)
{
(this->pvtable->draw)(this);
}
void rotate(Shape* this, int deg)
{
(this->pvtable->rotate)(this,deg);
}
void draw_shape(Shape* this)
{
printf("Drawing Shape at (%d,%d)\n",this->x,this->y);
}
void rotate_shape(Shape* this, int deg)
{
printf("Rotating Shape at (%d,%d) by %d\n",this->x,this->y,deg);
}
void draw_circle(Shape* this)
{
Circle* pcircle = (Circle*)this;
printf("Drawing Circle at (%d,%d) with radius %d\n",
this->x,this->y,pcircle->radius);
}
void rotate_circle(Shape* this, int deg)
{
Circle* pcircle = (Circle*)this;
printf("Rotating Circle at (%d,%d) with radius %d by %d\n",
this->x,this->y,pcircle->radius,deg);
}
Shape* init_shape(int x, int y)
{
GET_PTR(Shape,pshape);
GET_PTR(Vtable,pvtable);
pvtable->draw = &draw_shape;
pvtable->rotate = &rotate_shape;
pshape->pvtable = pvtable;
pshape->x = x;
pshape->y = y;
return pshape;
}
Circle* init_circle(int x, int y, int radius)
{
GET_PTR(Circle,pcircle);
pcircle->shape = *init_shape(x,y);
SET_FCT_PTR(pcircle,draw,draw_circle);
SET_FCT_PTR(pcircle,rotate,rotate_circle);
pcircle->radius = radius;
return pcircle;
}
int main()
{
Shape* myshape = init_shape(10,10);
Circle* mycircle = init_circle(20,20,5);
draw(myshape);
draw(mycircle);
rotate(myshape,10);
rotate(mycircle,15);
}
| Add Chapter 27, exercise 16 | Add Chapter 27, exercise 16
| C | mit | bewuethr/stroustrup_ppp,bewuethr/stroustrup_ppp |
|
2b5a62f4d20141c1e94523a5727c5dea3b33f134 | simd/nonnumber.h | simd/nonnumber.h | #if defined (__GNUC__) || defined (__INTEL_COMPILER) || defined (__clang__)
#ifdef INFINITY
#undef INFINITY
#endif
#ifdef NAN
#undef NAN
#endif
#define NAN __builtin_nan("")
#define NANf __builtin_nanf("")
#define INFINITY __builtin_inf()
#define INFINITYf __builtin_inff()
#else
#include <bits/nan.h>
#include <bits/inf.h>
#endif
| #if defined (__GNUC__) || defined (__INTEL_COMPILER) || defined (__clang__)
#ifdef INFINITY
#undef INFINITY
#endif
#ifdef NAN
#undef NAN
#endif
#define NAN __builtin_nan("")
#define NANf __builtin_nanf("")
#define INFINITY __builtin_inf()
#define INFINITYf __builtin_inff()
#else
#include <math.h>
#endif
| Include math.h instead of bits headers. | Include math.h instead of bits headers.
| C | mit | gwiazdorrr/sleef,gwiazdorrr/sleef |
cc73100b98d4ac28318346e4a5d3e303ccadc05a | include/flatcc/flatcc_portable.h | include/flatcc/flatcc_portable.h | #ifndef FLATCC_PORTABLE_H
#define FLATCC_PORTABLE_H
#include "flatcc/portable/portable.h"
#endif /* FLATCC_PORTABLE_H */
| #ifndef FLATCC_PORTABLE_H
#define FLATCC_PORTABLE_H
#include "flatcc/portable/portable_basic.h"
#endif /* FLATCC_PORTABLE_H */
| Reduce chance of include guard conflicts | Reduce chance of include guard conflicts
| C | apache-2.0 | dvidelabs/flatcc,dvidelabs/flatcc,dvidelabs/flatcc |
da663dd03d71768b4b58c0ac2c1ec7b7513b3ef8 | test/NotifierTest.h | test/NotifierTest.h | #pragma once
#include <gtest/gtest.h>
#include <FileIO.h>
#include <czmq.h>
class NotifierTest : public ::testing::Test {
public:
NotifierTest() {
};
~NotifierTest() {
}
protected:
virtual void SetUp() {
};
virtual void TearDown() {
FileIO::RemoveFileAsRoot(notifierIPCPath);
FileIO::RemoveFileAsRoot(handshakeIPCPath);
zctx_interrupted = false;
};
private:
const std::string notifierIPCPath = "/tmp/RestartServicesQueue.ipc";
const std::string handshakeIPCPath = "/tmp/RestartServicesHandshakeQueue.ipc";
}; | #pragma once
#include <gtest/gtest.h>
#include <FileIO.h>
#include <czmq.h>
class NotifierTest : public ::testing::Test {
public:
NotifierTest() {
};
~NotifierTest() {
}
protected:
virtual void SetUp() {
};
virtual void TearDown() {
FileIO::RemoveFile(notifierIPCPath);
FileIO::RemoveFile(handshakeIPCPath);
zctx_interrupted = false;
};
private:
const std::string notifierIPCPath = "/tmp/RestartServicesQueue.ipc";
const std::string handshakeIPCPath = "/tmp/RestartServicesHandshakeQueue.ipc";
};
| Change RemoveFileAsRoot to RemoveFile per change in FileIO. | Change RemoveFileAsRoot to RemoveFile per change in FileIO.
| C | mit | LogRhythm/QueueNado,LogRhythm/QueueNado,weberr13/QueueNado,weberr13/QueueNado,john-gress/QueueNado,john-gress/QueueNado |
dca2f8ee63c65cb27f791e5b2864d3f9e0adf3cb | test/Sema/pr30372.c | test/Sema/pr30372.c | // REQUIRES: x86-registered-target
// RUN: %clang_cc1 %s -triple i386-pc-windows-msvc18.0.0 -disable-free -fms-volatile -fms-extensions -fms-compatibility -fms-compatibility-version=18 -std=c++11 -x c++
// Check that the parser catching an 'error' from forward declaration of "location" does not lexer out it's subsequent declation.
void foo() {
__asm {
jl location
location:
ret
}
}
| Introduce inline assembly parsing test is PR30372. | Introduce inline assembly parsing test is PR30372.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@281753 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang |
|
7777019a00df754e5e61f8d26af86014a02f8f92 | src/pbkdf/pbkdf2/pbkdf2.h | src/pbkdf/pbkdf2/pbkdf2.h | /*
* PBKDF2
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_PBKDF2_H__
#define BOTAN_PBKDF2_H__
#include <botan/pbkdf.h>
#include <botan/mac.h>
namespace Botan {
/**
* PKCS #5 PBKDF2
*/
class BOTAN_DLL PKCS5_PBKDF2 : public PBKDF
{
public:
std::string name() const
{
return "PBKDF2(" + mac->name() + ")";
}
PBKDF* clone() const
{
return new PKCS5_PBKDF2(mac->clone());
}
OctetString derive_key(u32bit output_len,
const std::string& passphrase,
const byte salt[], u32bit salt_len,
u32bit iterations) const;
/**
* Create a PKCS #5 instance using the specified message auth code
* @param mac the MAC to use
*/
PKCS5_PBKDF2(MessageAuthenticationCode* m) : mac(m) {}
/**
* Destructor
*/
~PKCS5_PBKDF2() { delete mac; }
private:
MessageAuthenticationCode* mac;
};
}
#endif
| /*
* PBKDF2
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_PBKDF2_H__
#define BOTAN_PBKDF2_H__
#include <botan/pbkdf.h>
#include <botan/mac.h>
namespace Botan {
/**
* PKCS #5 PBKDF2
*/
class BOTAN_DLL PKCS5_PBKDF2 : public PBKDF
{
public:
std::string name() const
{
return "PBKDF2(" + mac->name() + ")";
}
PBKDF* clone() const
{
return new PKCS5_PBKDF2(mac->clone());
}
OctetString derive_key(u32bit output_len,
const std::string& passphrase,
const byte salt[], u32bit salt_len,
u32bit iterations) const;
/**
* Create a PKCS #5 instance using the specified message auth code
* @param mac_fn the MAC to use
*/
PKCS5_PBKDF2(MessageAuthenticationCode* mac_fn) : mac(mac_fn) {}
/**
* Destructor
*/
~PKCS5_PBKDF2() { delete mac; }
private:
MessageAuthenticationCode* mac;
};
}
#endif
| Fix Doxygen comment in PBKDF2 constructor | Fix Doxygen comment in PBKDF2 constructor
| C | bsd-2-clause | Rohde-Schwarz-Cybersecurity/botan,webmaster128/botan,Rohde-Schwarz-Cybersecurity/botan,webmaster128/botan,webmaster128/botan,Rohde-Schwarz-Cybersecurity/botan,randombit/botan,randombit/botan,webmaster128/botan,randombit/botan,Rohde-Schwarz-Cybersecurity/botan,randombit/botan,webmaster128/botan,Rohde-Schwarz-Cybersecurity/botan,Rohde-Schwarz-Cybersecurity/botan,randombit/botan |
6c91c7386f846f420cc3130af08d7c07fb1ec637 | src/lang-dutch.c | src/lang-dutch.c | #include "num2words.h"
// Language strings for Dutch
const Language LANG_DUTCH = {
.hours = {
"een",
"twee",
"drie",
"vier",
"vijf",
"zes",
"zeven",
"acht",
"negen",
"tien",
"elf",
"twaalf"
},
.phrases = {
"*$1 uur ",
"vijf over *$1 ",
"tien over *$1 ",
"kwart over *$1 ",
"tien voor half *$2 ",
"vijf voor half *$2 ",
"half *$2 ",
"vijf over half *$2 ",
"tien over half *$2 ",
"kwart voor *$2 ",
"tien voor *$2 ",
"vijf voor *$2 "
},
.greetings = {
"Goede- morgen ",
"Goede- dag ",
"Goede- avond ",
"Goede- nacht "
},
.connection_lost = "Waar is je telefoon"
};
| #include "num2words.h"
// Language strings for Dutch
const Language LANG_DUTCH = {
.hours = {
"een",
"twee",
"drie",
"vier",
"vijf",
"zes",
"zeven",
"acht",
"negen",
"tien",
"elf",
"twaalf"
},
.phrases = {
"*$1 uur ",
"vijf over *$1 ",
"tien over *$1 ",
"kwart over *$1 ",
"tien voor half *$2 ",
"vijf voor half *$2 ",
"half *$2 ",
"vijf over half *$2 ",
"tien over half *$2 ",
"kwart voor *$2 ",
"tien voor *$2 ",
"vijf voor *$2 "
},
.greetings = {
"Goede- morgen ",
"Goede- dag ",
"Goede- avond ",
"Goede- nacht "
},
.connection_lost = "Waar is je tele- foon "
};
| Adjust dutch connection lost message. | Adjust dutch connection lost message.
| C | mit | Sarastro72/Fuzzy-Text-Watch-Plus,Sarastro72/Swedish-Fuzzy-Text-watch,Sarastro72/Swedish-Fuzzy-Text-watch,Sarastro72/Swedish-Fuzzy-Text-watch,Sarastro72/Swedish-Fuzzy-Text-watch,Sarastro72/Fuzzy-Text-Watch-Plus,Sarastro72/Fuzzy-Text-Watch-Plus,Sarastro72/Swedish-Fuzzy-Text-watch,Sarastro72/Fuzzy-Text-Watch-Plus |
559c89fcbf5560c5d72ef1824abe1322bf894dc8 | StarFlight/Classes/SCStarFlightPushClient.h | StarFlight/Classes/SCStarFlightPushClient.h | //
// StarFlightPushClient.h
//
// Created by Starcut Software on 4/30/13.
// Copyright (c) Starcut. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
extern NSString *const SCStarFlightClientUUIDNotification;
@interface SCStarFlightPushClient : NSObject <NSURLConnectionDelegate>
- (instancetype)initWithAppID:(NSString *)appID clientSecret:(NSString *)clientSecret;
- (void)registerWithToken:(NSString *)token;
- (void)registerWithToken:(NSString *)token clientUUID:(NSString *)clientUUID tags:(NSArray<NSString *> *)tags timePreferences:(NSDictionary *)timePreferencesDict;
- (void)registerWithToken:(NSString *)token tags:(NSArray<NSString *> *)tags;
- (void)unregisterWithToken:(NSString *)token tags:(nullable NSArray<NSString *> *)tags;
- (void)openedMessageWithUUID:(NSString *)messageUUID deviceToken:(NSString *)deviceToken;
NS_ASSUME_NONNULL_END
@end
| //
// StarFlightPushClient.h
//
// Created by Starcut Software on 4/30/13.
// Copyright (c) Starcut. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
extern NSString *const SCStarFlightClientUUIDNotification;
@interface SCStarFlightPushClient : NSObject <NSURLConnectionDelegate>
- (instancetype)initWithAppID:(NSString *)appID clientSecret:(NSString *)clientSecret;
- (void)registerWithToken:(NSString *)token;
- (void)registerWithToken:(NSString *)token clientUUID:(nullable NSString *)clientUUID tags:(nullable NSArray<NSString *> *)tags timePreferences:(nullable NSDictionary *)timePreferencesDict;
- (void)registerWithToken:(NSString *)token tags:(NSArray<NSString *> *)tags;
- (void)unregisterWithToken:(NSString *)token tags:(nullable NSArray<NSString *> *)tags;
- (void)openedMessageWithUUID:(NSString *)messageUUID deviceToken:(NSString *)deviceToken;
NS_ASSUME_NONNULL_END
@end
| Allow optional(nullable) parameters to register starflight-client | Allow optional(nullable) parameters to register starflight-client
| C | mit | StarcutFinland/StarFlight |
01a9aca10d7b2995eae06645ccef2a8487a06137 | src/age/entity/TransformComponent.h | src/age/entity/TransformComponent.h | #pragma once
#include <age/core/MetaEnum.h>
#include <age/entity/Component.h>
#include <age/entity/Export.h>
#include <age/math/Vector.h>
namespace age
{
namespace entity
{
///
/// \struct TransformComponent
///
/// \brief This component is given to entities that hold a position within the scene.
///
/// \date June 11, 2017
///
/// \author Aaron Shelley
///
struct AGE_ENTITY_EXPORT TransformComponent : public Component
{
TransformComponent();
age::math::Vector Position{};
double Rotation{};
};
}
}
| #pragma once
#include <age/entity/Component.h>
#include <age/entity/Export.h>
#include <age/math/Vector.h>
namespace age
{
namespace entity
{
///
/// \struct TransformComponent
///
/// \brief This component is given to entities that hold a position within the scene.
///
/// \date June 11, 2017
///
/// \author Aaron Shelley
///
struct AGE_ENTITY_EXPORT TransformComponent : public Component
{
TransformComponent();
age::math::Vector Position{};
double Rotation{};
};
}
}
| Fix compilation error due to Meta Enum header that no longer exists. | Fix compilation error due to Meta Enum header that no longer exists.
| C | mit | ASxa86/AGE,ASxa86/AGE |
640870ac5e84285e438f2c5f9c8a2c30e8e80303 | src/stdio/_read.c | src/stdio/_read.c | #include "FILE.h"
extern _Thread_local int errno;
ptrdiff_t __read(int, void*, size_t);
size_t __stdio_read(void* restrict buffer, size_t size, FILE stream[restrict static 1])
{
ptrdiff_t count = __read(stream->fd, buffer, size);
if (count < 0) {
stream->state |= _errbit;
errno = -count;
return 0;
}
stream->state |= (count < size) * _eofbit;
return count;
}
| Make `read` wrapper for stdio.h | Make `read` wrapper for stdio.h
| C | mit | jdh8/metallic,jdh8/metallic,jdh8/metallic,jdh8/metallic,jdh8/metallic |
|
6a32e5daf12ec452f00dcb2c93ef3ea4b5bd99f2 | src/types.h | src/types.h | #ifndef TYPES_H
#define TYPES_H
struct elf_header
{
};
#endif
| #ifndef TYPES_H
#define TYPES_H
#define unsigned char ubyte_t
#define unsigned int uint_t
#define unsigned short int uword_t
#define ELF_FORM 1
#define ELF_32 0
#define ELF_64 1
#define ELF_ORG 1
#define END_BIG 0
#define END_LTL 1
struct elf_header
{
ubyte_t elf_format : 1;
ubyte_t elf_format_bit : 1;
ubyte_t elf_endianess : 1;
ubyte_t elf_version : 1;
ubyte_t elf_os : 5;
ubyte_t elf_abi ;
ubyte_t elf_pad ;
ubyte_t elf_type : 2;
ubyte_t elf_arch ;
ubyte_t elf_ver : 1;
uint_t *elf_entry ;
uint_t *elf_hdr_off ;
uint_t *elf_sct_off ;
uint_t elf_flags ;
uword_t elf_hdr_size ;
uword_t elf_hdrt_entry_size ;
uword_t elf_hdrt_entries ;
uword_t elf_sct_entry_size ;
uword_t elf_sct_entries ;
uword_t elf_sct_index ;
};
typedef struct elf_header elf_hdr;
#endif
| Add first version of elf header struct | Add first version of elf header struct
| C | mit | Raiona-IT/ELFReader |
5e00c825d43914ce6ae0d859f72ffbef07794a6c | tests/regression/02-base/66-no-eval-on-write-multi.c | tests/regression/02-base/66-no-eval-on-write-multi.c | //PARAM: --enable ana.int.interval --enable ana.int.enums --exp.privatization "write" -v
#include<pthread.h>
// Test case that shows how avoiding reading integral globals can reduce the number of solver evaluations.
// Avoiding to evaluate integral globals when setting them reduced the number of necessary evaluations from 62 to 21 in this test case.
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
int glob = 10;
void* t_fun(void* ptr) {
pthread_mutex_lock(&mutex);
glob = 3;
glob = 4;
glob = 1;
pthread_mutex_unlock(&mutex);
return NULL;
}
void bar() {
glob = 2;
}
int main() {
pthread_t t;
pthread_create(&t, NULL, t_fun, NULL);
pthread_mutex_lock(&mutex);
bar();
pthread_mutex_unlock(&mutex);
pthread_join(t, NULL);
assert(glob >= 1);
assert(glob <= 2); //UNKNOWN
assert(glob <= 10);
return 0;
}
| //PARAM: --enable ana.int.interval --enable ana.int.enums --exp.privatization "write" -v
#include<pthread.h>
// Test case that shows how avoiding reading integral globals can reduce the number of solver evaluations.
// Avoiding to evaluate integral globals when setting them reduced the number of necessary evaluations from 62 to 20 in this test case.
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
int glob = 10;
void* t_fun(void* ptr) {
pthread_mutex_lock(&mutex);
glob = 3;
glob = 4;
glob = 1;
pthread_mutex_unlock(&mutex);
return NULL;
}
void bar() {
glob = 2;
}
int main() {
pthread_t t;
pthread_create(&t, NULL, t_fun, NULL);
pthread_mutex_lock(&mutex);
bar();
pthread_mutex_unlock(&mutex);
pthread_join(t, NULL);
assert(glob >= 1);
assert(glob <= 10);
return 0;
}
| Remove confusing assert from test case | Remove confusing assert from test case
| C | mit | goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer |
790173fc23a95d2fad35adb32a1906cf8af047ad | tests/test_float_macros.c | tests/test_float_macros.c | /*
* Copyright 2019 Arnaud Gelas <[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.
*/
/* Use the unit test allocators */
#define UNIT_TESTING 1
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
/* A test case that does check if float is equal. */
static void float_test_success(void **state) {
assert_float_equal(0.5f, 1.f / 2.f, 0.000001f);
assert_float_not_equal(0.5, 0.499f, 0.000001f);
}
int main(void) {
const struct CMUnitTest tests[] = {
cmocka_unit_test(float_test_success),
};
return cmocka_run_group_tests(tests, NULL, NULL);
}
| /*
* Copyright 2019 Arnaud Gelas <[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.
*/
/* Use the unit test allocators */
#define UNIT_TESTING 1
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
/* A test case that does check if float is equal. */
static void float_test_success(void **state)
{
(void)state; /* unused */
assert_float_equal(0.5f, 1.f / 2.f, 0.000001f);
assert_float_not_equal(0.5, 0.499f, 0.000001f);
}
int main(void) {
const struct CMUnitTest tests[] = {
cmocka_unit_test(float_test_success),
};
return cmocka_run_group_tests(tests, NULL, NULL);
}
| Mark state unused in float test | tests: Mark state unused in float test
Signed-off-by: Andreas Schneider <[email protected]>
| C | apache-2.0 | clibs/cmocka,clibs/cmocka |
445f12dca8f06113caa775315bff574dee72b27d | arch/arm/mach-orion5x/include/mach/system.h | arch/arm/mach-orion5x/include/mach/system.h | /*
* arch/arm/mach-orion5x/include/mach/system.h
*
* Tzachi Perelstein <[email protected]>
*
* This file is licensed under the terms of the GNU General Public
* License version 2. This program is licensed "as is" without any
* warranty of any kind, whether express or implied.
*/
#ifndef __ASM_ARCH_SYSTEM_H
#define __ASM_ARCH_SYSTEM_H
#include <mach/bridge-regs.h>
static inline void arch_idle(void)
{
cpu_do_idle();
}
static inline void arch_reset(char mode, const char *cmd)
{
/*
* Enable and issue soft reset
*/
orion5x_setbits(RSTOUTn_MASK, (1 << 2));
orion5x_setbits(CPU_SOFT_RESET, 1);
}
#endif
| /*
* arch/arm/mach-orion5x/include/mach/system.h
*
* Tzachi Perelstein <[email protected]>
*
* This file is licensed under the terms of the GNU General Public
* License version 2. This program is licensed "as is" without any
* warranty of any kind, whether express or implied.
*/
#ifndef __ASM_ARCH_SYSTEM_H
#define __ASM_ARCH_SYSTEM_H
#include <mach/bridge-regs.h>
static inline void arch_idle(void)
{
cpu_do_idle();
}
static inline void arch_reset(char mode, const char *cmd)
{
/*
* Enable and issue soft reset
*/
orion5x_setbits(RSTOUTn_MASK, (1 << 2));
orion5x_setbits(CPU_SOFT_RESET, 1);
mdelay(200);
orion5x_clrbits(CPU_SOFT_RESET, 1);
}
#endif
| Fix soft-reset for some platforms | [ARM] orion5x: Fix soft-reset for some platforms
Some platforms, such as the DNS-323 rev C requires the soft reset line
to be toggled on and back off for the reset to work.
Note: The choice of 200ms delay comes from the 2.6.12 based vendor kernel.
It seems to be a -lot- though and I had my device working fine with much
smaller delays but better safe...
Signed-off-by: Benjamin Herrenschmidt <[email protected]>
Signed-off-by: Nicolas Pitre <[email protected]>
| C | mit | KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs |
f258b02abed915e2fadb2af2a4341486e403d104 | test/FrontendC/2004-02-13-Memset.c | test/FrontendC/2004-02-13-Memset.c | // RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memset | count 3
void *memset(void*, int, long);
void bzero(void*, int);
void test(int* X, char *Y) {
memset(X, 4, 1000);
bzero(Y, 100);
}
| // RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memset | count 3
void *memset(void*, int, long);
void bzero(void*, long);
void test(int* X, char *Y) {
memset(X, 4, 1000);
bzero(Y, 100);
}
| Make the declaration of bzero match size_t on x86-64-linux. | Make the declaration of bzero match size_t on
x86-64-linux.
git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@58383 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | llvm-mirror/llvm,GPUOpen-Drivers/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,llvm-mirror/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,chubbymaggie/asap,apple/swift-llvm,GPUOpen-Drivers/llvm,dslab-epfl/asap,apple/swift-llvm,llvm-mirror/llvm,apple/swift-llvm,dslab-epfl/asap,apple/swift-llvm,dslab-epfl/asap,llvm-mirror/llvm,chubbymaggie/asap,llvm-mirror/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,chubbymaggie/asap,llvm-mirror/llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,chubbymaggie/asap,apple/swift-llvm,dslab-epfl/asap,dslab-epfl/asap,apple/swift-llvm,llvm-mirror/llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,dslab-epfl/asap,dslab-epfl/asap,GPUOpen-Drivers/llvm |
413c572d3b732bf8f79772530dc21883958a3f5f | test/Analysis/crash-trace.c | test/Analysis/crash-trace.c | // RUN: not --crash %clang --analyze -Xanalyzer -analyzer-checker=debug.ExprInspection %s 2>&1 | FileCheck %s
void clang_analyzer_crash(void);
void inlined() {
clang_analyzer_crash();
}
void test() {
inlined();
}
// CHECK: 0. Program arguments: {{.*}}clang
// CHECK-NEXT: 1. <eof> parser at end of file
// CHECK-NEXT: 2. While analyzing stack:
// CHECK-NEXT: #0 void inlined()
// CHECK-NEXT: #1 void test()
// CHECK-NEXT: 3. {{.*}}crash-trace.c:6:3: Error evaluating statement
| Add test for crash tracing (r186639) | [analyzer] Add test for crash tracing (r186639)
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@186926 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang |
|
6b6a544be44a930942bfce48211329bdca6cd5cf | hab/arduino/usage.c | hab/arduino/usage.c | #include "sim-hab.h"
//
// display usage
//
void usage(void)
{
fprintf(stderr,
"\nsim-hab must be ran with two options. -p and -a both followed\n"
"by a file location. To determine the file locations run the\n"
"findPort program.\n"
"\n"
"usage: sim-hab [OPTIONS]\n"
" -?, --help Show this information.\n"
" -v, --version Show the version number.\n"
" -i, --id <ID> Use ID as the HAB-ID (defaults to\n"
" hostname if omitted).\n"
" -p --proxr <FILE> Give the ProXR file location to open.\n"
" -a --arduino <FILE> Give the Arduino file location to open.\n"
);
}
| #include "sim-hab.h"
//
// display usage
//
void usage(void)
{
fprintf(stderr,
"\ncgba-sim-arduino-hab must be ran with one option. -a followed\n"
"by a file location.\n"
"\n"
"usage: cgba-sim-arduino-hab [OPTIONS]\n"
" -?, --help Show this information.\n"
" -v, --version Show the version number.\n"
" -i, --id <ID> Use ID as the HAB-ID (defaults to\n"
" hostname if omitted).\n"
" -a --arduino <FILE> Give the Arduino file location to open.\n"
);
}
| Modify arduino hab help menu. | Modify arduino hab help menu.
| C | lgpl-2.1 | ldm5180/hammerhead,ldm5180/hammerhead,ldm5180/hammerhead,ldm5180/hammerhead,ldm5180/hammerhead,ldm5180/hammerhead,ldm5180/hammerhead |
7c3180c7c705795684dd54b3fa98c647c7599732 | gfx/gl_common.h | gfx/gl_common.h | #ifndef _GL_COMMON_H
#define _GL_COMMON_H
#if defined(USING_GLES2)
#ifdef IOS
// I guess we can soon add ES 3.0 here too
#include <OpenGLES/ES2/gl.h>
#include <OpenGLES/ES2/glext.h>
#else
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#ifndef MAEMO
#include <EGL/egl.h>
#endif // !MAEMO
#endif // IOS
#if defined(ANDROID) || defined(BLACKBERRY)
// Support OpenGL ES 3.0
// This uses the "DYNAMIC" approach from the gles3jni NDK sample.
// Should work on non-Android mobile platforms too.
#include "../gfx_es2/gl3stub.h"
#define MAY_HAVE_GLES3 1
#endif
#else // OpenGL
// Now that glew is upgraded beyond 4.3, we can define MAY_HAVE_GLES3 on GL platforms
#define MAY_HAVE_GLES3 1
#include <GL/glew.h>
#if defined(__APPLE__)
#include <OpenGL/gl.h>
#else
#include <GL/gl.h>
#endif
#endif
#if !defined(GLchar) && !defined(__APPLE__)
typedef char GLchar;
#endif
#endif //_GL_COMMON_H
| #ifndef _GL_COMMON_H
#define _GL_COMMON_H
#if defined(USING_GLES2)
#ifdef IOS
#include <OpenGLES/ES3/gl.h>
#include <OpenGLES/ES3/glext.h>
#include <OpenGLES/ES2/gl.h>
#include <OpenGLES/ES2/glext.h>
#else
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#ifndef MAEMO
#include <EGL/egl.h>
#endif // !MAEMO
#endif // IOS
#if defined(ANDROID) || defined(BLACKBERRY)
// Support OpenGL ES 3.0
// This uses the "DYNAMIC" approach from the gles3jni NDK sample.
// Should work on non-Android mobile platforms too.
#include "../gfx_es2/gl3stub.h"
#define MAY_HAVE_GLES3 1
#endif
#else // OpenGL
// Now that glew is upgraded beyond 4.3, we can define MAY_HAVE_GLES3 on GL platforms
#define MAY_HAVE_GLES3 1
#include <GL/glew.h>
#if defined(__APPLE__)
#include <OpenGL/gl.h>
#else
#include <GL/gl.h>
#endif
#endif
#if !defined(GLchar) && !defined(__APPLE__)
typedef char GLchar;
#endif
#endif //_GL_COMMON_H
| Add ES 3.0 support for iPhone | Add ES 3.0 support for iPhone | C | mit | unknownbrackets/native,zhykzhykzhyk/ppsspp-native,zhykzhykzhyk/ppsspp-native,unknownbrackets/native,hrydgard/native,zhykzhykzhyk/ppsspp-native,hrydgard/native,libretro/ppsspp-native,hrydgard/native,unknownbrackets/native,libretro/ppsspp-native,zhykzhykzhyk/ppsspp-native,hrydgard/native,libretro/ppsspp-native,libretro/ppsspp-native,unknownbrackets/native |
c968cf224a77473fd0670ec9d52a64ac6e153c7e | _cdblib.c | _cdblib.c | #include "Python.h"
/* Return a Python long instance containing the value of the DJB hash function
* for the given string or array. */
static PyObject *
djb_hash(PyObject *self, PyObject *args)
{
const unsigned char *s;
unsigned int h = 5381;
Py_ssize_t len;
if(! PyArg_ParseTuple(args, "t#", &s, &len))
return NULL;
while(len--)
h = ((h << 5) + h) ^ *s++;
return PyLong_FromUnsignedLong((unsigned long) h);
}
static /*const*/ PyMethodDef methods[] = {
{"djb_hash", djb_hash, METH_VARARGS,
"Return the value of DJB's hash function for the given 8-bit string."},
{NULL, NULL, 0, NULL}
};
PyMODINIT_FUNC
init_cdblib(void)
{
Py_InitModule("_cdblib", methods);
}
| #define PY_SSIZE_T_CLEAN
#include "Python.h"
/* Return a Python long instance containing the value of the DJB hash function
* for the given string or array. */
static PyObject *
djb_hash(PyObject *self, PyObject *args)
{
const unsigned char *s;
unsigned int h = 5381;
Py_ssize_t len;
if(! PyArg_ParseTuple(args, "t#", &s, &len))
return NULL;
while(len--)
h = ((h << 5) + h) ^ *s++;
return PyLong_FromUnsignedLong((unsigned long) h);
}
static /*const*/ PyMethodDef methods[] = {
{"djb_hash", djb_hash, METH_VARARGS,
"Return the value of DJB's hash function for the given 8-bit string."},
{NULL, NULL, 0, NULL}
};
PyMODINIT_FUNC
init_cdblib(void)
{
Py_InitModule("_cdblib", methods);
}
| Fix 64-bit breakage introduced in rev 04f373b0e015 | Fix 64-bit breakage introduced in rev 04f373b0e015
According to PEP-353:
"The conversion codes 's#' and 't#' will output Py_ssize_t if
the macro PY_SSIZE_T_CLEAN is defined before Python.h is included,
and continue to output int if that macro isn't defined."
| C | mit | dw/python-pure-cdb,douglasbagnall/python-pure-cdb,douglasbagnall/python-pure-cdb,pombredanne/python-pure-cdb,douglasbagnall/python-pure-cdb,pombredanne/python-pure-cdb,dw/python-pure-cdb |
677551cb87d393832540e5d2b1c282c82a0bab81 | Settings/Label.h | Settings/Label.h | #pragma once
#include "Control.h"
class Label : public Control {
public:
Label() {
}
Label(int id, HWND parent) :
Control(id, parent) {
}
}; | Add label alias for control | Add label alias for control
| C | bsd-2-clause | malensek/3RVX,malensek/3RVX,Soulflare3/3RVX,Soulflare3/3RVX,malensek/3RVX,Soulflare3/3RVX |
|
0594623991b24dc37c7a9934cbd87d486f564608 | SSPSolution/SSPSolution/GameStateHandler.h | SSPSolution/SSPSolution/GameStateHandler.h | #ifndef SSPAPPLICATION_GAMESTATES_GAMESTATEHANDLER_H
#define SSPAPPLICATION_GAMESTATES_GAMESTATEHANDLER_H
#include "GameState.h"
#include "StartState.h"
#include "LevelSelectState.h"
#include <vector>
#define START_WITHOUT_MENU
class GameStateHandler
{
private:
std::vector<GameState*> m_stateStack;
std::vector<GameState*> m_statesToRemove;
public:
GameStateHandler();
~GameStateHandler();
int ShutDown();
int Initialize(ComponentHandler* cHandler, Camera* cameraRef, std::string levelPath = NULL);
int Update(float dt, InputHandler* inputHandler);
//Push a state to the stack
int PushStateToStack(GameState* state);
private:
};
#endif | #ifndef SSPAPPLICATION_GAMESTATES_GAMESTATEHANDLER_H
#define SSPAPPLICATION_GAMESTATES_GAMESTATEHANDLER_H
#include "GameState.h"
#include "StartState.h"
#include "LevelSelectState.h"
#include <vector>
//#define START_WITHOUT_MENU
class GameStateHandler
{
private:
std::vector<GameState*> m_stateStack;
std::vector<GameState*> m_statesToRemove;
public:
GameStateHandler();
~GameStateHandler();
int ShutDown();
int Initialize(ComponentHandler* cHandler, Camera* cameraRef, std::string levelPath = NULL);
int Update(float dt, InputHandler* inputHandler);
//Push a state to the stack
int PushStateToStack(GameState* state);
private:
};
#endif | ADD commented out skip menu | ADD commented out skip menu
| C | apache-2.0 | Chringo/SSP,Chringo/SSP |
2fefbbf03dbacb0ac6f5da487dad19bbe0958074 | source/daplink/interface/tasks.h | source/daplink/interface/tasks.h | /**
* @file tasks.h
* @brief Macros for configuring the run time tasks
*
* DAPLink Interface Firmware
* Copyright (c) 2009-2020, ARM Limited, All Rights Reserved
* 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.
*/
#ifndef TASK_H
#define TASK_H
// trouble here is that reset for different targets is implemented differently so all targets
// have to use the largest stack or these have to be defined in multiple places... Not ideal
// may want to move away from threads for some of these behaviours to optimize mempory usage (RAM)
#define MAIN_TASK_STACK (800)
#define MAIN_TASK_PRIORITY (osPriorityNormal)
#endif
| /**
* @file tasks.h
* @brief Macros for configuring the run time tasks
*
* DAPLink Interface Firmware
* Copyright (c) 2009-2020, ARM Limited, All Rights Reserved
* 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.
*/
#ifndef TASK_H
#define TASK_H
// trouble here is that reset for different targets is implemented differently so all targets
// have to use the largest stack or these have to be defined in multiple places... Not ideal
// may want to move away from threads for some of these behaviours to optimize mempory usage (RAM)
#define MAIN_TASK_STACK (864)
#define MAIN_TASK_PRIORITY (osPriorityNormal)
#endif
| Fix k64f stack overflow during WebUSB flashing | Fix k64f stack overflow during WebUSB flashing
When flashing via the WebUSB interface (CMSIS v2) the K64F hangs and
USB eventually times out. This is because the main stack overflows
during this operation casuing RTX to trap and loop forever in
osRtxErrorNotify.
This patch prevents a stack overflow by by increasing the main stack
size from 800 bytes to 864 bytes. Note - maximum stack usage recorded
during WebUSB flashing is 816 bytes.
| C | apache-2.0 | google/DAPLink-port,google/DAPLink-port,google/DAPLink-port,google/DAPLink-port |
860c40fee51dd87814b949a967ea77fd34e9fb1c | include/core/SkMilestone.h | include/core/SkMilestone.h | /*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SK_MILESTONE
#define SK_MILESTONE 103
#endif
| /*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SK_MILESTONE
#define SK_MILESTONE 104
#endif
| Update Skia milestone to 104 | Update Skia milestone to 104
Change-Id: Iafd9cf15ac3c42bda7fa6b6857a82dc2eae6d234
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/540296
Reviewed-by: Heather Miller <[email protected]>
Commit-Queue: Eric Boren <[email protected]>
Commit-Queue: Heather Miller <[email protected]>
| C | bsd-3-clause | google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia |
e09d9db1a20d9e93bdb568975f26687b94ba7f7e | include/hl7parser/config.h | include/hl7parser/config.h | #ifndef HL7PARSER_CONFIG_H
#define HL7PARSER_CONFIG_H
/**
* \file config.h
*
* Generic configuration directives and macros used by the HL7 parser.
*
* \internal
* Copyright (c) 2003-2011 \b Erlar (http://erlar.com)
*/
/* ------------------------------------------------------------------------
Headers
------------------------------------------------------------------------ */
#include <hl7parser/bool.h>
#include <assert.h>
/* ------------------------------------------------------------------------
Macros
------------------------------------------------------------------------ */
/* Macros used when the library is included in a C++ project. */
#ifdef __cplusplus
# define BEGIN_C_DECL() extern "C" {
# define END_C_DECL() }
#else
# define BEGIN_C_DECL()
# define END_C_DECL()
#endif /* __cplusplus */
/**
* \def HL7_ASSERT( p )
* Asserts that the predicate \a p is true; if not it aborts the program
* showing the predicate, file and line number where the assertion failed.
*/
#define HL7_ASSERT( p ) assert( p )
#endif /* HL7PARSER_CONFIG_H */
| #ifndef HL7PARSER_CONFIG_H
#define HL7PARSER_CONFIG_H
/**
* \file config.h
*
* Generic configuration directives and macros used by the HL7 parser.
*
* \internal
* Copyright (c) 2003-2011 \b Erlar (http://erlar.com)
*/
/* ------------------------------------------------------------------------
Headers
------------------------------------------------------------------------ */
#include <hl7parser/bool.h>
#include <assert.h>
/* ------------------------------------------------------------------------
Macros
------------------------------------------------------------------------ */
/* Macros used when the library is included in a C++ project. */
#ifdef __cplusplus
# define BEGIN_C_DECL() extern "C" {
# define END_C_DECL() }
#else
# define BEGIN_C_DECL()
# define END_C_DECL()
#endif /* __cplusplus */
/**
* \def HL7_ASSERT( p )
* Asserts that the predicate \a p is true; if not it aborts the program
* showing the predicate, file and line number where the assertion failed.
*/
#define HL7_ASSERT( p ) assert( p )
#ifdef __GNUC__
#define HL7_UNUSED __attribute__ ((__unused__))
#else
#define HL7_UNUSED
#endif
#endif /* HL7PARSER_CONFIG_H */
| Add attribute for unused arguments | Add attribute for unused arguments
| C | apache-2.0 | jcomellas/hl7parser,jcomellas/hl7parser,jcomellas/hl7parser |
4e6c43c4fc864ae932243ee23cb5f104d0e342b3 | kernel/kabort.c | kernel/kabort.c | #if defined(__linux__)
#include <stdio.h>
#else
#include "../tlibc/stdio/stdio.h"
#endif
void abort(void)
{
// TODO: Add proper kernel panic.
printf("Kernel Panic! abort()\n");
while ( 1 ) { }
}
| #include "kputs.c"
void abort(void)
{
// TODO: Add proper kernel panic.
kputs("Kernel Panic! abort()\n");
while ( 1 ) { }
}
| Replace include stdio with include terminal | Replace include stdio with include terminal
| C | mit | awensaunders/kernel-of-truth,iankronquist/kernel-of-truth,Herbstein/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,awensaunders/kernel-of-truth,Herbstein/kernel-of-truth,iankronquist/kernel-of-truth,awensaunders/kernel-of-truth,Herbstein/kernel-of-truth |
08d54e91deb4163df649161abadd5de89852c474 | APLifecycleHooks/APLifecycleHooks.h | APLifecycleHooks/APLifecycleHooks.h | //
// APLifecycleHooks.h
// LoyaltyRtr
//
// Created by David Benko on 7/22/14.
// Copyright (c) 2014 David Benko. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface APLifecycleHooks : NSObject
+(void)setSDKLogging:(BOOL)shouldLog;
+(void)synchronousConnectionFinished:(void (^)(NSData *downloadedData, NSError *error))hook;
+(void)asyncConnectionStarted:(void (^)(NSURLRequest * req, NSURLConnection *conn))hook;
+(void)asyncConnectionFinished:(BOOL (^)(NSMutableData *downloadedData, NSError *error))hook;
@end
| //
// APLifecycleHooks.h
// LoyaltyRtr
//
// Created by David Benko on 7/22/14.
// Copyright (c) 2014 David Benko. All rights reserved.
//
#import <Foundation/Foundation.h>
#define __VERBOSE
@interface APLifecycleHooks : NSObject
+ (void)connectionWillStart:(NSURLRequest * (^)(NSURLRequest * req))connectionWillStartCallback didStart:(void (^)(NSURLRequest * req, NSURLConnection *conn))connectionDidStartCallback;
+ (void)connectionReceievedResponse:(void (^)(NSURLConnection *connection, NSURLResponse *response))connectionReceievedResponseCallback;
+ (void)checkConnectionResponse:(BOOL (^)(NSURLResponse *response, NSError **error))checkConnectionResponseCallback;
+ (void)connectionFinished:(BOOL (^)(NSURLResponse *response, NSMutableData *downloadedData, NSError *error))connectionDidFinishCallback;
@end
| Update method defs for v7 | Update method defs for v7 | C | mit | AnyPresence/APLifecycleHooks |
a83c10d6ea79771eb898a72ca7768b17fe23835f | Menu/Code/UI/BRMenuPlusMinusButton.h | Menu/Code/UI/BRMenuPlusMinusButton.h | //
// BRMenuPlusMinusButton.h
// Menu
//
// Created by Matt on 4/17/13.
// Copyright (c) 2013 Pervasent Consulting, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
@class BRMenuUIStyle;
IB_DESIGNABLE
@interface BRMenuPlusMinusButton : UIControl
@property (nonatomic, strong) BRMenuUIStyle *uiStyle;
@property (nonatomic, getter = isPlus) IBInspectable BOOL plus;
@end
| //
// BRMenuPlusMinusButton.h
// Menu
//
// Created by Matt on 4/17/13.
// Copyright (c) 2013 Pervasent Consulting, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
@class BRMenuUIStyle;
IB_DESIGNABLE
@interface BRMenuPlusMinusButton : UIControl
@property (nonatomic, strong) IBOutlet BRMenuUIStyle *uiStyle;
@property (nonatomic, getter = isPlus) IBInspectable BOOL plus;
@end
| Add some IB support for uiStyle. | Add some IB support for uiStyle.
| C | apache-2.0 | Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu |
a9787a770a80293b0b709a49403460c9a380c9ed | lib/ReaderWriter/ELF/ARM/ARMDynamicLibraryWriter.h | lib/ReaderWriter/ELF/ARM/ARMDynamicLibraryWriter.h | //===- lib/ReaderWriter/ELF/ARM/ARMDynamicLibraryWriter.h -----------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H
#define LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H
#include "DynamicLibraryWriter.h"
#include "ARMLinkingContext.h"
#include "ARMTargetHandler.h"
namespace lld {
namespace elf {
class ARMDynamicLibraryWriter : public DynamicLibraryWriter<ELF32LE> {
public:
ARMDynamicLibraryWriter(ARMLinkingContext &ctx, ARMTargetLayout &layout);
protected:
// Add any runtime files and their atoms to the output
void createImplicitFiles(std::vector<std::unique_ptr<File>> &) override;
private:
ARMLinkingContext &_ctx;
ARMTargetLayout &_armLayout;
};
ARMDynamicLibraryWriter::ARMDynamicLibraryWriter(ARMLinkingContext &ctx,
ARMTargetLayout &layout)
: DynamicLibraryWriter(ctx, layout), _ctx(ctx), _armLayout(layout) {}
void ARMDynamicLibraryWriter::createImplicitFiles(
std::vector<std::unique_ptr<File>> &result) {
DynamicLibraryWriter::createImplicitFiles(result);
}
} // namespace elf
} // namespace lld
#endif // LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H
| //===- lib/ReaderWriter/ELF/ARM/ARMDynamicLibraryWriter.h -----------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H
#define LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H
#include "DynamicLibraryWriter.h"
#include "ARMLinkingContext.h"
#include "ARMTargetHandler.h"
namespace lld {
namespace elf {
class ARMDynamicLibraryWriter : public DynamicLibraryWriter<ELF32LE> {
public:
ARMDynamicLibraryWriter(ARMLinkingContext &ctx, ARMTargetLayout &layout);
protected:
// Add any runtime files and their atoms to the output
void createImplicitFiles(std::vector<std::unique_ptr<File>> &) override;
};
ARMDynamicLibraryWriter::ARMDynamicLibraryWriter(ARMLinkingContext &ctx,
ARMTargetLayout &layout)
: DynamicLibraryWriter(ctx, layout) {}
void ARMDynamicLibraryWriter::createImplicitFiles(
std::vector<std::unique_ptr<File>> &result) {
DynamicLibraryWriter::createImplicitFiles(result);
}
} // namespace elf
} // namespace lld
#endif // LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H
| Remove unused fields in dynamic library writer | [ARM] Remove unused fields in dynamic library writer
git-svn-id: f6089bf0e6284f307027cef4f64114ee9ebb0424@237883 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | llvm-mirror/lld,llvm-mirror/lld |
a26f752285f822a3651bb75f78090bdbcbb7f9e5 | src/omv/xalloc.c | src/omv/xalloc.c | /*
* This file is part of the OpenMV project.
* Copyright (c) 2013/2014 Ibrahim Abdelkader <[email protected]>
* This work is licensed under the MIT license, see the file LICENSE for details.
*
* Memory allocation functions.
*
*/
#include <mp.h>
#include "mdefs.h"
#include "xalloc.h"
void *xalloc_fail()
{
nlr_raise(mp_obj_new_exception_msg(&mp_type_OSError, "Out of Memory!!"));
return NULL;
}
void *xalloc(uint32_t size)
{
void *mem = gc_alloc(size, false);
if (mem == NULL) {
return xalloc_fail();
}
return mem;
}
void *xalloc0(uint32_t size)
{
void *mem = gc_alloc(size, false);
if (mem == NULL) {
return xalloc_fail();
}
memset(mem, 0, size);
return mem;
}
void xfree(void *ptr)
{
gc_free(ptr);
}
void *xrealloc(void *ptr, uint32_t size)
{
ptr = gc_realloc(ptr, size);
if (ptr == NULL) {
return xalloc_fail();
}
return ptr;
}
| /*
* This file is part of the OpenMV project.
* Copyright (c) 2013/2014 Ibrahim Abdelkader <[email protected]>
* This work is licensed under the MIT license, see the file LICENSE for details.
*
* Memory allocation functions.
*
*/
#include <mp.h>
#include "mdefs.h"
#include "xalloc.h"
void *xalloc_fail()
{
nlr_raise(mp_obj_new_exception_msg(&mp_type_MemoryError, "Out of Memory!!"));
return NULL;
}
void *xalloc(uint32_t size)
{
void *mem = gc_alloc(size, false);
if (mem == NULL) {
return xalloc_fail();
}
return mem;
}
void *xalloc0(uint32_t size)
{
void *mem = gc_alloc(size, false);
if (mem == NULL) {
return xalloc_fail();
}
memset(mem, 0, size);
return mem;
}
void xfree(void *ptr)
{
gc_free(ptr);
}
void *xrealloc(void *ptr, uint32_t size)
{
ptr = gc_realloc(ptr, size);
if (ptr == NULL) {
return xalloc_fail();
}
return ptr;
}
| Change memory exception to MemoryError | Change memory exception to MemoryError
| C | mit | kwagyeman/openmv,kwagyeman/openmv,SmartArduino/openmv,openmv/openmv,SmartArduino/openmv,iabdalkader/openmv,tianzhihen/openmv,iabdalkader/openmv,tianzhihen/openmv,openmv/openmv,openmv/openmv,iabdalkader/openmv,SmartArduino/openmv,tianzhihen/openmv,openmv/openmv,iabdalkader/openmv,SmartArduino/openmv,kwagyeman/openmv,kwagyeman/openmv,tianzhihen/openmv |
2720b5a73de4f2bcac26affa08b5e1303b5301ea | components/TARGET_PSA/services/attestation/tfm_client.h | components/TARGET_PSA/services/attestation/tfm_client.h | /*
* Copyright (c) 2018-2019 ARM Limited. All rights reserved.
*
* 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.
*/
#ifndef __TFM_CLIENT_H__
#define __TFM_CLIENT_H__
#include "psa_defs.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif /* __TFM_CLIENT_H__ */
| /*
* Copyright (c) 2018-2019 ARM Limited. All rights reserved.
*
* 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.
*/
#ifndef __TFM_CLIENT_H__
#define __TFM_CLIENT_H__
#include "psa/client.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif /* __TFM_CLIENT_H__ */
| Update include psa_defs -> psa/client | Update include psa_defs -> psa/client
| C | apache-2.0 | mbedmicro/mbed,kjbracey-arm/mbed,mbedmicro/mbed,mbedmicro/mbed,andcor02/mbed-os,andcor02/mbed-os,andcor02/mbed-os,andcor02/mbed-os,andcor02/mbed-os,andcor02/mbed-os,kjbracey-arm/mbed,kjbracey-arm/mbed,mbedmicro/mbed,kjbracey-arm/mbed,mbedmicro/mbed |
821fe409e321fcc1c26f6525dae831280d91f36c | Test/src/minunit.h | Test/src/minunit.h | /*
* minunit.h
*
* Source: http://www.jera.com/techinfo/jtns/jtn002.html
*/
#include <stdio.h>
extern int tests_run;
#define mu_assert(message, test) do { \
if (!(test)) { \
return message; \
} \
} while (0)
#define mu_run_test(test, name) do { \
test_head(name); \
char const * message = test(); \
tests_run++; \
if (message) { \
test_failure; \
printf(" * %s\n", message); \
} else { \
test_success; \
} \
} while (0)
#define test_head(name) printf("Test %s... ", name)
#define test_success printf("[OK]\n")
#define test_failure printf("[FAIL]\n") | Add minimalist framework for unit testing in Test project. | Add minimalist framework for unit testing in Test project.
| C | mit | AymericGenet/SPHINCS-arduinodue,AymericGenet/SPHINCS-arduinodue,AymericGenet/SPHINCS-arduinodue |
|
c75706f29ac0844cc480f6333415830f5983d6f7 | src/lib/str-sanitize.c | src/lib/str-sanitize.c | /* Copyright (c) 2004 Timo Sirainen */
#include "lib.h"
#include "str.h"
#include "str-sanitize.h"
void str_sanitize_append(string_t *dest, const char *src, size_t max_len)
{
const char *p;
for (p = src; *p != '\0'; p++) {
if ((unsigned char)*p < 32)
break;
}
str_append_n(dest, src, (size_t)(p - src));
for (; *p != '\0' && max_len > 0; p++, max_len--) {
if ((unsigned char)*p < 32)
str_append_c(dest, '?');
else
str_append_c(dest, *p);
}
if (*p != '\0') {
str_truncate(dest, str_len(dest)-3);
str_append(dest, "...");
}
}
const char *str_sanitize(const char *src, size_t max_len)
{
string_t *str;
str = t_str_new(I_MIN(max_len, 256));
str_sanitize_append(str, src, max_len);
return str_c(str);
}
| /* Copyright (c) 2004 Timo Sirainen */
#include "lib.h"
#include "str.h"
#include "str-sanitize.h"
void str_sanitize_append(string_t *dest, const char *src, size_t max_len)
{
const char *p;
for (p = src; *p != '\0'; p++) {
if (((unsigned char)*p & 0x7f) < 32)
break;
}
str_append_n(dest, src, (size_t)(p - src));
for (; *p != '\0' && max_len > 0; p++, max_len--) {
if (((unsigned char)*p & 0x7f) < 32)
str_append_c(dest, '?');
else
str_append_c(dest, *p);
}
if (*p != '\0') {
str_truncate(dest, str_len(dest)-3);
str_append(dest, "...");
}
}
const char *str_sanitize(const char *src, size_t max_len)
{
string_t *str;
str = t_str_new(I_MIN(max_len, 256));
str_sanitize_append(str, src, max_len);
return str_c(str);
}
| Convert also 0x80..0x9f characters to '?' | Convert also 0x80..0x9f characters to '?'
| C | mit | Distrotech/dovecot,Distrotech/dovecot,Distrotech/dovecot,Distrotech/dovecot,Distrotech/dovecot |
f73128a5e940256d42bdb0efcb62ab2653910614 | src/matchers/EXPMatchers+beIdenticalTo.h | src/matchers/EXPMatchers+beIdenticalTo.h | #import "Expecta.h"
EXPMatcherInterface(_beIdenticalTo, (void *expected));
#if __has_feature(objc_arc)
#define beIdenticalTo(expected) _beIdenticalTo((__bridge void*)expected)
#else
#define beIdenticalTo _beIdenticalTo
#endif
| #import "Expecta.h"
EXPMatcherInterface(_beIdenticalTo, (void *expected));
EXPMatcherInterface(beIdenticalTo, (void *expected)); // to aid code completion
#if __has_feature(objc_arc)
#define beIdenticalTo(expected) _beIdenticalTo((__bridge void*)expected)
#else
#define beIdenticalTo _beIdenticalTo
#endif
| Add code completion helper for beIdenticalTo() | Add code completion helper for beIdenticalTo()
Like for equal() this helps discovering the matcher using code completion in Xcode. | C | mit | specta/expecta,iosdev-republicofapps/expecta,tonyarnold/expecta,jmoody/expecta,Bogon/expecta,suxinde2009/expecta,jmburges/expecta,wessmith/expecta,udemy/expecta,PatrykKaczmarek/expecta,iosdev-republicofapps/expecta,ashfurrow/expecta,PatrykKaczmarek/expecta,tonyarnold/expecta,ashfurrow/expecta,jmoody/expecta,tonyarnold/expecta,jmoody/expecta,ashfurrow/expecta,PatrykKaczmarek/expecta,suxinde2009/expecta,iguchunhui/expecta,Lightricks/expecta,modocache/expecta,jmoody/expecta,Lightricks/expecta,Bogon/expecta,jmburges/expecta,ashfurrow/expecta,jmburges/expecta,wessmith/expecta,udemy/expecta,tonyarnold/expecta,PatrykKaczmarek/expecta,modocache/expecta,modocache/expecta,jmburges/expecta,modocache/expecta,iosdev-republicofapps/expecta,iosdev-republicofapps/expecta,iguchunhui/expecta |
b6800f292aa9a9e229e9ae3e50a617f50d6fe82e | HLT/PHOS/AliHLTPHOSModuleCellAccumulatedEnergyDataStruct.h | HLT/PHOS/AliHLTPHOSModuleCellAccumulatedEnergyDataStruct.h | #ifndef ALIHLTPHOSNODULECELLACCUMULATEDENERGYDATASTRUCT_H
#define ALIHLTPHOSNODULECELLACCUMULATEDENERGYDATASTRUCT_H
/***************************************************************************
* Copyright(c) 2007, ALICE Experiment at CERN, All rights reserved. *
* *
* Author: Per Thomas Hille <[email protected]> for the ALICE HLT Project. *
* Contributors are mentioned in the code where appropriate. *
* *
* Permission to use, copy, modify and distribute this software and its *
* documentation strictly for non-commercial purposes is hereby granted *
* without fee, provided that the above copyright notice appears in all *
* copies and that both the copyright notice and this permission notice *
* appear in the supporting documentation. The authors make no claims *
* about the suitability of this software for any purpose. It is *
* provided "as is" without express or implied warranty. *
**************************************************************************/
#include "AliHLTPHOSCommonDefs.h"
//#include "AliHLTPHOSValidCellDataStruct.h"
struct AliHLTPHOSModuleCellAccumulatedEnergyDataStruct
{
AliHLTUInt8_t fModuleID;
// Int_t fModuleID;
// AliHLTUInt16_t fCnt;
// AliHLTUInt16_t fValidData[N_ROWS_MOD*N_COLUMNS_MOD*N_GAINS];
// AliHLTPHOSValidCellDataStruct fValidData[N_MODULES*N_ROWS_MOD*N_COLUMNS_MOD*N_GAINS];
// Double_t fAccumulatedEnergies[N_ZROWS_MOD][N_XCOLUMNS_MOD][N_GAINS];
Float_t fAccumulatedEnergies[N_ZROWS_MOD][N_XCOLUMNS_MOD][N_GAINS];
AliHLTUInt32_t fHits[N_ZROWS_MOD][N_XCOLUMNS_MOD][N_GAINS];
};
#endif
| Structure to hold information about accumualted energy in each cell (crystall) as well as the number of hits. Used by the onlinedisplay and the Histogranproducer component. | Structure to hold information about accumualted energy in each cell (crystall)
as well as the number of hits. Used by the onlinedisplay and the Histogranproducer component.
| C | bsd-3-clause | alisw/AliRoot,jgrosseo/AliRoot,ALICEHLT/AliRoot,ecalvovi/AliRoot,coppedis/AliRoot,ecalvovi/AliRoot,sebaleh/AliRoot,miranov25/AliRoot,ecalvovi/AliRoot,miranov25/AliRoot,ALICEHLT/AliRoot,shahor02/AliRoot,jgrosseo/AliRoot,ALICEHLT/AliRoot,mkrzewic/AliRoot,sebaleh/AliRoot,alisw/AliRoot,mkrzewic/AliRoot,sebaleh/AliRoot,shahor02/AliRoot,shahor02/AliRoot,alisw/AliRoot,miranov25/AliRoot,jgrosseo/AliRoot,ALICEHLT/AliRoot,ecalvovi/AliRoot,coppedis/AliRoot,jgrosseo/AliRoot,mkrzewic/AliRoot,coppedis/AliRoot,miranov25/AliRoot,sebaleh/AliRoot,ecalvovi/AliRoot,coppedis/AliRoot,shahor02/AliRoot,alisw/AliRoot,miranov25/AliRoot,alisw/AliRoot,alisw/AliRoot,ALICEHLT/AliRoot,sebaleh/AliRoot,mkrzewic/AliRoot,miranov25/AliRoot,mkrzewic/AliRoot,coppedis/AliRoot,alisw/AliRoot,sebaleh/AliRoot,mkrzewic/AliRoot,ALICEHLT/AliRoot,coppedis/AliRoot,coppedis/AliRoot,jgrosseo/AliRoot,miranov25/AliRoot,miranov25/AliRoot,alisw/AliRoot,ALICEHLT/AliRoot,ecalvovi/AliRoot,coppedis/AliRoot,jgrosseo/AliRoot,mkrzewic/AliRoot,shahor02/AliRoot,jgrosseo/AliRoot,sebaleh/AliRoot,shahor02/AliRoot,shahor02/AliRoot,ecalvovi/AliRoot |
|
ba8f2bf8ca42a4150dce14ee87e0b2c69ae58ad2 | testmud/mud/include/game/paths.h | testmud/mud/include/game/paths.h | #include <config.h>
#define LIB_VERB (USR_DIR + "/Game/lib/verb")
#define LIB_SIGHANDLER (USR_DIR + "/Game/lib/sighandler")
#define GAME_LIB_OBJECT (USR_DIR + "/Game/lib/object")
#define ALIASD (USR_DIR + "/Game/sys/aliasd")
#define ACCOUNTD (USR_DIR + "/Game/sys/accountd")
#define ROOT (USR_DIR + "/Game/sys/root")
#define SNOOPD (USR_DIR + "/Game/sys/snoopd")
#define GAME_HELPD (USR_DIR + "/Game/sys/helpd")
#define GAME_DRIVER (USR_DIR + "/Game/sys/driver")
#define GAME_USERD (USR_DIR + "/Game/sys/userd")
| #include <config.h>
#define LIB_VERB (USR_DIR + "/Game/lib/verb")
#define LIB_SIGHANDLER (USR_DIR + "/Game/lib/sighandler")
#define GAME_LIB_OBJECT (USR_DIR + "/Game/lib/object")
#define ALIASD (USR_DIR + "/Game/sys/aliasd")
#define BAND (USR_DIR + "/Game/sys/band")
#define ACCOUNTD (USR_DIR + "/Game/sys/accountd")
#define ROOT (USR_DIR + "/Game/sys/root")
#define SNOOPD (USR_DIR + "/Game/sys/snoopd")
#define GAME_HELPD (USR_DIR + "/Game/sys/helpd")
#define GAME_DRIVER (USR_DIR + "/Game/sys/driver")
#define GAME_USERD (USR_DIR + "/Game/sys/userd")
| Add ban manager to game object list | Add ban manager to game object list
| C | agpl-3.0 | shentino/kotaka,shentino/kotaka,shentino/kotaka |
2070f194f2fe399158cbc43a7379ef5572761950 | include/cpp-sort/detail/functional.h | include/cpp-sort/detail/functional.h | /*
* Copyright (c) 2021 Morwenn
* SPDX-License-Identifier: MIT
*/
#ifndef CPPSORT_DETAIL_FUNCTIONAL_H_
#define CPPSORT_DETAIL_FUNCTIONAL_H_
////////////////////////////////////////////////////////////
// Headers
////////////////////////////////////////////////////////////
#include <type_traits>
#include <utility>
#include <cpp-sort/utility/as_function.h>
namespace cppsort
{
namespace detail
{
////////////////////////////////////////////////////////////
// indirect
template<typename Projection>
class indirect_t
{
private:
Projection projection;
public:
indirect_t() = delete;
explicit indirect_t(Projection projection):
projection(std::move(projection))
{}
template<typename T>
auto operator()(T&& indirect_value)
-> decltype(utility::as_function(projection)(*indirect_value))
{
auto&& proj = utility::as_function(projection);
return proj(*indirect_value);
}
template<typename T>
auto operator()(T&& indirect_value) const
-> decltype(utility::as_function(projection)(*indirect_value))
{
auto&& proj = utility::as_function(projection);
return proj(*indirect_value);
}
};
template<typename Projection>
auto indirect(Projection&& proj)
-> indirect_t<std::decay_t<Projection>>
{
return indirect_t<std::decay_t<Projection>>(std::forward<Projection>(proj));
}
}}
#endif // CPPSORT_DETAIL_FUNCTIONAL_H_
| /*
* Copyright (c) 2021-2022 Morwenn
* SPDX-License-Identifier: MIT
*/
#ifndef CPPSORT_DETAIL_FUNCTIONAL_H_
#define CPPSORT_DETAIL_FUNCTIONAL_H_
////////////////////////////////////////////////////////////
// Headers
////////////////////////////////////////////////////////////
#include <type_traits>
#include <utility>
#include <cpp-sort/utility/as_function.h>
#include <cpp-sort/utility/functional.h>
namespace cppsort
{
namespace detail
{
////////////////////////////////////////////////////////////
// indirect
template<typename Projection>
class indirect_t:
utility::projection_base
{
private:
Projection projection;
public:
indirect_t() = delete;
explicit indirect_t(Projection projection):
projection(std::move(projection))
{}
template<typename T>
auto operator()(T&& indirect_value)
-> decltype(utility::as_function(projection)(*indirect_value))
{
auto&& proj = utility::as_function(projection);
return proj(*indirect_value);
}
template<typename T>
auto operator()(T&& indirect_value) const
-> decltype(utility::as_function(projection)(*indirect_value))
{
auto&& proj = utility::as_function(projection);
return proj(*indirect_value);
}
};
template<typename Projection>
auto indirect(Projection&& proj)
-> indirect_t<std::decay_t<Projection>>
{
return indirect_t<std::decay_t<Projection>>(std::forward<Projection>(proj));
}
}}
#endif // CPPSORT_DETAIL_FUNCTIONAL_H_
| Make indirect_t inherit from projection_base | Make indirect_t inherit from projection_base
| C | mit | Morwenn/cpp-sort,Morwenn/cpp-sort,Morwenn/cpp-sort,Morwenn/cpp-sort |
0dac68d485c739947ea064b63dd4312ffc42a96c | You-DataStore/internal/operations/erase_operation.h | You-DataStore/internal/operations/erase_operation.h | #pragma once
#ifndef YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_
#define YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_
#include "../operation.h"
namespace You {
namespace DataStore {
namespace Internal {
class EraseOperation : public IOperation {
public:
EraseOperation(TaskId);
bool run();
};
} // namespace Internal
} // namespace DataStore
} // namespace You
#endif // YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_
| #pragma once
#ifndef YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_
#define YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_
#include "../operation.h"
namespace You {
namespace DataStore {
namespace Internal {
class EraseOperation : public IOperation {
public:
explicit EraseOperation(TaskId);
bool run();
};
} // namespace Internal
} // namespace DataStore
} // namespace You
#endif // YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_
| Add explicit modifier to EraseOperation ctor | Add explicit modifier to EraseOperation ctor
| C | mit | cs2103aug2014-w10-1c/main,cs2103aug2014-w10-1c/main |
ce8c68c164436fbd394bac5c2287cfebe06e8f7c | example-AllComponentsGui/src/ofApp.h | example-AllComponentsGui/src/ofApp.h | #pragma once
#include "ofMain.h"
#include "ofxDatGui.h"
class ofApp : public ofBaseApp{
public:
void setup();
void draw();
void update();
ofxDatGui* gui;
bool mFullscreen;
void refreshWindow();
void toggleFullscreen();
void keyPressed(int key);
void onButtonEvent(ofxDatGuiButtonEvent e);
void onSliderEvent(ofxDatGuiSliderEvent e);
void onTextInputEvent(ofxDatGuiTextInputEvent e);
void on2dPadEvent(ofxDatGui2dPadEvent e);
void onDropdownEvent(ofxDatGuiDropdownEvent e);
void onColorPickerEvent(ofxDatGuiColorPickerEvent e);
void onMatrixEvent(ofxDatGuiMatrixEvent e);
uint tIndex;
vector<ofxDatGuiTheme*> themes;
};
| #pragma once
#include "ofMain.h"
#include "ofxDatGui.h"
class ofApp : public ofBaseApp{
public:
void setup();
void draw();
void update();
ofxDatGui* gui;
bool mFullscreen;
void refreshWindow();
void toggleFullscreen();
void keyPressed(int key);
void onButtonEvent(ofxDatGuiButtonEvent e);
void onSliderEvent(ofxDatGuiSliderEvent e);
void onTextInputEvent(ofxDatGuiTextInputEvent e);
void on2dPadEvent(ofxDatGui2dPadEvent e);
void onDropdownEvent(ofxDatGuiDropdownEvent e);
void onColorPickerEvent(ofxDatGuiColorPickerEvent e);
void onMatrixEvent(ofxDatGuiMatrixEvent e);
unsigned int tIndex;
vector<ofxDatGuiTheme*> themes;
};
| Fix for AllComponentsGui example under Visual Studio | Fix for AllComponentsGui example under Visual Studio
| C | mit | mrbichel/ofxDatGui |
730835bec1656c455fb759ebb4d22dcfc595f933 | LCDManager.h | LCDManager.h | #ifndef LCDManager_h
#define LCDManager_h
#include "Arduino.h"
#include <LiquidCrystalSPI.h>
class LCDManager{
public :
LCDManager(int line, int cols, int pin);
LiquidCrystalSPI screen();
void clearLine(int line);
void backlight(bool status);
void setBacklightPin(int pin);
void message(String message);
void refreshDisplay();
private :
void displayMessage();
String messageBuffer;
LiquidCrystalSPI theScreen;
int lines;
int cols;
int currentTextScrollPosition;
int currentTextChar;
bool hasDisplayFirstLoop;
int pinBacklight;
long lastTimer;
int timeBetweenRefresh;
};
#endif | #ifndef LCDManager_h
#define LCDManager_h
#include "Arduino.h"
#include <LiquidCrystalSPI.h>
#include <SPI.h>
class LCDManager{
public :
LCDManager(int line, int cols, int pin);
LiquidCrystalSPI screen();
void clearLine(int line);
void backlight(bool status);
void setBacklightPin(int pin);
void message(String message);
void refreshDisplay();
private :
void displayMessage();
String messageBuffer;
LiquidCrystalSPI theScreen;
int lines;
int cols;
int currentTextScrollPosition;
int currentTextChar;
bool hasDisplayFirstLoop;
int pinBacklight;
long lastTimer;
int timeBetweenRefresh;
};
#endif | Add the import for SPI in the library directly | Add the import for SPI in the library directly
| C | apache-2.0 | thibautrey/ArduinoScreenMessage |
9a909d3e6778fd655397f304bf42cdce163e43a0 | php_phpiredis.h | php_phpiredis.h | #ifndef PHP_PHPIREDIS_H
#define PHP_PHPIREDIS_H 1
#define PHP_PHPIREDIS_VERSION "1.0"
#define PHP_PHPIREDIS_EXTNAME "phpiredis"
PHP_MINIT_FUNCTION(phpiredis);
PHP_FUNCTION(phpiredis_connect);
PHP_FUNCTION(phpiredis_pconnect);
PHP_FUNCTION(phpiredis_disconnect);
PHP_FUNCTION(phpiredis_command_bs);
PHP_FUNCTION(phpiredis_command);
PHP_FUNCTION(phpiredis_multi_command);
PHP_FUNCTION(phpiredis_multi_command_bs);
PHP_FUNCTION(phpiredis_format_command);
PHP_FUNCTION(phpiredis_reader_create);
PHP_FUNCTION(phpiredis_reader_reset);
PHP_FUNCTION(phpiredis_reader_feed);
PHP_FUNCTION(phpiredis_reader_get_state);
PHP_FUNCTION(phpiredis_reader_get_error);
PHP_FUNCTION(phpiredis_reader_get_reply);
PHP_FUNCTION(phpiredis_reader_destroy);
PHP_FUNCTION(phpiredis_reader_set_error_handler);
PHP_FUNCTION(phpiredis_reader_set_status_handler);
extern zend_module_entry phpiredis_module_entry;
#define phpext_phpiredis_ptr &phpiredis_module_entry
#endif
| #ifndef PHP_PHPIREDIS_H
#define PHP_PHPIREDIS_H 1
#define PHP_PHPIREDIS_VERSION "1.0.0"
#define PHP_PHPIREDIS_EXTNAME "phpiredis"
PHP_MINIT_FUNCTION(phpiredis);
PHP_FUNCTION(phpiredis_connect);
PHP_FUNCTION(phpiredis_pconnect);
PHP_FUNCTION(phpiredis_disconnect);
PHP_FUNCTION(phpiredis_command_bs);
PHP_FUNCTION(phpiredis_command);
PHP_FUNCTION(phpiredis_multi_command);
PHP_FUNCTION(phpiredis_multi_command_bs);
PHP_FUNCTION(phpiredis_format_command);
PHP_FUNCTION(phpiredis_reader_create);
PHP_FUNCTION(phpiredis_reader_reset);
PHP_FUNCTION(phpiredis_reader_feed);
PHP_FUNCTION(phpiredis_reader_get_state);
PHP_FUNCTION(phpiredis_reader_get_error);
PHP_FUNCTION(phpiredis_reader_get_reply);
PHP_FUNCTION(phpiredis_reader_destroy);
PHP_FUNCTION(phpiredis_reader_set_error_handler);
PHP_FUNCTION(phpiredis_reader_set_status_handler);
extern zend_module_entry phpiredis_module_entry;
#define phpext_phpiredis_ptr &phpiredis_module_entry
#endif
| Add patch release in PHP_PHPIREDIS_VERSION. | Add patch release in PHP_PHPIREDIS_VERSION.
| C | bsd-2-clause | jymsy/phpiredis,nrk/phpiredis,RustJason/phpiredis,Danack/phpiredis,RustJason/phpiredis,Danack/phpiredis,jymsy/phpiredis,RustJason/phpiredis,nrk/phpiredis,Danack/phpiredis,nrk/phpiredis |
ae193c0aadeaa9be7e65afa87268436ee582fdb3 | src/thsh.c | src/thsh.c | /*
============================================================================
Name : thsh.c
Authors : Collin Kruger, Denton Underwood, John Christensen, Jon Stacey
Version :
Copyright : Copyright 2009 Jon Stacey. All rights reserved.
Description : Hello World in C, Ansi-style
============================================================================
*/
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
return EXIT_SUCCESS;
}
| /*
============================================================================
Name : thsh.c
Authors : Collin Kruger, Denton Underwood, John Christensen, Jon Stacey
Version :
Copyright : Copyright 2009 Jon Stacey. All rights reserved.
Description : Hello World in C, Ansi-style
============================================================================
*/
#include <stdio.h>
#include <stdlib.h>
int main(void) {
setvbuf(stdout, NULL, _IONBF, 0); // Disable buffering in accordance to http://homepages.tesco.net/J.deBoynePollard/FGA/capture-console-win32.html
puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
return EXIT_SUCCESS;
}
| Disable buffering to overcome apparent Eclipse bug | Disable buffering to overcome apparent Eclipse bug
| C | mit | jmstacey/thsh |
13b3021a24f7801a340a4974da3a79cfca95efb8 | common/common.h | common/common.h | #ifndef PS2AUTOTESTS_COMMON_H
#define PS2AUTOTESTS_COMMON_H
#include <stdio.h>
#include <tamtypes.h>
// Defines for MSVC highlighting. Not intended to actually compile with msc.
#ifdef _MSC_VER
void printf(const char *s, ...);
#define __attribute__(x)
#endif
#endif
| #ifndef PS2AUTOTESTS_COMMON_H
#define PS2AUTOTESTS_COMMON_H
// Defines for MSVC highlighting. Not intended to actually compile with msc.
#ifdef _MSC_VER
#define __STDC__
#define _EE
#define __attribute__(x)
#endif
#include <stdio.h>
#include <tamtypes.h>
#endif
| Adjust MSVC highlighting defines a bit. | Adjust MSVC highlighting defines a bit.
| C | isc | jpd002/ps2autotests,jpd002/ps2autotests,unknownbrackets/ps2autotests,unknownbrackets/ps2autotests,unknownbrackets/ps2autotests,jpd002/ps2autotests |
79d5319f4425e30f25252de6313c62e36347c622 | include/libtrading/proto/omx_moldudp.h | include/libtrading/proto/omx_moldudp.h | #ifndef LIBTRADING_OMX_MOLDUDP_MESSAGE_H
#define LIBTRADING_OMX_MOLDUDP_MESSAGE_H
#include "libtrading/types.h"
struct omx_moldudp_header {
char Session[10];
le32 SequenceNumber;
le16 MessageCount;
} packed;
struct omx_moldudp_message {
le16 MessageLength;
} packed;
struct omx_moldudp_request {
char Session[10];
le32 SequenceNumber;
le16 RequestedMessageCount;
} packed;
static inline struct omx_moldudp_message *omx_moldudp_payload(struct omx_moldudp_header *msg)
{
return (void *) msg + sizeof(struct omx_moldudp_header);
}
static inline void *omx_moldudp_message_payload(struct omx_moldudp_message *msg)
{
return (void *) msg + sizeof(struct omx_moldudp_message);
}
#endif
| Add NASDAQ OMX MoldUDP 1.02a | Add NASDAQ OMX MoldUDP 1.02a
The protocol version is not mentioned in the implementation name because
last change was made in 2006.
Reviewed-by: Ville Aine <[email protected]>
Signed-off-by: Jussi Virtanen <[email protected]>
| C | bsd-2-clause | jvirtanen/libtrading,svdev/libtrading,NunoEdgarGub1/libtrading,libtrading/libtrading,penberg/libtrading,libtrading/libtrading,fengzhyuan/libtrading,divaykin/libtrading,etoestja/libtrading,svdev/libtrading,Bitcoinsulting/libtrading,divaykin/libtrading,jvirtanen/libtrading,femtotrader/libtrading,mstanichenko/libtrading,etoestja/libtrading,mstanichenko/libtrading,NunoEdgarGub1/libtrading,penberg/libtrading,Bitcoinsulting/libtrading,fengzhyuan/libtrading,femtotrader/libtrading |
|
66dc55d4af2bb508965b87745fa1201298105650 | gui/profiledialog.h | gui/profiledialog.h | #ifndef PROFILEDIALOG_H
#define PROFILEDIALOG_H
#include "ui_profiledialog.h"
#include <QDialog>
namespace trace { class Profile; }
class ProfileDialog : public QDialog, public Ui_ProfileDialog
{
Q_OBJECT
public:
ProfileDialog(QWidget *parent = 0);
~ProfileDialog();
void setProfile(trace::Profile* profile);
public slots:
void setVerticalScrollMax(int max);
void setHorizontalScrollMax(int max);
void tableDoubleClicked(const QModelIndex& index);
void selectionChanged(int64_t start, int64_t end);
signals:
void jumpToCall(int call);
private:
trace::Profile *m_profile;
};
#endif
| #ifndef PROFILEDIALOG_H
#define PROFILEDIALOG_H
#include "ui_profiledialog.h"
#include <QDialog>
namespace trace { struct Profile; }
class ProfileDialog : public QDialog, public Ui_ProfileDialog
{
Q_OBJECT
public:
ProfileDialog(QWidget *parent = 0);
~ProfileDialog();
void setProfile(trace::Profile* profile);
public slots:
void setVerticalScrollMax(int max);
void setHorizontalScrollMax(int max);
void tableDoubleClicked(const QModelIndex& index);
void selectionChanged(int64_t start, int64_t end);
signals:
void jumpToCall(int call);
private:
trace::Profile *m_profile;
};
#endif
| Fix erroneous class Profile forward declaration to struct Profile. | Fix erroneous class Profile forward declaration to struct Profile.
| C | mit | joshua5201/apitrace,apitrace/apitrace,swq0553/apitrace,tuanthng/apitrace,apitrace/apitrace,EoD/apitrace,surround-io/apitrace,joshua5201/apitrace,surround-io/apitrace,PeterLValve/apitrace,surround-io/apitrace,joshua5201/apitrace,apitrace/apitrace,trtt/apitrace,EoD/apitrace,EoD/apitrace,trtt/apitrace,surround-io/apitrace,schulmar/apitrace,EoD/apitrace,schulmar/apitrace,PeterLValve/apitrace,PeterLValve/apitrace,trtt/apitrace,swq0553/apitrace,swq0553/apitrace,tuanthng/apitrace,swq0553/apitrace,swq0553/apitrace,EoD/apitrace,trtt/apitrace,schulmar/apitrace,trtt/apitrace,tuanthng/apitrace,schulmar/apitrace,tuanthng/apitrace,apitrace/apitrace,schulmar/apitrace,joshua5201/apitrace,surround-io/apitrace,tuanthng/apitrace,joshua5201/apitrace,PeterLValve/apitrace |
6054ffdeccfc50bfe49f83c60b8a2a7fb35ee10d | control.c | control.c | #include "hardware/packet.h"
#include "serial.h"
void btoa(int num, char *buf, int digits) {
int shift = digits - 1;
int current = pow(2, shift);
char digit[2];
while (current > 0) {
sprintf(digit, "%d", ((num & current) >> shift) & 1);
strncat(buf, digit, 1);
shift--;
current /= 2;
}
strcat(buf, "\0");
}
int main(int argc, char *argv[]) {
// 0: device
// 1: group
// 2: plug
// 3: status
char device[] = "\\\\.\\\\COM5";
if (serial_connect(device) == SERIAL_ERROR) {
printf("Failed to connect to serial device \"%s\"\n", device);
return 1;
}
struct Packet packet = { 1, 0, 3 };
if (serial_transmit(packet) == SERIAL_ERROR) {
printf("Failed to send data to serial device \"%s\"\n", device);
return 1;
}
serial_close();
return 0;
}
| #include "hardware/packet.h"
#include "serial.h"
void btoa(int num, char *buf, int digits) {
int shift = digits - 1;
int current = pow(2, shift);
char digit[2];
while (current > 0) {
sprintf(digit, "%d", ((num & current) >> shift) & 1);
strncat(buf, digit, 1);
shift--;
current /= 2;
}
strcat(buf, "\0");
}
int getvalue(char *text, char *name, int min, int max) {
char *end;
long result = strtol(text, &end, 10);
if (*end != '\0' || result < min || result > max) {
fprintf(stderr, "Invalid value for %s.\n", name);
return -1;
}
return result;
}
int main(int argc, char *argv[]) {
// 0: device
// 1: group
// 2: plug
// 3: status
char device[] = "\\\\.\\\\COM5";
if (serial_connect(device) == SERIAL_ERROR) {
printf("Failed to connect to serial device \"%s\"\n", device);
return 1;
}
struct Packet packet = { 1, 0, 3 };
if (serial_transmit(packet) == SERIAL_ERROR) {
printf("Failed to send data to serial device \"%s\"\n", device);
return 1;
}
serial_close();
return 0;
}
| Add function to convert a string to an integer | Add function to convert a string to an integer
| C | agpl-3.0 | jackwilsdon/lightcontrol,jackwilsdon/lightcontrol |
6f791eabab8ee5bfa1567e87cb9dd851e6d99c71 | include/ola/math/Random.h | include/ola/math/Random.h | /*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Random.h
* A simple random number generator.
* Copyright (C) 2012 Simon Newton
*/
#ifndef INCLUDE_OLA_MATH_RANDOM_H_
#define INCLUDE_OLA_MATH_RANDOM_H_
namespace ola {
namespace math {
/**
* @brief Seed the random number generator
*/
void InitRandom();
/**
* @brief Return a random number between lower and upper, inclusive. i.e.
* [lower, upper]
* @param lower the lower bound of the range the random number should be within
* @return the random number
*/
int Random(int lower, int upper);
} // namespace math
} // namespace ola
#endif // INCLUDE_OLA_MATH_RANDOM_H_
| /*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Random.h
* A simple random number generator.
* Copyright (C) 2012 Simon Newton
*/
#ifndef INCLUDE_OLA_MATH_RANDOM_H_
#define INCLUDE_OLA_MATH_RANDOM_H_
namespace ola {
namespace math {
/**
* @brief Seed the random number generator
*/
void InitRandom();
/**
* @brief Return a random number between lower and upper, inclusive. i.e.
* [lower, upper]
* @param lower the lower bound of the range the random number should be within
* @param upper the upper bound of the range the random number should be within
* @return the random number
*/
int Random(int lower, int upper);
} // namespace math
} // namespace ola
#endif // INCLUDE_OLA_MATH_RANDOM_H_
| Fix the deliberate error, Travis should go green now | Fix the deliberate error, Travis should go green now
| C | lgpl-2.1 | nightrune/ola,nightrune/ola,ld3300/ola,nightrune/ola,ld3300/ola,ld3300/ola,ld3300/ola,nightrune/ola,nightrune/ola,ld3300/ola,nightrune/ola,ld3300/ola,nightrune/ola,ld3300/ola |
a356bd07150e558e19cead5eaa9d11e78b7842cb | test/ClangModules/Inputs/resolve-cross-language/BaseUser.framework/Headers/BaseUser.h | test/ClangModules/Inputs/resolve-cross-language/BaseUser.framework/Headers/BaseUser.h | @import Base;
@import ObjectiveC;
BaseClass *getBaseClassObjC();
void useBaseClassObjC(BaseClass *);
@interface UserClass : NSObject <BaseProto>
@end
id <BaseProto> getBaseProtoObjC();
void useBaseProtoObjC(id <BaseProto>);
| @import Base;
@import ObjectiveC;
BaseClass *getBaseClassObjC();
void useBaseClassObjC(BaseClass *);
@interface UserClass : NSObject <BaseProto>
@end
id <BaseProto> getBaseProtoObjC();
void useBaseProtoObjC(id <BaseProto>);
@interface BaseClass (ObjCExtensions)
- (void)categoryMethod;
@end
| Add a test for ObjC categories on Swift classes. | [ClangImporter] Add a test for ObjC categories on Swift classes.
...that get unified by the importer.
Swift SVN r15083
| C | apache-2.0 | ken0nek/swift,JGiola/swift,deyton/swift,austinzheng/swift,bitjammer/swift,stephentyrone/swift,airspeedswift/swift,bitjammer/swift,JGiola/swift,glessard/swift,therealbnut/swift,ahoppen/swift,mightydeveloper/swift,allevato/swift,sdulal/swift,ben-ng/swift,codestergit/swift,mightydeveloper/swift,calebd/swift,nathawes/swift,hughbe/swift,MukeshKumarS/Swift,natecook1000/swift,frootloops/swift,uasys/swift,brentdax/swift,gottesmm/swift,swiftix/swift.old,calebd/swift,calebd/swift,SwiftAndroid/swift,ben-ng/swift,tinysun212/swift-windows,swiftix/swift.old,ahoppen/swift,alblue/swift,benlangmuir/swift,IngmarStein/swift,CodaFi/swift,emilstahl/swift,djwbrown/swift,cbrentharris/swift,adrfer/swift,JGiola/swift,OscarSwanros/swift,swiftix/swift.old,ken0nek/swift,atrick/swift,austinzheng/swift,sschiau/swift,russbishop/swift,aschwaighofer/swift,swiftix/swift,parkera/swift,cbrentharris/swift,xedin/swift,karwa/swift,kentya6/swift,KrishMunot/swift,xedin/swift,codestergit/swift,LeoShimonaka/swift,uasys/swift,return/swift,deyton/swift,benlangmuir/swift,austinzheng/swift,adrfer/swift,swiftix/swift.old,adrfer/swift,danielmartin/swift,glessard/swift,bitjammer/swift,ken0nek/swift,rudkx/swift,parkera/swift,uasys/swift,huonw/swift,kentya6/swift,johnno1962d/swift,airspeedswift/swift,nathawes/swift,tinysun212/swift-windows,huonw/swift,tkremenek/swift,swiftix/swift,danielmartin/swift,jopamer/swift,alblue/swift,sdulal/swift,alblue/swift,brentdax/swift,kusl/swift,jopamer/swift,return/swift,MukeshKumarS/Swift,cbrentharris/swift,cbrentharris/swift,jtbandes/swift,shahmishal/swift,sschiau/swift,kperryua/swift,milseman/swift,xwu/swift,JaSpa/swift,Jnosh/swift,tkremenek/swift,parkera/swift,manavgabhawala/swift,tjw/swift,practicalswift/swift,brentdax/swift,khizkhiz/swift,frootloops/swift,kperryua/swift,jtbandes/swift,lorentey/swift,ben-ng/swift,Jnosh/swift,rudkx/swift,bitjammer/swift,kusl/swift,tjw/swift,deyton/swift,hughbe/swift,Ivacker/swift,alblue/swift,stephentyrone/swift,JaSpa/swift,emilstahl/swift,modocache/swift,return/swift,kperryua/swift,brentdax/swift,brentdax/swift,allevato/swift,hooman/swift,emilstahl/swift,huonw/swift,kstaring/swift,hughbe/swift,therealbnut/swift,harlanhaskins/swift,JaSpa/swift,nathawes/swift,jmgc/swift,kperryua/swift,stephentyrone/swift,aschwaighofer/swift,ben-ng/swift,airspeedswift/swift,deyton/swift,MukeshKumarS/Swift,alblue/swift,shahmishal/swift,tkremenek/swift,dduan/swift,LeoShimonaka/swift,therealbnut/swift,tardieu/swift,MukeshKumarS/Swift,milseman/swift,MukeshKumarS/Swift,jtbandes/swift,johnno1962d/swift,kstaring/swift,apple/swift,apple/swift,allevato/swift,kusl/swift,JGiola/swift,shajrawi/swift,danielmartin/swift,slavapestov/swift,hooman/swift,kusl/swift,rudkx/swift,dreamsxin/swift,cbrentharris/swift,return/swift,IngmarStein/swift,khizkhiz/swift,kusl/swift,swiftix/swift.old,gottesmm/swift,felix91gr/swift,therealbnut/swift,gregomni/swift,kusl/swift,SwiftAndroid/swift,karwa/swift,OscarSwanros/swift,kusl/swift,austinzheng/swift,Ivacker/swift,amraboelela/swift,tardieu/swift,ben-ng/swift,arvedviehweger/swift,shahmishal/swift,natecook1000/swift,gregomni/swift,swiftix/swift.old,gribozavr/swift,LeoShimonaka/swift,jmgc/swift,arvedviehweger/swift,aschwaighofer/swift,karwa/swift,JaSpa/swift,gribozavr/swift,jmgc/swift,zisko/swift,deyton/swift,practicalswift/swift,ahoppen/swift,jmgc/swift,benlangmuir/swift,sschiau/swift,sschiau/swift,allevato/swift,CodaFi/swift,xwu/swift,mightydeveloper/swift,natecook1000/swift,LeoShimonaka/swift,tardieu/swift,uasys/swift,kentya6/swift,CodaFi/swift,karwa/swift,jtbandes/swift,shajrawi/swift,harlanhaskins/swift,Jnosh/swift,jckarter/swift,aschwaighofer/swift,benlangmuir/swift,hooman/swift,swiftix/swift.old,jopamer/swift,harlanhaskins/swift,tkremenek/swift,kstaring/swift,harlanhaskins/swift,tkremenek/swift,roambotics/swift,dduan/swift,adrfer/swift,roambotics/swift,felix91gr/swift,milseman/swift,swiftix/swift,CodaFi/swift,manavgabhawala/swift,felix91gr/swift,jopamer/swift,jckarter/swift,russbishop/swift,djwbrown/swift,tjw/swift,dduan/swift,swiftix/swift,apple/swift,johnno1962d/swift,ben-ng/swift,OscarSwanros/swift,parkera/swift,kentya6/swift,frootloops/swift,KrishMunot/swift,glessard/swift,jckarter/swift,aschwaighofer/swift,swiftix/swift,KrishMunot/swift,kstaring/swift,kperryua/swift,devincoughlin/swift,tardieu/swift,cbrentharris/swift,frootloops/swift,roambotics/swift,emilstahl/swift,dduan/swift,karwa/swift,aschwaighofer/swift,zisko/swift,danielmartin/swift,lorentey/swift,OscarSwanros/swift,adrfer/swift,OscarSwanros/swift,nathawes/swift,IngmarStein/swift,shahmishal/swift,johnno1962d/swift,xedin/swift,bitjammer/swift,roambotics/swift,stephentyrone/swift,shajrawi/swift,russbishop/swift,gmilos/swift,practicalswift/swift,LeoShimonaka/swift,apple/swift,karwa/swift,SwiftAndroid/swift,sdulal/swift,karwa/swift,glessard/swift,SwiftAndroid/swift,JaSpa/swift,ken0nek/swift,parkera/swift,airspeedswift/swift,practicalswift/swift,jopamer/swift,dduan/swift,practicalswift/swift,huonw/swift,modocache/swift,austinzheng/swift,swiftix/swift,manavgabhawala/swift,uasys/swift,slavapestov/swift,xwu/swift,djwbrown/swift,johnno1962d/swift,MukeshKumarS/Swift,cbrentharris/swift,gottesmm/swift,IngmarStein/swift,lorentey/swift,devincoughlin/swift,khizkhiz/swift,parkera/swift,therealbnut/swift,modocache/swift,gmilos/swift,gribozavr/swift,ben-ng/swift,kstaring/swift,gottesmm/swift,shajrawi/swift,shahmishal/swift,Jnosh/swift,IngmarStein/swift,jckarter/swift,shajrawi/swift,sdulal/swift,devincoughlin/swift,parkera/swift,jtbandes/swift,slavapestov/swift,codestergit/swift,mightydeveloper/swift,gregomni/swift,natecook1000/swift,allevato/swift,stephentyrone/swift,bitjammer/swift,jckarter/swift,gregomni/swift,shajrawi/swift,JaSpa/swift,sschiau/swift,emilstahl/swift,dduan/swift,natecook1000/swift,airspeedswift/swift,sschiau/swift,lorentey/swift,zisko/swift,hooman/swift,sdulal/swift,nathawes/swift,tardieu/swift,tinysun212/swift-windows,LeoShimonaka/swift,jmgc/swift,djwbrown/swift,hooman/swift,milseman/swift,jckarter/swift,ahoppen/swift,atrick/swift,harlanhaskins/swift,russbishop/swift,sdulal/swift,amraboelela/swift,Ivacker/swift,shajrawi/swift,brentdax/swift,tardieu/swift,glessard/swift,benlangmuir/swift,modocache/swift,xedin/swift,allevato/swift,modocache/swift,tinysun212/swift-windows,return/swift,tkremenek/swift,amraboelela/swift,shajrawi/swift,khizkhiz/swift,jmgc/swift,apple/swift,huonw/swift,devincoughlin/swift,nathawes/swift,frootloops/swift,tardieu/swift,devincoughlin/swift,johnno1962d/swift,ken0nek/swift,ahoppen/swift,lorentey/swift,atrick/swift,danielmartin/swift,deyton/swift,return/swift,arvedviehweger/swift,calebd/swift,practicalswift/swift,calebd/swift,emilstahl/swift,cbrentharris/swift,gottesmm/swift,russbishop/swift,mightydeveloper/swift,huonw/swift,adrfer/swift,calebd/swift,devincoughlin/swift,slavapestov/swift,xwu/swift,kentya6/swift,kperryua/swift,russbishop/swift,LeoShimonaka/swift,Ivacker/swift,devincoughlin/swift,amraboelela/swift,kusl/swift,JGiola/swift,xedin/swift,felix91gr/swift,codestergit/swift,hughbe/swift,xedin/swift,felix91gr/swift,gmilos/swift,khizkhiz/swift,huonw/swift,deyton/swift,shahmishal/swift,codestergit/swift,Ivacker/swift,LeoShimonaka/swift,natecook1000/swift,gribozavr/swift,djwbrown/swift,KrishMunot/swift,parkera/swift,Ivacker/swift,khizkhiz/swift,tjw/swift,glessard/swift,mightydeveloper/swift,apple/swift,KrishMunot/swift,sdulal/swift,tinysun212/swift-windows,devincoughlin/swift,gmilos/swift,danielmartin/swift,stephentyrone/swift,kstaring/swift,therealbnut/swift,alblue/swift,tjw/swift,JGiola/swift,dduan/swift,arvedviehweger/swift,modocache/swift,slavapestov/swift,zisko/swift,kentya6/swift,gmilos/swift,manavgabhawala/swift,uasys/swift,Jnosh/swift,practicalswift/swift,KrishMunot/swift,xedin/swift,milseman/swift,brentdax/swift,jtbandes/swift,jtbandes/swift,airspeedswift/swift,swiftix/swift.old,tjw/swift,ken0nek/swift,modocache/swift,mightydeveloper/swift,arvedviehweger/swift,rudkx/swift,Jnosh/swift,airspeedswift/swift,bitjammer/swift,xwu/swift,atrick/swift,aschwaighofer/swift,djwbrown/swift,karwa/swift,gribozavr/swift,JaSpa/swift,rudkx/swift,nathawes/swift,sschiau/swift,shahmishal/swift,gmilos/swift,SwiftAndroid/swift,IngmarStein/swift,hughbe/swift,frootloops/swift,dreamsxin/swift,stephentyrone/swift,gregomni/swift,tjw/swift,harlanhaskins/swift,felix91gr/swift,amraboelela/swift,gottesmm/swift,johnno1962d/swift,ahoppen/swift,kentya6/swift,russbishop/swift,frootloops/swift,hooman/swift,tkremenek/swift,SwiftAndroid/swift,danielmartin/swift,swiftix/swift,amraboelela/swift,jopamer/swift,arvedviehweger/swift,zisko/swift,harlanhaskins/swift,jckarter/swift,kperryua/swift,emilstahl/swift,roambotics/swift,natecook1000/swift,atrick/swift,practicalswift/swift,slavapestov/swift,ken0nek/swift,amraboelela/swift,return/swift,alblue/swift,xedin/swift,zisko/swift,gribozavr/swift,hooman/swift,CodaFi/swift,jmgc/swift,Jnosh/swift,austinzheng/swift,slavapestov/swift,arvedviehweger/swift,Ivacker/swift,SwiftAndroid/swift,OscarSwanros/swift,hughbe/swift,mightydeveloper/swift,roambotics/swift,gmilos/swift,felix91gr/swift,uasys/swift,zisko/swift,kstaring/swift,IngmarStein/swift,CodaFi/swift,allevato/swift,gregomni/swift,MukeshKumarS/Swift,hughbe/swift,khizkhiz/swift,manavgabhawala/swift,manavgabhawala/swift,sdulal/swift,adrfer/swift,codestergit/swift,shahmishal/swift,atrick/swift,OscarSwanros/swift,calebd/swift,KrishMunot/swift,gribozavr/swift,milseman/swift,emilstahl/swift,lorentey/swift,lorentey/swift,tinysun212/swift-windows,sschiau/swift,kentya6/swift,xwu/swift,benlangmuir/swift,therealbnut/swift,jopamer/swift,CodaFi/swift,rudkx/swift,manavgabhawala/swift,gottesmm/swift,tinysun212/swift-windows,xwu/swift,Ivacker/swift,austinzheng/swift,lorentey/swift,gribozavr/swift,codestergit/swift,djwbrown/swift,milseman/swift |
15b9e2c5ff7ba51288932b095f3f9949104143d6 | src/interfaces/ecpg/pgtypeslib/common.c | src/interfaces/ecpg/pgtypeslib/common.c | #include <errno.h>
#include "extern.h"
char *
pgtypes_alloc(long size)
{
char *new = (char *) calloc(1L, size);
if (!new)
{
errno = ENOMEM;
return NULL;
}
memset(new, '\0', size);
return (new);
}
char *
pgtypes_strdup(char *str)
{
char *new = (char *) strdup(str);
if (!new)
errno = ENOMEM;
return (new);
}
| #include <errno.h>
#include <stdlib.h>
#include "extern.h"
char *
pgtypes_alloc(long size)
{
char *new = (char *) calloc(1L, size);
if (!new)
{
errno = ENOMEM;
return NULL;
}
memset(new, '\0', size);
return (new);
}
char *
pgtypes_strdup(char *str)
{
char *new = (char *) strdup(str);
if (!new)
errno = ENOMEM;
return (new);
}
| Add <stdlib> to add calloc() prototype. | Add <stdlib> to add calloc() prototype.
| C | apache-2.0 | kaknikhil/gpdb,lisakowen/gpdb,yuanzhao/gpdb,cjcjameson/gpdb,yazun/postgres-xl,chrishajas/gpdb,tangp3/gpdb,janebeckman/gpdb,edespino/gpdb,zaksoup/gpdb,arcivanov/postgres-xl,adam8157/gpdb,50wu/gpdb,ovr/postgres-xl,tpostgres-projects/tPostgres,greenplum-db/gpdb,zaksoup/gpdb,oberstet/postgres-xl,adam8157/gpdb,atris/gpdb,tangp3/gpdb,techdragon/Postgres-XL,rubikloud/gpdb,postmind-net/postgres-xl,techdragon/Postgres-XL,jmcatamney/gpdb,xuegang/gpdb,tpostgres-projects/tPostgres,zaksoup/gpdb,xuegang/gpdb,xinzweb/gpdb,xuegang/gpdb,lintzc/gpdb,lintzc/gpdb,0x0FFF/gpdb,lintzc/gpdb,xinzweb/gpdb,50wu/gpdb,randomtask1155/gpdb,foyzur/gpdb,lpetrov-pivotal/gpdb,yuanzhao/gpdb,chrishajas/gpdb,ahachete/gpdb,oberstet/postgres-xl,greenplum-db/gpdb,atris/gpdb,xuegang/gpdb,royc1/gpdb,yuanzhao/gpdb,cjcjameson/gpdb,Quikling/gpdb,pavanvd/postgres-xl,Postgres-XL/Postgres-XL,rvs/gpdb,ovr/postgres-xl,tpostgres-projects/tPostgres,snaga/postgres-xl,ovr/postgres-xl,kaknikhil/gpdb,yazun/postgres-xl,jmcatamney/gpdb,edespino/gpdb,zeroae/postgres-xl,snaga/postgres-xl,CraigHarris/gpdb,lintzc/gpdb,rvs/gpdb,techdragon/Postgres-XL,ahachete/gpdb,yazun/postgres-xl,cjcjameson/gpdb,royc1/gpdb,oberstet/postgres-xl,edespino/gpdb,pavanvd/postgres-xl,0x0FFF/gpdb,rubikloud/gpdb,lintzc/gpdb,cjcjameson/gpdb,kaknikhil/gpdb,lisakowen/gpdb,janebeckman/gpdb,janebeckman/gpdb,yazun/postgres-xl,ashwinstar/gpdb,xuegang/gpdb,ovr/postgres-xl,tpostgres-projects/tPostgres,CraigHarris/gpdb,rubikloud/gpdb,rvs/gpdb,janebeckman/gpdb,kaknikhil/gpdb,zeroae/postgres-xl,janebeckman/gpdb,lisakowen/gpdb,janebeckman/gpdb,yuanzhao/gpdb,arcivanov/postgres-xl,xinzweb/gpdb,postmind-net/postgres-xl,rubikloud/gpdb,Quikling/gpdb,randomtask1155/gpdb,foyzur/gpdb,ashwinstar/gpdb,adam8157/gpdb,foyzur/gpdb,xinzweb/gpdb,rvs/gpdb,chrishajas/gpdb,adam8157/gpdb,atris/gpdb,yuanzhao/gpdb,randomtask1155/gpdb,zaksoup/gpdb,randomtask1155/gpdb,lpetrov-pivotal/gpdb,tangp3/gpdb,ahachete/gpdb,adam8157/gpdb,rubikloud/gpdb,royc1/gpdb,Quikling/gpdb,royc1/gpdb,janebeckman/gpdb,chrishajas/gpdb,50wu/gpdb,50wu/gpdb,pavanvd/postgres-xl,50wu/gpdb,janebeckman/gpdb,arcivanov/postgres-xl,yuanzhao/gpdb,cjcjameson/gpdb,randomtask1155/gpdb,kmjungersen/PostgresXL,kmjungersen/PostgresXL,Quikling/gpdb,CraigHarris/gpdb,kaknikhil/gpdb,lpetrov-pivotal/gpdb,Chibin/gpdb,arcivanov/postgres-xl,greenplum-db/gpdb,xinzweb/gpdb,zaksoup/gpdb,janebeckman/gpdb,greenplum-db/gpdb,zeroae/postgres-xl,0x0FFF/gpdb,50wu/gpdb,rvs/gpdb,Postgres-XL/Postgres-XL,yuanzhao/gpdb,edespino/gpdb,jmcatamney/gpdb,rvs/gpdb,tangp3/gpdb,jmcatamney/gpdb,Chibin/gpdb,cjcjameson/gpdb,tangp3/gpdb,xinzweb/gpdb,pavanvd/postgres-xl,Quikling/gpdb,chrishajas/gpdb,kaknikhil/gpdb,Chibin/gpdb,0x0FFF/gpdb,Chibin/gpdb,edespino/gpdb,Chibin/gpdb,zaksoup/gpdb,randomtask1155/gpdb,lisakowen/gpdb,ashwinstar/gpdb,ahachete/gpdb,zeroae/postgres-xl,royc1/gpdb,lpetrov-pivotal/gpdb,adam8157/gpdb,royc1/gpdb,chrishajas/gpdb,postmind-net/postgres-xl,Quikling/gpdb,edespino/gpdb,oberstet/postgres-xl,Quikling/gpdb,xuegang/gpdb,rubikloud/gpdb,rvs/gpdb,lintzc/gpdb,Postgres-XL/Postgres-XL,Postgres-XL/Postgres-XL,foyzur/gpdb,lpetrov-pivotal/gpdb,cjcjameson/gpdb,0x0FFF/gpdb,jmcatamney/gpdb,Chibin/gpdb,techdragon/Postgres-XL,postmind-net/postgres-xl,ahachete/gpdb,rvs/gpdb,zaksoup/gpdb,yuanzhao/gpdb,tangp3/gpdb,atris/gpdb,atris/gpdb,ashwinstar/gpdb,atris/gpdb,snaga/postgres-xl,adam8157/gpdb,lintzc/gpdb,CraigHarris/gpdb,cjcjameson/gpdb,jmcatamney/gpdb,edespino/gpdb,50wu/gpdb,foyzur/gpdb,ashwinstar/gpdb,kmjungersen/PostgresXL,Chibin/gpdb,kaknikhil/gpdb,foyzur/gpdb,ahachete/gpdb,rubikloud/gpdb,ashwinstar/gpdb,lpetrov-pivotal/gpdb,CraigHarris/gpdb,xinzweb/gpdb,kmjungersen/PostgresXL,lintzc/gpdb,royc1/gpdb,adam8157/gpdb,ashwinstar/gpdb,foyzur/gpdb,CraigHarris/gpdb,tangp3/gpdb,zaksoup/gpdb,kaknikhil/gpdb,Quikling/gpdb,snaga/postgres-xl,lisakowen/gpdb,Quikling/gpdb,rvs/gpdb,randomtask1155/gpdb,jmcatamney/gpdb,ahachete/gpdb,lisakowen/gpdb,0x0FFF/gpdb,chrishajas/gpdb,greenplum-db/gpdb,lisakowen/gpdb,CraigHarris/gpdb,0x0FFF/gpdb,xuegang/gpdb,greenplum-db/gpdb,chrishajas/gpdb,ovr/postgres-xl,ashwinstar/gpdb,edespino/gpdb,kaknikhil/gpdb,greenplum-db/gpdb,kmjungersen/PostgresXL,lintzc/gpdb,yuanzhao/gpdb,lpetrov-pivotal/gpdb,techdragon/Postgres-XL,oberstet/postgres-xl,50wu/gpdb,lpetrov-pivotal/gpdb,greenplum-db/gpdb,rubikloud/gpdb,zeroae/postgres-xl,rvs/gpdb,xuegang/gpdb,jmcatamney/gpdb,xinzweb/gpdb,edespino/gpdb,yuanzhao/gpdb,yazun/postgres-xl,xuegang/gpdb,arcivanov/postgres-xl,CraigHarris/gpdb,Postgres-XL/Postgres-XL,randomtask1155/gpdb,0x0FFF/gpdb,cjcjameson/gpdb,royc1/gpdb,lisakowen/gpdb,edespino/gpdb,arcivanov/postgres-xl,ahachete/gpdb,cjcjameson/gpdb,postmind-net/postgres-xl,atris/gpdb,atris/gpdb,Chibin/gpdb,snaga/postgres-xl,tpostgres-projects/tPostgres,Chibin/gpdb,pavanvd/postgres-xl,foyzur/gpdb,tangp3/gpdb,janebeckman/gpdb,kaknikhil/gpdb,Chibin/gpdb,CraigHarris/gpdb,Quikling/gpdb |
97a660828160b390186d06e607eeb9d0c1af8bc1 | MBContactPicker/MBContactModel.h | MBContactPicker/MBContactModel.h | //
// MBContactModel.h
// MBContactPicker
//
// Created by Matt Bowman on 12/13/13.
// Copyright (c) 2013 Citrrus, LLC. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol MBContactPickerModelProtocol <NSObject>
@required
@property (nonatomic, copy) NSString *contactTitle;
@optional
@property (nonatomic, copy) NSString *contactSubtitle;
@property (nonatomic) UIImage *contactImage;
@end
@interface MBContactModel : NSObject <MBContactPickerModelProtocol>
@property (nonatomic, copy) NSString *contactTitle;
@property (nonatomic, copy) NSString *contactSubtitle;
@property (nonatomic) UIImage *contactImage;
@end
| //
// MBContactModel.h
// MBContactPicker
//
// Created by Matt Bowman on 12/13/13.
// Copyright (c) 2013 Citrrus, LLC. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol MBContactPickerModelProtocol <NSObject>
@required
@property (readonly, nonatomic, copy) NSString *contactTitle;
@optional
@property (readonly, nonatomic, copy) NSString *contactSubtitle;
@property (readonly, nonatomic) UIImage *contactImage;
@end
@interface MBContactModel : NSObject <MBContactPickerModelProtocol>
@property (nonatomic, copy) NSString *contactTitle;
@property (nonatomic, copy) NSString *contactSubtitle;
@property (nonatomic) UIImage *contactImage;
@end
| Make MBContactPickerModelProtocol properties read-only, since that is all that the picker implementation requires, and avoids implementors having to either provide setters, or ignore the Xcode warnings about them not being auto-generated. | Make MBContactPickerModelProtocol properties read-only, since that is all
that the picker implementation requires, and avoids implementors having to
either provide setters, or ignore the Xcode warnings about them not being
auto-generated.
| C | mit | Citrrus/MBContactPicker,xuzhiming/MBContactPicker,octanner/MBContactPicker |
c6aa7012fa24998872f6350a32ff8b3a13add21a | lepton/renderer.h | lepton/renderer.h | /****************************************************************************
*
* Copyright (c) 2008 by Casey Duncan and contributors
* All Rights Reserved.
*
* This software is subject to the provisions of the MIT License
* A copy of the license should accompany this distribution.
* 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.
*
****************************************************************************/
/* Renderer shared code
*
* $Id$
*/
#ifndef _RENDERER_H_
#define _RENDERER_H_
typedef struct {
PyObject_HEAD
Py_ssize_t size;
float *data;
} FloatArrayObject;
/* Return true if o is a bon-a-fide FloatArrayObject */
int FloatArrayObject_Check(FloatArrayObject *o);
FloatArrayObject *
FloatArray_new(Py_ssize_t size);
FloatArrayObject *
generate_default_2D_tex_coords(GroupObject *pgroup);
/* Initialize the glew OpenGL extension manager
If glew has already been initialized, do nothing */
int
glew_initialize(void);
#endif
| /****************************************************************************
*
* Copyright (c) 2008 by Casey Duncan and contributors
* All Rights Reserved.
*
* This software is subject to the provisions of the MIT License
* A copy of the license should accompany this distribution.
* 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.
*
****************************************************************************/
/* Renderer shared code
*
* $Id$
*/
#ifndef _RENDERER_H_
#define _RENDERER_H_
typedef struct {
PyObject_HEAD
Py_ssize_t size;
float *data;
} FloatArrayObject;
/* Return true if o is a bon-a-fide FloatArrayObject */
int FloatArrayObject_Check(FloatArrayObject *o);
FloatArrayObject *
FloatArray_new(Py_ssize_t size);
FloatArrayObject *
generate_default_2D_tex_coords(GroupObject *pgroup);
/* Initialize the glew OpenGL extension manager
If glew has already been initialized, do nothing */
int
glew_initialize(void);
#endif
// Windows lacks fminf
#ifndef fminf
#define fminf(x, y) (((x) < (y)) ? (x) : (y))
#endif
| Define fminf for platforms that lack it | Define fminf for platforms that lack it
| C | mit | Alwnikrotikz/py-lepton,jmichelsen/py-lepton,tectronics/py-lepton,AlanZatarain/py-lepton,tectronics/py-lepton,AlanZatarain/py-lepton,jmichelsen/py-lepton,Alwnikrotikz/py-lepton |
436c216d0e372f08a8a0a1eab84fb569001c42fa | libsel4/include/sel4/macros.h | libsel4/include/sel4/macros.h | /*
* Copyright 2014, NICTA
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(NICTA_BSD)
*/
#ifndef __LIBSEL4_MACROS_H
#define __LIBSEL4_MACROS_H
/*
* Some compilers attempt to pack enums into the smallest possible type.
* For ABI compatability with the kernel, we need to ensure they remain
* the same size as an 'int'.
*/
#define SEL4_FORCE_LONG_ENUM(type) \
_enum_pad_ ## type = (1U << ((sizeof(int)*8) - 1))
#ifndef CONST
#define CONST __attribute__((__const__))
#endif
#ifndef PURE
#define PURE __attribute__((__pure__))
#endif
#endif
| /*
* Copyright 2014, NICTA
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(NICTA_BSD)
*/
#ifndef __LIBSEL4_MACROS_H
#define __LIBSEL4_MACROS_H
/*
* Some compilers attempt to pack enums into the smallest possible type.
* For ABI compatability with the kernel, we need to ensure they remain
* the same size as an 'int'.
*/
#define SEL4_FORCE_LONG_ENUM(type) \
_enum_pad_ ## type = (1U << ((sizeof(int)*8) - 1)) - 1
#ifndef CONST
#define CONST __attribute__((__const__))
#endif
#ifndef PURE
#define PURE __attribute__((__pure__))
#endif
#endif
| Make enum padding types one less in value so that they are INT_MAX | libsel4: Make enum padding types one less in value so that they are INT_MAX
Having the padding types as INT_MAX + 1 means C++ compilers will end up using
a signed 64 bit integer, as that is the only type that can have a value that
large, as well as the negative values our enums typically contain
| C | bsd-2-clause | DavidVorick/seL4,lukw00/seL4,lukw00/seL4,rzhw/seL4,rzhw/seL4,sutt0n/seL4,sigma-random/seL4,DavidVorick/seL4,codeneomatrix/seL4,CarterTsai/seL4,haitao52198/seL4,rzhw/seL4,gpbonillas/seL4,sutt0n/seL4,gpbonillas/seL4,dailypips/seL4,rzhw/seL4,dailypips/seL4,zhicheng/seL4,watbe/seL4,CarterTsai/seL4,sutt0n/seL4,CarterTsai/seL4,winksaville/seL4,watbe/seL4,gpbonillas/seL4,CarterTsai/seL4,DavidVorick/seL4,sigma-random/seL4,gpbonillas/seL4,sigma-random/seL4,codeneomatrix/seL4,haitao52198/seL4,lukw00/seL4,sigma-random/seL4,codeneomatrix/seL4,cmr/seL4,winksaville/seL4,winksaville/seL4,dailypips/seL4,haitao52198/seL4,cmr/seL4,zhicheng/seL4,sutt0n/seL4,codeneomatrix/seL4,sigma-random/seL4,winksaville/seL4,haitao52198/seL4,zhicheng/seL4,DavidVorick/seL4,lukw00/seL4,cmr/seL4,dailypips/seL4,watbe/seL4,watbe/seL4 |
31d22c03b365cd06de6b040deb8ca49d30202205 | Demo/Shared/MASPreferencesWindowController.h | Demo/Shared/MASPreferencesWindowController.h | //
// Created by Vadim Shpakovski on 4/22/11.
// Copyright 2011 Shpakovski. All rights reserved.
//
extern NSString *const kMASPreferencesWindowControllerDidChangeViewNotification;
@interface MASPreferencesWindowController : NSWindowController <NSToolbarDelegate, NSWindowDelegate>
{
@private
NSArray *_viewControllers;
NSString *_title;
id _lastSelectedController;
}
@property (nonatomic, readonly) NSArray *viewControllers;
@property (nonatomic, readonly) NSUInteger indexOfSelectedController;
@property (nonatomic, readonly) NSViewController *selectedViewController;
@property (nonatomic, readonly) NSString *title;
- (id)initWithViewControllers:(NSArray *)viewControllers;
- (id)initWithViewControllers:(NSArray *)viewControllers title:(NSString *)title;
- (void)selectControllerAtIndex:(NSUInteger)controllerIndex withAnimation:(BOOL)animate;
- (IBAction)goNextTab:(id)sender;
- (IBAction)goPreviousTab:(id)sender;
- (void)resetFirstResponderInView:(NSView *)view;
@end
| //
// Created by Vadim Shpakovski on 4/22/11.
// Copyright 2011 Shpakovski. All rights reserved.
//
extern NSString *const kMASPreferencesWindowControllerDidChangeViewNotification;
#if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_5
@interface MASPreferencesWindowController : NSWindowController <NSToolbarDelegate, NSWindowDelegate>
#else
@interface MASPreferencesWindowController : NSWindowController
#endif
{
@private
NSArray *_viewControllers;
NSString *_title;
id _lastSelectedController;
}
@property (nonatomic, readonly) NSArray *viewControllers;
@property (nonatomic, readonly) NSUInteger indexOfSelectedController;
@property (nonatomic, readonly) NSViewController *selectedViewController;
@property (nonatomic, readonly) NSString *title;
- (id)initWithViewControllers:(NSArray *)viewControllers;
- (id)initWithViewControllers:(NSArray *)viewControllers title:(NSString *)title;
- (void)selectControllerAtIndex:(NSUInteger)controllerIndex withAnimation:(BOOL)animate;
- (IBAction)goNextTab:(id)sender;
- (IBAction)goPreviousTab:(id)sender;
- (void)resetFirstResponderInView:(NSView *)view;
@end
| Allow building with the 10.5 SDK. | Allow building with the 10.5 SDK.
| C | bsd-2-clause | robrix/MASPreferences,konstantinpavlikhin/MASPreferences |
8797e7b4b961988983c92666dc6321a55a737e43 | ktexteditor/ktexteditor_export.h | ktexteditor/ktexteditor_export.h | /* This file is part of the KDE project
Copyright (C) 2007 David Faure <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KTEXTEDITOR_EXPORT_H
#define KTEXTEDITOR_EXPORT_H
/* needed for KDE_EXPORT and KDE_IMPORT macros */
#include <kdemacros.h>
/* We use _WIN32/_WIN64 instead of Q_OS_WIN so that this header can be used from C files too */
#if defined _WIN32 || defined _WIN64
#ifndef KTEXTEDITOR_EXPORT
# if defined(MAKE_KTEXTEDITOR_LIB)
/* We are building this library */
# define KTEXTEDITOR_EXPORT KDE_EXPORT
# else
/* We are using this library */
# define KTEXTEDITOR_EXPORT KDE_IMPORT
# endif
#endif
#else /* UNIX */
#define KTEXTEDITOR_EXPORT KDE_EXPORT
#endif
#endif
| /* This file is part of the KDE project
Copyright (C) 2007 David Faure <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KTEXTEDITOR_EXPORT_H
#define KTEXTEDITOR_EXPORT_H
/* needed for KDE_EXPORT and KDE_IMPORT macros */
#include <kdemacros.h>
#ifndef KTEXTEDITOR_EXPORT
# if defined(MAKE_KTEXTEDITOR_LIB)
/* We are building this library */
# define KTEXTEDITOR_EXPORT KDE_EXPORT
# else
/* We are using this library */
# define KTEXTEDITOR_EXPORT KDE_IMPORT
# endif
#endif
#endif
| Fix up the FOO_EXPORT stuff, per our discussion on k-c-d. CCMAIL: [email protected],[email protected] | Fix up the FOO_EXPORT stuff, per our discussion on k-c-d.
CCMAIL: [email protected],[email protected]
(fingers crossed)
svn path=/trunk/KDE/kdelibs/interfaces/ktexteditor/; revision=662070
| C | lgpl-2.1 | DickJ/kate,cmacq2/kate,hlamer/kate,jfmcarreira/kate,hlamer/kate,sandsmark/kate,hlamer/kate,jfmcarreira/kate,cmacq2/kate,hlamer/kate,DickJ/kate,DickJ/kate,sandsmark/kate,hlamer/kate,hlamer/kate,sandsmark/kate,hlamer/kate,sandsmark/kate,hlamer/kate,cmacq2/kate,hlamer/kate,hlamer/kate,DickJ/kate,jfmcarreira/kate |
6bcbbabb47dd982641859a3b98905f5bda671ded | src/pic32/power.c | src/pic32/power.c | #include "power.h"
#define SLEEP_MODE_ENABLE_BIT 4
void initializePower() {
}
void updatePower() {
}
void enterLowPowerMode() {
// When WAIT instruction is executed, go into SLEEP mode
OSCCONSET = (1 << SLEEP_MODE_ENABLE_BIT);
asm("wait");
// TODO if we wake up, do we resume with the PC right here? there's an RCON
// register with bits to indicate if we woke up from sleep. we'll need to
// re-run setup, potentially.
//C1CONSET / C1CONbits.x
}
| #include "power.h"
void initializePower() {
}
void updatePower() {
}
void enterLowPowerMode() {
}
| Remove "in progress" sleep mode code for PIC32 for now. | Remove "in progress" sleep mode code for PIC32 for now.
| C | bsd-3-clause | openxc/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,ene-ilies/vi-firmware,mgiannikouris/vi-firmware,mgiannikouris/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,openxc/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware |
e9144ad771ae3bae8672c4d5492e3901b68a13cf | features/mbedtls/platform/inc/platform_mbed.h | features/mbedtls/platform/inc/platform_mbed.h | /**
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
* 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.
*
* This file is part of mbed TLS (https://tls.mbed.org)
*/
#if defined(DEVICE_TRNG)
#define MBEDTLS_ENTROPY_HARDWARE_ALT
#endif
#if defined(MBEDTLS_HW_SUPPORT)
#include "mbedtls_device.h"
#endif
| /**
* Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
* 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.
*
* This file is part of mbed TLS (https://tls.mbed.org)
*/
#if defined(DEVICE_TRNG)
#define MBEDTLS_ENTROPY_HARDWARE_ALT
#endif
#if defined(MBEDTLS_CONFIG_HW_SUPPORT)
#include "mbedtls_device.h"
#endif
| Apply new naming convention to mbed TLS macros | Apply new naming convention to mbed TLS macros
| C | apache-2.0 | nRFMesh/mbed-os,netzimme/mbed-os,YarivCol/mbed-os,arostm/mbed-os,infinnovation/mbed-os,nRFMesh/mbed-os,pradeep-gr/mbed-os5-onsemi,adustm/mbed,bcostm/mbed-os,catiedev/mbed-os,fanghuaqi/mbed,maximmbed/mbed,c1728p9/mbed-os,pradeep-gr/mbed-os5-onsemi,CalSol/mbed,netzimme/mbed-os,kjbracey-arm/mbed,mbedmicro/mbed,adustm/mbed,adustm/mbed,bulislaw/mbed-os,mbedmicro/mbed,kl-cruz/mbed-os,andcor02/mbed-os,arostm/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,nvlsianpu/mbed,mmorenobarm/mbed-os,j-greffe/mbed-os,fanghuaqi/mbed,bulislaw/mbed-os,kjbracey-arm/mbed,Archcady/mbed-os,YarivCol/mbed-os,mikaleppanen/mbed-os,kl-cruz/mbed-os,betzw/mbed-os,betzw/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,andcor02/mbed-os,bulislaw/mbed-os,maximmbed/mbed,infinnovation/mbed-os,HeadsUpDisplayInc/mbed,HeadsUpDisplayInc/mbed,infinnovation/mbed-os,nvlsianpu/mbed,svogl/mbed-os,adamgreen/mbed,svogl/mbed-os,NXPmicro/mbed,betzw/mbed-os,c1728p9/mbed-os,mazimkhan/mbed-os,cvtsi2sd/mbed-os,fahhem/mbed-os,adustm/mbed,fahhem/mbed-os,kjbracey-arm/mbed,ryankurte/mbed-os,Archcady/mbed-os,infinnovation/mbed-os,HeadsUpDisplayInc/mbed,screamerbg/mbed,ryankurte/mbed-os,infinnovation/mbed-os,monkiineko/mbed-os,screamerbg/mbed,mbedmicro/mbed,RonEld/mbed,YarivCol/mbed-os,arostm/mbed-os,mazimkhan/mbed-os,nRFMesh/mbed-os,karsev/mbed-os,karsev/mbed-os,c1728p9/mbed-os,betzw/mbed-os,catiedev/mbed-os,maximmbed/mbed,theotherjimmy/mbed,pradeep-gr/mbed-os5-onsemi,nRFMesh/mbed-os,screamerbg/mbed,fahhem/mbed-os,bcostm/mbed-os,cvtsi2sd/mbed-os,mbedmicro/mbed,NXPmicro/mbed,cvtsi2sd/mbed-os,HeadsUpDisplayInc/mbed,YarivCol/mbed-os,mmorenobarm/mbed-os,nRFMesh/mbed-os,netzimme/mbed-os,mmorenobarm/mbed-os,svogl/mbed-os,nvlsianpu/mbed,catiedev/mbed-os,c1728p9/mbed-os,mazimkhan/mbed-os,NXPmicro/mbed,fanghuaqi/mbed,monkiineko/mbed-os,karsev/mbed-os,bulislaw/mbed-os,maximmbed/mbed,Archcady/mbed-os,andcor02/mbed-os,netzimme/mbed-os,c1728p9/mbed-os,bcostm/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,nvlsianpu/mbed,mazimkhan/mbed-os,fanghuaqi/mbed,mikaleppanen/mbed-os,mmorenobarm/mbed-os,CalSol/mbed,fahhem/mbed-os,c1728p9/mbed-os,ryankurte/mbed-os,nvlsianpu/mbed,theotherjimmy/mbed,RonEld/mbed,NXPmicro/mbed,mazimkhan/mbed-os,pradeep-gr/mbed-os5-onsemi,maximmbed/mbed,karsev/mbed-os,karsev/mbed-os,HeadsUpDisplayInc/mbed,RonEld/mbed,fahhem/mbed-os,catiedev/mbed-os,fahhem/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,CalSol/mbed,NXPmicro/mbed,nRFMesh/mbed-os,YarivCol/mbed-os,kl-cruz/mbed-os,CalSol/mbed,pradeep-gr/mbed-os5-onsemi,netzimme/mbed-os,infinnovation/mbed-os,theotherjimmy/mbed,betzw/mbed-os,monkiineko/mbed-os,mmorenobarm/mbed-os,adamgreen/mbed,screamerbg/mbed,kl-cruz/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,adustm/mbed,NXPmicro/mbed,bulislaw/mbed-os,monkiineko/mbed-os,YarivCol/mbed-os,mikaleppanen/mbed-os,svogl/mbed-os,cvtsi2sd/mbed-os,mazimkhan/mbed-os,theotherjimmy/mbed,bulislaw/mbed-os,screamerbg/mbed,karsev/mbed-os,adustm/mbed,RonEld/mbed,ryankurte/mbed-os,mmorenobarm/mbed-os,monkiineko/mbed-os,mbedmicro/mbed,bcostm/mbed-os,theotherjimmy/mbed,pradeep-gr/mbed-os5-onsemi,CalSol/mbed,kl-cruz/mbed-os,j-greffe/mbed-os,bcostm/mbed-os,kl-cruz/mbed-os,netzimme/mbed-os,fanghuaqi/mbed,screamerbg/mbed,ryankurte/mbed-os,adamgreen/mbed,arostm/mbed-os,mikaleppanen/mbed-os,adamgreen/mbed,adamgreen/mbed,catiedev/mbed-os,j-greffe/mbed-os,HeadsUpDisplayInc/mbed,arostm/mbed-os,adamgreen/mbed,andcor02/mbed-os,svogl/mbed-os,bcostm/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,j-greffe/mbed-os,mikaleppanen/mbed-os,mikaleppanen/mbed-os,Archcady/mbed-os,maximmbed/mbed,j-greffe/mbed-os,CalSol/mbed,RonEld/mbed,Archcady/mbed-os,nvlsianpu/mbed,RonEld/mbed,cvtsi2sd/mbed-os,andcor02/mbed-os,ryankurte/mbed-os,monkiineko/mbed-os,svogl/mbed-os,betzw/mbed-os,cvtsi2sd/mbed-os,Archcady/mbed-os,andcor02/mbed-os,arostm/mbed-os,theotherjimmy/mbed,kjbracey-arm/mbed,j-greffe/mbed-os,catiedev/mbed-os |
70917a464535e3a559f6256c721c8ab7626b67e3 | vm/include/capi/ruby/defines.h | vm/include/capi/ruby/defines.h | #ifndef RBX_CAPI_RUBY_DEFINES_H
#define RBX_CAPI_RUBY_DEFINES_H
/* Stub file provided for C extensions that expect it. All regular
* defines and prototypes are in ruby.h
*/
#define RUBY 1
#define RUBINIUS 1
#define HAVE_STDARG_PROTOTYPES 1
/* These are defines directly related to MRI C-API symbols that the
* mkmf.rb discovery code (e.g. have_func("rb_str_set_len")) would
* attempt to find by linking against libruby. Rubinius does not
* have an appropriate lib to link against, so we are adding these
* explicit defines for now.
*/
#define HAVE_RB_STR_SET_LEN 1
#define HAVE_RB_STR_NEW5 1
#define HAVE_RB_STR_NEW_WITH_CLASS 1
#define HAVE_RB_DEFINE_ALLOC_FUNC 1
#define HAVE_RB_HASH_FOREACH 1
#define HAVE_RB_HASH_ASET 1
#define HAVE_RUBY_ENCODING_H 1
#define HAVE_RB_ENCDB_ALIAS 1
#endif
| #ifndef RBX_CAPI_RUBY_DEFINES_H
#define RBX_CAPI_RUBY_DEFINES_H
/* Stub file provided for C extensions that expect it. All regular
* defines and prototypes are in ruby.h
*/
#define RUBY 1
#define RUBINIUS 1
#define HAVE_STDARG_PROTOTYPES 1
/* These are defines directly related to MRI C-API symbols that the
* mkmf.rb discovery code (e.g. have_func("rb_str_set_len")) would
* attempt to find by linking against libruby. Rubinius does not
* have an appropriate lib to link against, so we are adding these
* explicit defines for now.
*/
#define HAVE_RB_STR_SET_LEN 1
#define HAVE_RB_STR_NEW5 1
#define HAVE_RB_STR_NEW_WITH_CLASS 1
#define HAVE_RB_DEFINE_ALLOC_FUNC 1
#define HAVE_RB_HASH_FOREACH 1
#define HAVE_RB_HASH_ASET 1
#define HAVE_RUBY_ENCODING_H 1
#define HAVE_RB_ENCDB_ALIAS 1
#define HAVE_RB_ARY_SUBSEQ 1
#endif
| Add explicit define for rb_ary_subseq | Add explicit define for rb_ary_subseq
| C | mpl-2.0 | mlarraz/rubinius,jemc/rubinius,kachick/rubinius,heftig/rubinius,kachick/rubinius,Azizou/rubinius,jsyeo/rubinius,digitalextremist/rubinius,heftig/rubinius,kachick/rubinius,digitalextremist/rubinius,jemc/rubinius,dblock/rubinius,benlovell/rubinius,ngpestelos/rubinius,ruipserra/rubinius,jemc/rubinius,jsyeo/rubinius,sferik/rubinius,Wirachmat/rubinius,Wirachmat/rubinius,jsyeo/rubinius,dblock/rubinius,Azizou/rubinius,jsyeo/rubinius,kachick/rubinius,benlovell/rubinius,digitalextremist/rubinius,mlarraz/rubinius,sferik/rubinius,ngpestelos/rubinius,mlarraz/rubinius,jsyeo/rubinius,ngpestelos/rubinius,dblock/rubinius,benlovell/rubinius,benlovell/rubinius,digitalextremist/rubinius,kachick/rubinius,ngpestelos/rubinius,ruipserra/rubinius,Wirachmat/rubinius,jemc/rubinius,sferik/rubinius,ngpestelos/rubinius,Wirachmat/rubinius,Azizou/rubinius,kachick/rubinius,heftig/rubinius,ngpestelos/rubinius,ruipserra/rubinius,mlarraz/rubinius,jemc/rubinius,benlovell/rubinius,Wirachmat/rubinius,dblock/rubinius,mlarraz/rubinius,digitalextremist/rubinius,benlovell/rubinius,kachick/rubinius,mlarraz/rubinius,jsyeo/rubinius,Azizou/rubinius,benlovell/rubinius,ruipserra/rubinius,mlarraz/rubinius,dblock/rubinius,ruipserra/rubinius,heftig/rubinius,ngpestelos/rubinius,digitalextremist/rubinius,pH14/rubinius,sferik/rubinius,heftig/rubinius,Azizou/rubinius,sferik/rubinius,jsyeo/rubinius,jemc/rubinius,pH14/rubinius,Wirachmat/rubinius,ruipserra/rubinius,digitalextremist/rubinius,dblock/rubinius,sferik/rubinius,heftig/rubinius,Wirachmat/rubinius,pH14/rubinius,ruipserra/rubinius,jemc/rubinius,pH14/rubinius,kachick/rubinius,heftig/rubinius,dblock/rubinius,pH14/rubinius,pH14/rubinius,Azizou/rubinius,Azizou/rubinius,pH14/rubinius,sferik/rubinius |
ff102fa64bffe1a7facad5256cb474329c931acc | support/hololens/ServoApp/DefaultUrl.h | support/hololens/ServoApp/DefaultUrl.h | #pragma once
#define DEFAULT_URL L"http://paulrouget.com/test/bbjs/basic/";
| #pragma once
#define DEFAULT_URL L"https://servo.org/hl-home/";
| Load hololens demo page by default | Load hololens demo page by default
| C | mpl-2.0 | splav/servo,KiChjang/servo,splav/servo,KiChjang/servo,splav/servo,splav/servo,KiChjang/servo,saneyuki/servo,saneyuki/servo,KiChjang/servo,DominoTree/servo,splav/servo,saneyuki/servo,splav/servo,KiChjang/servo,saneyuki/servo,DominoTree/servo,splav/servo,DominoTree/servo,KiChjang/servo,DominoTree/servo,splav/servo,saneyuki/servo,KiChjang/servo,saneyuki/servo,KiChjang/servo,saneyuki/servo,DominoTree/servo,splav/servo,DominoTree/servo,KiChjang/servo,DominoTree/servo,saneyuki/servo,DominoTree/servo,saneyuki/servo,saneyuki/servo,KiChjang/servo,splav/servo,DominoTree/servo,DominoTree/servo |
406ba05b707496dd83beba008385596df6a094e4 | base/inc/TVersionCheck.h | base/inc/TVersionCheck.h | // @(#)root/base:$Name: $:$Id: TVersionCheck.h,v 1.2 2007/05/10 16:04:32 rdm Exp $
// Author: Fons Rademakers 9/5/2007
/*************************************************************************
* Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TVersionCheck
#define ROOT_TVersionCheck
//////////////////////////////////////////////////////////////////////////
// //
// TVersionCheck //
// //
// Used to check if the shared library or plugin is compatible with //
// the current version of ROOT. //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_RVersion
#include "RVersion.h"
#endif
class TVersionCheck {
public:
TVersionCheck(int versionCode); // implemented in TSystem.cxx
};
static TVersionCheck gVersionCheck(ROOT_VERSION_CODE);
#endif
| // @(#)root/base:$Name: $:$Id: TVersionCheck.h,v 1.3 2007/05/10 18:16:58 rdm Exp $
// Author: Fons Rademakers 9/5/2007
/*************************************************************************
* Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TVersionCheck
#define ROOT_TVersionCheck
//////////////////////////////////////////////////////////////////////////
// //
// TVersionCheck //
// //
// Used to check if the shared library or plugin is compatible with //
// the current version of ROOT. //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_RVersion
#include "RVersion.h"
#endif
class TVersionCheck {
public:
TVersionCheck(int versionCode); // implemented in TSystem.cxx
};
#ifndef __CINT__
static TVersionCheck gVersionCheck(ROOT_VERSION_CODE);
#endif
#endif
| Hide a static function to CINT. With this fix g4root compiles OK. | Hide a static function to CINT. With this fix g4root compiles OK.
git-svn-id: ecbadac9c76e8cf640a0bca86f6bd796c98521e3@18737 27541ba8-7e3a-0410-8455-c3a389f83636
| C | lgpl-2.1 | dawehner/root,dawehner/root,bbannier/ROOT,bbannier/ROOT,dawehner/root,dawehner/root,bbannier/ROOT,dawehner/root,bbannier/ROOT,dawehner/root,dawehner/root,dawehner/root,bbannier/ROOT,bbannier/ROOT,bbannier/ROOT |
2b34779ae26edabbb46f4cdaa32375b6166ced66 | src/clientversion.h | src/clientversion.h | #ifndef CLIENTVERSION_H
#define CLIENTVERSION_H
//
// client versioning
//
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 8
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 0
// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
// Converts the parameter X to a string after macro replacement on X has been performed.
// Don't merge these into one macro!
#define STRINGIZE(X) DO_STRINGIZE(X)
#define DO_STRINGIZE(X) #X
#endif // CLIENTVERSION_H
| #ifndef CLIENTVERSION_H
#define CLIENTVERSION_H
//
// client versioning
//
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 8
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_BUILD 99
// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE false
// Converts the parameter X to a string after macro replacement on X has been performed.
// Don't merge these into one macro!
#define STRINGIZE(X) DO_STRINGIZE(X)
#define DO_STRINGIZE(X) #X
#endif // CLIENTVERSION_H
| Switch version numbers to 0.8.1.99 | Switch version numbers to 0.8.1.99
| C | mit | prark/bitcoinxt,Friedbaumer/litecoin,torresalyssa/bitcoin,pinkevich/dash,magacoin/magacoin,bitbrazilcoin-project/bitbrazilcoin,bcpki/nonce2,phelix/namecore,magacoin/magacoin,rsdevgun16e/energi,emc2foundation/einsteinium,irvingruan/bitcoin,webdesignll/coin,elliotolds/bitcoin,simonmulser/bitcoin,5mil/Tradecoin,ZiftrCOIN/ziftrcoin,haraldh/bitcoin,sbaks0820/bitcoin,zenywallet/bitzeny,UASF/bitcoin,GlobalBoost/GlobalBoost,cddjr/BitcoinUnlimited,cinnamoncoin/groupcoin-1,blocktrail/bitcoin,NateBrune/bitcoin-nate,okinc/litecoin,shouhuas/bitcoin,vbernabe/freicoin,cryptcoins/cryptcoin,applecoin-official/applecoin,particl/particl-core,ixcoinofficialpage/master,isocolsky/bitcoinxt,itmanagerro/tresting,bdelzell/creditcoin-org-creditcoin,Alonzo-Coeus/bitcoin,Xekyo/bitcoin,sifcoin/sifcoin,dan-mi-sun/bitcoin,Rav3nPL/PLNcoin,coinkeeper/2015-06-22_19-00_ziftrcoin,WorldLeadCurrency/WLC,BTCfork/hardfork_prototype_1_mvf-bu,Metronotes/bitcoin,se3000/bitcoin,ClusterCoin/ClusterCoin,meighti/bitcoin,markf78/dollarcoin,FeatherCoin/Feathercoin,applecoin-official/fellatio,Horrorcoin/horrorcoin,domob1812/i0coin,sugruedes/bitcoin,inkvisit/sarmacoins,paveljanik/bitcoin,shapiroisme/datadollar,maaku/bitcoin,Enticed87/Decipher,ohac/sakuracoin,botland/bitcoin,bcpki/nonce2testblocks,florincoin/florincoin,Anoncoin/anoncoin,coinkeeper/2015-06-22_19-13_florincoin,nathaniel-mahieu/bitcoin,bitcoinknots/bitcoin,jambolo/bitcoin,hasanatkazmi/bitcoin,bdelzell/creditcoin-org-creditcoin,digibyte/digibyte,ingresscoin/ingresscoin,benma/bitcoin,EthanHeilman/bitcoin,Rav3nPL/doubloons-08,arruah/ensocoin,dashpay/dash,cinnamoncoin/Feathercoin,h4x3rotab/BTCGPU,dobbscoin/dobbscoin-source,crowning-/dash,reddcoin-project/reddcoin,jl2012/litecoin,deadalnix/bitcoin,awemany/BitcoinUnlimited,coinkeeper/2015-06-22_18-52_viacoin,collapsedev/circlecash,jgarzik/bitcoin,faircoin/faircoin2,KaSt/ekwicoin,irvingruan/bitcoin,xuyangcn/opalcoin,RongxinZhang/bitcoinxt,ftrader-bitcoinabc/bitcoin-abc,metrocoins/metrocoin,cannabiscoindev/cannabiscoin420,zzkt/solarcoin,mikehearn/bitcoinxt,XX-net/twister-core,NateBrune/bitcoin-fio,digibyte/digibyte,jmgilbert2/energi,micryon/GPUcoin,bittylicious/bitcoin,apoelstra/elements,Theshadow4all/ShadowCoin,dgarage/bc3,DMDcoin/Diamond,schinzelh/dash,cryptcoins/cryptcoin,braydonf/bitcoin,wangxinxi/litecoin,wellenreiter01/Feathercoin,particl/particl-core,ShwoognationHQ/bitcoin,Friedbaumer/litecoin,aburan28/elements,okinc/bitcoin,ripper234/bitcoin,simdeveloper/bitcoin,pouta/bitcoin,MazaCoin/mazacoin-new,syscoin/syscoin,gjhiggins/fuguecoin,pinheadmz/bitcoin,pataquets/namecoin-core,dexX7/mastercore,h4x3rotab/BTCGPU,guncoin/guncoin,nigeriacoin/nigeriacoin,presstab/PIVX,CrimeaCoin/crimeacoin,ryanofsky/bitcoin,phplaboratory/psiacoin,BitzenyCoreDevelopers/bitzeny,memorycoin/memorycoin,prark/bitcoinxt,ArgonToken/ArgonToken,and2099/twister-core,BitcoinUnlimited/BitcoinUnlimited,thrasher-/litecoin,kryptokredyt/ProjektZespolowyCoin,qreatora/worldcoin-v0.8,m0gliE/fastcoin-cli,ticclassic/ic,GroestlCoin/bitcoin,degenorate/Deftcoin,vertcoin/eyeglass,united-scrypt-coin-project/unitedscryptcoin,ctwiz/stardust,funkshelper/woodcore,antcheck/antcoin,mastercoin-MSC/mastercore,ekankyesme/bitcoinxt,meighti/bitcoin,axelxod/braincoin,jeromewu/bitcoin-opennet,mycointest/owncoin,vcoin-project/vcoin0.8zeta-dev,jimmysong/bitcoin,brishtiteveja/truthcoin-cpp,ronpaulcoin/ronpaulcoin,arruah/ensocoin,goldcoin/Goldcoin-GLD,aspirecoin/aspire,rat4/bitcoin,truthcoin/blocksize-market,hyperwang/bitcoin,funkshelper/woodcore,benzmuircroft/REWIRE.io,peerdb/cors,awemany/BitcoinUnlimited,shaolinfry/litecoin,inkvisit/sarmacoins,hsavit1/bitcoin,coinkeeper/2015-06-22_18-39_feathercoin,llluiop/bitcoin,oleganza/bitcoin-duo,bcpki/nonce2testblocks,mb300sd/bitcoin,ahmedbodi/vertcoin,segwit/atbcoin-insight,particl/particl-core,GwangJin/gwangmoney-core,shaolinfry/litecoin,rat4/bitcoin,bdelzell/creditcoin-org-creditcoin,shelvenzhou/BTCGPU,Rav3nPL/bitcoin,DogTagRecon/Still-Leraning,Dinarcoin/dinarcoin,nbenoit/bitcoin,dobbscoin/dobbscoin-source,cmgustavo/bitcoin,cryptohelper/premine,goldcoin/goldcoin,cdecker/bitcoin,vmp32k/litecoin,petertodd/bitcoin,pelorusjack/BlockDX,MazaCoin/mazacoin-new,LIMXTEC/DMDv3,bitcoin/bitcoin,wbchen99/bitcoin-hnote0,droark/elements,digibyte/digibyte,stevemyers/bitcoinxt,Mrs-X/Darknet,stevemyers/bitcoinxt,misdess/bitcoin,cqtenq/Feathercoin,andres-root/bitcoinxt,nlgcoin/guldencoin-official,dogecoin/dogecoin,namecoin/namecoin-core,coinkeeper/2015-06-22_18-31_bitcoin,zander/bitcoinclassic,npccoin/npccoin,DigitalPandacoin/pandacoin,XertroV/bitcoin-nulldata,jmgilbert2/energi,coinkeeper/2015-04-19_21-20_litecoindark,odemolliens/bitcoinxt,cannabiscoindev/cannabiscoin420,bittylicious/bitcoin,haisee/dogecoin,gavinandresen/bitcoin-git,axelxod/braincoin,SartoNess/BitcoinUnlimited,marlengit/BitcoinUnlimited,monacoinproject/monacoin,skaht/bitcoin,arnuschky/bitcoin,kevcooper/bitcoin,cyrixhero/bitcoin,mobicoins/mobicoin-core,iQcoin/iQcoin,GroestlCoin/GroestlCoin,JeremyRand/namecore,gjhiggins/vcoin09,kirkalx/bitcoin,marlengit/hardfork_prototype_1_mvf-bu,bitcoinxt/bitcoinxt,janko33bd/bitcoin,andres-root/bitcoinxt,pascalguru/florincoin,marlengit/BitcoinUnlimited,Kenwhite23/litecoin,octocoin-project/octocoin,theuni/bitcoin,Bushstar/UFO-Project,supcoin/supcoin,alexandrcoin/vertcoin,BitcoinHardfork/bitcoin,scippio/bitcoin,XertroV/bitcoin-nulldata,renatolage/wallets-BRCoin,UASF/bitcoin,markf78/dollarcoin,NateBrune/bitcoin-nate,tensaix2j/bananacoin,Chancoin-core/CHANCOIN,DogTagRecon/Still-Leraning,droark/bitcoin,nvmd/bitcoin,nsacoin/nsacoin,willwray/dash,dgarage/bc3,vmp32k/litecoin,dgarage/bc3,raasakh/bardcoin,digideskio/namecoin,rsdevgun16e/energi,jameshilliard/bitcoin,likecoin-dev/bitcoin,qtumproject/qtum,willwray/dash,pascalguru/florincoin,coinkeeper/2015-06-22_18-51_vertcoin,richo/dongcoin,namecoin/namecoin-core,nlgcoin/guldencoin-official,jonasschnelli/bitcoin,fanquake/bitcoin,laudaa/bitcoin,ionux/freicoin,Bushstar/UFO-Project,GroundRod/anoncoin,cinnamoncoin/groupcoin-1,wbchen99/bitcoin-hnote0,litecoin-project/litecore-litecoin,Jcing95/iop-hd,achow101/bitcoin,icook/vertcoin,llamasoft/ProtoShares_Cycle,SocialCryptoCoin/SocialCoin,okinc/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,madman5844/poundkoin,majestrate/twister-core,2XL/bitcoin,vmp32k/litecoin,ghostlander/Feathercoin,Czarcoin/czarcoin,syscoin/syscoin2,dcousens/bitcoin,bitcoinsSG/zcash,scippio/bitcoin,TripleSpeeder/bitcoin,2XL/bitcoin,Kenwhite23/litecoin,koharjidan/litecoin,coinkeeper/2015-04-19_21-20_litecoindark,Jcing95/iop-hd,benzmuircroft/REWIRE.io,Rav3nPL/PLNcoin,r8921039/bitcoin,rdqw/sscoin,core-bitcoin/bitcoin,senadmd/coinmarketwatch,FarhanHaque/bitcoin,inutoshi/inutoshi,RongxinZhang/bitcoinxt,uphold/bitcoin,Czarcoin/czarcoin,ccoin-project/ccoin,lateminer/bitcoin,jimblasko/2015_UNB_Wallets,oklink-dev/bitcoin_block,CoinProjects/AmsterdamCoin-v4,FinalHashLLC/namecore,upgradeadvice/MUE-Src,puticcoin/putic,Cocosoft/bitcoin,psionin/smartcoin,hyperwang/bitcoin,slingcoin/sling-market,imharrywu/fastcoin,SocialCryptoCoin/SocialCoin,haisee/dogecoin,zander/bitcoinclassic,ElementsProject/elements,thrasher-/litecoin,shapiroisme/datadollar,butterflypay/bitcoin,phelix/namecore,rromanchuk/bitcoinxt,tjth/lotterycoin,collapsedev/cashwatt,bitcoinxt/bitcoinxt,XX-net/twister-core,bickojima/bitzeny,ticclassic/ic,gzuser01/zetacoin-bitcoin,JeremyRand/bitcoin,Mrs-X/Darknet,Domer85/dogecoin,diggcoin/diggcoin,maaku/bitcoin,plncoin/PLNcoin_Core,gandrewstone/BitcoinUnlimited,coinkeeper/anoncoin_20150330_fixes,21E14/bitcoin,dmrtsvetkov/flowercoin,OstlerDev/florincoin,nomnombtc/bitcoin,torresalyssa/bitcoin,joshrabinowitz/bitcoin,vertcoin/vertcoin,goldcoin/goldcoin,rjshaver/bitcoin,jonasschnelli/bitcoin,gjhiggins/vcoin09,kallewoof/bitcoin,metacoin/florincoin,memorycoin/memorycoin,koharjidan/bitcoin,bcpki/testblocks,cryptodev35/icash,misdess/bitcoin,gjhiggins/vcoincore,greencoin-dev/digitalcoin,globaltoken/globaltoken,wtogami/bitcoin,gwillen/elements,dgarage/bc2,Cancercoin/Cancercoin,DGCDev/argentum,unsystemizer/bitcoin,sstone/bitcoin,pinkevich/dash,martindale/elements,practicalswift/bitcoin,marscoin/marscoin,jameshilliard/bitcoin,greencoin-dev/greencoin-dev,marscoin/marscoin,keisercoin-official/keisercoin,putinclassic/putic,willwray/dash,plncoin/PLNcoin_Core,ColossusCoinXT/ColossusCoinXT,stamhe/bitcoin,EthanHeilman/bitcoin,shapiroisme/datadollar,tjps/bitcoin,lakepay/lake,imharrywu/fastcoin,tensaix2j/bananacoin,kaostao/bitcoin,mrtexaznl/mediterraneancoin,fullcoins/fullcoin,brishtiteveja/sherlockcoin,capitalDIGI/litecoin,WorldLeadCurrency/WLC,ingresscoin/ingresscoin,ppcoin/ppcoin,coinkeeper/2015-06-22_18-56_megacoin,LIMXTEC/DMDv3,jeromewu/bitcoin-opennet,saydulk/Feathercoin,shelvenzhou/BTCGPU,gazbert/bitcoin,litecoin-project/litecoin,rnicoll/bitcoin,welshjf/bitcoin,tecnovert/particl-core,nailtaras/nailcoin,Chancoin-core/CHANCOIN,xawksow/GroestlCoin,wtogami/bitcoin,cannabiscoindev/cannabiscoin420,AkioNak/bitcoin,Enticed87/Decipher,lbrtcoin/albertcoin,TripleSpeeder/bitcoin,KibiCoin/kibicoin,cybermatatu/bitcoin,fedoracoin-dev/fedoracoin,npccoin/npccoin,Exgibichi/statusquo,vertcoin/vertcoin,ericshawlinux/bitcoin,MikeAmy/bitcoin,knolza/gamblr,oklink-dev/bitcoin_block,Sjors/bitcoin,namecoin/namecoin-core,nmarley/dash,ardsu/bitcoin,untrustbank/litecoin,deadalnix/bitcoin,jl2012/litecoin,FarhanHaque/bitcoin,AdrianaDinca/bitcoin,segsignal/bitcoin,magacoin/magacoin,wiggi/huntercore,btc1/bitcoin,myriadteam/myriadcoin,bickojima/bitzeny,sugruedes/bitcoin,nsacoin/nsacoin,aspirecoin/aspire,Jcing95/iop-hd,bootycoin-project/bootycoin,enlighter/Feathercoin,greencoin-dev/digitalcoin,zixan/bitcoin,Checkcoin/checkcoin,GreenParhelia/bitcoin,freelion93/mtucicoin,Adaryian/E-Currency,manuel-zulian/accumunet,parvez3019/bitcoin,ravenbyron/phtevencoin,tripmode/pxlcoin,mincoin-project/mincoin,Rav3nPL/doubloons-08,bittylicious/bitcoin,PIVX-Project/PIVX,jimblasko/2015_UNB_Wallets,hophacker/bitcoin_malleability,RongxinZhang/bitcoinxt,funkshelper/woodcoin-b,1185/starwels,sirk390/bitcoin,domob1812/huntercore,jonghyeopkim/bitcoinxt,OstlerDev/florincoin,koharjidan/dogecoin,accraze/bitcoin,brishtiteveja/sherlockcoin,daliwangi/bitcoin,xuyangcn/opalcoin,coinkeeper/2015-06-22_19-07_digitalcoin,robvanbentem/bitcoin,nbenoit/bitcoin,millennial83/bitcoin,NateBrune/bitcoin-nate,BigBlueCeiling/augmentacoin,benzmuircroft/REWIRE.io,coinkeeper/2015-06-22_18-41_ixcoin,osuyuushi/laughingmancoin,BitzenyCoreDevelopers/bitzeny,gjhiggins/vcoin0.8zeta-dev,worldbit/worldbit,pstratem/bitcoin,SoreGums/bitcoinxt,simonmulser/bitcoin,bitcoinec/bitcoinec,jimmykiselak/lbrycrd,syscoin/syscoin2,elecoin/elecoin,goldcoin/Goldcoin-GLD,robvanbentem/bitcoin,mooncoin-project/mooncoin-landann,ryanofsky/bitcoin,TGDiamond/Diamond,karek314/bitcoin,dev1972/Satellitecoin,wangxinxi/litecoin,BTCfork/hardfork_prototype_1_mvf-bu,ludbb/bitcoin,dev1972/Satellitecoin,andreaskern/bitcoin,mapineda/litecoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,DGCDev/argentum,qtumproject/qtum,gameunits/gameunits,Climbee/artcoin,aspirecoin/aspire,balajinandhu/bitcoin,knolza/gamblr,Czarcoin/czarcoin,greenaddress/bitcoin,tuaris/bitcoin,gjhiggins/fuguecoin,Bitcoin-ABC/bitcoin-abc,sbellem/bitcoin,habibmasuro/bitcoin,OmniLayer/omnicore,oklink-dev/bitcoin,aburan28/elements,janko33bd/bitcoin,vbernabe/freicoin,joroob/reddcoin,isle2983/bitcoin,40thoughts/Coin-QualCoin,ctwiz/stardust,ddombrowsky/radioshares,n1bor/bitcoin,sebrandon1/bitcoin,jimmykiselak/lbrycrd,vbernabe/freicoin,slingcoin/sling-market,dannyperez/bolivarcoin,ctwiz/stardust,xeddmc/twister-core,parvez3019/bitcoin,schildbach/bitcoin,bitpagar/bitpagar,ctwiz/stardust,pstratem/elements,jnewbery/bitcoin,lbrtcoin/albertcoin,truthcoin/truthcoin-cpp,Friedbaumer/litecoin,StarbuckBG/BTCGPU,ClusterCoin/ClusterCoin,florincoin/florincoin,patricklodder/dogecoin,shaulkf/bitcoin,bitcoinsSG/bitcoin,genavarov/ladacoin,grumpydevelop/singularity,FinalHashLLC/namecore,Bitcoin-ABC/bitcoin-abc,nigeriacoin/nigeriacoin,EntropyFactory/creativechain-core,ryanxcharles/bitcoin,sickpig/BitcoinUnlimited,mikehearn/bitcoinxt,jonasnick/bitcoin,elecoin/elecoin,mapineda/litecoin,Har01d/bitcoin,bitcoinclassic/bitcoinclassic,jarymoth/dogecoin,ptschip/bitcoinxt,benosa/bitcoin,MazaCoin/maza,BTCfork/hardfork_prototype_1_mvf-bu,Bitcoin-com/BUcash,MasterX1582/bitcoin-becoin,Krellan/bitcoin,dgarage/bc2,globaltoken/globaltoken,xawksow/GroestlCoin,pouta/bitcoin,keesdewit82/LasVegasCoin,roques/bitcoin,paveljanik/bitcoin,coinkeeper/2015-06-22_19-19_worldcoin,TierNolan/bitcoin,habibmasuro/bitcoinxt,nmarley/dash,zemrys/vertcoin,pastday/bitcoinproject,haobtc/bitcoin,ohac/sakuracoin,JeremyRand/namecore,BigBlueCeiling/augmentacoin,CoinProjects/AmsterdamCoin-v4,OmniLayer/omnicore,Ziftr/litecoin,phelix/namecore,x-kalux/bitcoin_WiG-B,xeddmc/twister-core,r8921039/bitcoin,daliwangi/bitcoin,BTCDDev/bitcoin,multicoins/marycoin,applecoin-official/fellatio,Erkan-Yilmaz/twister-core,bitcoinsSG/zcash,174high/bitcoin,keesdewit82/LasVegasCoin,putinclassic/putic,dgarage/bc2,razor-coin/razor,simonmulser/bitcoin,PIVX-Project/PIVX,coinkeeper/megacoin_20150410_fixes,sugruedes/bitcoinxt,goldcoin/goldcoin,bitcoinknots/bitcoin,dan-mi-sun/bitcoin,okinc/litecoin,peacedevelop/peacecoin,bitgoldcoin-project/bitgoldcoin,webdesignll/coin,joulecoin/joulecoin,coinkeeper/2015-06-22_18-37_dogecoin,kevcooper/bitcoin,jimmykiselak/lbrycrd,dogecoin/dogecoin,reddink/reddcoin,tmagik/catcoin,Alex-van-der-Peet/bitcoin,enlighter/Feathercoin,ctwiz/stardust,koharjidan/bitcoin,npccoin/npccoin,Cocosoft/bitcoin,yenliangl/bitcoin,marcusdiaz/BitcoinUnlimited,practicalswift/bitcoin,scippio/bitcoin,aburan28/elements,wiggi/huntercore,syscoin/syscoin,jimmysong/bitcoin,habibmasuro/bitcoinxt,paveljanik/bitcoin,dashpay/dash,zenywallet/bitzeny,xeddmc/twister-core,iosdevzone/bitcoin,emc2foundation/einsteinium,ahmedbodi/vertcoin,parvez3019/bitcoin,matlongsi/micropay,borgcoin/Borgcoin.rar,wbchen99/bitcoin-hnote0,ddombrowsky/radioshares,jiffe/cosinecoin,coinkeeper/megacoin_20150410_fixes,CrimeaCoin/crimeacoin,ShwoognationHQ/bitcoin,coinkeeper/2015-06-22_18-36_darkcoin,ericshawlinux/bitcoin,xeddmc/twister-core,ZiftrCOIN/ziftrcoin,arruah/ensocoin,riecoin/riecoin,kallewoof/bitcoin,starwels/starwels,shomeser/bitcoin,ryanofsky/bitcoin,TripleSpeeder/bitcoin,zsulocal/bitcoin,KaSt/equikoin,Thracky/monkeycoin,funkshelper/woodcoin-b,freelion93/mtucicoin,franko-org/franko,rawodb/bitcoin,2XL/bitcoin,Erkan-Yilmaz/twister-core,constantine001/bitcoin,TierNolan/bitcoin,robvanbentem/bitcoin,fujicoin/fujicoin,haisee/dogecoin,osuyuushi/laughingmancoin,hg5fm/nexuscoin,RHavar/bitcoin,multicoins/marycoin,xieta/mincoin,CryptArc/bitcoinxt,MikeAmy/bitcoin,mooncoin-project/mooncoin-landann,RongxinZhang/bitcoinxt,Krellan/bitcoin,neuroidss/bitcoin,CryptArc/bitcoinxt,rawodb/bitcoin,bespike/litecoin,Har01d/bitcoin,randy-waterhouse/bitcoin,dan-mi-sun/bitcoin,RazorLove/cloaked-octo-spice,MazaCoin/maza,xurantju/bitcoin,cheehieu/bitcoin,Lucky7Studio/bitcoin,Justaphf/BitcoinUnlimited,ajweiss/bitcoin,coinkeeper/2015-06-22_18-56_megacoin,szlaozhu/twister-core,richo/dongcoin,jimblasko/UnbreakableCoin-master,blocktrail/bitcoin,drwasho/bitcoinxt,welshjf/bitcoin,iosdevzone/bitcoin,jrick/bitcoin,funkshelper/woodcoin-b,TBoehm/greedynode,randy-waterhouse/bitcoin,nsacoin/nsacoin,andres-root/bitcoinxt,paveljanik/bitcoin,sbaks0820/bitcoin,zetacoin/zetacoin,tropa/axecoin,Carrsy/PoundCoin,razor-coin/razor,brishtiteveja/truthcoin-cpp,awemany/BitcoinUnlimited,dannyperez/bolivarcoin,sbaks0820/bitcoin,vlajos/bitcoin,Coinfigli/coinfigli,themusicgod1/bitcoin,totallylegitbiz/totallylegitcoin,blocktrail/bitcoin,welshjf/bitcoin,bitgoldcoin-project/bitgoldcoin,inutoshi/inutoshi,GIJensen/bitcoin,Kore-Core/kore,ShadowMyst/creativechain-core,Litecoindark/LTCD,REAP720801/bitcoin,worldbit/worldbit,kfitzgerald/titcoin,florincoin/florincoin,koharjidan/litecoin,jonasschnelli/bitcoin,Horrorcoin/horrorcoin,apoelstra/elements,nikkitan/bitcoin,MazaCoin/mazacoin-new,DrCrypto/darkcoin,presstab/PIVX,PIVX-Project/PIVX,MazaCoin/mazacoin-new,GroestlCoin/bitcoin,ElementsProject/elements,puticcoin/putic,NicolasDorier/bitcoin,HashUnlimited/Einsteinium-Unlimited,bitgoldcoin-project/bitgoldcoin,brishtiteveja/sherlockholmescoin,digibyte/digibyte,ftrader-bitcoinabc/bitcoin-abc,maraoz/proofcoin,stevemyers/bitcoinxt,masterbraz/dg,ptschip/bitcoinxt,dmrtsvetkov/flowercoin,keesdewit82/LasVegasCoin,SoreGums/bitcoinxt,gjhiggins/vcoin0.8zeta-dev,zottejos/merelcoin,sbellem/bitcoin,tropa/axecoin,coinkeeper/2015-06-22_18-41_ixcoin,czr5014iph/bitcoin4e,collapsedev/cashwatt,Flurbos/Flurbo,likecoin-dev/bitcoin,atgreen/bitcoin,taenaive/zetacoin,credits-currency/credits,tuaris/bitcoin,bitcoinxt/bitcoinxt,Tetcoin/tetcoin,MitchellMintCoins/AutoCoin,imharrywu/fastcoin,faircoin/faircoin2,ediston/energi,genavarov/lamacoin,ahmedbodi/temp_vert,tuaris/bitcoin,RazorLove/cloaked-octo-spice,wangliu/bitcoin,schildbach/bitcoin,Anfauglith/iop-hd,coinkeeper/2015-06-22_18-37_dogecoin,ericshawlinux/bitcoin,midnight-miner/LasVegasCoin,TrainMAnB/vcoincore,lateminer/bitcoin,borgcoin/Borgcoin.rar,Christewart/bitcoin,Bloom-Project/Bloom,ardsu/bitcoin,puticcoin/putic,amaivsimau/bitcoin,pinkevich/dash,Bitcoin-ABC/bitcoin-abc,themusicgod1/bitcoin,zemrys/vertcoin,BitcoinUnlimited/BitcoinUnlimited,RazorLove/cloaked-octo-spice,mincoin-project/mincoin,franko-org/franko,viacoin/viacoin,coinkeeper/2015-06-22_18-30_anoncoin,coinkeeper/anoncoin_20150330_fixes,degenorate/Deftcoin,torresalyssa/bitcoin,jonasnick/bitcoin,tensaix2j/bananacoin,omefire/bitcoin,markf78/dollarcoin,error10/bitcoin,borgcoin/Borgcoin1,axelxod/braincoin,sugruedes/bitcoin,CTRoundTable/Encrypted.Cash,bitcoinclassic/bitcoinclassic,NunoEdgarGub1/elements,tjth/lotterycoin,leofidus/glowing-octo-ironman,Kixunil/keynescoin,ediston/energi,borgcoin/Borgcoin.rar,ryanxcharles/bitcoin,111t8e/bitcoin,Darknet-Crypto/Darknet,Chancoin-core/CHANCOIN,scmorse/bitcoin,coinkeeper/2015-04-19_21-20_litecoindark,earthcoinproject/earthcoin,coinkeeper/2015-06-22_18-52_viacoin,scippio/bitcoin,jimblasko/UnbreakableCoin-master,hsavit1/bitcoin,brettwittam/geocoin,ivansib/sib16,Litecoindark/LTCD,qreatora/worldcoin-v0.8,pdrobek/Polcoin-1-3,roques/bitcoin,deuscoin/deuscoin,zotherstupidguy/bitcoin,dmrtsvetkov/flowercoin,cinnamoncoin/Feathercoin,zebrains/Blotter,bitpay/bitcoin,TrainMAnB/vcoincore,rnicoll/dogecoin,globaltoken/globaltoken,jlopp/statoshi,vertcoin/eyeglass,collapsedev/cashwatt,kazcw/bitcoin,ronpaulcoin/ronpaulcoin,stamhe/bitcoin,GroestlCoin/GroestlCoin,PRabahy/bitcoin,coinkeeper/2015-06-22_19-07_digitalcoin,Vector2000/bitcoin,sugruedes/bitcoin,funbucks/notbitcoinxt,shea256/bitcoin,cannabiscoindev/cannabiscoin420,truthcoin/blocksize-market,bitbrazilcoin-project/bitbrazilcoin,KillerByte/memorypool,48thct2jtnf/P,sarielsaz/sarielsaz,MeshCollider/bitcoin,argentumproject/argentum,bankonmecoin/bitcoin,jimmysong/bitcoin,habibmasuro/bitcoin,jtimon/bitcoin,petertodd/bitcoin,sbellem/bitcoin,viacoin/viacoin,donaloconnor/bitcoin,syscoin/syscoin2,gwangjin2/gwangcoin-core,joroob/reddcoin,BitcoinUnlimited/BitcoinUnlimited,mastercoin-MSC/mastercore,shurcoin/shurcoin,bickojima/bitzeny,collapsedev/circlecash,SartoNess/BitcoinUnlimited,myriadteam/myriadcoin,osuyuushi/laughingmancoin,bitshares/bitshares-pts,ionomy/ion,apoelstra/elements,Bloom-Project/Bloom,tripmode/pxlcoin,simonmulser/bitcoin,DGCDev/digitalcoin,pinkevich/dash,scamcoinz/scamcoin,koharjidan/bitcoin,MasterX1582/bitcoin-becoin,dexX7/bitcoin,coinkeeper/2015-06-22_19-13_florincoin,gzuser01/zetacoin-bitcoin,jnewbery/bitcoin,zcoinofficial/zcoin,deeponion/deeponion,safecoin/safecoin,kryptokredyt/ProjektZespolowyCoin,coinkeeper/2015-06-22_18-39_feathercoin,emc2foundation/einsteinium,destenson/bitcoin--bitcoin,earthcoinproject/earthcoin,blood2/bloodcoin-0.9,MazaCoin/mazacoin-new,gameunits/gameunits,phelix/bitcoin,namecoin/namecoin-core,vcoin-project/vcoin0.8zeta-dev,cmgustavo/bitcoin,rustyrussell/bitcoin,funbucks/notbitcoinxt,Cloudsy/bitcoin,vtafaucet/virtacoin,cculianu/bitcoin-abc,jambolo/bitcoin,qubitcoin-project/QubitCoinQ2C,HashUnlimited/Einsteinium-Unlimited,Mirobit/bitcoin,jiangyonghang/bitcoin,zottejos/merelcoin,florincoin/florincoin,theuni/bitcoin,gameunits/gameunits,Bushstar/UFO-Project,GIJensen/bitcoin,jtimon/elements,dgarage/bc2,GlobalBoost/GlobalBoost,masterbraz/dg,gandrewstone/bitcoinxt,multicoins/marycoin,segsignal/bitcoin,bickojima/bitzeny,Kixunil/keynescoin,xuyangcn/opalcoin,memorycoin/memorycoin,1185/starwels,zcoinofficial/zcoin,CTRoundTable/Encrypted.Cash,Vsync-project/Vsync,zcoinofficial/zcoin,Ziftr/litecoin,martindale/elements,theuni/bitcoin,Diapolo/bitcoin,DynamicCoinOrg/DMC,pelorusjack/BlockDX,likecoin-dev/bitcoin,dev1972/Satellitecoin,cmgustavo/bitcoin,morcos/bitcoin,romanornr/viacoin,jamesob/bitcoin,apoelstra/bitcoin,okinc/bitcoin,shelvenzhou/BTCGPU,schinzelh/dash,reddcoin-project/reddcoin,themusicgod1/bitcoin,superjudge/bitcoin,fsb4000/bitcoin,marscoin/marscoin,oklink-dev/litecoin_block,adpg211/bitcoin-master,sickpig/BitcoinUnlimited,uphold/bitcoin,rebroad/bitcoin,majestrate/twister-core,Flowdalic/bitcoin,benma/bitcoin,nlgcoin/guldencoin-official,mycointest/owncoin,bitcoinec/bitcoinec,ShwoognationHQ/bitcoin,shea256/bitcoin,dcousens/bitcoin,denverl/bitcoin,coinkeeper/2015-06-22_18-37_dogecoin,dperel/bitcoin,anditto/bitcoin,bitpay/bitcoin,OfficialTitcoin/titcoin-wallet,instagibbs/bitcoin,nmarley/dash,tmagik/catcoin,FinalHashLLC/namecore,gravio-net/graviocoin,laudaa/bitcoin,NateBrune/bitcoin-fio,MitchellMintCoins/AutoCoin,genavarov/ladacoin,aspanta/bitcoin,PandaPayProject/PandaPay,joshrabinowitz/bitcoin,mockcoin/mockcoin,loxal/zcash,btcdrak/bitcoin,ionux/freicoin,111t8e/bitcoin,keesdewit82/LasVegasCoin,willwray/dash,millennial83/bitcoin,habibmasuro/bitcoinxt,ionomy/ion,Sjors/bitcoin,grumpydevelop/singularity,rnicoll/dogecoin,sipa/elements,dashpay/dash,marklai9999/Taiwancoin,basicincome/unpcoin-core,PIVX-Project/PIVX,zemrys/vertcoin,wtogami/bitcoin,ahmedbodi/terracoin,rawodb/bitcoin,GroundRod/anoncoin,xuyangcn/opalcoin,jtimon/elements,practicalswift/bitcoin,domob1812/namecore,instagibbs/bitcoin,TGDiamond/Diamond,gjhiggins/fuguecoin,tedlz123/Bitcoin,denverl/bitcoin,dexX7/mastercore,florincoin/florincoin,m0gliE/fastcoin-cli,NunoEdgarGub1/elements,netswift/vertcoin,nbenoit/bitcoin,brightcoin/brightcoin,funkshelper/woodcoin-b,joulecoin/joulecoin,basicincome/unpcoin-core,domob1812/huntercore,reddcoin-project/reddcoin,Dinarcoin/dinarcoin,bitpagar/bitpagar,bitreserve/bitcoin,wederw/bitcoin,coinkeeper/2015-06-22_18-41_ixcoin,mb300sd/bitcoin,jlopp/statoshi,dscotese/bitcoin,laudaa/bitcoin,Bitcoin-ABC/bitcoin-abc,saydulk/Feathercoin,se3000/bitcoin,robvanbentem/bitcoin,keo/bitcoin,Kogser/bitcoin,markf78/dollarcoin,jonasschnelli/bitcoin,ludbb/bitcoin,andres-root/bitcoinxt,jimblasko/2015_UNB_Wallets,tropa/axecoin,mooncoin-project/mooncoin-landann,kleetus/bitcoinxt,xieta/mincoin,pinkevich/dash,Kenwhite23/litecoin,xuyangcn/opalcoin,Justaphf/BitcoinUnlimited,brishtiteveja/sherlockholmescoin,nathan-at-least/zcash,ravenbyron/phtevencoin,cerebrus29301/crowncoin,Krellan/bitcoin,litecoin-project/bitcoinomg,litecoin-project/litecore-litecoin,JeremyRand/namecore,destenson/bitcoin--bitcoin,KaSt/equikoin,brightcoin/brightcoin,DrCrypto/darkcoin,segwit/atbcoin-insight,kevin-cantwell/crunchcoin,mincoin-project/mincoin,andreaskern/bitcoin,coinkeeper/2015-06-22_18-31_bitcoin,jn2840/bitcoin,kirkalx/bitcoin,aspanta/bitcoin,worldcoinproject/worldcoin-v0.8,dperel/bitcoin,argentumproject/argentum,rjshaver/bitcoin,ahmedbodi/terracoin,JeremyRand/bitcoin,DogTagRecon/Still-Leraning,Kore-Core/kore,cyrixhero/bitcoin,riecoin/riecoin,coinkeeper/2015-06-22_18-46_razor,Rav3nPL/PLNcoin,JeremyRand/namecore,hophacker/bitcoin_malleability,zotherstupidguy/bitcoin,anditto/bitcoin,jakeva/bitcoin-pwcheck,ccoin-project/ccoin,rromanchuk/bitcoinxt,thormuller/yescoin2,ajtowns/bitcoin,JeremyRubin/bitcoin,jrmithdobbs/bitcoin,collapsedev/circlecash,Justaphf/BitcoinUnlimited,TheBlueMatt/bitcoin,neutrinofoundation/neutrino-digital-currency,butterflypay/bitcoin,5mil/Tradecoin,JeremyRand/bitcoin,ColossusCoinXT/ColossusCoinXT,Checkcoin/checkcoin,RyanLucchese/energi,CarpeDiemCoin/CarpeDiemLaunch,scamcoinz/scamcoin,Bloom-Project/Bloom,Kenwhite23/litecoin,micryon/GPUcoin,HeliumGas/helium,XX-net/twister-core,cdecker/bitcoin,xeddmc/twister-core,pinheadmz/bitcoin,JeremyRubin/bitcoin,dexX7/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,dgarage/bc2,IlfirinCano/shavercoin,zebrains/Blotter,OfficialTitcoin/titcoin-wallet,starwels/starwels,pinheadmz/bitcoin,practicalswift/bitcoin,phelixbtc/bitcoin,habibmasuro/bitcoinxt,PIVX-Project/PIVX,PRabahy/bitcoin,ArgonToken/ArgonToken,martindale/elements,5mil/Tradecoin,denverl/bitcoin,nightlydash/darkcoin,MeshCollider/bitcoin,tuaris/bitcoin,ppcoin/ppcoin,GroestlCoin/GroestlCoin,leofidus/glowing-octo-ironman,joshrabinowitz/bitcoin,wellenreiter01/Feathercoin,hophacker/bitcoin_malleability,Exceltior/dogecoin,habibmasuro/bitcoin,janko33bd/bitcoin,keisercoin-official/keisercoin,cmgustavo/bitcoin,midnightmagic/bitcoin,Kogser/bitcoin,patricklodder/dogecoin,Rav3nPL/doubloons-0.10,slingcoin/sling-market,syscoin/syscoin2,bitcoinsSG/zcash,myriadcoin/myriadcoin,ShadowMyst/creativechain-core,jambolo/bitcoin,elliotolds/bitcoin,WorldcoinGlobal/WorldcoinLegacy,jeromewu/bitcoin-opennet,scmorse/bitcoin,accraze/bitcoin,capitalDIGI/DIGI-v-0-10-4,nightlydash/darkcoin,coinkeeper/anoncoin_20150330_fixes,Checkcoin/checkcoin,goldcoin/Goldcoin-GLD,qreatora/worldcoin-v0.8,bdelzell/creditcoin-org-creditcoin,peercoin/peercoin,senadmd/coinmarketwatch,dperel/bitcoin,laudaa/bitcoin,bitcoinplusorg/xbcwalletsource,vlajos/bitcoin,peerdb/cors,fujicoin/fujicoin,oklink-dev/litecoin_block,kirkalx/bitcoin,goldcoin/Goldcoin-GLD,raasakh/bardcoin,imton/bitcoin,pelorusjack/BlockDX,iQcoin/iQcoin,shomeser/bitcoin,jaromil/faircoin2,gapcoin/gapcoin,anditto/bitcoin,RibbitFROG/ribbitcoin,kevin-cantwell/crunchcoin,phplaboratory/psiacoin,Gazer022/bitcoin,AdrianaDinca/bitcoin,XertroV/bitcoin-nulldata,jaromil/faircoin2,shouhuas/bitcoin,prusnak/bitcoin,phelixbtc/bitcoin,BitcoinUnlimited/BitcoinUnlimited,manuel-zulian/CoMoNet,bootycoin-project/bootycoin,skaht/bitcoin,oleganza/bitcoin-duo,okinc/litecoin,sifcoin/sifcoin,maaku/bitcoin,wekuiz/wekoin,greencoin-dev/digitalcoin,DrCrypto/darkcoin,wtogami/bitcoin,mrtexaznl/mediterraneancoin,ingresscoin/ingresscoin,wangliu/bitcoin,sifcoin/sifcoin,fullcoins/fullcoin,vmp32k/litecoin,manuel-zulian/CoMoNet,ajtowns/bitcoin,applecoin-official/fellatio,thormuller/yescoin2,ahmedbodi/temp_vert,bcpki/nonce2,m0gliE/fastcoin-cli,mikehearn/bitcoinxt,united-scrypt-coin-project/unitedscryptcoin,ticclassic/ic,bitbrazilcoin-project/bitbrazilcoin,m0gliE/fastcoin-cli,isghe/bitcoinxt,likecoin-dev/bitcoin,fujicoin/fujicoin,apoelstra/elements,WorldcoinGlobal/WorldcoinLegacy,deeponion/deeponion,daliwangi/bitcoin,wellenreiter01/Feathercoin,marcusdiaz/BitcoinUnlimited,ahmedbodi/temp_vert,plncoin/PLNcoin_Core,ixcoinofficialpage/master,zotherstupidguy/bitcoin,deuscoin/deuscoin,Exceltior/dogecoin,Alex-van-der-Peet/bitcoin,EthanHeilman/bitcoin,llluiop/bitcoin,digideskio/namecoin,marlengit/hardfork_prototype_1_mvf-bu,raasakh/bardcoin,mikehearn/bitcoinxt,steakknife/bitcoin-qt,pascalguru/florincoin,DMDcoin/Diamond,memorycoin/memorycoin,cryptocoins4all/zcoin,ahmedbodi/terracoin,spiritlinxl/BTCGPU,CryptArc/bitcoin,dagurval/bitcoinxt,KillerByte/memorypool,koharjidan/litecoin,OstlerDev/florincoin,acid1789/bitcoin,bitcoinplusorg/xbcwalletsource,ludbb/bitcoin,keo/bitcoin,thesoftwarejedi/bitcoin,AllanDoensen/BitcoinUnlimited,gwillen/elements,applecoin-official/applecoin,NunoEdgarGub1/elements,rromanchuk/bitcoinxt,gcc64/bitcoin,rawodb/bitcoin,alejandromgk/Lunar,JeremyRand/bitcoin,CarpeDiemCoin/CarpeDiemLaunch,bitpay/bitcoin,CrimeaCoin/crimeacoin,BTCGPU/BTCGPU,mammix2/ccoin-dev,kaostao/bitcoin,coinkeeper/2015-06-22_18-52_viacoin,EthanHeilman/bitcoin,acid1789/bitcoin,Christewart/bitcoin,peerdb/cors,ahmedbodi/test2,XertroV/bitcoin-nulldata,mapineda/litecoin,marlengit/BitcoinUnlimited,marscoin/marscoin,haraldh/bitcoin,madman5844/poundkoin,bespike/litecoin,wcwu/bitcoin,KaSt/ekwicoin,czr5014iph/bitcoin4e,maraoz/proofcoin,elliotolds/bitcoin,bitcoinknots/bitcoin,benma/bitcoin,EntropyFactory/creativechain-core,cculianu/bitcoin-abc,ajweiss/bitcoin,Anfauglith/iop-hd,novaexchange/EAC,achow101/bitcoin,tecnovert/particl-core,sipa/bitcoin,therealaltcoin/altcoin,coinkeeper/2015-06-22_18-36_darkcoin,xurantju/bitcoin,schinzelh/dash,magacoin/magacoin,antonio-fr/bitcoin,lbrtcoin/albertcoin,worldbit/worldbit,phplaboratory/psiacoin,ludbb/bitcoin,koharjidan/dogecoin,guncoin/guncoin,dcousens/bitcoin,kallewoof/elements,vcoin-project/vcoin0.8zeta-dev,pataquets/namecoin-core,wangliu/bitcoin,greencoin-dev/greencoin-dev,bitreserve/bitcoin,marlengit/hardfork_prototype_1_mvf-bu,mammix2/ccoin-dev,ashleyholman/bitcoin,pelorusjack/BlockDX,FeatherCoin/Feathercoin,lclc/bitcoin,REAP720801/bitcoin,lbrtcoin/albertcoin,crowning-/dash,presstab/PIVX,sickpig/BitcoinUnlimited,cddjr/BitcoinUnlimited,irvingruan/bitcoin,mikehearn/bitcoin,syscoin/syscoin,Carrsy/PoundCoin,argentumproject/argentum,gjhiggins/vcoincore,reorder/viacoin,Christewart/bitcoin,capitalDIGI/litecoin,tdudz/elements,MikeAmy/bitcoin,gmaxwell/bitcoin,domob1812/huntercore,ingresscoin/ingresscoin,rsdevgun16e/energi,manuel-zulian/CoMoNet,morcos/bitcoin,masterbraz/dg,madman5844/poundkoin,thesoftwarejedi/bitcoin,cryptoprojects/ultimateonlinecash,Kogser/bitcoin,coinkeeper/2015-06-22_18-37_dogecoin,funbucks/notbitcoinxt,roques/bitcoin,BitcoinHardfork/bitcoin,aniemerg/zcash,jarymoth/dogecoin,antonio-fr/bitcoin,romanornr/viacoin,cmgustavo/bitcoin,howardrya/AcademicCoin,oklink-dev/bitcoin_block,safecoin/safecoin,BitzenyCoreDevelopers/bitzeny,Tetpay/bitcoin,vertcoin/eyeglass,sarielsaz/sarielsaz,cainca/liliucoin,Cloudsy/bitcoin,compasscoin/compasscoin,Ziftr/litecoin,fujicoin/fujicoin,shaulkf/bitcoin,hophacker/bitcoin_malleability,Climbee/artcoin,chrisfranko/aiden,nathaniel-mahieu/bitcoin,josephbisch/namecoin-core,renatolage/wallets-BRCoin,cerebrus29301/crowncoin,kfitzgerald/titcoin,putinclassic/putic,se3000/bitcoin,langerhans/dogecoin,gcc64/bitcoin,ftrader-bitcoinabc/bitcoin-abc,Litecoindark/LTCD,AllanDoensen/BitcoinUnlimited,monacoinproject/monacoin,superjudge/bitcoin,shelvenzhou/BTCGPU,dcousens/bitcoin,multicoins/marycoin,sbellem/bitcoin,rnicoll/bitcoin,ivansib/sibcoin,namecoin/namecore,Carrsy/PoundCoin,IlfirinIlfirin/shavercoin,zotherstupidguy/bitcoin,KaSt/equikoin,phplaboratory/psiacoin,gazbert/bitcoin,kallewoof/bitcoin,scippio/bitcoin,parvez3019/bitcoin,genavarov/lamacoin,Kcoin-project/kcoin,applecoin-official/fellatio,nlgcoin/guldencoin-official,cmgustavo/bitcoin,metrocoins/metrocoin,jgarzik/bitcoin,shomeser/bitcoin,shaolinfry/litecoin,Tetpay/bitcoin,cryptodev35/icash,bitcoinplusorg/xbcwalletsource,bitjson/hivemind,jmgilbert2/energi,kevcooper/bitcoin,Ziftr/bitcoin,donaloconnor/bitcoin,coinkeeper/2015-06-22_19-19_worldcoin,gandrewstone/BitcoinUnlimited,dogecoin/dogecoin,syscoin/syscoin,DrCrypto/darkcoin,blocktrail/bitcoin,NunoEdgarGub1/elements,LIMXTEC/DMDv3,jrmithdobbs/bitcoin,gjhiggins/vcoin0.8zeta-dev,jamesob/bitcoin,magacoin/magacoin,nvmd/bitcoin,Thracky/monkeycoin,Ziftr/litecoin,coinkeeper/megacoin_20150410_fixes,Czarcoin/czarcoin,gmaxwell/bitcoin,brettwittam/geocoin,gameunits/gameunits,totallylegitbiz/totallylegitcoin,czr5014iph/bitcoin4e,phelix/namecore,stamhe/bitcoin,MitchellMintCoins/MortgageCoin,deuscoin/deuscoin,terracoin/terracoin,diggcoin/diggcoin,taenaive/zetacoin,raasakh/bardcoin,GreenParhelia/bitcoin,therealaltcoin/altcoin,robvanbentem/bitcoin,megacoin/megacoin,vertcoin/vertcoin,TheBlueMatt/bitcoin,nanocoins/mycoin,apoelstra/bitcoin,StarbuckBG/BTCGPU,dan-mi-sun/bitcoin,mikehearn/bitcoin,WorldcoinGlobal/WorldcoinLegacy,sipsorcery/bitcoin,nvmd/bitcoin,BenjaminsCrypto/Benjamins-1,Jcing95/iop-hd,isle2983/bitcoin,gjhiggins/fuguecoin,EntropyFactory/creativechain-core,instagibbs/bitcoin,ludbb/bitcoin,Flurbos/Flurbo,jarymoth/dogecoin,isghe/bitcoinxt,zenywallet/bitzeny,CarpeDiemCoin/CarpeDiemLaunch,cannabiscoindev/cannabiscoin420,kazcw/bitcoin,balajinandhu/bitcoin,bootycoin-project/bootycoin,gmaxwell/bitcoin,vericoin/vericoin-core,patricklodder/dogecoin,KnCMiner/bitcoin,dexX7/bitcoin,dgenr8/bitcoinxt,Mrs-X/PIVX,kirkalx/bitcoin,earthcoinproject/earthcoin,Xekyo/bitcoin,llamasoft/ProtoShares_Cycle,qubitcoin-project/QubitCoinQ2C,ericshawlinux/bitcoin,GwangJin/gwangmoney-core,jonghyeopkim/bitcoinxt,franko-org/franko,nailtaras/nailcoin,rustyrussell/bitcoin,Dajackal/Ronpaulcoin,droark/bitcoin,putinclassic/putic,mitchellcash/bitcoin,Megacoin2/Megacoin,schildbach/bitcoin,tuaris/bitcoin,chaincoin/chaincoin,TBoehm/greedynode,rnicoll/bitcoin,puticcoin/putic,miguelfreitas/twister-core,Petr-Economissa/gvidon,zixan/bitcoin,peercoin/peercoin,Tetcoin/tetcoin,brishtiteveja/sherlockholmescoin,ashleyholman/bitcoin,mastercoin-MSC/mastercore,BitzenyCoreDevelopers/bitzeny,franko-org/franko,cryptodev35/icash,kevcooper/bitcoin,joroob/reddcoin,fanquake/bitcoin,shaolinfry/litecoin,Theshadow4all/ShadowCoin,cinnamoncoin/Feathercoin,ravenbyron/phtevencoin,schinzelh/dash,chrisfranko/aiden,Kogser/bitcoin,Bitcoinsulting/bitcoinxt,shadowoneau/ozcoin,wederw/bitcoin,misdess/bitcoin,erqan/twister-core,KibiCoin/kibicoin,coinkeeper/2015-06-22_19-13_florincoin,cqtenq/Feathercoin,starwalkerz/fincoin-fork,BitzenyCoreDevelopers/bitzeny,phelix/bitcoin,knolza/gamblr,Vsync-project/Vsync,RHavar/bitcoin,and2099/twister-core,viacoin/viacoin,ticclassic/ic,haobtc/bitcoin,jgarzik/bitcoin,jtimon/bitcoin,CoinProjects/AmsterdamCoin-v4,zcoinofficial/zcoin,fussl/elements,imton/bitcoin,cryptodev35/icash,llluiop/bitcoin,jambolo/bitcoin,shapiroisme/datadollar,jaromil/faircoin2,BigBlueCeiling/augmentacoin,dexX7/mastercore,safecoin/safecoin,cinnamoncoin/groupcoin-1,aciddude/Feathercoin,xawksow/GroestlCoin,experiencecoin/experiencecoin,rnicoll/bitcoin,superjudge/bitcoin,CodeShark/bitcoin,JeremyRand/bitcoin,peacedevelop/peacecoin,domob1812/bitcoin,langerhans/dogecoin,cybermatatu/bitcoin,DogTagRecon/Still-Leraning,droark/elements,phelix/namecore,11755033isaprimenumber/Feathercoin,ANCompany/birdcoin-dev,bcpki/nonce2,jnewbery/bitcoin,DMDcoin/Diamond,adpg211/bitcoin-master,Gazer022/bitcoin,MeshCollider/bitcoin,faircoin/faircoin2,GlobalBoost/GlobalBoost,taenaive/zetacoin,sugruedes/bitcoin,jakeva/bitcoin-pwcheck,DGCDev/digitalcoin,Domer85/dogecoin,sipa/elements,AkioNak/bitcoin,sbellem/bitcoin,scmorse/bitcoin,vericoin/vericoin-core,NateBrune/bitcoin-nate,shea256/bitcoin,cinnamoncoin/Feathercoin,alejandromgk/Lunar,odemolliens/bitcoinxt,simdeveloper/bitcoin,madman5844/poundkoin,vericoin/vericoin-core,raasakh/bardcoin.exe,namecoin/namecore,111t8e/bitcoin,saydulk/Feathercoin,vcoin-project/vcoincore,lakepay/lake,putinclassic/putic,JeremyRand/namecoin-core,nailtaras/nailcoin,nlgcoin/guldencoin-official,goku1997/bitcoin,BTCDDev/bitcoin,ronpaulcoin/ronpaulcoin,Friedbaumer/litecoin,szlaozhu/twister-core,gjhiggins/vcoincore,kaostao/bitcoin,ericshawlinux/bitcoin,mrtexaznl/mediterraneancoin,Coinfigli/coinfigli,aspirecoin/aspire,projectinterzone/ITZ,ahmedbodi/vertcoin,qtumproject/qtum,gmaxwell/bitcoin,phelixbtc/bitcoin,jarymoth/dogecoin,qreatora/worldcoin-v0.8,BTCDDev/bitcoin,wcwu/bitcoin,btc1/bitcoin,masterbraz/dg,welshjf/bitcoin,cerebrus29301/crowncoin,Coinfigli/coinfigli,StarbuckBG/BTCGPU,faircoin/faircoin,goldmidas/goldmidas,nomnombtc/bitcoin,maraoz/proofcoin,imharrywu/fastcoin,bdelzell/creditcoin-org-creditcoin,deeponion/deeponion,bitcoinsSG/bitcoin,namecoin/namecore,Bitcoin-ABC/bitcoin-abc,bitreserve/bitcoin,Cancercoin/Cancercoin,Dajackal/Ronpaulcoin,sipsorcery/bitcoin,stamhe/bitcoin,MarcoFalke/bitcoin,aburan28/elements,loxal/zcash,koharjidan/dogecoin,supcoin/supcoin,TrainMAnB/vcoincore,romanornr/viacoin,dagurval/bitcoinxt,neuroidss/bitcoin,PandaPayProject/PandaPay,jonghyeopkim/bitcoinxt,psionin/smartcoin,TierNolan/bitcoin,MasterX1582/bitcoin-becoin,petertodd/bitcoin,braydonf/bitcoin,theuni/bitcoin,collapsedev/cashwatt,svost/bitcoin,ajweiss/bitcoin,kryptokredyt/ProjektZespolowyCoin,sdaftuar/bitcoin,Cloudsy/bitcoin,litecoin-project/bitcoinomg,Enticed87/Decipher,themusicgod1/bitcoin,jaromil/faircoin2,Bitcoin-com/BUcash,Cloudsy/bitcoin,DigitalPandacoin/pandacoin,wangxinxi/litecoin,worldbit/worldbit,goku1997/bitcoin,keo/bitcoin,sarielsaz/sarielsaz,gwillen/elements,MonetaryUnit/MUE-Src,svost/bitcoin,Erkan-Yilmaz/twister-core,alexandrcoin/vertcoin,dev1972/Satellitecoin,borgcoin/Borgcoin1,TeamBitBean/bitcoin-core,earthcoinproject/earthcoin,MonetaryUnit/MUE-Src,Anoncoin/anoncoin,achow101/bitcoin,neuroidss/bitcoin,Earlz/dobbscoin-source,TGDiamond/Diamond,benosa/bitcoin,privatecoin/privatecoin,jtimon/bitcoin,wiggi/huntercore,blocktrail/bitcoin,lbryio/lbrycrd,kazcw/bitcoin,iosdevzone/bitcoin,pstratem/elements,wtogami/bitcoin,n1bor/bitcoin,xieta/mincoin,richo/dongcoin,united-scrypt-coin-project/unitedscryptcoin,bittylicious/bitcoin,Kogser/bitcoin,MikeAmy/bitcoin,segwit/atbcoin-insight,starwels/starwels,jrick/bitcoin,wekuiz/wekoin,FinalHashLLC/namecore,mockcoin/mockcoin,phelix/namecore,bankonmecoin/bitcoin,m0gliE/fastcoin-cli,SartoNess/BitcoinUnlimited,benzmuircroft/REWIRE.io,jamesob/bitcoin,enlighter/Feathercoin,wbchen99/bitcoin-hnote0,okinc/litecoin,litecoin-project/litecoin,zsulocal/bitcoin,yenliangl/bitcoin,Cocosoft/bitcoin,genavarov/ladacoin,Mrs-X/PIVX,inkvisit/sarmacoins,jlopp/statoshi,knolza/gamblr,ajweiss/bitcoin,Har01d/bitcoin,marscoin/marscoin,cinnamoncoin/groupcoin-1,RibbitFROG/ribbitcoin,ivansib/sib16,ionux/freicoin,gwangjin2/gwangcoin-core,coinkeeper/2015-06-22_19-13_florincoin,gandrewstone/bitcoinxt,crowning-/dash,Bitcoin-com/BUcash,174high/bitcoin,butterflypay/bitcoin,sipa/elements,rebroad/bitcoin,zzkt/solarcoin,kallewoof/elements,Climbee/artcoin,cainca/liliucoin,balajinandhu/bitcoin,haobtc/bitcoin,wellenreiter01/Feathercoin,isle2983/bitcoin,cqtenq/feathercoin_core,pelorusjack/BlockDX,RHavar/bitcoin,syscoin/syscoin,meighti/bitcoin,bitcoin-hivemind/hivemind,21E14/bitcoin,Darknet-Crypto/Darknet,Kcoin-project/kcoin,Anoncoin/anoncoin,hsavit1/bitcoin,tjth/lotterycoin,21E14/bitcoin,upgradeadvice/MUE-Src,aniemerg/zcash,haraldh/bitcoin,dgarage/bc3,daliwangi/bitcoin,droark/elements,manuel-zulian/accumunet,HashUnlimited/Einsteinium-Unlimited,bittylicious/bitcoin,reorder/viacoin,bitreserve/bitcoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,pdrobek/Polcoin-1-3,lbryio/lbrycrd,StarbuckBG/BTCGPU,ShwoognationHQ/bitcoin,CryptArc/bitcoin,Vector2000/bitcoin,KnCMiner/bitcoin,steakknife/bitcoin-qt,alecalve/bitcoin,megacoin/megacoin,Flowdalic/bitcoin,IlfirinIlfirin/shavercoin,matlongsi/micropay,barcoin-project/nothingcoin,ajweiss/bitcoin,thelazier/dash,bittylicious/bitcoin,antcheck/antcoin,grumpydevelop/singularity,kevcooper/bitcoin,prark/bitcoinxt,habibmasuro/bitcoin,Richcoin-Project/RichCoin,kleetus/bitcoinxt,qubitcoin-project/QubitCoinQ2C,jn2840/bitcoin,Bitcoin-ABC/bitcoin-abc,BTCTaras/bitcoin,domob1812/bitcoin,bitbrazilcoin-project/bitbrazilcoin,deadalnix/bitcoin,afk11/bitcoin,GroestlCoin/GroestlCoin,webdesignll/coin,coinkeeper/2015-06-22_18-56_megacoin,vtafaucet/virtacoin,schildbach/bitcoin,PandaPayProject/PandaPay,mrbandrews/bitcoin,GIJensen/bitcoin,cannabiscoindev/cannabiscoin420,litecoin-project/litecore-litecoin,TrainMAnB/vcoincore,PIVX-Project/PIVX,rat4/bitcoin,Flurbos/Flurbo,11755033isaprimenumber/Feathercoin,ionomy/ion,DMDcoin/Diamond,octocoin-project/octocoin,jmgilbert2/energi,CryptArc/bitcoinxt,vertcoin/vertcoin,keisercoin-official/keisercoin,janko33bd/bitcoin,droark/elements,rdqw/sscoin,cddjr/BitcoinUnlimited,48thct2jtnf/P,phelix/bitcoin,odemolliens/bitcoinxt,chrisfranko/aiden,FeatherCoin/Feathercoin,peacedevelop/peacecoin,vcoin-project/vcoin0.8zeta-dev,coinkeeper/2015-06-22_19-00_ziftrcoin,kbccoin/kbc,mrbandrews/bitcoin,ftrader-bitcoinabc/bitcoin-abc,RongxinZhang/bitcoinxt,cerebrus29301/crowncoin,enlighter/Feathercoin,coinkeeper/2015-06-22_19-07_digitalcoin,tedlz123/Bitcoin,nikkitan/bitcoin,fedoracoin-dev/fedoracoin,coinkeeper/2015-06-22_18-56_megacoin,royosherove/bitcoinxt,renatolage/wallets-BRCoin,bitcoin/bitcoin,psionin/smartcoin,coinkeeper/2015-06-22_18-41_ixcoin,SocialCryptoCoin/SocialCoin,okinc/litecoin,rawodb/bitcoin,sugruedes/bitcoin,supcoin/supcoin,Har01d/bitcoin,thormuller/yescoin2,bitbrazilcoin-project/bitbrazilcoin,ticclassic/ic,zander/bitcoinclassic,patricklodder/dogecoin,slingcoin/sling-market,simdeveloper/bitcoin,alecalve/bitcoin,joulecoin/joulecoin,fullcoins/fullcoin,dogecoin/dogecoin,cyrixhero/bitcoin,OstlerDev/florincoin,globaltoken/globaltoken,btc1/bitcoin,domob1812/namecore,memorycoin/memorycoin,ShwoognationHQ/bitcoin,ionux/freicoin,ravenbyron/phtevencoin,hasanatkazmi/bitcoin,BTCfork/hardfork_prototype_1_mvf-bu,kazcw/bitcoin,afk11/bitcoin,inkvisit/sarmacoins,initaldk/bitcoin,mikehearn/bitcoinxt,jgarzik/bitcoin,ColossusCoinXT/ColossusCoinXT,PandaPayProject/PandaPay,koharjidan/dogecoin,ftrader-bitcoinabc/bitcoin-abc,projectinterzone/ITZ,nathan-at-least/zcash,hsavit1/bitcoin,NateBrune/bitcoin-nate,faircoin/faircoin2,braydonf/bitcoin,novaexchange/EAC,my-first/octocoin,rebroad/bitcoin,coinerd/krugercoin,BenjaminsCrypto/Benjamins-1,sebrandon1/bitcoin,hg5fm/nexuscoin,ohac/sha1coin,ahmedbodi/test2,apoelstra/elements,uphold/bitcoin,amaivsimau/bitcoin,koharjidan/bitcoin,marscoin/marscoin,Electronic-Gulden-Foundation/egulden,21E14/bitcoin,yenliangl/bitcoin,reddcoin-project/reddcoin,deuscoin/deuscoin,MasterX1582/bitcoin-becoin,Ziftr/bitcoin,initaldk/bitcoin,rjshaver/bitcoin,WorldLeadCurrency/WLC,IlfirinIlfirin/shavercoin,IlfirinIlfirin/shavercoin,Bitcoin-com/BUcash,KaSt/ekwicoin,zebrains/Blotter,Cloudsy/bitcoin,appop/bitcoin,GroundRod/anoncoin,florincoin/florincoin,manuel-zulian/CoMoNet,karek314/bitcoin,kseistrup/twister-core,Bloom-Project/Bloom,coinkeeper/2015-06-22_18-36_darkcoin,Horrorcoin/horrorcoin,gjhiggins/vcoincore,MeshCollider/bitcoin,Xekyo/bitcoin,aciddude/Feathercoin,romanornr/viacoin,icook/vertcoin,nsacoin/nsacoin,jlopp/statoshi,ohac/sakuracoin,nikkitan/bitcoin,gwangjin2/gwangcoin-core,jiangyonghang/bitcoin,h4x3rotab/BTCGPU,dgarage/bc3,plncoin/PLNcoin_Core,BitcoinHardfork/bitcoin,Earlz/dobbscoin-source,MasterX1582/bitcoin-becoin,droark/bitcoin,Darknet-Crypto/Darknet,jl2012/litecoin,nathan-at-least/zcash,initaldk/bitcoin,particl/particl-core,Diapolo/bitcoin,crowning-/dash,micryon/GPUcoin,LIMXTEC/DMDv3,cinnamoncoin/groupcoin-1,gavinandresen/bitcoin-git,tjps/bitcoin,bitcoin/bitcoin,Bloom-Project/Bloom,krzysztofwos/BitcoinUnlimited,krzysztofwos/BitcoinUnlimited,jaromil/faircoin2,odemolliens/bitcoinxt,genavarov/brcoin,therealaltcoin/altcoin,AkioNak/bitcoin,and2099/twister-core,putinclassic/putic,174high/bitcoin,destenson/bitcoin--bitcoin,48thct2jtnf/P,sipsorcery/bitcoin,dgenr8/bitcoin,SartoNess/BitcoinUnlimited,manuel-zulian/CoMoNet,FarhanHaque/bitcoin,nikkitan/bitcoin,gmaxwell/bitcoin,tropa/axecoin,axelxod/braincoin,plncoin/PLNcoin_Core,MonetaryUnit/MUE-Src,goldmidas/goldmidas,zottejos/merelcoin,bankonmecoin/bitcoin,Coinfigli/coinfigli,zixan/bitcoin,EthanHeilman/bitcoin,dcousens/bitcoin,iosdevzone/bitcoin,josephbisch/namecoin-core,wellenreiter01/Feathercoin,ripper234/bitcoin,Earlz/dobbscoin-source,anditto/bitcoin,ahmedbodi/test2,shadowoneau/ozcoin,paveljanik/bitcoin,MazaCoin/mazacoin-new,Bitcoinsulting/bitcoinxt,marklai9999/Taiwancoin,domob1812/i0coin,ahmedbodi/temp_vert,diggcoin/diggcoin,iosdevzone/bitcoin,sdaftuar/bitcoin,hg5fm/nexuscoin,coinkeeper/2015-06-22_18-41_ixcoin,SocialCryptoCoin/SocialCoin,kallewoof/elements,BlockchainTechLLC/3dcoin,novaexchange/EAC,lbrtcoin/albertcoin,jmgilbert2/energi,EntropyFactory/creativechain-core,razor-coin/razor,ingresscoin/ingresscoin,wbchen99/bitcoin-hnote0,core-bitcoin/bitcoin,scamcoinz/scamcoin,chaincoin/chaincoin,jameshilliard/bitcoin,CodeShark/bitcoin,practicalswift/bitcoin,mooncoin-project/mooncoin-landann,Rav3nPL/polcoin,domob1812/bitcoin,sebrandon1/bitcoin,Cocosoft/bitcoin,TheBlueMatt/bitcoin,dev1972/Satellitecoin,freelion93/mtucicoin,shaulkf/bitcoin,MeshCollider/bitcoin,namecoin/namecore,Electronic-Gulden-Foundation/egulden,Alonzo-Coeus/bitcoin,ludbb/bitcoin,core-bitcoin/bitcoin,awemany/BitcoinUnlimited,ptschip/bitcoinxt,dgenr8/bitcoinxt,bitcoin/bitcoin,TheBlueMatt/bitcoin,Tetpay/bitcoin,Rav3nPL/PLNcoin,ixcoinofficialpage/master,cybermatatu/bitcoin,error10/bitcoin,mitchellcash/bitcoin,capitalDIGI/DIGI-v-0-10-4,TripleSpeeder/bitcoin,GroundRod/anoncoin,zcoinofficial/zcoin,jameshilliard/bitcoin,benzmuircroft/REWIRE.io,torresalyssa/bitcoin,coinerd/krugercoin,p2peace/oliver-twister-core,hyperwang/bitcoin,Coinfigli/coinfigli,Kangmo/bitcoin,genavarov/brcoin,scmorse/bitcoin,bitcoinxt/bitcoinxt,ShadowMyst/creativechain-core,bmp02050/ReddcoinUpdates,itmanagerro/tresting,sifcoin/sifcoin,deadalnix/bitcoin,apoelstra/bitcoin,Kore-Core/kore,shaulkf/bitcoin,Kore-Core/kore,netswift/vertcoin,arnuschky/bitcoin,gzuser01/zetacoin-bitcoin,jlopp/statoshi,coinkeeper/2015-06-22_19-00_ziftrcoin,degenorate/Deftcoin,rnicoll/dogecoin,Gazer022/bitcoin,PIVX-Project/PIVX,Krellan/bitcoin,peercoin/peercoin,genavarov/lamacoin,nigeriacoin/nigeriacoin,Flurbos/Flurbo,Mrs-X/Darknet,manuel-zulian/CoMoNet,SoreGums/bitcoinxt,alejandromgk/Lunar,Earlz/renamedcoin,syscoin/syscoin,afk11/bitcoin,chaincoin/chaincoin,BlockchainTechLLC/3dcoin,21E14/bitcoin,lclc/bitcoin,x-kalux/bitcoin_WiG-B,mobicoins/mobicoin-core,patricklodder/dogecoin,gzuser01/zetacoin-bitcoin,IlfirinCano/shavercoin,irvingruan/bitcoin,josephbisch/namecoin-core,OmniLayer/omnicore,coinkeeper/anoncoin_20150330_fixes,coinkeeper/2015-06-22_18-52_viacoin,ediston/energi,pouta/bitcoin,compasscoin/compasscoin,bitjson/hivemind,JeremyRubin/bitcoin,mitchellcash/bitcoin,lakepay/lake,randy-waterhouse/bitcoin,constantine001/bitcoin,royosherove/bitcoinxt,wangxinxi/litecoin,alecalve/bitcoin,bcpki/nonce2testblocks,szlaozhu/twister-core,bespike/litecoin,howardrya/AcademicCoin,ShwoognationHQ/bitcoin,CoinProjects/AmsterdamCoin-v4,tmagik/catcoin,practicalswift/bitcoin,gwillen/elements,174high/bitcoin,EntropyFactory/creativechain-core,plankton12345/litecoin,Jeff88Ho/bitcoin,SartoNess/BitcoinUnlimited,cryptohelper/premine,glv2/peerunity,Friedbaumer/litecoin,odemolliens/bitcoinxt,sirk390/bitcoin,matlongsi/micropay,aniemerg/zcash,omefire/bitcoin,hsavit1/bitcoin,knolza/gamblr,cotner/bitcoin,credits-currency/credits,PRabahy/bitcoin,Mrs-X/Darknet,thrasher-/litecoin,ivansib/sib16,simdeveloper/bitcoin,cyrixhero/bitcoin,trippysalmon/bitcoin,totallylegitbiz/totallylegitcoin,mb300sd/bitcoin,Domer85/dogecoin,zenywallet/bitzeny,DigiByte-Team/digibyte,Horrorcoin/horrorcoin,irvingruan/bitcoin,ArgonToken/ArgonToken,taenaive/zetacoin,Kenwhite23/litecoin,metrocoins/metrocoin,slingcoin/sling-market,jgarzik/bitcoin,trippysalmon/bitcoin,CTRoundTable/Encrypted.Cash,lbryio/lbrycrd,kirkalx/bitcoin,JeremyRand/bitcoin,Exgibichi/statusquo,zcoinofficial/zcoin,Rav3nPL/doubloons-0.10,Anfauglith/iop-hd,bootycoin-project/bootycoin,truthcoin/truthcoin-cpp,rustyrussell/bitcoin,vcoin-project/vcoincore,GwangJin/gwangmoney-core,isocolsky/bitcoinxt,whatrye/twister-core,jonghyeopkim/bitcoinxt,mm-s/bitcoin,iQcoin/iQcoin,KibiCoin/kibicoin,bmp02050/ReddcoinUpdates,UdjinM6/dash,Rav3nPL/bitcoin,dperel/bitcoin,sipa/elements,tecnovert/particl-core,zander/bitcoinclassic,mincoin-project/mincoin,BitcoinPOW/BitcoinPOW,yenliangl/bitcoin,simonmulser/bitcoin,cheehieu/bitcoin,ppcoin/ppcoin,domob1812/huntercore,sipa/bitcoin,erqan/twister-core,Mirobit/bitcoin,my-first/octocoin,botland/bitcoin,cculianu/bitcoin-abc,erqan/twister-core,GreenParhelia/bitcoin,BitcoinHardfork/bitcoin,SoreGums/bitcoinxt,imton/bitcoin,Earlz/renamedcoin,vtafaucet/virtacoin,aniemerg/zcash,mrtexaznl/mediterraneancoin,my-first/octocoin,kaostao/bitcoin,koharjidan/dogecoin,cddjr/BitcoinUnlimited,stevemyers/bitcoinxt,ryanxcharles/bitcoin,segsignal/bitcoin,gmaxwell/bitcoin,dmrtsvetkov/flowercoin,Mrs-X/PIVX,isocolsky/bitcoinxt,ryanofsky/bitcoin,coinkeeper/2015-06-22_18-46_razor,DigiByte-Team/digibyte,jmcorgan/bitcoin,vmp32k/litecoin,ftrader-bitcoinabc/bitcoin-abc,worldcoinproject/worldcoin-v0.8,kallewoof/bitcoin,crowning-/dash,n1bor/bitcoin,zcoinofficial/zcoin,BTCfork/hardfork_prototype_1_mvf-core,meighti/bitcoin,isocolsky/bitcoinxt,oklink-dev/bitcoin,TeamBitBean/bitcoin-core,mammix2/ccoin-dev,gavinandresen/bitcoin-git,Anoncoin/anoncoin,ekankyesme/bitcoinxt,DGCDev/argentum,andres-root/bitcoinxt,bitreserve/bitcoin,and2099/twister-core,bitcoinsSG/zcash,stamhe/litecoin,sipa/elements,Rav3nPL/polcoin,taenaive/zetacoin,globaltoken/globaltoken,BlockchainTechLLC/3dcoin,2XL/bitcoin,ghostlander/Feathercoin,aciddude/Feathercoin,kleetus/bitcoinxt,lbrtcoin/albertcoin,cybermatatu/bitcoin,jameshilliard/bitcoin,haobtc/bitcoin,coinkeeper/megacoin_20150410_fixes,Kcoin-project/kcoin,p2peace/oliver-twister-core,dpayne9000/Rubixz-Coin,lateminer/bitcoin,unsystemizer/bitcoin,Vsync-project/Vsync,bitcoinec/bitcoinec,kleetus/bitcoin,JeremyRand/namecore,applecoin-official/applecoin,sbellem/bitcoin,erqan/twister-core,BTCTaras/bitcoin,langerhans/dogecoin,coinkeeper/2015-06-22_18-31_bitcoin,novaexchange/EAC,Lucky7Studio/bitcoin,Sjors/bitcoin,ftrader-bitcoinabc/bitcoin-abc,174high/bitcoin,itmanagerro/tresting,credits-currency/credits,nanocoins/mycoin,puticcoin/putic,ajtowns/bitcoin,brishtiteveja/sherlockcoin,daveperkins-github/bitcoin-dev,rdqw/sscoin,manuel-zulian/accumunet,dakk/soundcoin,mikehearn/bitcoin,jn2840/bitcoin,antonio-fr/bitcoin,faircoin/faircoin2,Petr-Economissa/gvidon,BigBlueCeiling/augmentacoin,skaht/bitcoin,lbrtcoin/albertcoin,blood2/bloodcoin-0.9,CrimeaCoin/crimeacoin,keo/bitcoin,xieta/mincoin,fullcoins/fullcoin,Flowdalic/bitcoin,yenliangl/bitcoin,Exceltior/dogecoin,wederw/bitcoin,rromanchuk/bitcoinxt,cryptodev35/icash,x-kalux/bitcoin_WiG-B,imton/bitcoin,meighti/bitcoin,nanocoins/mycoin,gravio-net/graviocoin,nmarley/dash,domob1812/i0coin,npccoin/npccoin,JeremyRand/namecoin-core,nathaniel-mahieu/bitcoin,ohac/sha1coin,joshrabinowitz/bitcoin,genavarov/lamacoin,ArgonToken/ArgonToken,greenaddress/bitcoin,Chancoin-core/CHANCOIN,zestcoin/ZESTCOIN,llamasoft/ProtoShares_Cycle,XX-net/twister-core,Megacoin2/Megacoin,r8921039/bitcoin,gazbert/bitcoin,gzuser01/zetacoin-bitcoin,bitcoin/bitcoin,presstab/PIVX,gravio-net/graviocoin,Dinarcoin/dinarcoin,kfitzgerald/titcoin,greencoin-dev/greencoin-dev,haraldh/bitcoin,cotner/bitcoin,mruddy/bitcoin,vlajos/bitcoin,Dinarcoin/dinarcoin,world-bank/unpay-core,kseistrup/twister-core,benosa/bitcoin,rdqw/sscoin,Michagogo/bitcoin,keisercoin-official/keisercoin,atgreen/bitcoin,UFOCoins/ufo,Alonzo-Coeus/bitcoin,royosherove/bitcoinxt,dpayne9000/Rubixz-Coin,basicincome/unpcoin-core,reddcoin-project/reddcoin,droark/elements,pouta/bitcoin,sstone/bitcoin,Kangmo/bitcoin,ivansib/sib16,lbrtcoin/albertcoin,OmniLayer/omnicore,gcc64/bitcoin,plankton12345/litecoin,lbryio/lbrycrd,zsulocal/bitcoin,gapcoin/gapcoin,Flurbos/Flurbo,appop/bitcoin,martindale/elements,kazcw/bitcoin,jrmithdobbs/bitcoin,dpayne9000/Rubixz-Coin,dannyperez/bolivarcoin,denverl/bitcoin,bankonmecoin/bitcoin,GroestlCoin/GroestlCoin,jtimon/elements,world-bank/unpay-core,BTCTaras/bitcoin,botland/bitcoin,DigiByte-Team/digibyte,MazaCoin/maza,Justaphf/BitcoinUnlimited,zcoinofficial/zcoin,brishtiteveja/sherlockholmescoin,grumpydevelop/singularity,gravio-net/graviocoin,Bushstar/UFO-Project,svost/bitcoin,digideskio/namecoin,dperel/bitcoin,gcc64/bitcoin,mruddy/bitcoin,coinkeeper/2015-06-22_18-39_feathercoin,jimmysong/bitcoin,cinnamoncoin/groupcoin-1,AllanDoensen/BitcoinUnlimited,pataquets/namecoin-core,ClusterCoin/ClusterCoin,ionomy/ion,tripmode/pxlcoin,Xekyo/bitcoin,WorldLeadCurrency/WLC,tropa/axecoin,cainca/liliucoin,RyanLucchese/energi,cddjr/BitcoinUnlimited,cdecker/bitcoin,cainca/liliucoin,btcdrak/bitcoin,domob1812/namecore,truthcoin/truthcoin-cpp,IlfirinCano/shavercoin,zemrys/vertcoin,LIMXTEC/DMDv3,MarcoFalke/bitcoin,hg5fm/nexuscoin,laudaa/bitcoin,wangliu/bitcoin,Bushstar/UFO-Project,kleetus/bitcoin,zcoinofficial/zcoin,kleetus/bitcoinxt,lbryio/lbrycrd,gzuser01/zetacoin-bitcoin,40thoughts/Coin-QualCoin,Kcoin-project/kcoin,glv2/peerunity,sbaks0820/bitcoin,coinkeeper/2015-06-22_18-51_vertcoin,jn2840/bitcoin,40thoughts/Coin-QualCoin,shea256/bitcoin,Carrsy/PoundCoin,krzysztofwos/BitcoinUnlimited,p2peace/oliver-twister-core,SoreGums/bitcoinxt,gwangjin2/gwangcoin-core,AdrianaDinca/bitcoin,destenson/bitcoin--bitcoin,KibiCoin/kibicoin,thormuller/yescoin2,capitalDIGI/DIGI-v-0-10-4,romanornr/viacoin,basicincome/unpcoin-core,ptschip/bitcoinxt,drwasho/bitcoinxt,GIJensen/bitcoin,Alonzo-Coeus/bitcoin,cddjr/BitcoinUnlimited,KnCMiner/bitcoin,jiffe/cosinecoin,alexandrcoin/vertcoin,donaloconnor/bitcoin,midnightmagic/bitcoin,ajweiss/bitcoin,tmagik/catcoin,experiencecoin/experiencecoin,PRabahy/bitcoin,arnuschky/bitcoin,kallewoof/elements,icook/vertcoin,zander/bitcoinclassic,likecoin-dev/bitcoin,ashleyholman/bitcoin,fussl/elements,tensaix2j/bananacoin,AdrianaDinca/bitcoin,tedlz123/Bitcoin,truthcoin/blocksize-market,bitshares/bitshares-pts,kirkalx/bitcoin,jonasnick/bitcoin,my-first/octocoin,Earlz/renamedcoin,nomnombtc/bitcoin,biblepay/biblepay,Kogser/bitcoin,Rav3nPL/PLNcoin,mm-s/bitcoin,Mirobit/bitcoin,guncoin/guncoin,tmagik/catcoin,ptschip/bitcoinxt,koharjidan/litecoin,saydulk/Feathercoin,MarcoFalke/bitcoin,bitgoldcoin-project/bitgoldcoin,coinerd/krugercoin,ftrader-bitcoinabc/bitcoin-abc,unsystemizer/bitcoin,raasakh/bardcoin.exe,raasakh/bardcoin.exe,novaexchange/EAC,brandonrobertz/namecoin-core,5mil/Tradecoin,Tetpay/bitcoin,fujicoin/fujicoin,Tetcoin/tetcoin,jakeva/bitcoin-pwcheck,Bitcoin-ABC/bitcoin-abc,sstone/bitcoin,deuscoin/deuscoin,earonesty/bitcoin,aniemerg/zcash,Friedbaumer/litecoin,ddombrowsky/radioshares,gavinandresen/bitcoin-git,cryptoprojects/ultimateonlinecash,simonmulser/bitcoin,isocolsky/bitcoinxt,rjshaver/bitcoin,bitcoinsSG/bitcoin,thesoftwarejedi/bitcoin,upgradeadvice/MUE-Src,goldmidas/goldmidas,isghe/bitcoinxt,sipsorcery/bitcoin,bitcoinclassic/bitcoinclassic,pastday/bitcoinproject,and2099/twister-core,gravio-net/graviocoin,Xekyo/bitcoin,NicolasDorier/bitcoin,KaSt/ekwicoin,brishtiteveja/sherlockholmescoin,ahmedbodi/vertcoin,atgreen/bitcoin,Kenwhite23/litecoin,multicoins/marycoin,bcpki/nonce2testblocks,sbaks0820/bitcoin,rustyrussell/bitcoin,peacedevelop/peacecoin,Vsync-project/Vsync,adpg211/bitcoin-master,ekankyesme/bitcoinxt,Krellan/bitcoin,Kangmo/bitcoin,mapineda/litecoin,initaldk/bitcoin,UFOCoins/ufo,krzysztofwos/BitcoinUnlimited,spiritlinxl/BTCGPU,midnightmagic/bitcoin,goldcoin/Goldcoin-GLD,dagurval/bitcoinxt,slingcoin/sling-market,peerdb/cors,ixcoinofficialpage/master,bcpki/nonce2,sipa/bitcoin,DMDcoin/Diamond,x-kalux/bitcoin_WiG-B,crowning2/dash,funkshelper/woodcoin-b,Bluejudy/worldcoin,btc1/bitcoin,inutoshi/inutoshi,joshrabinowitz/bitcoin,Domer85/dogecoin,haisee/dogecoin,genavarov/lamacoin,ptschip/bitcoin,coinkeeper/2015-06-22_18-37_dogecoin,ediston/energi,safecoin/safecoin,prark/bitcoinxt,jrick/bitcoin,stamhe/litecoin,oleganza/bitcoin-duo,Metronotes/bitcoin,prark/bitcoinxt,ahmedbodi/temp_vert,HashUnlimited/Einsteinium-Unlimited,iQcoin/iQcoin,zebrains/Blotter,balajinandhu/bitcoin,cainca/liliucoin,osuyuushi/laughingmancoin,domob1812/namecore,crowning2/dash,bitcoinclassic/bitcoinclassic,coinkeeper/2015-06-22_18-30_anoncoin,llluiop/bitcoin,biblepay/biblepay,BTCDDev/bitcoin,r8921039/bitcoin,balajinandhu/bitcoin,Michagogo/bitcoin,DGCDev/digitalcoin,CryptArc/bitcoin,rawodb/bitcoin,NateBrune/bitcoin-fio,SoreGums/bitcoinxt,litecoin-project/litecoin,rnicoll/bitcoin,domob1812/huntercore,WorldLeadCurrency/WLC,vlajos/bitcoin,h4x3rotab/BTCGPU,TierNolan/bitcoin,Jcing95/iop-hd,ohac/sha1coin,appop/bitcoin,magacoin/magacoin,world-bank/unpay-core,BigBlueCeiling/augmentacoin,NicolasDorier/bitcoin,mincoin-project/mincoin,shea256/bitcoin,AdrianaDinca/bitcoin,metrocoins/metrocoin,domob1812/i0coin,peacedevelop/peacecoin,bitcoinclassic/bitcoinclassic,ptschip/bitcoin,goldcoin/goldcoin,2XL/bitcoin,spiritlinxl/BTCGPU,fsb4000/bitcoin,daveperkins-github/bitcoin-dev,Rav3nPL/bitcoin,Cancercoin/Cancercoin,ixcoinofficialpage/master,Diapolo/bitcoin,jl2012/litecoin,icook/vertcoin,bitjson/hivemind,fsb4000/bitcoin,krzysztofwos/BitcoinUnlimited,unsystemizer/bitcoin,cqtenq/Feathercoin,vbernabe/freicoin,fussl/elements,mitchellcash/bitcoin,Rav3nPL/doubloons-0.10,miguelfreitas/twister-core,octocoin-project/octocoin,UdjinM6/dash,ddombrowsky/radioshares,ryanofsky/bitcoin,mm-s/bitcoin,andres-root/bitcoinxt,Adaryian/E-Currency,netswift/vertcoin,manuel-zulian/accumunet,ElementsProject/elements,crowning2/dash,Anfauglith/iop-hd,zottejos/merelcoin,instagibbs/bitcoin,dgenr8/bitcoinxt,cqtenq/feathercoin_core,KillerByte/memorypool,atgreen/bitcoin,antonio-fr/bitcoin,segsignal/bitcoin,Cancercoin/Cancercoin,mruddy/bitcoin,Rav3nPL/doubloons-08,Czarcoin/czarcoin,sebrandon1/bitcoin,jakeva/bitcoin-pwcheck,jtimon/elements,privatecoin/privatecoin,jiffe/cosinecoin,GreenParhelia/bitcoin,plncoin/PLNcoin_Core,NicolasDorier/bitcoin,langerhans/dogecoin,coinkeeper/2015-06-22_19-07_digitalcoin,sstone/bitcoin,xeddmc/twister-core,djpnewton/bitcoin,oleganza/bitcoin-duo,freelion93/mtucicoin,accraze/bitcoin,BitcoinUnlimited/BitcoinUnlimited,szlaozhu/twister-core,neuroidss/bitcoin,globaltoken/globaltoken,bickojima/bitzeny,karek314/bitcoin,Rav3nPL/doubloons-0.10,loxal/zcash,brightcoin/brightcoin,keo/bitcoin,benzmuircroft/REWIRE.io,djpnewton/bitcoin,biblepay/biblepay,jtimon/bitcoin,40thoughts/Coin-QualCoin,andreaskern/bitcoin,AkioNak/bitcoin,dogecoin/dogecoin,pdrobek/Polcoin-1-3,HeliumGas/helium,chaincoin/chaincoin,supcoin/supcoin,ekankyesme/bitcoinxt,bitgoldcoin-project/bitgoldcoin,misdess/bitcoin,appop/bitcoin,shadowoneau/ozcoin,Kogser/bitcoin,riecoin/riecoin,Darknet-Crypto/Darknet,kevin-cantwell/crunchcoin,ptschip/bitcoin,antcheck/antcoin,r8921039/bitcoin,leofidus/glowing-octo-ironman,mitchellcash/bitcoin,raasakh/bardcoin,XX-net/twister-core,se3000/bitcoin,tdudz/elements,Gazer022/bitcoin,markf78/dollarcoin,bcpki/testblocks,mobicoins/mobicoin-core,EthanHeilman/bitcoin,fedoracoin-dev/fedoracoin,vertcoin/eyeglass,kseistrup/twister-core,ccoin-project/ccoin,kallewoof/elements,razor-coin/razor,alejandromgk/Lunar,jtimon/bitcoin,ashleyholman/bitcoin,bitreserve/bitcoin,MarcoFalke/bitcoin,cryptoprojects/ultimateonlinecash,capitalDIGI/litecoin,RyanLucchese/energi,riecoin/riecoin,CarpeDiemCoin/CarpeDiemLaunch,marcusdiaz/BitcoinUnlimited,worldcoinproject/worldcoin-v0.8,atgreen/bitcoin,brandonrobertz/namecoin-core,jn2840/bitcoin,thormuller/yescoin2,HeliumGas/helium,Climbee/artcoin,shadowoneau/ozcoin,memorycoin/memorycoin,drwasho/bitcoinxt,mycointest/owncoin,aspirecoin/aspire,cryptoprojects/ultimateonlinecash,174high/bitcoin,funbucks/notbitcoinxt,litecoin-project/litecore-litecoin,dakk/soundcoin,sarielsaz/sarielsaz,Cloudsy/bitcoin,ElementsProject/elements,schinzelh/dash,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,cculianu/bitcoin-abc,nathan-at-least/zcash,1185/starwels,coinkeeper/2015-06-22_18-31_bitcoin,Michagogo/bitcoin,goldmidas/goldmidas,collapsedev/circlecash,Kangmo/bitcoin,jambolo/bitcoin,phelix/bitcoin,Electronic-Gulden-Foundation/egulden,myriadteam/myriadcoin,genavarov/brcoin,jakeva/bitcoin-pwcheck,cybermatatu/bitcoin,ColossusCoinXT/ColossusCoinXT,vertcoin/vertcoin,isghe/bitcoinxt,vericoin/vericoin-core,Electronic-Gulden-Foundation/egulden,starwels/starwels,XX-net/twister-core,KibiCoin/kibicoin,brandonrobertz/namecoin-core,ahmedbodi/test2,greencoin-dev/digitalcoin,Justaphf/BitcoinUnlimited,nightlydash/darkcoin,nomnombtc/bitcoin,antcheck/antcoin,biblepay/biblepay,kleetus/bitcoinxt,ardsu/bitcoin,WorldLeadCurrency/WLC,nmarley/dash,untrustbank/litecoin,scamcoinz/scamcoin,tecnovert/particl-core,GIJensen/bitcoin,mobicoins/mobicoin-core,FinalHashLLC/namecore,aburan28/elements,tjth/lotterycoin,matlongsi/micropay,dgenr8/bitcoin,mb300sd/bitcoin,MitchellMintCoins/MortgageCoin,amaivsimau/bitcoin,domob1812/namecore,bitpagar/bitpagar,Tetpay/bitcoin,ctwiz/stardust,pouta/bitcoin,andreaskern/bitcoin,xurantju/bitcoin,jonasschnelli/bitcoin,zzkt/solarcoin,apoelstra/bitcoin,itmanagerro/tresting,grumpydevelop/singularity,s-matthew-english/bitcoin,UASF/bitcoin,fussl/elements,pdrobek/Polcoin-1-3,dgarage/bc3,iosdevzone/bitcoin,manuel-zulian/CoMoNet,zemrys/vertcoin,aspanta/bitcoin,kleetus/bitcoin,leofidus/glowing-octo-ironman,paveljanik/bitcoin,szlaozhu/twister-core,BTCGPU/BTCGPU,scmorse/bitcoin,jimblasko/UnbreakableCoin-master,Har01d/bitcoin,midnight-miner/LasVegasCoin,inutoshi/inutoshi,joroob/reddcoin,MitchellMintCoins/AutoCoin,pinheadmz/bitcoin,howardrya/AcademicCoin,FrictionlessCoin/iXcoin,drwasho/bitcoinxt,inkvisit/sarmacoins,psionin/smartcoin,marcusdiaz/BitcoinUnlimited,alecalve/bitcoin,raasakh/bardcoin,HashUnlimited/Einsteinium-Unlimited,koharjidan/bitcoin,shouhuas/bitcoin,funkshelper/woodcore,litecoin-project/litecoin,Bloom-Project/Bloom,octocoin-project/octocoin,nathaniel-mahieu/bitcoin,upgradeadvice/MUE-Src,coinkeeper/2015-06-22_19-07_digitalcoin,TrainMAnB/vcoincore,mapineda/litecoin,shurcoin/shurcoin,wederw/bitcoin,jn2840/bitcoin,terracoin/terracoin,maraoz/proofcoin,guncoin/guncoin,RHavar/bitcoin,itmanagerro/tresting,nathan-at-least/zcash,experiencecoin/experiencecoin,ryanofsky/bitcoin,tjps/bitcoin,koharjidan/bitcoin,shadowoneau/ozcoin,GroestlCoin/bitcoin,coinkeeper/2015-06-22_18-30_anoncoin,experiencecoin/experiencecoin,initaldk/bitcoin,czr5014iph/bitcoin4e,CryptArc/bitcoinxt,wbchen99/bitcoin-hnote0,shurcoin/shurcoin,deeponion/deeponion,CryptArc/bitcoin,degenorate/Deftcoin,blood2/bloodcoin-0.9,manuel-zulian/accumunet,gavinandresen/bitcoin-git,kaostao/bitcoin,vcoin-project/vcoincore,omefire/bitcoin,keesdewit82/LasVegasCoin,rsdevgun16e/energi,imton/bitcoin,sebrandon1/bitcoin,pascalguru/florincoin,nbenoit/bitcoin,razor-coin/razor,ZiftrCOIN/ziftrcoin,DGCDev/digitalcoin,NunoEdgarGub1/elements,zenywallet/bitzeny,credits-currency/credits,nomnombtc/bitcoin,ANCompany/birdcoin-dev,nathan-at-least/zcash,senadmd/coinmarketwatch,Bitcoinsulting/bitcoinxt,BlockchainTechLLC/3dcoin,mockcoin/mockcoin,Exceltior/dogecoin,ajtowns/bitcoin,bitcoin-hivemind/hivemind,lbryio/lbrycrd,ClusterCoin/ClusterCoin,Lucky7Studio/bitcoin,sugruedes/bitcoinxt,UASF/bitcoin,cotner/bitcoin,Vector2000/bitcoin,ronpaulcoin/ronpaulcoin,lclc/bitcoin,drwasho/bitcoinxt,TeamBitBean/bitcoin-core,s-matthew-english/bitcoin,acid1789/bitcoin,p2peace/oliver-twister-core,coinkeeper/2015-04-19_21-20_litecoindark,skaht/bitcoin,glv2/peerunity,fussl/elements,mrbandrews/bitcoin,Ziftr/bitcoin,pascalguru/florincoin,cqtenq/feathercoin_core,Rav3nPL/doubloons-0.10,sugruedes/bitcoinxt,rat4/bitcoin,randy-waterhouse/bitcoin,world-bank/unpay-core,TGDiamond/Diamond,oklink-dev/bitcoin,bmp02050/ReddcoinUpdates,2XL/bitcoin,AllanDoensen/BitcoinUnlimited,BitcoinPOW/BitcoinPOW,presstab/PIVX,BigBlueCeiling/augmentacoin,antonio-fr/bitcoin,btc1/bitcoin,111t8e/bitcoin,DigiByte-Team/digibyte,cqtenq/feathercoin_core,ccoin-project/ccoin,ivansib/sibcoin,pstratem/bitcoin,vbernabe/freicoin,lateminer/bitcoin,s-matthew-english/bitcoin,UdjinM6/dash,AllanDoensen/BitcoinUnlimited,Theshadow4all/ShadowCoin,Litecoindark/LTCD,ANCompany/birdcoin-dev,szlaozhu/twister-core,elliotolds/bitcoin,CryptArc/bitcoin,elecoin/elecoin,ElementsProject/elements,axelxod/braincoin,BTCfork/hardfork_prototype_1_mvf-bu,brettwittam/geocoin,adpg211/bitcoin-master,OstlerDev/florincoin,maaku/bitcoin,bitcoin/bitcoin,metacoin/florincoin,Kogser/bitcoin,Kcoin-project/kcoin,mockcoin/mockcoin,shelvenzhou/BTCGPU,rsdevgun16e/energi,DynamicCoinOrg/DMC,Kangmo/bitcoin,zzkt/solarcoin,roques/bitcoin,oklink-dev/litecoin_block,Sjors/bitcoin,ryanxcharles/bitcoin,tjth/lotterycoin,sickpig/BitcoinUnlimited,coinerd/krugercoin,MonetaryUnit/MUE-Src,nvmd/bitcoin,deadalnix/bitcoin,DigitalPandacoin/pandacoin,psionin/smartcoin,KaSt/ekwicoin,coinwarp/dogecoin,XertroV/bitcoin-nulldata,gwillen/elements,coinkeeper/2015-06-22_18-39_feathercoin,haisee/dogecoin,zestcoin/ZESTCOIN,sirk390/bitcoin,qtumproject/qtum,Anfauglith/iop-hd,bitcoinxt/bitcoinxt,brishtiteveja/truthcoin-cpp,nikkitan/bitcoin,upgradeadvice/MUE-Src,ahmedbodi/test2,and2099/twister-core,aciddude/Feathercoin,coinkeeper/2015-04-19_21-20_litecoindark,wcwu/bitcoin,OmniLayer/omnicore,zebrains/Blotter,Adaryian/E-Currency,ShadowMyst/creativechain-core,TierNolan/bitcoin,PandaPayProject/PandaPay,brandonrobertz/namecoin-core,coinwarp/dogecoin,brettwittam/geocoin,Richcoin-Project/RichCoin,midnight-miner/LasVegasCoin,rustyrussell/bitcoin,midnight-miner/LasVegasCoin,wangxinxi/litecoin,ekankyesme/bitcoinxt,mruddy/bitcoin,imharrywu/fastcoin,Earlz/dobbscoin-source,CoinProjects/AmsterdamCoin-v4,UASF/bitcoin,vcoin-project/vcoincore,Electronic-Gulden-Foundation/egulden,btcdrak/bitcoin,rdqw/sscoin,habibmasuro/bitcoin,vericoin/vericoin-core,borgcoin/Borgcoin.rar,cryptocoins4all/zcoin,loxal/zcash,oklink-dev/bitcoin,bootycoin-project/bootycoin,loxal/zcash,capitalDIGI/DIGI-v-0-10-4,Earlz/dobbscoin-source,totallylegitbiz/totallylegitcoin,xawksow/GroestlCoin,oleganza/bitcoin-duo,djpnewton/bitcoin,jonghyeopkim/bitcoinxt,brishtiteveja/truthcoin-cpp,sdaftuar/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,arruah/ensocoin,llluiop/bitcoin,nailtaras/nailcoin,Erkan-Yilmaz/twister-core,pstratem/bitcoin,UFOCoins/ufo,mb300sd/bitcoin,basicincome/unpcoin-core,netswift/vertcoin,ANCompany/birdcoin-dev,CTRoundTable/Encrypted.Cash,Richcoin-Project/RichCoin,ZiftrCOIN/ziftrcoin,myriadcoin/myriadcoin,mockcoin/mockcoin,ahmedbodi/test2,48thct2jtnf/P,metacoin/florincoin,phplaboratory/psiacoin,kryptokredyt/ProjektZespolowyCoin,robvanbentem/bitcoin,fanquake/bitcoin,sdaftuar/bitcoin,n1bor/bitcoin,ArgonToken/ArgonToken,my-first/octocoin,m0gliE/fastcoin-cli,wiggi/huntercore,Diapolo/bitcoin,jmgilbert2/energi,kfitzgerald/titcoin,zestcoin/ZESTCOIN,dakk/soundcoin,odemolliens/bitcoinxt,myriadcoin/myriadcoin,Jeff88Ho/bitcoin,BenjaminsCrypto/Benjamins-1,initaldk/bitcoin,botland/bitcoin,Alex-van-der-Peet/bitcoin,jmcorgan/bitcoin,DigitalPandacoin/pandacoin,bitcoinplusorg/xbcwalletsource,greenaddress/bitcoin,vcoin-project/vcoincore,zotherstupidguy/bitcoin,fedoracoin-dev/fedoracoin,bmp02050/ReddcoinUpdates,pstratem/bitcoin,rebroad/bitcoin,jakeva/bitcoin-pwcheck,kseistrup/twister-core,destenson/bitcoin--bitcoin,BTCTaras/bitcoin,roques/bitcoin,masterbraz/dg,genavarov/brcoin,coinkeeper/2015-06-22_18-51_vertcoin,litecoin-project/litecoin,whatrye/twister-core,Earlz/renamedcoin,x-kalux/bitcoin_WiG-B,MazaCoin/maza,psionin/smartcoin,hg5fm/nexuscoin,MikeAmy/bitcoin,SartoNess/BitcoinUnlimited,pastday/bitcoinproject,freelion93/mtucicoin,CTRoundTable/Encrypted.Cash,howardrya/AcademicCoin,jamesob/bitcoin,privatecoin/privatecoin,pataquets/namecoin-core,droark/bitcoin,Mrs-X/PIVX,trippysalmon/bitcoin,myriadcoin/myriadcoin,upgradeadvice/MUE-Src,RibbitFROG/ribbitcoin,nvmd/bitcoin,Mirobit/bitcoin,coinkeeper/2015-06-22_18-36_darkcoin,sstone/bitcoin,martindale/elements,zixan/bitcoin,coinkeeper/2015-06-22_18-56_megacoin,kleetus/bitcoin,mastercoin-MSC/mastercore,gapcoin/gapcoin,jimmysong/bitcoin,jimmykiselak/lbrycrd,langerhans/dogecoin,rat4/bitcoin,pinheadmz/bitcoin,nailtaras/nailcoin,freelion93/mtucicoin,error10/bitcoin,joroob/reddcoin,scamcoinz/scamcoin,nathaniel-mahieu/bitcoin,FrictionlessCoin/iXcoin,ptschip/bitcoin,earthcoinproject/earthcoin,tdudz/elements,jmcorgan/bitcoin,dmrtsvetkov/flowercoin,fsb4000/bitcoin,bitpay/bitcoin,mrbandrews/bitcoin,shurcoin/shurcoin,coinkeeper/megacoin_20150410_fixes,UdjinM6/dash,Anoncoin/anoncoin,domob1812/bitcoin,FrictionlessCoin/iXcoin,Gazer022/bitcoin,Kore-Core/kore,Thracky/monkeycoin,applecoin-official/fellatio,BTCGPU/BTCGPU,misdess/bitcoin,fanquake/bitcoin,JeremyRand/namecoin-core,raasakh/bardcoin.exe,ColossusCoinXT/ColossusCoinXT,pstratem/bitcoin,butterflypay/bitcoin,kseistrup/twister-core,gapcoin/gapcoin,daveperkins-github/bitcoin-dev,bitcoin-hivemind/hivemind,GroestlCoin/GroestlCoin,phelixbtc/bitcoin,svost/bitcoin,crowning2/dash,gjhiggins/vcoincore,goldcoin/goldcoin,viacoin/viacoin,BitcoinHardfork/bitcoin,faircoin/faircoin,dgenr8/bitcoin,andreaskern/bitcoin,donaloconnor/bitcoin,xurantju/bitcoin,segsignal/bitcoin,n1bor/bitcoin,nanocoins/mycoin,REAP720801/bitcoin,oklink-dev/bitcoin_block,bitcoinsSG/bitcoin,JeremyRand/namecoin-core,Kangmo/bitcoin,kevin-cantwell/crunchcoin,welshjf/bitcoin,webdesignll/coin,mruddy/bitcoin,wangxinxi/litecoin,Ziftr/bitcoin,terracoin/terracoin,randy-waterhouse/bitcoin,sdaftuar/bitcoin,midnight-miner/LasVegasCoin,pinheadmz/bitcoin,alejandromgk/Lunar,Alex-van-der-Peet/bitcoin,oklink-dev/litecoin_block,Checkcoin/checkcoin,Earlz/renamedcoin,ghostlander/Feathercoin,DGCDev/argentum,dagurval/bitcoinxt,marklai9999/Taiwancoin,Litecoindark/LTCD,truthcoin/truthcoin-cpp,ardsu/bitcoin,BitcoinPOW/BitcoinPOW,mrbandrews/bitcoin,DynamicCoinOrg/DMC,Mirobit/bitcoin,zzkt/solarcoin,dcousens/bitcoin,alecalve/bitcoin,Metronotes/bitcoin,Vector2000/bitcoin,fanquake/bitcoin,Mrs-X/Darknet,wellenreiter01/Feathercoin,bitcoinec/bitcoinec,Rav3nPL/doubloons-08,thrasher-/litecoin,bitcoinplusorg/xbcwalletsource,aspanta/bitcoin,greencoin-dev/digitalcoin,cryptohelper/premine,DSPay/DSPay,Dajackal/Ronpaulcoin,brishtiteveja/truthcoin-cpp,greenaddress/bitcoin,cqtenq/feathercoin_core,zetacoin/zetacoin,thesoftwarejedi/bitcoin,ivansib/sib16,joshrabinowitz/bitcoin,sugruedes/bitcoinxt,jimmykiselak/lbrycrd,gandrewstone/bitcoinxt,lakepay/lake,Mirobit/bitcoin,biblepay/biblepay,raasakh/bardcoin.exe,argentumproject/argentum,Richcoin-Project/RichCoin,Bitcoin-ABC/bitcoin-abc,welshjf/bitcoin,ahmedbodi/vertcoin,zsulocal/bitcoin,romanornr/viacoin,barcoin-project/nothingcoin,majestrate/twister-core,krzysztofwos/BitcoinUnlimited,dobbscoin/dobbscoin-source,Climbee/artcoin,rat4/bitcoin,emc2foundation/einsteinium,reddink/reddcoin,DMDcoin/Diamond,starwels/starwels,kbccoin/kbc,emc2foundation/einsteinium,CTRoundTable/Encrypted.Cash,namecoin/namecoin-core,genavarov/lamacoin,coinkeeper/2015-06-22_18-52_viacoin,tjps/bitcoin,ahmedbodi/terracoin,lclc/bitcoin,benma/bitcoin,rdqw/sscoin,fullcoins/fullcoin,thelazier/dash,dakk/soundcoin,amaivsimau/bitcoin,GlobalBoost/GlobalBoost,Jeff88Ho/bitcoin,joulecoin/joulecoin,maraoz/proofcoin,nbenoit/bitcoin,ivansib/sibcoin,jiangyonghang/bitcoin,OfficialTitcoin/titcoin-wallet,RibbitFROG/ribbitcoin,chrisfranko/aiden,ravenbyron/phtevencoin,spiritlinxl/BTCGPU,pouta/bitcoin,core-bitcoin/bitcoin,Flurbos/Flurbo,fullcoins/fullcoin,ArgonToken/ArgonToken,MazaCoin/maza,coinkeeper/2015-06-22_18-31_bitcoin,funbucks/notbitcoinxt,svost/bitcoin,ripper234/bitcoin,gjhiggins/fuguecoin,TBoehm/greedynode,BTCDDev/bitcoin,nigeriacoin/nigeriacoin,phelixbtc/bitcoin,braydonf/bitcoin,ppcoin/ppcoin,aspanta/bitcoin,stevemyers/bitcoinxt,acid1789/bitcoin,majestrate/twister-core,truthcoin/blocksize-market,Rav3nPL/PLNcoin,millennial83/bitcoin,tedlz123/Bitcoin,IlfirinIlfirin/shavercoin,JeremyRubin/bitcoin,zetacoin/zetacoin,lateminer/bitcoin,kryptokredyt/ProjektZespolowyCoin,Justaphf/BitcoinUnlimited,amaivsimau/bitcoin,ohac/sakuracoin,PRabahy/bitcoin,neuroidss/bitcoin,Megacoin2/Megacoin,kbccoin/kbc,BlockchainTechLLC/3dcoin,ionomy/ion,Michagogo/bitcoin,karek314/bitcoin,Bitcoinsulting/bitcoinxt,braydonf/bitcoin,pstratem/elements,peercoin/peercoin,instagibbs/bitcoin,phplaboratory/psiacoin,appop/bitcoin,Diapolo/bitcoin,aspanta/bitcoin,coinkeeper/2015-06-22_18-46_razor,daveperkins-github/bitcoin-dev,deadalnix/bitcoin,pstratem/elements,compasscoin/compasscoin,awemany/BitcoinUnlimited,mm-s/bitcoin,degenorate/Deftcoin,prusnak/bitcoin,BitzenyCoreDevelopers/bitzeny,omefire/bitcoin,ColossusCoinXT/ColossusCoinXT,terracoin/terracoin,truthcoin/blocksize-market,marlengit/hardfork_prototype_1_mvf-bu,thesoftwarejedi/bitcoin,botland/bitcoin,llluiop/bitcoin,collapsedev/circlecash,hyperwang/bitcoin,miguelfreitas/twister-core,monacoinproject/monacoin,sirk390/bitcoin,Rav3nPL/polcoin,habibmasuro/bitcoinxt,fsb4000/bitcoin,syscoin/syscoin2,Erkan-Yilmaz/twister-core,morcos/bitcoin,jmcorgan/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,jeromewu/bitcoin-opennet,truthcoin/truthcoin-cpp,pelorusjack/BlockDX,myriadteam/myriadcoin,ptschip/bitcoinxt,gavinandresen/bitcoin-git,bankonmecoin/bitcoin,zestcoin/ZESTCOIN,koharjidan/litecoin,rebroad/bitcoin,Kogser/bitcoin,RHavar/bitcoin,plankton12345/litecoin,rjshaver/bitcoin,coinkeeper/2015-06-22_18-52_viacoin,coinkeeper/2015-06-22_18-51_vertcoin,Rav3nPL/bitcoin,tdudz/elements,dscotese/bitcoin,constantine001/bitcoin,TGDiamond/Diamond,shaulkf/bitcoin,czr5014iph/bitcoin4e,torresalyssa/bitcoin,FarhanHaque/bitcoin,UFOCoins/ufo,litecoin-project/bitcoinomg,coinwarp/dogecoin,genavarov/brcoin,bitjson/hivemind,CrimeaCoin/crimeacoin,kleetus/bitcoin,segwit/atbcoin-insight,benma/bitcoin,WorldcoinGlobal/WorldcoinLegacy,antonio-fr/bitcoin,llamasoft/ProtoShares_Cycle,vlajos/bitcoin,earonesty/bitcoin,amaivsimau/bitcoin,metacoin/florincoin,credits-currency/credits,scmorse/bitcoin,Jeff88Ho/bitcoin,21E14/bitcoin,privatecoin/privatecoin,Kixunil/keynescoin,jtimon/bitcoin,okinc/bitcoin,mooncoin-project/mooncoin-landann,bitcoinknots/bitcoin,starwalkerz/fincoin-fork,Bushstar/UFO-Project,40thoughts/Coin-QualCoin,Kixunil/keynescoin,coinwarp/dogecoin,monacoinproject/monacoin,sarielsaz/sarielsaz,s-matthew-english/bitcoin,Michagogo/bitcoin,senadmd/coinmarketwatch,borgcoin/Borgcoin1,domob1812/bitcoin,FrictionlessCoin/iXcoin,lateminer/bitcoin,dpayne9000/Rubixz-Coin,gazbert/bitcoin,sdaftuar/bitcoin,millennial83/bitcoin,GlobalBoost/GlobalBoost,Dajackal/Ronpaulcoin,tensaix2j/bananacoin,capitalDIGI/litecoin,howardrya/AcademicCoin,HeliumGas/helium,KillerByte/memorypool,Bitcoin-ABC/bitcoin-abc,coinkeeper/2015-06-22_18-46_razor,coinkeeper/2015-06-22_18-36_darkcoin,REAP720801/bitcoin,dobbscoin/dobbscoin-source,Rav3nPL/doubloons-0.10,dev1972/Satellitecoin,andreaskern/bitcoin,faircoin/faircoin,itmanagerro/tresting,Cancercoin/Cancercoin,syscoin/syscoin,qtumproject/qtum,vtafaucet/virtacoin,megacoin/megacoin,blocktrail/bitcoin,sipa/bitcoin,mikehearn/bitcoinxt,enlighter/Feathercoin,brishtiteveja/sherlockcoin,bitshares/bitshares-pts,segwit/atbcoin-insight,brishtiteveja/sherlockcoin,RyanLucchese/energi,CodeShark/bitcoin,micryon/GPUcoin,erqan/twister-core,martindale/elements,truthcoin/blocksize-market,pastday/bitcoinproject,keisercoin-official/keisercoin,greencoin-dev/greencoin-dev,nanocoins/mycoin,projectinterzone/ITZ,MarcoFalke/bitcoin,netswift/vertcoin,DigitalPandacoin/pandacoin,kallewoof/elements,okinc/bitcoin,DigitalPandacoin/pandacoin,wcwu/bitcoin,reddink/reddcoin,benosa/bitcoin,plankton12345/litecoin,ajtowns/bitcoin,UdjinM6/dash,Richcoin-Project/RichCoin,OfficialTitcoin/titcoin-wallet,DynamicCoinOrg/DMC,Megacoin2/Megacoin,wederw/bitcoin,inkvisit/sarmacoins,myriadteam/myriadcoin,kbccoin/kbc,Bluejudy/worldcoin,riecoin/riecoin,xieta/mincoin,FarhanHaque/bitcoin,gjhiggins/vcoincore,zottejos/merelcoin,Vsync-project/Vsync,reddink/reddcoin,bcpki/nonce2testblocks,misdess/bitcoin,lbrtcoin/albertcoin,acid1789/bitcoin,segsignal/bitcoin,Mrs-X/PIVX,NunoEdgarGub1/elements,elliotolds/bitcoin,richo/dongcoin,shapiroisme/datadollar,Mrs-X/PIVX,domob1812/i0coin,biblepay/biblepay,marlengit/hardfork_prototype_1_mvf-bu,bitcoin-hivemind/hivemind,pastday/bitcoinproject,benosa/bitcoin,franko-org/franko,vericoin/vericoin-core,braydonf/bitcoin,tripmode/pxlcoin,DGCDev/argentum,accraze/bitcoin,bespike/litecoin,senadmd/coinmarketwatch,fsb4000/bitcoin,unsystemizer/bitcoin,knolza/gamblr,Exgibichi/statusquo,nigeriacoin/nigeriacoin,CoinProjects/AmsterdamCoin-v4,awemany/BitcoinUnlimited,royosherove/bitcoinxt,mm-s/bitcoin,AdrianaDinca/bitcoin,bitcoinclassic/bitcoinclassic,reddink/reddcoin,gwillen/elements,accraze/bitcoin,omefire/bitcoin,jtimon/elements,icook/vertcoin,diggcoin/diggcoin,applecoin-official/applecoin,daliwangi/bitcoin,mruddy/bitcoin,CarpeDiemCoin/CarpeDiemLaunch,ashleyholman/bitcoin,jimblasko/UnbreakableCoin-master,coinkeeper/2015-06-22_19-19_worldcoin,FarhanHaque/bitcoin,nbenoit/bitcoin,roques/bitcoin,segwit/atbcoin-insight,ryanxcharles/bitcoin,EntropyFactory/creativechain-core,fussl/elements,donaloconnor/bitcoin,npccoin/npccoin,elecoin/elecoin,GreenParhelia/bitcoin,gjhiggins/vcoin09,langerhans/dogecoin,tjps/bitcoin,laudaa/bitcoin,REAP720801/bitcoin,faircoin/faircoin,maaku/bitcoin,peercoin/peercoin,cyrixhero/bitcoin,iQcoin/iQcoin,jimblasko/2015_UNB_Wallets,kfitzgerald/titcoin,dscotese/bitcoin,MitchellMintCoins/MortgageCoin,fedoracoin-dev/fedoracoin,argentumproject/argentum,shouhuas/bitcoin,BTCTaras/bitcoin,bmp02050/ReddcoinUpdates,brandonrobertz/namecoin-core,cryptcoins/cryptcoin,UFOCoins/ufo,sipsorcery/bitcoin,prusnak/bitcoin,KnCMiner/bitcoin,CodeShark/bitcoin,mycointest/owncoin,ardsu/bitcoin,btcdrak/bitcoin,ShadowMyst/creativechain-core,collapsedev/cashwatt,projectinterzone/ITZ,jlopp/statoshi,qreatora/worldcoin-v0.8,marcusdiaz/BitcoinUnlimited,Theshadow4all/ShadowCoin,apoelstra/bitcoin,cheehieu/bitcoin,borgcoin/Borgcoin1,oklink-dev/bitcoin,cryptocoins4all/zcoin,cdecker/bitcoin,untrustbank/litecoin,genavarov/ladacoin,richo/dongcoin,Bitcoin-com/BUcash,BitcoinPOW/BitcoinPOW,cryptoprojects/ultimateonlinecash,Bitcoin-com/BUcash,kbccoin/kbc,gandrewstone/bitcoinxt,OfficialTitcoin/titcoin-wallet,zander/bitcoinclassic,webdesignll/coin,viacoin/viacoin,royosherove/bitcoinxt,Adaryian/E-Currency,ivansib/sibcoin,npccoin/npccoin,acid1789/bitcoin,zemrys/vertcoin,r8921039/bitcoin,tdudz/elements,themusicgod1/bitcoin,cculianu/bitcoin-abc,arnuschky/bitcoin,simdeveloper/bitcoin,pascalguru/florincoin,sebrandon1/bitcoin,digibyte/digibyte,stamhe/litecoin,Chancoin-core/CHANCOIN,tecnovert/particl-core,lbryio/lbrycrd,torresalyssa/bitcoin,mincoin-project/mincoin,tecnovert/particl-core,gandrewstone/bitcoinxt,dobbscoin/dobbscoin-source,earonesty/bitcoin,ShadowMyst/creativechain-core,pataquets/namecoin-core,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,hsavit1/bitcoin,zotherstupidguy/bitcoin,RibbitFROG/ribbitcoin,rebroad/bitcoin,coinkeeper/2015-06-22_18-30_anoncoin,x-kalux/bitcoin_WiG-B,jameshilliard/bitcoin,isle2983/bitcoin,myriadcoin/myriadcoin,StarbuckBG/BTCGPU,DSPay/DSPay,wekuiz/wekoin,josephbisch/namecoin-core,oklink-dev/bitcoin_block,bitcoinknots/bitcoin,cryptoprojects/ultimateonlinecash,RyanLucchese/energi,lbrtcoin/albertcoin,schinzelh/dash,Bitcoin-ABC/bitcoin-abc,thelazier/dash,nailtaras/nailcoin,therealaltcoin/altcoin,ajtowns/bitcoin,Jeff88Ho/bitcoin,wangliu/bitcoin,cculianu/bitcoin-abc,GwangJin/gwangmoney-core,goldmidas/goldmidas,XertroV/bitcoin-nulldata,error10/bitcoin,BitcoinUnlimited/BitcoinUnlimited,GlobalBoost/GlobalBoost,MonetaryUnit/MUE-Src,dexX7/bitcoin,wcwu/bitcoin,achow101/bitcoin,BlockchainTechLLC/3dcoin,bcpki/testblocks,whatrye/twister-core,coinwarp/dogecoin,dashpay/dash,Vsync-project/Vsync,sipa/bitcoin,petertodd/bitcoin,UASF/bitcoin,gandrewstone/BitcoinUnlimited,capitalDIGI/DIGI-v-0-10-4,willwray/dash,hasanatkazmi/bitcoin,cotner/bitcoin,Cocosoft/bitcoin,aniemerg/zcash,Ziftr/bitcoin,FeatherCoin/Feathercoin,cryptocoins4all/zcoin,worldcoinproject/worldcoin-v0.8,reorder/viacoin,brettwittam/geocoin,wederw/bitcoin,prusnak/bitcoin,dannyperez/bolivarcoin,Kixunil/keynescoin,rsdevgun16e/energi,aspirecoin/aspire,MikeAmy/bitcoin,Petr-Economissa/gvidon,micryon/GPUcoin,GroestlCoin/bitcoin,AkioNak/bitcoin,capitalDIGI/litecoin,mb300sd/bitcoin,koharjidan/litecoin,habibmasuro/bitcoin,adpg211/bitcoin-master,IlfirinCano/shavercoin,superjudge/bitcoin,cryptcoins/cryptcoin,jonasnick/bitcoin,FeatherCoin/Feathercoin,RibbitFROG/ribbitcoin,gjhiggins/vcoin0.8zeta-dev,cryptcoins/cryptcoin,Flowdalic/bitcoin,afk11/bitcoin,fanquake/bitcoin,okinc/bitcoin,habibmasuro/bitcoinxt,gjhiggins/vcoin0.8zeta-dev,janko33bd/bitcoin,nmarley/dash,zetacoin/zetacoin,lclc/bitcoin,coinkeeper/2015-06-22_18-31_bitcoin,megacoin/megacoin,thesoftwarejedi/bitcoin,Bluejudy/worldcoin,bdelzell/creditcoin-org-creditcoin,nikkitan/bitcoin,mammix2/ccoin-dev,mrtexaznl/mediterraneancoin,ClusterCoin/ClusterCoin,brishtiteveja/truthcoin-cpp,isghe/bitcoinxt,mockcoin/mockcoin,MonetaryUnit/MUE-Src,111t8e/bitcoin,josephbisch/namecoin-core,world-bank/unpay-core,svost/bitcoin,Kcoin-project/kcoin,gwangjin2/gwangcoin-core,Xekyo/bitcoin,barcoin-project/nothingcoin,h4x3rotab/BTCGPU,mycointest/owncoin,shouhuas/bitcoin,namecoin/namecore,genavarov/ladacoin,antcheck/antcoin,peerdb/cors,bitjson/hivemind,pstratem/elements,Vector2000/bitcoin,Kogser/bitcoin,ardsu/bitcoin,irvingruan/bitcoin,parvez3019/bitcoin,prark/bitcoinxt,reorder/viacoin,Rav3nPL/polcoin,ediston/energi,argentumproject/argentum,jrmithdobbs/bitcoin,manuel-zulian/accumunet,coinkeeper/2015-06-22_18-39_feathercoin,Theshadow4all/ShadowCoin,saydulk/Feathercoin,cybermatatu/bitcoin,constantine001/bitcoin,chaincoin/chaincoin,qubitcoin-project/QubitCoinQ2C,botland/bitcoin,core-bitcoin/bitcoin,cheehieu/bitcoin,renatolage/wallets-BRCoin,CryptArc/bitcoinxt,josephbisch/namecoin-core,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,s-matthew-english/bitcoin,error10/bitcoin,reorder/viacoin,daveperkins-github/bitcoin-dev,dagurval/bitcoinxt,applecoin-official/applecoin,ripper234/bitcoin,ediston/energi,jmcorgan/bitcoin,ivansib/sibcoin,karek314/bitcoin,metacoin/florincoin,worldcoinproject/worldcoin-v0.8,oleganza/bitcoin-duo,AllanDoensen/BitcoinUnlimited,bitcoin-hivemind/hivemind,TrainMAnB/vcoincore,greencoin-dev/greencoin-dev,daveperkins-github/bitcoin-dev,shurcoin/shurcoin,diggcoin/diggcoin,GIJensen/bitcoin,myriadteam/myriadcoin,domob1812/bitcoin,ravenbyron/phtevencoin,bespike/litecoin,ElementsProject/elements,zcoinofficial/zcoin,kevcooper/bitcoin,ptschip/bitcoin,gameunits/gameunits,gjhiggins/vcoin09,pstratem/elements,jiffe/cosinecoin,arruah/ensocoin,mikehearn/bitcoin,djpnewton/bitcoin,untrustbank/litecoin,GlobalBoost/GlobalBoost,ashleyholman/bitcoin,zixan/bitcoin,projectinterzone/ITZ,keesdewit82/LasVegasCoin,vertcoin/vertcoin,KaSt/equikoin,denverl/bitcoin,BTCGPU/BTCGPU,BitcoinHardfork/bitcoin,tdudz/elements,HashUnlimited/Einsteinium-Unlimited,dan-mi-sun/bitcoin,domob1812/huntercore,xuyangcn/opalcoin,droark/bitcoin,stevemyers/bitcoinxt,cotner/bitcoin,Thracky/monkeycoin,theuni/bitcoin,kallewoof/bitcoin,1185/starwels,octocoin-project/octocoin,gandrewstone/BitcoinUnlimited,bitcoinsSG/bitcoin,pataquets/namecoin-core,barcoin-project/nothingcoin,bitcoinsSG/bitcoin,ZiftrCOIN/ziftrcoin,donaloconnor/bitcoin,digideskio/namecoin,p2peace/oliver-twister-core,xawksow/GroestlCoin,brandonrobertz/namecoin-core,dgenr8/bitcoinxt,karek314/bitcoin,oklink-dev/bitcoin,sarielsaz/sarielsaz,skaht/bitcoin,dscotese/bitcoin,MarcoFalke/bitcoin,stamhe/litecoin,faircoin/faircoin,achow101/bitcoin,bitpay/bitcoin,puticcoin/putic,dexX7/bitcoin,Kogser/bitcoin,cryptocoins4all/zcoin,chrisfranko/aiden,drwasho/bitcoinxt,jiangyonghang/bitcoin,cryptohelper/premine,droark/bitcoin,monacoinproject/monacoin,yenliangl/bitcoin,Adaryian/E-Currency,ftrader-bitcoinabc/bitcoin-abc,btc1/bitcoin,PRabahy/bitcoin,jtimon/elements,terracoin/terracoin,thelazier/dash,tuaris/bitcoin,petertodd/bitcoin,xurantju/bitcoin,mitchellcash/bitcoin,Diapolo/bitcoin,p2peace/oliver-twister-core,jonghyeopkim/bitcoinxt,untrustbank/litecoin,isle2983/bitcoin,morcos/bitcoin,Ziftr/litecoin,faircoin/faircoin2,sbaks0820/bitcoin,CodeShark/bitcoin,achow101/bitcoin,marlengit/BitcoinUnlimited,Jcing95/iop-hd,steakknife/bitcoin-qt,Rav3nPL/bitcoin,domob1812/namecore,czr5014iph/bitcoin4e,osuyuushi/laughingmancoin,jiangyonghang/bitcoin,bitjson/hivemind,ionux/freicoin,netswift/vertcoin,Enticed87/Decipher,mobicoins/mobicoin-core,supcoin/supcoin,bcpki/testblocks,afk11/bitcoin,wekuiz/wekoin,ingresscoin/ingresscoin,brightcoin/brightcoin,arnuschky/bitcoin,bitcoinplusorg/xbcwalletsource,djpnewton/bitcoin,atgreen/bitcoin,majestrate/twister-core,vcoin-project/vcoincore,Rav3nPL/polcoin,namecoin/namecoin-core,coinkeeper/2015-06-22_19-19_worldcoin,BTCGPU/BTCGPU,nvmd/bitcoin,Alex-van-der-Peet/bitcoin,Flowdalic/bitcoin,ptschip/bitcoin,MazaCoin/maza,Darknet-Crypto/Darknet,bitpay/bitcoin,lakepay/lake,schildbach/bitcoin,crowning2/dash,SocialCryptoCoin/SocialCoin,anditto/bitcoin,digideskio/namecoin,oklink-dev/bitcoin_block,peercoin/peercoin,isle2983/bitcoin,goku1997/bitcoin,deeponion/deeponion,shaulkf/bitcoin,zetacoin/zetacoin,RazorLove/cloaked-octo-spice,ericshawlinux/bitcoin,hyperwang/bitcoin,butterflypay/bitcoin,bitjson/hivemind,jrick/bitcoin,vtafaucet/virtacoin,AkioNak/bitcoin,cdecker/bitcoin,sifcoin/sifcoin,MeshCollider/bitcoin,compasscoin/compasscoin,GroestlCoin/bitcoin,majestrate/twister-core,my-first/octocoin,ionomy/ion,bespike/litecoin,shaolinfry/litecoin,Carrsy/PoundCoin,Kogser/bitcoin,tjps/bitcoin,11755033isaprimenumber/Feathercoin,morcos/bitcoin,mapineda/litecoin,Petr-Economissa/gvidon,Lucky7Studio/bitcoin,diggcoin/diggcoin,butterflypay/bitcoin,40thoughts/Coin-QualCoin,sipsorcery/bitcoin,morcos/bitcoin,kevin-cantwell/crunchcoin,bitshares/bitshares-pts,MasterX1582/bitcoin-becoin,chaincoin/chaincoin,Metronotes/bitcoin,worldbit/worldbit,erqan/twister-core,greenaddress/bitcoin,earonesty/bitcoin,arnuschky/bitcoin,Vector2000/bitcoin,BTCGPU/BTCGPU,metrocoins/metrocoin,goldcoin/goldcoin,dscotese/bitcoin,guncoin/guncoin,keo/bitcoin,Rav3nPL/polcoin,loxal/zcash,sirk390/bitcoin,tedlz123/Bitcoin,denverl/bitcoin,LIMXTEC/DMDv3,Petr-Economissa/gvidon,Exceltior/dogecoin,coinkeeper/2015-06-22_19-00_ziftrcoin,hasanatkazmi/bitcoin,peerdb/cors,coinkeeper/2015-06-22_19-13_florincoin,qubitcoin-project/QubitCoinQ2C,BTCfork/hardfork_prototype_1_mvf-core,funkshelper/woodcore,metacoin/florincoin,bitbrazilcoin-project/bitbrazilcoin,rnicoll/dogecoin,stamhe/bitcoin,monacoinproject/monacoin,prusnak/bitcoin,phelix/bitcoin,octocoin-project/octocoin,48thct2jtnf/P,destenson/bitcoin--bitcoin,DSPay/DSPay,gcc64/bitcoin,h4x3rotab/BTCGPU,Christewart/bitcoin,tjth/lotterycoin,experiencecoin/experiencecoin,djpnewton/bitcoin,ticclassic/ic,aciddude/Feathercoin,untrustbank/litecoin,48thct2jtnf/P,superjudge/bitcoin,BitcoinPOW/BitcoinPOW,dgarage/bc2,jamesob/bitcoin,jl2012/litecoin,BTCDDev/bitcoin,litecoin-project/litecore-litecoin,elecoin/elecoin,balajinandhu/bitcoin,vmp32k/litecoin,ohac/sakuracoin,GreenParhelia/bitcoin,Jeff88Ho/bitcoin,whatrye/twister-core,Mrs-X/Darknet,ghostlander/Feathercoin,steakknife/bitcoin-qt,tripmode/pxlcoin,senadmd/coinmarketwatch,Electronic-Gulden-Foundation/egulden,ionux/freicoin,jamesob/bitcoin,Alonzo-Coeus/bitcoin,dobbscoin/dobbscoin-source,nmarley/dash,ekankyesme/bitcoinxt,apoelstra/elements,alexandrcoin/vertcoin,nathaniel-mahieu/bitcoin,SartoNess/BitcoinUnlimited,coinkeeper/anoncoin_20150330_fixes,jimblasko/2015_UNB_Wallets,apoelstra/bitcoin,goldcoin/Goldcoin-GLD,JeremyRubin/bitcoin,RyanLucchese/energi,mycointest/owncoin,DynamicCoinOrg/DMC,truthcoin/truthcoin-cpp,gandrewstone/BitcoinUnlimited,axelxod/braincoin,ohac/sha1coin,TheBlueMatt/bitcoin,joulecoin/joulecoin,kleetus/bitcoin,particl/particl-core,marlengit/BitcoinUnlimited,gazbert/bitcoin,NateBrune/bitcoin-fio,rnicoll/bitcoin,bitcoinec/bitcoinec,parvez3019/bitcoin,wiggi/huntercore,bitcoinsSG/zcash,shomeser/bitcoin,pstratem/bitcoin,Alonzo-Coeus/bitcoin,Enticed87/Decipher,MitchellMintCoins/AutoCoin,KibiCoin/kibicoin,ixcoinofficialpage/master,ripper234/bitcoin,gazbert/bitcoin,safecoin/safecoin,capitalDIGI/litecoin,scippio/bitcoin,KnCMiner/bitcoin,guncoin/guncoin,Tetcoin/tetcoin,hasanatkazmi/bitcoin,nomnombtc/bitcoin,accraze/bitcoin,dpayne9000/Rubixz-Coin,neutrinofoundation/neutrino-digital-currency,faircoin/faircoin,StarbuckBG/BTCGPU,nightlydash/darkcoin,ohac/sha1coin,brightcoin/brightcoin,ANCompany/birdcoin-dev,funbucks/notbitcoinxt,particl/particl-core,litecoin-project/litecoin,kleetus/bitcoinxt,rnicoll/dogecoin,trippysalmon/bitcoin,HeliumGas/helium,shomeser/bitcoin,DSPay/DSPay,dgenr8/bitcoin,randy-waterhouse/bitcoin,united-scrypt-coin-project/unitedscryptcoin,MitchellMintCoins/MortgageCoin,Dinarcoin/dinarcoin,mikehearn/bitcoin,pinkevich/dash,jimblasko/UnbreakableCoin-master,WorldcoinGlobal/WorldcoinLegacy,BTCfork/hardfork_prototype_1_mvf-bu,KnCMiner/bitcoin,wcwu/bitcoin,alecalve/bitcoin,GroundRod/anoncoin,trippysalmon/bitcoin,Tetcoin/tetcoin,Theshadow4all/ShadowCoin,RHavar/bitcoin,maaku/bitcoin,haobtc/bitcoin,HeliumGas/helium,vcoin-project/vcoin0.8zeta-dev,s-matthew-english/bitcoin,whatrye/twister-core,FrictionlessCoin/iXcoin,TeamBitBean/bitcoin-core,dan-mi-sun/bitcoin,jnewbery/bitcoin,earonesty/bitcoin,jl2012/litecoin,starwels/starwels,ronpaulcoin/ronpaulcoin,hophacker/bitcoin_malleability,PIVX-Project/PIVX,mrbandrews/bitcoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,megacoin/megacoin,viacoin/viacoin,prusnak/bitcoin,BitcoinPOW/BitcoinPOW,argentumproject/argentum,lakepay/lake,coinkeeper/2015-06-22_19-19_worldcoin,pdrobek/Polcoin-1-3,dscotese/bitcoin,jrick/bitcoin,mammix2/ccoin-dev,reorder/viacoin,TierNolan/bitcoin,franko-org/franko,borgcoin/Borgcoin.rar,compasscoin/compasscoin,ivansib/sibcoin,worldbit/worldbit,Exgibichi/statusquo,cyrixhero/bitcoin,JeremyRand/namecoin-core,error10/bitcoin,blood2/bloodcoin-0.9,vtafaucet/virtacoin,Sjors/bitcoin,wiggi/huntercore,jrmithdobbs/bitcoin,TeamBitBean/bitcoin-core,dagurval/bitcoinxt,coinkeeper/2015-06-22_18-46_razor,syscoin/syscoin2,Erkan-Yilmaz/twister-core,xawksow/GroestlCoin,Dajackal/Ronpaulcoin,spiritlinxl/BTCGPU,xurantju/bitcoin,NateBrune/bitcoin-fio,isghe/bitcoinxt,bitcoinec/bitcoinec,FeatherCoin/Feathercoin,Alex-van-der-Peet/bitcoin,sickpig/BitcoinUnlimited,elliotolds/bitcoin,alejandromgk/Lunar,haobtc/bitcoin,midnight-miner/LasVegasCoin,cqtenq/Feathercoin,kazcw/bitcoin,Christewart/bitcoin,DSPay/DSPay,NicolasDorier/bitcoin,coinkeeper/2015-06-22_18-30_anoncoin,kseistrup/twister-core,cheehieu/bitcoin,namecoin/namecore,dperel/bitcoin,RazorLove/cloaked-octo-spice,111t8e/bitcoin,marcusdiaz/BitcoinUnlimited,Bitcoin-ABC/bitcoin-abc,11755033isaprimenumber/Feathercoin,phelix/bitcoin,se3000/bitcoin,Metronotes/bitcoin,dpayne9000/Rubixz-Coin,Bluejudy/worldcoin,superjudge/bitcoin,MitchellMintCoins/MortgageCoin,Thracky/monkeycoin,n1bor/bitcoin,genavarov/brcoin,Earlz/dobbscoin-source,btcdrak/bitcoin,barcoin-project/nothingcoin,zottejos/merelcoin,constantine001/bitcoin,marklai9999/Taiwancoin,Bitcoinsulting/bitcoinxt,PIVX-Project/PIVX,Bluejudy/worldcoin,appop/bitcoin,multicoins/marycoin,hyperwang/bitcoin,Exgibichi/statusquo,united-scrypt-coin-project/unitedscryptcoin,aburan28/elements,marlengit/BitcoinUnlimited,miguelfreitas/twister-core,steakknife/bitcoin-qt,lclc/bitcoin,Michagogo/bitcoin,Bitcoinsulting/bitcoinxt,constantine001/bitcoin,deeponion/deeponion,pastday/bitcoinproject,ftrader-bitcoinabc/bitcoin-abc,hasanatkazmi/bitcoin,Megacoin2/Megacoin,nsacoin/nsacoin,Horrorcoin/horrorcoin,DigiByte-Team/digibyte,OstlerDev/florincoin,zsulocal/bitcoin,TripleSpeeder/bitcoin,thrasher-/litecoin,leofidus/glowing-octo-ironman,jmcorgan/bitcoin,jimmykiselak/lbrycrd,arruah/ensocoin,whatrye/twister-core,cerebrus29301/crowncoin,jarymoth/dogecoin,Checkcoin/checkcoin,oklink-dev/litecoin_block,sugruedes/bitcoinxt,Rav3nPL/bitcoin,1185/starwels,gandrewstone/bitcoinxt,ahmedbodi/vertcoin,dakk/soundcoin,tropa/axecoin,NicolasDorier/bitcoin,Bitcoin-ABC/bitcoin-abc,dexX7/bitcoin,REAP720801/bitcoin,stamhe/bitcoin,ahmedbodi/temp_vert,dgenr8/bitcoin,unsystemizer/bitcoin,Cocosoft/bitcoin,millennial83/bitcoin,CodeShark/bitcoin,vbernabe/freicoin,earonesty/bitcoin,DGCDev/digitalcoin,uphold/bitcoin,droark/elements,rromanchuk/bitcoinxt,goku1997/bitcoin,bcpki/testblocks,Rav3nPL/doubloons-08,capitalDIGI/DIGI-v-0-10-4,1185/starwels,sstone/bitcoin,supcoin/supcoin,zixan/bitcoin,ddombrowsky/radioshares,IlfirinCano/shavercoin,mastercoin-MSC/mastercore,CryptArc/bitcoin,jaromil/faircoin2,blood2/bloodcoin-0.9,litecoin-project/litecore-litecoin,royosherove/bitcoinxt,willwray/dash,trippysalmon/bitcoin,sipa/elements,bitcoin-hivemind/hivemind,cheehieu/bitcoin,starwalkerz/fincoin-fork,rromanchuk/bitcoinxt,Anfauglith/iop-hd,funkshelper/woodcore,rustyrussell/bitcoin,coinkeeper/2015-06-22_18-51_vertcoin,glv2/peerunity,imharrywu/fastcoin,PandaPayProject/PandaPay,biblepay/biblepay,therealaltcoin/altcoin,afk11/bitcoin,miguelfreitas/twister-core,goku1997/bitcoin,marlengit/hardfork_prototype_1_mvf-bu,haraldh/bitcoin,adpg211/bitcoin-master,dexX7/bitcoin,jrick/bitcoin,experiencecoin/experiencecoin,RongxinZhang/bitcoinxt,fujicoin/fujicoin,core-bitcoin/bitcoin,Gazer022/bitcoin,5mil/Tradecoin,genavarov/ladacoin,sickpig/BitcoinUnlimited,terracoin/terracoin,renatolage/wallets-BRCoin,wekuiz/wekoin,sugruedes/bitcoinxt,grumpydevelop/singularity,Bitcoin-ABC/bitcoin-abc,privatecoin/privatecoin,instagibbs/bitcoin,Christewart/bitcoin,jimmysong/bitcoin,reddcoin-project/reddcoin,bitpagar/bitpagar,presstab/PIVX,btcdrak/bitcoin,janko33bd/bitcoin,myriadcoin/myriadcoin,nightlydash/darkcoin,crowning-/dash,jrmithdobbs/bitcoin,BTCTaras/bitcoin,rjshaver/bitcoin,jonasnick/bitcoin,ryanxcharles/bitcoin,gravio-net/graviocoin,midnightmagic/bitcoin,se3000/bitcoin,Petr-Economissa/gvidon,ghostlander/Feathercoin,qtumproject/qtum,mm-s/bitcoin,fedoracoin-dev/fedoracoin,biblepay/biblepay,TheBlueMatt/bitcoin,cerebrus29301/crowncoin,shouhuas/bitcoin,uphold/bitcoin,nlgcoin/guldencoin-official,cculianu/bitcoin-abc,litecoin-project/bitcoinomg,11755033isaprimenumber/Feathercoin,neutrinofoundation/neutrino-digital-currency,Thracky/monkeycoin,emc2foundation/einsteinium,TBoehm/greedynode,matlongsi/micropay,dannyperez/bolivarcoin,qtumproject/qtum,dannyperez/bolivarcoin,TeamBitBean/bitcoin-core,meighti/bitcoin,coinkeeper/2015-06-22_19-00_ziftrcoin,zestcoin/ZESTCOIN,UFOCoins/ufo,vlajos/bitcoin,zsulocal/bitcoin,neutrinofoundation/neutrino-digital-currency,Erkan-Yilmaz/twister-core,matlongsi/micropay,daliwangi/bitcoin,cculianu/bitcoin-abc,gandrewstone/BitcoinUnlimited,OmniLayer/omnicore,joulecoin/joulecoin,Krellan/bitcoin,Chancoin-core/CHANCOIN,raasakh/bardcoin.exe,omefire/bitcoin,dexX7/mastercore,koharjidan/dogecoin,totallylegitbiz/totallylegitcoin,Darknet-Crypto/Darknet,spiritlinxl/BTCGPU,Lucky7Studio/bitcoin,elecoin/elecoin,DogTagRecon/Still-Leraning,JeremyRubin/bitcoin,Lucky7Studio/bitcoin,starwalkerz/fincoin-fork,neuroidss/bitcoin,jeromewu/bitcoin-opennet,bitcoin-hivemind/hivemind,gameunits/gameunits,majestrate/twister-core,xieta/mincoin,DigiByte-Team/digibyte,Exgibichi/statusquo,GroestlCoin/bitcoin,ahmedbodi/terracoin,dogecoin/dogecoin,midnightmagic/bitcoin,ivansib/sib16,jiangyonghang/bitcoin,bitshares/bitshares-pts,shelvenzhou/BTCGPU,domob1812/i0coin,jambolo/bitcoin,lbrtcoin/albertcoin,dmrtsvetkov/flowercoin,Har01d/bitcoin,CryptArc/bitcoinxt,manuel-zulian/accumunet,NateBrune/bitcoin-nate,uphold/bitcoin,zetacoin/zetacoin,NateBrune/bitcoin-fio,jnewbery/bitcoin,lbrtcoin/albertcoin,KillerByte/memorypool,goku1997/bitcoin,cinnamoncoin/Feathercoin,digibyte/digibyte,simdeveloper/bitcoin,theuni/bitcoin,cdecker/bitcoin,ahmedbodi/terracoin,haraldh/bitcoin,gjhiggins/vcoin09,Kore-Core/kore,dashpay/dash,millennial83/bitcoin,kallewoof/bitcoin,Flowdalic/bitcoin,BenjaminsCrypto/Benjamins-1,anditto/bitcoin,cryptohelper/premine,thelazier/dash,MitchellMintCoins/AutoCoin,cqtenq/Feathercoin,midnightmagic/bitcoin,bankonmecoin/bitcoin,plankton12345/litecoin,KaSt/equikoin,syscoin/syscoin,DynamicCoinOrg/DMC,antcheck/antcoin,isocolsky/bitcoinxt,bitcoinxt/bitcoinxt,thrasher-/litecoin,shaolinfry/litecoin,bitcoinsSG/zcash,borgcoin/Borgcoin1,vertcoin/eyeglass,bcpki/nonce2 |
a992328e40dcb0965270eb7609eae693e832e427 | tests/regression/11-heap/12-calloc.c | tests/regression/11-heap/12-calloc.c | // PARAM: --set ana.malloc.unique_address_count 1
#include<assert.h>
#include<stdlib.h>
int main() {
int* arr = calloc(5,sizeof(int));
arr[0] = 3;
assert(arr[2] == 0); //UNKNOWN
}
| Add example for unsoundness for calloc | Add example for unsoundness for calloc
| C | mit | goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer |
|
0687192cb8e4a5e89cddc0c8c7c49acf6d604cf7 | UsbDk/RedirectorStrategy.h | UsbDk/RedirectorStrategy.h | #pragma once
#include "FilterStrategy.h"
class CUsbDkRedirectorStrategy : public CUsbDkFilterStrategy
{
public:
virtual NTSTATUS Create(CUsbDkFilterDevice *Owner) override
{ return CUsbDkFilterStrategy::Create(Owner); }
virtual void Delete() override
{}
virtual NTSTATUS MakeAvailable() override;
virtual NTSTATUS PNPPreProcess(PIRP Irp) override;
private:
static void PatchDeviceID(PIRP Irp);
};
| #pragma once
#include "FilterStrategy.h"
class CUsbDkRedirectorStrategy : public CUsbDkFilterStrategy
{
public:
virtual NTSTATUS MakeAvailable() override;
virtual NTSTATUS PNPPreProcess(PIRP Irp) override;
private:
static void PatchDeviceID(PIRP Irp);
};
| Drop uneeded members of redirector strategy | UsbDk: Drop uneeded members of redirector strategy
Signed-off-by: Pavel Gurvich <[email protected]>
Signed-off-by: Dmitry Fleytman <[email protected]>
| C | apache-2.0 | SPICE/win32-usbdk,freedesktop-unofficial-mirror/spice__win32__usbdk,daynix/UsbDk,freedesktop-unofficial-mirror/spice__win32__usbdk,daynix/UsbDk,freedesktop-unofficial-mirror/spice__win32__usbdk,SPICE/win32-usbdk |
41de829555f2a17fddd0acae5307bb169be40897 | test/ClangModules/MixedSource/Inputs/mixed-framework/Mixed.framework/Headers/Mixed.h | test/ClangModules/MixedSource/Inputs/mixed-framework/Mixed.framework/Headers/Mixed.h | struct PureClangType {
int x;
int y;
};
#ifndef SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_EXTRA
#endif
#ifndef SWIFT_CLASS(SWIFT_NAME)
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_CLASS_EXTRA
#endif
SWIFT_CLASS("SwiftClass")
__attribute__((objc_root_class))
@interface SwiftClass
@end
@interface SwiftClass (Category)
- (void)categoryMethod:(struct PureClangType)arg;
@end
SWIFT_CLASS("BOGUS")
@interface BogusClass
@end
| struct PureClangType {
int x;
int y;
};
#ifndef SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_EXTRA
#endif
#ifndef SWIFT_CLASS
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_CLASS_EXTRA
#endif
SWIFT_CLASS("SwiftClass")
__attribute__((objc_root_class))
@interface SwiftClass
@end
@interface SwiftClass (Category)
- (void)categoryMethod:(struct PureClangType)arg;
@end
SWIFT_CLASS("BOGUS")
@interface BogusClass
@end
| Remove useless tokens at the end of a preprocessor directive | Remove useless tokens at the end of a preprocessor directive
Swift SVN r24386
| C | apache-2.0 | austinzheng/swift,slavapestov/swift,devincoughlin/swift,khizkhiz/swift,parkera/swift,Ivacker/swift,huonw/swift,JGiola/swift,khizkhiz/swift,dduan/swift,brentdax/swift,kperryua/swift,harlanhaskins/swift,emilstahl/swift,hughbe/swift,uasys/swift,codestergit/swift,felix91gr/swift,huonw/swift,adrfer/swift,shajrawi/swift,KrishMunot/swift,tardieu/swift,tardieu/swift,russbishop/swift,parkera/swift,dduan/swift,danielmartin/swift,rudkx/swift,nathawes/swift,airspeedswift/swift,sschiau/swift,frootloops/swift,JaSpa/swift,swiftix/swift.old,alblue/swift,sdulal/swift,apple/swift,calebd/swift,jopamer/swift,therealbnut/swift,shajrawi/swift,sdulal/swift,SwiftAndroid/swift,ken0nek/swift,ken0nek/swift,ahoppen/swift,gribozavr/swift,apple/swift,lorentey/swift,KrishMunot/swift,johnno1962d/swift,swiftix/swift.old,mightydeveloper/swift,kusl/swift,jopamer/swift,Ivacker/swift,cbrentharris/swift,austinzheng/swift,natecook1000/swift,gottesmm/swift,hooman/swift,brentdax/swift,swiftix/swift,CodaFi/swift,benlangmuir/swift,kentya6/swift,gregomni/swift,deyton/swift,xwu/swift,atrick/swift,jtbandes/swift,harlanhaskins/swift,alblue/swift,Jnosh/swift,deyton/swift,gmilos/swift,arvedviehweger/swift,benlangmuir/swift,zisko/swift,brentdax/swift,xedin/swift,mightydeveloper/swift,practicalswift/swift,arvedviehweger/swift,natecook1000/swift,alblue/swift,jtbandes/swift,emilstahl/swift,djwbrown/swift,practicalswift/swift,huonw/swift,danielmartin/swift,alblue/swift,LeoShimonaka/swift,tjw/swift,adrfer/swift,manavgabhawala/swift,ben-ng/swift,airspeedswift/swift,xedin/swift,lorentey/swift,slavapestov/swift,kentya6/swift,allevato/swift,aschwaighofer/swift,tinysun212/swift-windows,bitjammer/swift,ahoppen/swift,airspeedswift/swift,austinzheng/swift,brentdax/swift,MukeshKumarS/Swift,parkera/swift,Ivacker/swift,gottesmm/swift,glessard/swift,emilstahl/swift,devincoughlin/swift,alblue/swift,mightydeveloper/swift,kentya6/swift,swiftix/swift,tinysun212/swift-windows,hughbe/swift,benlangmuir/swift,LeoShimonaka/swift,johnno1962d/swift,kperryua/swift,adrfer/swift,tinysun212/swift-windows,jckarter/swift,kstaring/swift,kusl/swift,xwu/swift,allevato/swift,practicalswift/swift,dduan/swift,amraboelela/swift,gmilos/swift,shajrawi/swift,natecook1000/swift,zisko/swift,arvedviehweger/swift,gribozavr/swift,gregomni/swift,JGiola/swift,SwiftAndroid/swift,gmilos/swift,LeoShimonaka/swift,roambotics/swift,kperryua/swift,kentya6/swift,jckarter/swift,deyton/swift,manavgabhawala/swift,return/swift,ahoppen/swift,djwbrown/swift,khizkhiz/swift,tardieu/swift,felix91gr/swift,OscarSwanros/swift,rudkx/swift,JaSpa/swift,slavapestov/swift,kusl/swift,kstaring/swift,adrfer/swift,Jnosh/swift,gribozavr/swift,swiftix/swift.old,MukeshKumarS/Swift,kstaring/swift,ben-ng/swift,felix91gr/swift,JGiola/swift,xwu/swift,aschwaighofer/swift,zisko/swift,milseman/swift,alblue/swift,ken0nek/swift,JaSpa/swift,xwu/swift,aschwaighofer/swift,frootloops/swift,sschiau/swift,IngmarStein/swift,airspeedswift/swift,russbishop/swift,slavapestov/swift,JGiola/swift,natecook1000/swift,Ivacker/swift,gregomni/swift,devincoughlin/swift,jtbandes/swift,modocache/swift,danielmartin/swift,xwu/swift,LeoShimonaka/swift,therealbnut/swift,CodaFi/swift,JaSpa/swift,kperryua/swift,slavapestov/swift,danielmartin/swift,MukeshKumarS/Swift,uasys/swift,glessard/swift,allevato/swift,ken0nek/swift,djwbrown/swift,jckarter/swift,cbrentharris/swift,jtbandes/swift,khizkhiz/swift,jopamer/swift,benlangmuir/swift,austinzheng/swift,nathawes/swift,aschwaighofer/swift,hooman/swift,tkremenek/swift,apple/swift,gmilos/swift,kstaring/swift,kperryua/swift,tkremenek/swift,nathawes/swift,johnno1962d/swift,calebd/swift,tjw/swift,roambotics/swift,ahoppen/swift,russbishop/swift,alblue/swift,IngmarStein/swift,KrishMunot/swift,roambotics/swift,stephentyrone/swift,dduan/swift,gottesmm/swift,hooman/swift,xwu/swift,kusl/swift,amraboelela/swift,mightydeveloper/swift,milseman/swift,arvedviehweger/swift,practicalswift/swift,SwiftAndroid/swift,tinysun212/swift-windows,jopamer/swift,ben-ng/swift,zisko/swift,milseman/swift,devincoughlin/swift,modocache/swift,harlanhaskins/swift,kusl/swift,milseman/swift,mightydeveloper/swift,shahmishal/swift,ben-ng/swift,aschwaighofer/swift,khizkhiz/swift,zisko/swift,kperryua/swift,MukeshKumarS/Swift,sdulal/swift,emilstahl/swift,harlanhaskins/swift,parkera/swift,ahoppen/swift,khizkhiz/swift,gregomni/swift,practicalswift/swift,roambotics/swift,cbrentharris/swift,amraboelela/swift,russbishop/swift,tjw/swift,sschiau/swift,hughbe/swift,jmgc/swift,gmilos/swift,swiftix/swift,arvedviehweger/swift,jmgc/swift,emilstahl/swift,roambotics/swift,shahmishal/swift,jmgc/swift,swiftix/swift,Ivacker/swift,Ivacker/swift,lorentey/swift,harlanhaskins/swift,tardieu/swift,apple/swift,shahmishal/swift,emilstahl/swift,practicalswift/swift,lorentey/swift,return/swift,gregomni/swift,bitjammer/swift,atrick/swift,SwiftAndroid/swift,harlanhaskins/swift,KrishMunot/swift,shajrawi/swift,MukeshKumarS/Swift,kentya6/swift,bitjammer/swift,OscarSwanros/swift,gribozavr/swift,atrick/swift,uasys/swift,adrfer/swift,milseman/swift,karwa/swift,nathawes/swift,MukeshKumarS/Swift,stephentyrone/swift,parkera/swift,shajrawi/swift,adrfer/swift,jopamer/swift,Jnosh/swift,tardieu/swift,apple/swift,stephentyrone/swift,therealbnut/swift,gribozavr/swift,nathawes/swift,shahmishal/swift,jckarter/swift,sschiau/swift,kstaring/swift,swiftix/swift,amraboelela/swift,ken0nek/swift,deyton/swift,therealbnut/swift,xwu/swift,hooman/swift,xedin/swift,therealbnut/swift,frootloops/swift,zisko/swift,practicalswift/swift,cbrentharris/swift,LeoShimonaka/swift,lorentey/swift,codestergit/swift,CodaFi/swift,aschwaighofer/swift,deyton/swift,modocache/swift,nathawes/swift,harlanhaskins/swift,modocache/swift,rudkx/swift,tkremenek/swift,tinysun212/swift-windows,ken0nek/swift,hughbe/swift,felix91gr/swift,apple/swift,cbrentharris/swift,deyton/swift,CodaFi/swift,OscarSwanros/swift,OscarSwanros/swift,tkremenek/swift,SwiftAndroid/swift,codestergit/swift,slavapestov/swift,xedin/swift,shahmishal/swift,jmgc/swift,karwa/swift,glessard/swift,jopamer/swift,manavgabhawala/swift,swiftix/swift.old,sdulal/swift,deyton/swift,swiftix/swift.old,sdulal/swift,Jnosh/swift,atrick/swift,dduan/swift,codestergit/swift,tkremenek/swift,hooman/swift,bitjammer/swift,uasys/swift,djwbrown/swift,SwiftAndroid/swift,bitjammer/swift,felix91gr/swift,stephentyrone/swift,tkremenek/swift,gottesmm/swift,jmgc/swift,ben-ng/swift,tinysun212/swift-windows,Jnosh/swift,bitjammer/swift,allevato/swift,dduan/swift,jmgc/swift,CodaFi/swift,austinzheng/swift,return/swift,return/swift,MukeshKumarS/Swift,stephentyrone/swift,OscarSwanros/swift,cbrentharris/swift,calebd/swift,shahmishal/swift,codestergit/swift,ken0nek/swift,hughbe/swift,devincoughlin/swift,roambotics/swift,sschiau/swift,gottesmm/swift,jckarter/swift,karwa/swift,LeoShimonaka/swift,kstaring/swift,djwbrown/swift,KrishMunot/swift,cbrentharris/swift,modocache/swift,airspeedswift/swift,emilstahl/swift,benlangmuir/swift,sschiau/swift,IngmarStein/swift,gottesmm/swift,jtbandes/swift,arvedviehweger/swift,airspeedswift/swift,parkera/swift,sdulal/swift,atrick/swift,swiftix/swift.old,djwbrown/swift,austinzheng/swift,huonw/swift,cbrentharris/swift,kperryua/swift,brentdax/swift,stephentyrone/swift,manavgabhawala/swift,karwa/swift,danielmartin/swift,mightydeveloper/swift,devincoughlin/swift,johnno1962d/swift,milseman/swift,ahoppen/swift,russbishop/swift,glessard/swift,jckarter/swift,stephentyrone/swift,tinysun212/swift-windows,airspeedswift/swift,swiftix/swift,return/swift,JGiola/swift,modocache/swift,jtbandes/swift,IngmarStein/swift,IngmarStein/swift,jckarter/swift,karwa/swift,bitjammer/swift,OscarSwanros/swift,danielmartin/swift,russbishop/swift,hooman/swift,karwa/swift,arvedviehweger/swift,johnno1962d/swift,gottesmm/swift,manavgabhawala/swift,glessard/swift,danielmartin/swift,frootloops/swift,tjw/swift,rudkx/swift,ben-ng/swift,parkera/swift,kusl/swift,frootloops/swift,rudkx/swift,kentya6/swift,allevato/swift,aschwaighofer/swift,codestergit/swift,johnno1962d/swift,SwiftAndroid/swift,karwa/swift,atrick/swift,shahmishal/swift,JaSpa/swift,milseman/swift,frootloops/swift,calebd/swift,kstaring/swift,gmilos/swift,kusl/swift,swiftix/swift.old,austinzheng/swift,uasys/swift,OscarSwanros/swift,xedin/swift,huonw/swift,adrfer/swift,johnno1962d/swift,sschiau/swift,gribozavr/swift,hooman/swift,swiftix/swift,jtbandes/swift,khizkhiz/swift,slavapestov/swift,calebd/swift,IngmarStein/swift,dduan/swift,frootloops/swift,sdulal/swift,djwbrown/swift,russbishop/swift,therealbnut/swift,Jnosh/swift,Jnosh/swift,kentya6/swift,JaSpa/swift,calebd/swift,gregomni/swift,codestergit/swift,devincoughlin/swift,xedin/swift,JaSpa/swift,KrishMunot/swift,shajrawi/swift,dreamsxin/swift,return/swift,shajrawi/swift,tardieu/swift,return/swift,rudkx/swift,swiftix/swift.old,uasys/swift,devincoughlin/swift,kusl/swift,glessard/swift,tardieu/swift,amraboelela/swift,felix91gr/swift,karwa/swift,jmgc/swift,gribozavr/swift,modocache/swift,hughbe/swift,brentdax/swift,sdulal/swift,parkera/swift,lorentey/swift,gribozavr/swift,KrishMunot/swift,natecook1000/swift,tjw/swift,nathawes/swift,huonw/swift,xedin/swift,allevato/swift,Ivacker/swift,shahmishal/swift,JGiola/swift,shajrawi/swift,zisko/swift,gmilos/swift,lorentey/swift,mightydeveloper/swift,uasys/swift,practicalswift/swift,natecook1000/swift,felix91gr/swift,calebd/swift,tjw/swift,hughbe/swift,dreamsxin/swift,allevato/swift,lorentey/swift,manavgabhawala/swift,brentdax/swift,amraboelela/swift,LeoShimonaka/swift,huonw/swift,LeoShimonaka/swift,jopamer/swift,tkremenek/swift,CodaFi/swift,therealbnut/swift,amraboelela/swift,emilstahl/swift,tjw/swift,sschiau/swift,kentya6/swift,CodaFi/swift,benlangmuir/swift,ben-ng/swift,IngmarStein/swift,xedin/swift,natecook1000/swift,mightydeveloper/swift,manavgabhawala/swift,Ivacker/swift |
a77891726ba57d03abdc2153d38d4c2f45a0d623 | src/tests/log_mock.c | src/tests/log_mock.c | #include "log.h"
#include <stdio.h>
void debug(const char* format, ...) {
#ifdef __DEBUG__
vprintf(format, args);
#endif // __DEBUG__
}
void initializeLogging() { }
| #include "log.h"
#include <stdio.h>
#include <stdarg.h>
void debug(const char* format, ...) {
va_list args;
va_start(args, format);
vprintf(format, args);
va_end(args);
}
void initializeLogging() { }
| Enable printf in unit tests regardless of DEBUG flag status. | Enable printf in unit tests regardless of DEBUG flag status.
| C | bsd-3-clause | openxc/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,mgiannikouris/vi-firmware,openxc/vi-firmware,ene-ilies/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,mgiannikouris/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware |
ca77e66fbcd139c43ee54d371e745bb40b75c095 | o1dropbox.h | o1dropbox.h | #ifndef O1DROPBOX_H
#define O1DROPBOX_H
#include "o1.h"
class O1Dropbox: public O1 {
Q_OBJECT
public:
explicit O1Dropbox(QObject *parent = 0): O1(parent) {
setRequestTokenUrl(QUrl("https://api.dropbox.com/1/oauth/request_token"));
setAuthorizeUrl(QUrl("https://www.dropbox.com/1/oauth/authorize"));
setAccessTokenUrl(QUrl("https://api.dropbox.com/1/oauth/access_token"));
setLocalPort(1965);
}
};
#endif // O1DROPBOX_H
| #ifndef O1DROPBOX_H
#define O1DROPBOX_H
#include "o1.h"
class O1Dropbox: public O1 {
Q_OBJECT
public:
explicit O1Dropbox(QObject *parent = 0): O1(parent) {
setRequestTokenUrl(QUrl("https://api.dropbox.com/1/oauth/request_token"));
setAuthorizeUrl(QUrl("https://www.dropbox.com/1/oauth/authorize?display=mobile"));
setAccessTokenUrl(QUrl("https://api.dropbox.com/1/oauth/access_token"));
setLocalPort(1965);
}
};
#endif // O1DROPBOX_H
| Use the mobile authorization page. | Use the mobile authorization page.
| C | bsd-2-clause | pipacs/o2,shimomura1004/o2,shimomura1004/o2,seem-sky/o2,parapente/o2,pipacs/o2,seem-sky/o2,Timac/o2,Timac/o2,parapente/o2 |
9f59e8574620d9d628bb8b9ad687906843b6d9ad | network/v4ispalindrome.c | network/v4ispalindrome.c | /*
* Determines if an IPv4 address is a palindromic address. Such
* addresses need no special htonl/ntohl handling, regardless of host
* versus network byte order. There are relatively few of these on
* the Internet (65536).
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <err.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <sysexits.h>
#include <unistd.h>
void emit_help(void);
bool Flag_Quiet; /* -q */
int Exit_Status = 1; /* failed test by default */
int
main(int argc, char *argv[])
{
int ch, ret;
struct in_addr ip;
while ((ch = getopt(argc, argv, "h?q")) != -1) {
switch (ch) {
case 'q':
Flag_Quiet = true;
break;
case 'h':
case '?':
default:
/* NOTREACHED */
emit_help();
}
}
argc -= optind;
argv += optind;
if ((ret = inet_pton(AF_INET, *argv, &ip)) != 1) {
if (ret == -1)
err(EX_DATAERR, "inet_pton() failed");
else
errx(EX_DATAERR, "inet_pton() failed");
}
/* PORTABILITY will fail on middle-endian systems such as PDP-11,
* but not too worried about such. Otherwise, this compares the
* outer bytes and the inner bytes for symmetry - x.y.y.x */
if ((ip.s_addr & 255) == (ip.s_addr >> 24 & 255) &&
(ip.s_addr & 255 >> 8) == (ip.s_addr >> 16 & 255)
) {
if (!Flag_Quiet)
printf("yes\n");
Exit_Status = EXIT_SUCCESS;
}
exit(Exit_Status);
}
void
emit_help(void)
{
fprintf(stderr, "Usage: [-q] ipv4-address\n");
exit(EX_USAGE);
}
| Test if address is a palindrome. | Test if address is a palindrome.
| C | isc | princeofdarkness76/sial.org-scripts,princeofdarkness76/sial.org-scripts,thrig/scripts,princeofdarkness76/sial.org-scripts,thrig/scripts,princeofdarkness76/sial.org-scripts,thrig/scripts,thrig/scripts,thrig/scripts,princeofdarkness76/sial.org-scripts,thrig/scripts |
|
50620bdb6b217d53bcabda32764b7f3e21499bcc | isl_sample.h | isl_sample.h | /*
* Copyright 2008-2009 Katholieke Universiteit Leuven
*
* Use of this software is governed by the MIT license
*
* Written by Sven Verdoolaege, K.U.Leuven, Departement
* Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
*/
#ifndef ISL_SAMPLE_H
#define ISL_SAMPLE
#include <isl/set.h>
#include <isl_tab.h>
#if defined(__cplusplus)
extern "C" {
#endif
__isl_give isl_vec *isl_basic_set_sample_vec(__isl_take isl_basic_set *bset);
struct isl_vec *isl_basic_set_sample_bounded(struct isl_basic_set *bset);
__isl_give isl_vec *isl_basic_set_sample_with_cone(
__isl_take isl_basic_set *bset, __isl_take isl_basic_set *cone);
__isl_give isl_basic_set *isl_basic_set_from_vec(__isl_take isl_vec *vec);
int isl_tab_set_initial_basis_with_cone(struct isl_tab *tab,
struct isl_tab *tab_cone);
struct isl_vec *isl_tab_sample(struct isl_tab *tab);
#if defined(__cplusplus)
}
#endif
#endif
| /*
* Copyright 2008-2009 Katholieke Universiteit Leuven
*
* Use of this software is governed by the MIT license
*
* Written by Sven Verdoolaege, K.U.Leuven, Departement
* Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
*/
#ifndef ISL_SAMPLE_H
#define ISL_SAMPLE_H
#include <isl/set.h>
#include <isl_tab.h>
#if defined(__cplusplus)
extern "C" {
#endif
__isl_give isl_vec *isl_basic_set_sample_vec(__isl_take isl_basic_set *bset);
struct isl_vec *isl_basic_set_sample_bounded(struct isl_basic_set *bset);
__isl_give isl_vec *isl_basic_set_sample_with_cone(
__isl_take isl_basic_set *bset, __isl_take isl_basic_set *cone);
__isl_give isl_basic_set *isl_basic_set_from_vec(__isl_take isl_vec *vec);
int isl_tab_set_initial_basis_with_cone(struct isl_tab *tab,
struct isl_tab *tab_cone);
struct isl_vec *isl_tab_sample(struct isl_tab *tab);
#if defined(__cplusplus)
}
#endif
#endif
| Fix typo in header guard | Fix typo in header guard
Signed-off-by: Tobias Grosser <[email protected]>
Signed-off-by: Sven Verdoolaege <[email protected]>
| C | mit | cfx-next/toolchain_isl-upstream,cfx-next/toolchain_isl-upstream,nicolasvasilache/isl,Meinersbur/isl,BenzoSM/isl,BobSaget-Mod/libisl,VanirLLVM/toolchain_isl,inducer/isl-mirror,tobig/isl,crossbuild/isl,BobSaget-Mod/libisl,inducer/isl-mirror,tobig/isl,UBERTC/isl,nicolasvasilache/isl,simbuerg/isl,KangDroidSMProject/ISL,KangDroidSMProject/ISL,Distrotech/isl,jleben/isl,KangDroidSMProject/ISL,jleben/isl,PollyLabs/isl,abduld/isl,SaberMod/isl-current,BobSaget-Mod/libisl,evaautomation/isl,BobSaget-Mod/libisl,nicolasvasilache/isl,Distrotech/isl,inducer/isl-mirror,abduld/isl,evaautomation/isl,VanirLLVM/toolchain_isl,PollyLabs/isl,crossbuild/isl,nicolasvasilache/isl,VanirLLVM/toolchain_isl,jleben/isl,nicolasvasilache/isl,SaberMod/isl-current,abduld/isl,BenzoSM/isl,Meinersbur/isl,SaberMod/isl-current,simbuerg/isl,VanirLLVM/toolchain_isl,tobig/isl,cfx-next/toolchain_isl-upstream,BenzoSM/isl,UBERTC/isl,inducer/isl-mirror,inducer/isl-mirror,evaautomation/isl,SaberMod/isl-current,PollyLabs/isl,Distrotech/isl,evaautomation/isl,UBERTC/isl,BobSaget-Mod/libisl,Distrotech/isl,cfx-next/toolchain_isl-upstream,cfx-next/toolchain_isl-upstream,abduld/isl,KangDroidSMProject/ISL,BenzoSM/isl,Meinersbur/isl,jleben/isl,simbuerg/isl,jleben/isl,Meinersbur/isl,simbuerg/isl,VanirLLVM/toolchain_isl,KangDroidSMProject/ISL,PollyLabs/isl,crossbuild/isl,Distrotech/isl,crossbuild/isl,simbuerg/isl,PollyLabs/isl,tobig/isl,BenzoSM/isl,UBERTC/isl |
96607b29c4b90996e97f0216651f544b3ded4175 | test/Headers/arm-neon-header.c | test/Headers/arm-neon-header.c | // RUN: %clang_cc1 -triple thumbv7-apple-darwin10 -target-cpu cortex-a8 -fsyntax-only -Wvector-conversions -verify %s
// RUN: %clang_cc1 -x c++ -triple thumbv7-apple-darwin10 -target-cpu cortex-a8 -fsyntax-only -Wvector-conversions -verify %s
#include <arm_neon.h>
// Radar 8228022: Should not report incompatible vector types.
int32x2_t test(int32x2_t x) {
return vshr_n_s32(x, 31);
}
| Add a testcase for Radar 8228022. Make sure the -Wvector-conversions does not cause unnecessary warnings when using Neon intrinsics with the correct types. | Add a testcase for Radar 8228022.
Make sure the -Wvector-conversions does not cause unnecessary warnings when
using Neon intrinsics with the correct types.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@120634 91177308-0d34-0410-b5e6-96231b3b80d8
| C | apache-2.0 | 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,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang |
|
e93725b6fb3bff46a349a6fc22a4cf6db08e6232 | test/source/regalias.c | test/source/regalias.c |
int main()
{
int r;
__asm("movl $0x87654321, %%eax; movb $0x12, %%al; movb $0x34, %%ah" : "=a" (r));
printf("%08X\n", r);
}
| Add contrived example for register alias failure source. | Add contrived example for register alias failure source.
| C | bsd-3-clause | nemerle/boomerang,xujun10110/boomerang,TambourineReindeer/boomerang,xujun10110/boomerang,TambourineReindeer/boomerang,nemerle/boomerang,nemerle/boomerang,nemerle/boomerang,xujun10110/boomerang,nemerle/boomerang,nemerle/boomerang,xujun10110/boomerang,TambourineReindeer/boomerang,nemerle/boomerang,xujun10110/boomerang,xujun10110/boomerang,TambourineReindeer/boomerang,xujun10110/boomerang,xujun10110/boomerang,nemerle/boomerang,TambourineReindeer/boomerang,TambourineReindeer/boomerang,TambourineReindeer/boomerang,TambourineReindeer/boomerang |
|
58388a13ea0f47241340a99f45f1e3b0a0f45f04 | src/host/os_uuid.c | src/host/os_uuid.c | /**
* \file os_uuid.c
* \brief Create a new UUID.
* \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
*/
#include "premake.h"
#if PLATFORM_WINDOWS
#include <Objbase.h>
#endif
int os_uuid(lua_State* L)
{
unsigned char bytes[16];
char uuid[38];
#if PLATFORM_WINDOWS
CoCreateGuid((char*)bytes);
#else
int result;
/* not sure how to get a UUID here, so I fake it */
FILE* rnd = fopen("/dev/urandom", "rb");
result = fread(bytes, 16, 1, rnd);
fclose(rnd);
if (!result)
return 0;
#endif
sprintf(uuid, "%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
bytes[0], bytes[1], bytes[2], bytes[3],
bytes[4], bytes[5],
bytes[6], bytes[7],
bytes[8], bytes[9],
bytes[10], bytes[11], bytes[12], bytes[13], bytes[14], bytes[15]);
lua_pushstring(L, uuid);
return 1;
}
| /**
* \file os_uuid.c
* \brief Create a new UUID.
* \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
*/
#include "premake.h"
#if PLATFORM_WINDOWS
#include <Objbase.h>
#endif
int os_uuid(lua_State* L)
{
unsigned char bytes[16];
char uuid[38];
#if PLATFORM_WINDOWS
CoCreateGuid((GUID*)bytes);
#else
int result;
/* not sure how to get a UUID here, so I fake it */
FILE* rnd = fopen("/dev/urandom", "rb");
result = fread(bytes, 16, 1, rnd);
fclose(rnd);
if (!result)
return 0;
#endif
sprintf(uuid, "%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
bytes[0], bytes[1], bytes[2], bytes[3],
bytes[4], bytes[5],
bytes[6], bytes[7],
bytes[8], bytes[9],
bytes[10], bytes[11], bytes[12], bytes[13], bytes[14], bytes[15]);
lua_pushstring(L, uuid);
return 1;
}
| Fix incompatible types warning from VS 2005 (Oliver Schneider) | Fix incompatible types warning from VS 2005 (Oliver Schneider)
| C | bsd-3-clause | premake/premake-4.x,premake/premake-4.x,soundsrc/premake-stable,ryanjmulder/premake-4.x,soundsrc/premake-stable,premake/premake-4.x,lizh06/premake-4.x,ryanjmulder/premake-4.x,ryanjmulder/premake-4.x,lizh06/premake-4.x,ryanjmulder/premake-4.x,soundsrc/premake-stable,soundsrc/premake-stable,premake/premake-4.x,lizh06/premake-4.x,lizh06/premake-4.x |
3f9b5373a22df13cb9b449963aff4395493324b3 | CDKitt/NSView+CDAutoLayout.h | CDKitt/NSView+CDAutoLayout.h | //
// NSView+CDAutoLayout.h
// CDKitt
//
// Created by Aron Cedercrantz on 04-06-2013.
// Copyright (c) 2013 Aron Cedercrantz. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface NSView (CDAutoLayout)
/**
* Add the given view to this view as a subview and autoresizes it to fill the
* receiving view.
*/
- (void)cd_addFillingAutoresizedSubview:(NSView *)subview;
@end
| //
// NSView+CDAutoLayout.h
// CDKitt
//
// Created by Aron Cedercrantz on 04-06-2013.
// Copyright (c) 2013 Aron Cedercrantz. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface NSView (CDAutoLayout)
/**
* Add the given view to this view as a subview and autoresizes it to fill the
* receiving view.
*
* @param subview The view which should be added as a subview of the reciever.
* May be `nil`.
*/
- (void)cd_addFillingAutoresizedSubview:(NSView *)subview;
@end
| Improve NSView auto layout category documentation. | Improve NSView auto layout category documentation.
Signed-off-by: Aron Cedercrantz <[email protected]>
| C | mit | rastersize/CDKitt,rastersize/CDKitt,rastersize/CDKitt,rastersize/CDKitt |
3178bbaa27f2f2201014c2789f976a407e4ce548 | projects/com.oracle.truffle.llvm.test/tests/c/max-unsigned-int-to-double-cast.c | projects/com.oracle.truffle.llvm.test/tests/c/max-unsigned-int-to-double-cast.c | #include <limits.h>
#include <stdio.h>
#include <stdlib.h>
void testCase(double value, unsigned int expected) {
unsigned int result = (unsigned int)value;
if (result != expected) {
printf("%d\n", result);
abort();
}
}
int main() {
testCase(UINT_MAX, -1);
testCase(UINT_MAX - 0.03, -2);
testCase(UINT_MAX - 1, -2);
testCase(UINT_MAX - 2, -3);
testCase(UINT_MAX - 5, -6);
testCase(UINT_MAX - 2.5, -4);
testCase(UINT_MAX - 2.4, -4);
testCase(UINT_MAX - 2.6, -4);
testCase(UINT_MAX / 2, 2147483647);
testCase(UINT_MAX / 2 + 1, -2147483648);
testCase(UINT_MAX / 2 - 1.0, 2147483646);
testCase(UINT_MAX / 2 + 1.999999999, -2147483647);
testCase(-1, -1);
testCase(0, 0);
testCase(1.5, 1);
testCase(INT_MAX + 1, -2147483648);
testCase(INT_MAX, 2147483647);
}
| Add test case for casts from double to unsigned int | Add test case for casts from double to unsigned int
| C | bsd-3-clause | lxp/sulong,lxp/sulong,crbb/sulong,lxp/sulong,crbb/sulong,PrinzKatharina/sulong,lxp/sulong,PrinzKatharina/sulong,crbb/sulong,crbb/sulong,PrinzKatharina/sulong,PrinzKatharina/sulong |
|
febcd73e5ebc12d91f72bd948d8d8abd2043d84d | mudlib/mud/home/Help/initd.c | mudlib/mud/home/Help/initd.c | #include <kotaka/paths.h>
inherit LIB_INITD;
inherit UTILITY_COMPILE;
static void create()
{
load_dir("obj", 1);
load_dir("sys", 1);
}
| #include <kotaka/paths.h>
#include <kotaka/privilege.h>
#include <kotaka/bigstruct.h>
#include <kotaka/log.h>
inherit LIB_INITD;
inherit UTILITY_COMPILE;
static void create()
{
load_dir("obj", 1);
load_dir("sys", 1);
}
void full_reset()
{
object turkeylist;
object cursor;
object first;
object this;
ACCESS_CHECK(PRIVILEGED());
turkeylist = new_object(BIGSTRUCT_DEQUE_LWO);
this = this_object();
cursor = KERNELD->first_link("Help");
first = cursor;
do {
LOGD->post_message("help", LOG_DEBUG, "Listing " + object_name(cursor));
turkeylist->push_back(cursor);
cursor = KERNELD->next_link(cursor);
} while (cursor != first);
while (!turkeylist->empty()) {
object turkey;
turkey = turkeylist->get_front();
turkeylist->pop_front();
if (!turkey || turkey == this) {
/* don't self destruct or double destruct */
continue;
}
destruct_object(turkey);
}
load_dir("obj", 1);
load_dir("sys", 1);
}
| Allow help module to be rebooted | Allow help module to be rebooted
| C | agpl-3.0 | shentino/kotaka,shentino/kotaka,shentino/kotaka |
47b31c05b71bedd540810d95c10189c4d4580534 | src/tag.h | src/tag.h | #ifndef SRC_TAG_H_
#define SRC_TAG_H_
#include <string>
#include "readtags.h"
class Tag {
public:
Tag(tagEntry entry) {
name = entry.name;
file = entry.file;
kind = entry.kind != NULL ? entry.kind : "";
if (entry.address.pattern != NULL)
pattern = entry.address.pattern;
else
pattern = "";
}
std::string name;
std::string file;
std::string kind;
std::string pattern;
};
#endif // SRC_TAG_H_
| #ifndef SRC_TAG_H_
#define SRC_TAG_H_
#include <string>
#include "readtags.h"
class Tag {
public:
Tag(tagEntry entry) {
name = entry.name;
file = entry.file;
kind = entry.kind != NULL ? entry.kind : "";
pattern = entry.address.pattern != NULL ? entry.address.pattern : "";
}
std::string name;
std::string file;
std::string kind;
std::string pattern;
};
#endif // SRC_TAG_H_
| Switch pattern's check for NULL to ternary operator | Switch pattern's check for NULL to ternary operator
(To be consistent with “kind”’s check)
| C | mit | zertosh/ctags-prebuilt,zertosh/ctags-prebuilt,atom/node-ctags,zertosh/ctags-prebuilt,atom/node-ctags,yongkangchen/node-ctags,yongkangchen/node-ctags,yongkangchen/node-ctags,zertosh/ctags-prebuilt,atom/node-ctags |
a153c929c08c530c81286efbe0ef21ceeeacc0a3 | bin/varnishd/storage_malloc.c | bin/varnishd/storage_malloc.c | /*
* $Id$
*
* Storage method based on malloc(3)
*/
#include <assert.h>
#include <stdlib.h>
#include <sys/queue.h>
#include <pthread.h>
#include "cache.h"
struct sma {
struct storage s;
};
static struct storage *
sma_alloc(struct stevedore *st __unused, unsigned size)
{
struct sma *sma;
sma = calloc(sizeof *sma, 1);
assert(sma != NULL);
sma->s.priv = sma;
sma->s.ptr = malloc(size);
assert(sma->s.ptr != NULL);
sma->s.len = size;
sma->s.space = size;
return (&sma->s);
}
static void
sma_free(struct storage *s)
{
struct sma *sma;
sma = s->priv;
free(sma->s.ptr);
free(sma);
}
struct stevedore sma_stevedore = {
"malloc",
NULL, /* init */
NULL, /* open */
sma_alloc,
NULL, /* trim */
sma_free
};
| /*
* $Id$
*
* Storage method based on malloc(3)
*/
#include <assert.h>
#include <stdlib.h>
#include <sys/queue.h>
#include <pthread.h>
#include "cache.h"
struct sma {
struct storage s;
};
static struct storage *
sma_alloc(struct stevedore *st, unsigned size)
{
struct sma *sma;
sma = calloc(sizeof *sma, 1);
assert(sma != NULL);
sma->s.priv = sma;
sma->s.ptr = malloc(size);
assert(sma->s.ptr != NULL);
sma->s.len = size;
sma->s.space = size;
sma->s.stevedore = st;
return (&sma->s);
}
static void
sma_free(struct storage *s)
{
struct sma *sma;
sma = s->priv;
free(sma->s.ptr);
free(sma);
}
struct stevedore sma_stevedore = {
"malloc",
NULL, /* init */
NULL, /* open */
sma_alloc,
NULL, /* trim */
sma_free
};
| Make this work again: record the stevedore in the storage object. | Make this work again: record the stevedore in the storage object.
git-svn-id: 7d4b18ab7d176792635d6a7a77dd8cbbea8e8daa@236 d4fa192b-c00b-0410-8231-f00ffab90ce4
| C | bsd-2-clause | CartoDB/Varnish-Cache,wikimedia/operations-debs-varnish,wikimedia/operations-debs-varnish,ssm/pkg-varnish,ssm/pkg-varnish,wikimedia/operations-debs-varnish,wikimedia/operations-debs-varnish,wikimedia/operations-debs-varnish,CartoDB/Varnish-Cache,CartoDB/Varnish-Cache,ssm/pkg-varnish,ssm/pkg-varnish,ssm/pkg-varnish |
114f74f1f21bd9467d500bae7a3442e5135ce83a | test/benchLinkDef.h | test/benchLinkDef.h | #ifdef __CINT__
#pragma link off all globals;
#pragma link off all classes;
#pragma link off all functions;
#pragma link C++ class THit!+;
#pragma link C++ class TObjHit+;
#pragma link C++ class TSTLhit;
#pragma link C++ class TSTLhitList;
#pragma link C++ class TSTLhitDeque;
#pragma link C++ class TSTLhitSet;
#pragma link C++ class TSTLhitMultiset;
#pragma link C++ class TSTLhitMap;
#pragma link C++ class TSTLhitMultiMap;
//#pragma link C++ class TSTLhitHashSet;
//#pragma link C++ class TSTLhitHashMultiset;
#pragma link C++ class pair<int,THit>;
#pragma link C++ class TSTLhitStar;
#pragma link C++ class TSTLhitStarList;
#pragma link C++ class TSTLhitStarDeque;
#pragma link C++ class TSTLhitStarSet;
#pragma link C++ class TSTLhitStarMultiSet;
#pragma link C++ class TSTLhitStarMap;
#pragma link C++ class TSTLhitStarMultiMap;
#pragma link C++ class pair<int,THit*>;
#pragma link C++ class TCloneshit+;
#endif
| #ifdef __CINT__
#pragma link off all globals;
#pragma link off all classes;
#pragma link off all functions;
#pragma link C++ class THit!+;
#pragma link C++ class TObjHit+;
#pragma link C++ class TSTLhit+;
#pragma link C++ class TSTLhitList+;
#pragma link C++ class TSTLhitDeque+;
#pragma link C++ class TSTLhitSet+;
#pragma link C++ class TSTLhitMultiset+;
#pragma link C++ class TSTLhitMap+;
#pragma link C++ class TSTLhitMultiMap+;
//#pragma link C++ class TSTLhitHashSet;
//#pragma link C++ class TSTLhitHashMultiset;
#pragma link C++ class pair<int,THit>+;
#pragma link C++ class TSTLhitStar+;
#pragma link C++ class TSTLhitStarList+;
#pragma link C++ class TSTLhitStarDeque+;
#pragma link C++ class TSTLhitStarSet+;
#pragma link C++ class TSTLhitStarMultiSet+;
#pragma link C++ class TSTLhitStarMap+;
#pragma link C++ class TSTLhitStarMultiMap+;
#pragma link C++ class pair<int,THit*>+;
#pragma link C++ class TCloneshit+;
#endif
| Use the option "+" to force the new style Streamer for all classes in bench. | Use the option "+" to force the new style Streamer for all classes in bench.
git-svn-id: ecbadac9c76e8cf640a0bca86f6bd796c98521e3@10478 27541ba8-7e3a-0410-8455-c3a389f83636
| C | lgpl-2.1 | bbannier/ROOT,dawehner/root,bbannier/ROOT,dawehner/root,bbannier/ROOT,dawehner/root,bbannier/ROOT,bbannier/ROOT,dawehner/root,dawehner/root,dawehner/root,dawehner/root,bbannier/ROOT,dawehner/root,bbannier/ROOT |
56f42fe127b267e25739a56925d05f7ff70517b1 | src/onig-result.h | src/onig-result.h | #ifndef SRC_ONIG_RESULT_H_
#define SRC_ONIG_RESULT_H_
#include "oniguruma.h"
class OnigResult {
public:
explicit OnigResult(OnigRegion* region, int indexInScanner);
~OnigResult();
int Count();
int LocationAt(int index);
int LengthAt(int index);
int Index() { return indexInScanner; }
void SetIndex(int newIndex) { indexInScanner = newIndex; }
private:
OnigResult(const OnigResult&); // Disallow copying
OnigResult &operator=(const OnigResult&); // Disallow copying
OnigRegion *region_;
int indexInScanner;
};
#endif // SRC_ONIG_RESULT_H_
| #ifndef SRC_ONIG_RESULT_H_
#define SRC_ONIG_RESULT_H_
#include "nan.h"
#include "oniguruma.h"
class OnigResult {
public:
explicit OnigResult(OnigRegion* region, int indexInScanner);
~OnigResult();
int Count();
int LocationAt(int index);
int LengthAt(int index);
int Index() { return indexInScanner; }
void SetIndex(int newIndex) { indexInScanner = newIndex; }
private:
OnigResult(const OnigResult&); // Disallow copying
OnigResult &operator=(const OnigResult&); // Disallow copying
OnigRegion *region_;
int indexInScanner;
};
#endif // SRC_ONIG_RESULT_H_
| Fix compilation on win8 : include nan before oniguruma | Fix compilation on win8 : include nan before oniguruma
| C | mit | bpasero/node-oniguruma,alexandrudima/node-oniguruma,alexandrudima/node-oniguruma,bpasero/node-oniguruma,atom/node-oniguruma,atom/node-oniguruma,atom/node-oniguruma,bpasero/node-oniguruma,alexandrudima/node-oniguruma |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.