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
9c44b57857b611f81c040d6ca57cff0908029e77
mudlib/mud/home/System/lib/auto/second_auto.c
mudlib/mud/home/System/lib/auto/second_auto.c
#include <kotaka/privilege.h> #include <kotaka/paths.h> #include <kotaka/log.h> #include <trace.h> #include <type.h> #include <status.h> inherit "call_guard"; inherit "callout_guard"; inherit "touch"; inherit "object"; object canary; /**********/ /* status */ /**********/ void set_canary(object new_canary) { ACCESS_CHECK(SYSTEM()); canary = new_canary; } object query_canary() { ACCESS_CHECK(SYSTEM()); return canary; } nomask void _F_dummy() { } nomask mixed _F_status(mixed args ...) { ACCESS_CHECK(SYSTEM()); return status(this_object(), args ...); }
#include <kotaka/privilege.h> #include <kotaka/paths.h> #include <kotaka/log.h> #include <trace.h> #include <type.h> #include <status.h> inherit "call_guard"; inherit "callout_guard"; inherit "touch"; inherit "object"; object canary; /**********/ /* status */ /**********/ void set_canary(object new_canary) { ACCESS_CHECK(SYSTEM()); canary = new_canary; } object query_canary() { ACCESS_CHECK(SYSTEM()); return canary; } nomask void _F_dummy() { } nomask mixed _F_status(mixed args ...) { ACCESS_CHECK(SYSTEM()); return status(this_object(), args ...); } #if 0 nomask void save_object(string filename) { error("save_object is disabled"); } nomask void restore_object(string filename) { error("restore_object is disabled"); } #endif
Allow disable of save/restore object
Allow disable of save/restore object
C
agpl-3.0
shentino/kotaka,shentino/kotaka,shentino/kotaka
b2340338a2ae45bc6e4481893fb7c70b9a662840
lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
//==--- InterCheckerAPI.h ---------------------------------------*- C++ -*-==// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // This file allows introduction of checker dependencies. It contains APIs for // inter-checker communications. //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_LIB_STATICANALYZER_CHECKERS_INTERCHECKERAPI_H #define LLVM_CLANG_LIB_STATICANALYZER_CHECKERS_INTERCHECKERAPI_H namespace clang { namespace ento { /// Register the checker which evaluates CString API calls. void registerCStringCheckerBasic(CheckerManager &Mgr); }} #endif /* INTERCHECKERAPI_H_ */
//==--- InterCheckerAPI.h ---------------------------------------*- C++ -*-==// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // This file allows introduction of checker dependencies. It contains APIs for // inter-checker communications. //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_LIB_STATICANALYZER_CHECKERS_INTERCHECKERAPI_H #define LLVM_CLANG_LIB_STATICANALYZER_CHECKERS_INTERCHECKERAPI_H namespace clang { class CheckerManager; namespace ento { /// Register the checker which evaluates CString API calls. void registerCStringCheckerBasic(CheckerManager &Mgr); }} #endif /* INTERCHECKERAPI_H_ */
Add a missing forward def of CheckerManager. NFC.
Add a missing forward def of CheckerManager. NFC. This file doesn't include CheckerManager or forward declare it, so is sensitive to include order. git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@235209 91177308-0d34-0410-b5e6-96231b3b80d8
C
apache-2.0
llvm-mirror/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,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang
4a12cae7ef2612eb094c4b48e8b37cf837e3df55
arch/arm64/include/asm/spinlock_types.h
arch/arm64/include/asm/spinlock_types.h
/* * Copyright (C) 2012 ARM Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __ASM_SPINLOCK_TYPES_H #define __ASM_SPINLOCK_TYPES_H #if !defined(__LINUX_SPINLOCK_TYPES_H) && !defined(__ASM_SPINLOCK_H) # error "please don't include this file directly" #endif #define TICKET_SHIFT 16 typedef struct { u16 owner; u16 next; } __aligned(4) arch_spinlock_t; #define __ARCH_SPIN_LOCK_UNLOCKED { 0 , 0 } typedef struct { volatile unsigned int lock; } arch_rwlock_t; #define __ARCH_RW_LOCK_UNLOCKED { 0 } #endif
/* * Copyright (C) 2012 ARM Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __ASM_SPINLOCK_TYPES_H #define __ASM_SPINLOCK_TYPES_H #if !defined(__LINUX_SPINLOCK_TYPES_H) && !defined(__ASM_SPINLOCK_H) # error "please don't include this file directly" #endif #define TICKET_SHIFT 16 typedef struct { #ifdef __AARCH64EB__ u16 next; u16 owner; #else u16 owner; u16 next; #endif } __aligned(4) arch_spinlock_t; #define __ARCH_SPIN_LOCK_UNLOCKED { 0 , 0 } typedef struct { volatile unsigned int lock; } arch_rwlock_t; #define __ARCH_RW_LOCK_UNLOCKED { 0 } #endif
Fix the endianness of arch_spinlock_t
arm64: Fix the endianness of arch_spinlock_t The owner and next members of the arch_spinlock_t structure need to be swapped when compiling for big endian. Signed-off-by: Catalin Marinas <[email protected]> Reported-by: Matthew Leach <[email protected]> Acked-by: Will Deacon <[email protected]>
C
mit
KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs
b129ff9f3ce7d5f931d16f6eb0d68b9ee95ebc22
InputPacket.h
InputPacket.h
#pragma once #include <cstdint> namespace ni { struct InputPacket { constexpr static int MAGIC = 0xD00D; constexpr static int TYPE_LENGTH = 16; constexpr static int DATA_LENGTH = 128; uint16_t magic; char type[TYPE_LENGTH]; uint16_t length; uint8_t data[DATA_LENGTH]; bool isValid() const; bool isSafe() const; }; }
#pragma once #include <cstdint> #include "DeviceType.h" namespace ni { struct InputPacket { constexpr static int MAGIC = 0xD00D; constexpr static int DATA_LENGTH = 128; uint16_t magic; DeviceType type; uint16_t length; uint8_t data[DATA_LENGTH]; bool isValid() const; bool isSafe() const; }; }
Use DeviceType enum for the type field.
Use DeviceType enum for the type field.
C
mit
jack-karamanian/NetInput
f8c9e7d30e824f4b1a983b4b1134feba4385293e
src/gui/GuiText.h
src/gui/GuiText.h
// // Created by dar on 2/13/16. // #ifndef C003_GUITEXT_H #define C003_GUITEXT_H #include "GuiElement.h" #include <string> class GuiText : public GuiElement { public: GuiText(const std::string &string, int x, int y, char position, float scale, int color, char flags) { this->string = string; this->rawX = x; this->rawY = y; this->positionFlag = position; this->scale = scale; this->recalculateSize(); } const std::string &getString() const { return string; } void updateString(const std::string &string) { this->string = string; this->recalculateSize(); } float getScale() const { return scale; } void setScale(float scale) { GuiText::scale = scale; } int getColor() const { return color; } void setColor(int color) { GuiText::color = color; } char getFlags() const { return flags; } void setFlags(char flags) { GuiText::flags = flags; } private: std::string string; float scale; int color; char flags; void recalculateSize() { //TODO this->width = getStringWidth(string); this->height = ... } }; #endif //C003_GUITEXT_H
// // Created by dar on 2/13/16. // #ifndef C003_GUITEXT_H #define C003_GUITEXT_H #include "GuiElement.h" #include <string> class GuiText : public GuiElement { public: GuiText(const std::string &string, int x, int y, char position, float scale, int color, char flags) { this->string = string; this->rawX = x; this->rawY = y; this->positionFlag = position; this->scale = scale; this->flags = flags; this->recalculateSize(); } const std::string &getString() const { return string; } void updateString(const std::string &string) { this->string = string; this->recalculateSize(); } float getScale() const { return scale; } void setScale(float scale) { GuiText::scale = scale; } int getColor() const { return color; } void setColor(int color) { GuiText::color = color; } char getFlags() const { return flags; } void setFlags(char flags) { GuiText::flags = flags; } private: std::string string; float scale; int color; char flags; void recalculateSize() { //TODO this->width = getStringWidth(string); this->height = ... } }; #endif //C003_GUITEXT_H
Set "flags" variable in constructor
Set "flags" variable in constructor
C
mit
darsto/spooky,darsto/spooky
8f39850a0cc1114eeb77d3e71fa2eed98f61ca87
ffmpeg/lpms_ffmpeg.h
ffmpeg/lpms_ffmpeg.h
#include <libavutil/rational.h> typedef struct { char *fname; int w, h, bitrate; AVRational fps; } output_params; void lpms_init(); void lpms_deinit(); int lpms_rtmp2hls(char *listen, char *outf, char *ts_tmpl, char *seg_time, char *seg_start); int lpms_transcode(char *inp, output_params *params, int nb_outputs); int lpms_length(char *inp, int ts_max, int packet_max);
#ifndef _LPMS_FFMPEG_H_ #define _LPMS_FFMPEG_H_ #include <libavutil/rational.h> typedef struct { char *fname; int w, h, bitrate; AVRational fps; } output_params; void lpms_init(); int lpms_rtmp2hls(char *listen, char *outf, char *ts_tmpl, char *seg_time, char *seg_start); int lpms_transcode(char *inp, output_params *params, int nb_outputs); #endif // _LPMS_FFMPEG_H_
Remove unused declarations from headers.
ffmpeg: Remove unused declarations from headers. Also add some include guards.
C
mit
livepeer/lpms,livepeer/lpms,livepeer/lpms,livepeer/lpms
809c60bbcec764ce8068515dac7d853d1d2771a6
pgf+/include/gf/IOException.h
pgf+/include/gf/IOException.h
// // IOException.h // pgf+ // // Created by Emil Djupfeldt on 2012-06-22. // Copyright (c) 2012 Chalmers University of Technology. All rights reserved. // #ifndef pgf__IOException_h #define pgf__IOException_h #include <gf/Exception.h> namespace gf { class IOException : public Exception { private: public: IOException(); IOException(const std::string& message); virtual ~IOException(); }; } #endif
// // IOException.h // pgf+ // // Created by Emil Djupfeldt on 2012-06-22. // Copyright (c) 2012 Chalmers University of Technology. All rights reserved. // #ifndef pgf__IOException_h #define pgf__IOException_h #include <gf/Exception.h> namespace gf { class IOException : public Exception { private: public: IOException(); IOException(const std::string& message); IOException(int err); virtual ~IOException(); }; } #endif
Add a constructor taking an c error number.
Add a constructor taking an c error number.
C
bsd-2-clause
egladil/mscthesis,egladil/mscthesis,egladil/mscthesis
458cc64daaccf3d2e69222538aeaf3598eed1137
libkcal/kcalversion.h
libkcal/kcalversion.h
/* This file is part of libkcal. 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef KCAL_KCALVERSION_H #define KCAL_KCALVERSION_H #define LIBKCAL_IS_VERSION( a,b,c ) ( LIBKCAL_VERSION >= KDE_MAKE_VERSION(a,b,c) ) #define LIBKCAL_VERSION KDE_MAKE_VERSION(1,1,0) #define LIBKCAL_VERSIONSTR "1.1" #endif
/* This file is part of libkcal. 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef KCAL_KCALVERSION_H #define KCAL_KCALVERSION_H #define LIBKCAL_IS_VERSION( a,b,c ) ( LIBKCAL_VERSION >= KDE_MAKE_VERSION(a,b,c) ) #define LIBKCAL_VERSION KDE_MAKE_VERSION(1,2,0) #define LIBKCAL_VERSIONSTR "1.2" #endif
Increase libkcal version number, since we had bic changes since kde 3.3....
Increase libkcal version number, since we had bic changes since kde 3.3.... svn path=/trunk/kdepim/; revision=385823
C
lgpl-2.1
lefou/kdepim-noakonadi,lefou/kdepim-noakonadi,lefou/kdepim-noakonadi,lefou/kdepim-noakonadi,lefou/kdepim-noakonadi,lefou/kdepim-noakonadi
48d1fe7a3839c98aa923e98e8c77574c9c611d9b
tensorflow_serving/util/inline_executor.h
tensorflow_serving/util/inline_executor.h
/* Copyright 2016 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by 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 TENSORFLOW_SERVING_UTIL_INLINE_EXECUTOR_H_ #define TENSORFLOW_SERVING_UTIL_INLINE_EXECUTOR_H_ #include <functional> #include "tensorflow/core/platform/macros.h" #include "tensorflow_serving/util/executor.h" namespace tensorflow { namespace serving { // An InlineExecutor is a trivial executor that immediately executes the closure // given to it. It's useful as a mock, and in cases where an executor is needed, // but multi-threadedness is not. class InlineExecutor : public Executor { public: InlineExecutor(); ~InlineExecutor() override; void Schedule(std::function<void()> fn) override; }; } // namespace serving } // namespace tensorflow #endif // TENSORFLOW_SERVING_UTIL_INLINE_EXECUTOR_H_
/* Copyright 2016 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by 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 TENSORFLOW_SERVING_UTIL_INLINE_EXECUTOR_H_ #define TENSORFLOW_SERVING_UTIL_INLINE_EXECUTOR_H_ #include <functional> #include "tensorflow/core/platform/macros.h" #include "tensorflow_serving/util/executor.h" namespace tensorflow { namespace serving { // An InlineExecutor is a trivial executor that immediately executes the closure // given to it. It's useful as a fake, and in cases where an executor is needed, // but multi-threadedness is not. class InlineExecutor : public Executor { public: InlineExecutor(); ~InlineExecutor() override; void Schedule(std::function<void()> fn) override; }; } // namespace serving } // namespace tensorflow #endif // TENSORFLOW_SERVING_UTIL_INLINE_EXECUTOR_H_
Correct mock -> fake in InlineExecutor documentation. Change: 163386931
Correct mock -> fake in InlineExecutor documentation. Change: 163386931
C
apache-2.0
sreddybr3/serving,penguin138/serving,penguin138/serving,tensorflow/serving,tensorflow/serving,penguin138/serving,sreddybr3/serving,tensorflow/serving,tensorflow/serving,sreddybr3/serving,penguin138/serving,sreddybr3/serving
2448675327ceaa844ae2fab4a15c46d0981cad17
test/test_encode_int.c
test/test_encode_int.c
#include <bert/encoder.h> #include <bert/magic.h> #include <bert/errno.h> #include "test.h" unsigned char output[6]; void test_output() { if (output[0] != BERT_MAGIC) { test_fail("bert_encoder_push did not add the magic byte"); } if (output[1] != BERT_INT) { test_fail("bert_encoder_push did not add the INT magic byte"); } unsigned int i; for (i=2;i<6;i++) { if (output[i] != 0xff) { test_fail("output[%u] is 0x%x, expected 0x%x",output[i],0xff); } } } int main() { bert_encoder_t *encoder = test_encoder(output,6); bert_data_t *data; if (!(data = bert_data_create_int(0xffffffff))) { test_fail("malloc failed"); } test_encoder_push(encoder,data); bert_data_destroy(data); bert_encoder_destroy(encoder); test_output(); return 0; }
#include <bert/encoder.h> #include <bert/magic.h> #include <bert/errno.h> #include "test.h" unsigned char output[6]; void test_output() { if (output[0] != BERT_MAGIC) { test_fail("bert_encoder_push did not add the magic byte"); } if (output[1] != BERT_INT) { test_fail("bert_encoder_push did not add the INT magic byte"); } unsigned char bytes[] = {0xff, 0xff, 0xff, 0xff}; test_bytes(output+2,bytes,4); } int main() { bert_encoder_t *encoder = test_encoder(output,6); bert_data_t *data; if (!(data = bert_data_create_int(0xffffffff))) { test_fail("malloc failed"); } test_encoder_push(encoder,data); bert_data_destroy(data); bert_encoder_destroy(encoder); test_output(); return 0; }
Make use of test_bytes in the int encoder test.
Make use of test_bytes in the int encoder test.
C
mit
postmodern/libBERT
3d8ef87d5f4792e7fa48717d9c763a338718dbeb
LinkList_insert_node_nth_position.c
LinkList_insert_node_nth_position.c
#include <stdio.h> #include <stdlib.h> /* Linked List Implementation in C */ // This program aims at "Inserting a node at the n-th position" typedef struct node{ int data; struct node *link; } node; node* head; //global variable void insert_n(int x, int n){ node* temp; temp = (node*)malloc(sizeof(node)); temp->data = x; temp->link=NULL; if(n == 1) { //if the node is to be inserted at the beginning temp->link = head; head = temp; return; } //if not at begining then we need to traverse to the n-1 th node node* temp_travel; temp_travel = head; //start at head int i; for (i =1 ; i<n-1 ; i++){ temp_travel = temp_travel->link; } //copy the nth nodes link into temp new node's link temp->link = temp_travel->link; //after copy we can destroy this link in n-1 th node and make it point to the new node temp_travel->link= temp; return; } void print(){ node* temp = head; printf("list is:"); while(temp->link != NULL){ printf(" %d",temp->data); temp = temp->link; } printf("\n"); } int main(){ head = NULL; //empty list insert_n(2,1); //list is: 2 insert_n(3,2); //list is: 2 3 insert_n(3,2); //list is: 2 3 insert_n(4,1); //list is: 4 2 3 insert_n(5,2); //list is: 4 5 2 3 insert_n(6,4); //list is: 4 5 2 6 3 insert_n(7,6); //list is: 4 5 2 6 3 7 print(); return 0; }
Add Linked List Insert at nth position
Add Linked List Insert at nth position
C
mit
anaghajoshi/C_DataStructures_Algorithms
5a420f60da6ebf3aadaa5130ee5ce097d1f982b5
libraries/datastruct/hash/lookup-node.c
libraries/datastruct/hash/lookup-node.c
/* lookup-node.c -- hash */ #include <stdlib.h> #include "datastruct/hash.h" #include "impl.h" hash_node_t **hash_lookup_node(hash_t *h, const void *key) { int hash; hash_node_t **n; hash = h->hash_fn(key) % h->nbins; for (n = &h->bins[hash]; *n != NULL; n = &(*n)->next) if (h->compare(key, (*n)->key) == 0) break; return n; }
/* lookup-node.c -- hash */ #include <stdlib.h> #include "datastruct/hash.h" #include "impl.h" hash_node_t **hash_lookup_node(hash_t *h, const void *key) { unsigned int hash; hash_node_t **n; hash = h->hash_fn(key) % h->nbins; for (n = &h->bins[hash]; *n != NULL; n = &(*n)->next) if (h->compare(key, (*n)->key) == 0) break; return n; }
Make return type decl match hash_fn.
hash_lookup_node: Make return type decl match hash_fn.
C
bsd-2-clause
dpt/DPTLib
877bfcfaf592e63916333fd644bb8f30b673f35d
lib/sanitizer_common/sanitizer_placement_new.h
lib/sanitizer_common/sanitizer_placement_new.h
//===-- sanitizer_placement_new.h -------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file is shared between AddressSanitizer and ThreadSanitizer // run-time libraries. // // The file provides 'placement new'. // Do not include it into header files, only into source files. //===----------------------------------------------------------------------===// #ifndef SANITIZER_PLACEMENT_NEW_H #define SANITIZER_PLACEMENT_NEW_H #include "sanitizer_internal_defs.h" #if __WORDSIZE == 64 inline void *operator new(__sanitizer::uptr sz, void *p) { return p; } #else inline void *operator new(__sanitizer::u32 sz, void *p) { return p; } #endif #endif // SANITIZER_PLACEMENT_NEW_H
//===-- sanitizer_placement_new.h -------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file is shared between AddressSanitizer and ThreadSanitizer // run-time libraries. // // The file provides 'placement new'. // Do not include it into header files, only into source files. //===----------------------------------------------------------------------===// #ifndef SANITIZER_PLACEMENT_NEW_H #define SANITIZER_PLACEMENT_NEW_H #include "sanitizer_internal_defs.h" namespace __sanitizer { #if (__WORDSIZE == 64) || defined(__APPLE__) typedef __sanitizer::uptr operator_new_ptr_type; #else typedef __sanitizer::u32 operator_new_ptr_type; #endif } // namespace __sanitizer inline void *operator new(operator_new_ptr_type sz, void *p) { return p; } #endif // SANITIZER_PLACEMENT_NEW_H
Fix type for placement new on 32-bit Mac
[Sanitizer] Fix type for placement new on 32-bit Mac git-svn-id: c199f293c43da69278bea8e88f92242bf3aa95f7@158524 91177308-0d34-0410-b5e6-96231b3b80d8
C
apache-2.0
llvm-mirror/compiler-rt,llvm-mirror/compiler-rt,llvm-mirror/compiler-rt,llvm-mirror/compiler-rt,llvm-mirror/compiler-rt
28f427e69ea72b113380a835c1096c1e15ca4d22
src/include/dev/char_device.h
src/include/dev/char_device.h
/** * @file * @description char devices */ #ifndef __CHAR_DEVICE_H #define __CHAR_DEVICE_H typedef struct chardev { int (*putc) (void); int (*getc) (int); } chardev_t; #define MAX_COUNT_CHAR_DEVICES 10 static chardev_t pool_chardev[MAX_COUNT_CHAR_DEVICES]; static int chardev_c = 0; #define ADD_CHAR_DEVICE(__NAME,__IN,__OUT) \ int __NAME=0;\ __NAME=chardev_c; \ pool_chardev[chardev_c++] = { \ .getc = __IN; \ .putc = __OUT;\ }; #endif /* __CHAR_DEVICE_H */
/** * @file * @description char devices */ #ifndef __CHAR_DEVICE_H #define __CHAR_DEVICE_H typedef struct chardev { int (*putc) (void); int (*getc) (int); } chardev_t; #if 0 #define MAX_COUNT_CHAR_DEVICES 10 static chardev_t pool_chardev[MAX_COUNT_CHAR_DEVICES]; static int chardev_c = 0; #define ADD_CHAR_DEVICE(__NAME,__IN,__OUT) \ int __NAME=0;\ __NAME=chardev_c; \ pool_chardev[chardev_c++] = { \ .getc = __IN; \ .putc = __OUT;\ }; #endif #endif /* __CHAR_DEVICE_H */
Delete char_dev massive from header
Delete char_dev massive from header
C
bsd-2-clause
gzoom13/embox,vrxfile/embox-trik,Kefir0192/embox,vrxfile/embox-trik,abusalimov/embox,Kefir0192/embox,gzoom13/embox,mike2390/embox,mike2390/embox,embox/embox,embox/embox,abusalimov/embox,embox/embox,embox/embox,mike2390/embox,Kakadu/embox,Kakadu/embox,abusalimov/embox,vrxfile/embox-trik,Kefir0192/embox,abusalimov/embox,Kakadu/embox,gzoom13/embox,mike2390/embox,vrxfile/embox-trik,Kakadu/embox,Kakadu/embox,mike2390/embox,Kefir0192/embox,gzoom13/embox,vrxfile/embox-trik,embox/embox,vrxfile/embox-trik,Kefir0192/embox,gzoom13/embox,gzoom13/embox,abusalimov/embox,gzoom13/embox,Kakadu/embox,embox/embox,Kefir0192/embox,mike2390/embox,Kakadu/embox,mike2390/embox,abusalimov/embox,vrxfile/embox-trik,Kefir0192/embox
12b8bc1b01c53d08d4d2774407035fd483577d7c
test/FrontendC/2010-06-11-SaveExpr.c
test/FrontendC/2010-06-11-SaveExpr.c
// RUN: %llvmgcc -S %s // Test case by Eric Postpischil! void foo(void) { char a[1]; int t = 1; ((char (*)[t]) a)[0][0] = 0; }
Test case for Radar 8004649.
Test case for Radar 8004649. git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@105949 91177308-0d34-0410-b5e6-96231b3b80d8
C
apache-2.0
GPUOpen-Drivers/llvm,llvm-mirror/llvm,llvm-mirror/llvm,llvm-mirror/llvm,apple/swift-llvm,chubbymaggie/asap,apple/swift-llvm,llvm-mirror/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,apple/swift-llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,llvm-mirror/llvm,chubbymaggie/asap,dslab-epfl/asap,apple/swift-llvm,chubbymaggie/asap,dslab-epfl/asap,apple/swift-llvm,llvm-mirror/llvm,dslab-epfl/asap,GPUOpen-Drivers/llvm,dslab-epfl/asap,llvm-mirror/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,dslab-epfl/asap,apple/swift-llvm,dslab-epfl/asap,llvm-mirror/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,dslab-epfl/asap,GPUOpen-Drivers/llvm,apple/swift-llvm
26d810473db6b338ffcf6fb21cb7dc35e6d7cffc
src/fake-lock-screen-pattern.h
src/fake-lock-screen-pattern.h
#ifndef _FAKE_LOCK_SCREEN_PATTERN_H_ #define _FAKE_LOCK_SCREEN_PATTERN_H_ #include <gtk/gtk.h> #if !GTK_CHECK_VERSION(3, 0, 0) typedef struct { gdouble red; gdouble green; gdouble blue; gdouble alpha; } GdkRGBA; #endif typedef struct _FakeLockOption { void *module; gchar *real; gchar *dummy; } FakeLockOption; typedef struct { gint mark; gint value; GdkPoint top_left; GdkPoint bottom_right; } FakeLockPatternPoint; typedef enum { FLSP_ONE_STROKE, FLSP_ON_BOARD, FLSP_N_PATTERN, } FakeLockScreenPattern; void flsp_draw_circle(cairo_t *context, gint x, gint y, gint radius, GdkRGBA circle, GdkRGBA border); gboolean is_marked(gint x, gint y, gint *marked, void *user_data); #endif
#ifndef _FAKE_LOCK_SCREEN_PATTERN_H_ #define _FAKE_LOCK_SCREEN_PATTERN_H_ #include <gtk/gtk.h> #if !GTK_CHECK_VERSION(3, 0, 0) typedef struct { gdouble red; gdouble green; gdouble blue; gdouble alpha; } GdkRGBA; #endif typedef struct _FakeLockOption { void *module; gint width; gint height; gchar *real; gchar *dummy; } FakeLockOption; typedef struct { gint mark; gint value; GdkPoint top_left; GdkPoint bottom_right; } FakeLockPatternPoint; typedef enum { FLSP_ONE_STROKE, FLSP_ON_BOARD, FLSP_N_PATTERN, } FakeLockScreenPattern; void flsp_draw_circle(cairo_t *context, gint x, gint y, gint radius, GdkRGBA circle, GdkRGBA border); gboolean is_marked(gint x, gint y, gint *marked, void *user_data); #endif
Store size of drawing area
Store size of drawing area
C
mit
kenhys/fake-lock-screen-pattern,kenhys/fake-lock-screen-pattern
8d8f4eef73993a3ea51b47c2d7a7c238b627369a
src/modules/graphics/opengl.h
src/modules/graphics/opengl.h
#ifdef LOVR_WEBGL #include <GLES3/gl3.h> #include <GLES2/gl2ext.h> #include <GL/gl.h> #include <GL/glext.h> #else #include "lib/glad/glad.h" #endif #include <stdint.h> #pragma once #define GPU_BUFFER_FIELDS \ uint32_t id; \ uint8_t incoherent; #define GPU_CANVAS_FIELDS \ uint32_t framebuffer; \ uint32_t resolveBuffer; \ uint32_t depthBuffer; \ bool immortal; #define GPU_MESH_FIELDS \ uint32_t vao; \ uint32_t ibo; #define GPU_SHADER_FIELDS \ uint32_t program; #define GPU_TEXTURE_FIELDS \ GLuint id; \ GLuint msaaId; \ GLenum target; \ uint8_t incoherent;
#ifdef LOVR_WEBGL #include <GLES3/gl3.h> #include <GLES2/gl2ext.h> #include <GL/gl.h> #include <GL/glext.h> #else #include "lib/glad/glad.h" #endif #include <stdint.h> #pragma once #define GPU_BUFFER_FIELDS \ uint32_t id; \ uint8_t incoherent; #define GPU_CANVAS_FIELDS \ uint32_t framebuffer; \ uint32_t resolveBuffer; \ uint32_t depthBuffer; \ bool immortal; #define GPU_MESH_FIELDS \ uint32_t vao; \ uint32_t ibo; #define GPU_SHADER_FIELDS \ uint32_t program; #define GPU_TEXTURE_FIELDS \ uint8_t incoherent; \ GLuint id; \ GLuint msaaId; \ GLenum target;
Adjust Texture padding so it's 64 bytes;
Adjust Texture padding so it's 64 bytes;
C
mit
bjornbytes/lovr,bjornbytes/lovr,bjornbytes/lovr,bjornbytes/lovr,bjornbytes/lovr
f503a09cc3e24c8a87a16ab55b8bf2eedb2f0b85
mlpack/trunk/src/mlpack/core/tree/bounds.h
mlpack/trunk/src/mlpack/core/tree/bounds.h
/** * @file tree/bounds.h * * Bounds that are useful for binary space partitioning trees. * * TODO: Come up with a better design so you can do plug-and-play distance * metrics. * * @experimental */ #ifndef TREE_BOUNDS_H #define TREE_BOUNDS_H #include <mlpack/core/math/math_lib.h> #include <mlpack/core/kernels/lmetric.h> #include "hrectbound.h" #include "dhrectperiodicbound.h" #include "dballbound.h" #endif // TREE_BOUNDS_H
/** * @file tree/bounds.h * * Bounds that are useful for binary space partitioning trees. * * TODO: Come up with a better design so you can do plug-and-play distance * metrics. * * @experimental */ #ifndef TREE_BOUNDS_H #define TREE_BOUNDS_H #include <mlpack/core/math/math_lib.h> #include <mlpack/core/math/range.h> #include <mlpack/core/math/kernel.h> #include <mlpack/core/kernels/lmetric.h> #include "hrectbound.h" #include "dhrectperiodicbound.h" #include "dballbound.h" #endif // TREE_BOUNDS_H
Include the correct files since math_lib.h no longer does that.
Include the correct files since math_lib.h no longer does that.
C
bsd-3-clause
ersanliqiao/mlpack,ranjan1990/mlpack,trungda/mlpack,darcyliu/mlpack,Azizou/mlpack,erubboli/mlpack,ranjan1990/mlpack,thirdwing/mlpack,ajjl/mlpack,BookChan/mlpack,Azizou/mlpack,ajjl/mlpack,bmswgnp/mlpack,stereomatchingkiss/mlpack,stereomatchingkiss/mlpack,Azizou/mlpack,bmswgnp/mlpack,theranger/mlpack,theranger/mlpack,trungda/mlpack,datachand/mlpack,minhpqn/mlpack,trungda/mlpack,BookChan/mlpack,thirdwing/mlpack,ajjl/mlpack,chenmoshushi/mlpack,datachand/mlpack,minhpqn/mlpack,datachand/mlpack,erubboli/mlpack,minhpqn/mlpack,palashahuja/mlpack,darcyliu/mlpack,ranjan1990/mlpack,stereomatchingkiss/mlpack,BookChan/mlpack,palashahuja/mlpack,palashahuja/mlpack,lezorich/mlpack,ersanliqiao/mlpack,lezorich/mlpack,ersanliqiao/mlpack,lezorich/mlpack,chenmoshushi/mlpack,erubboli/mlpack,darcyliu/mlpack,theranger/mlpack,chenmoshushi/mlpack,bmswgnp/mlpack,thirdwing/mlpack
920b443aae561319aff2332863b45535fe016453
android/expoview/src/main/jni/EXGL.c
android/expoview/src/main/jni/EXGL.c
#include <stdint.h> #include <jni.h> #include <JavaScriptCore/JSContextRef.h> #include "EXGL.h" JNIEXPORT jint JNICALL Java_host_exp_exponent_exgl_EXGL_EXGLContextCreate (JNIEnv *env, jclass clazz, jlong jsCtxPtr) { JSGlobalContextRef jsCtx = (JSGlobalContextRef) (intptr_t) jsCtxPtr; if (jsCtx) { return EXGLContextCreate(jsCtx); } return 0; } JNIEXPORT void JNICALL Java_host_exp_exponent_exgl_EXGL_EXGLContextDestroy (JNIEnv *env, jclass clazz, jint exglCtxId) { EXGLContextDestroy(exglCtxId); } JNIEXPORT void JNICALL Java_host_exp_exponent_exgl_EXGL_EXGLContextFlush (JNIEnv *env, jclass clazz, jint exglCtxId) { EXGLContextFlush(exglCtxId); }
#include <stdint.h> #include <jni.h> #include <JavaScriptCore/JSContextRef.h> #include "EXGL.h" JNIEXPORT jint JNICALL Java_host_exp_exponent_exgl_EXGL_EXGLContextCreate (JNIEnv *env, jclass clazz, jlong jsCtxPtr) { JSGlobalContextRef jsCtx = (JSGlobalContextRef) (intptr_t) jsCtxPtr; if (jsCtx) { return UEXGLContextCreate(jsCtx); } return 0; } JNIEXPORT void JNICALL Java_host_exp_exponent_exgl_EXGL_EXGLContextDestroy (JNIEnv *env, jclass clazz, jint exglCtxId) { UEXGLContextDestroy(exglCtxId); } JNIEXPORT void JNICALL Java_host_exp_exponent_exgl_EXGL_EXGLContextFlush (JNIEnv *env, jclass clazz, jint exglCtxId) { UEXGLContextFlush(exglCtxId); }
Update to `UEX` prefix for unversioned C/C++ API
Update to `UEX` prefix for unversioned C/C++ API fbshipit-source-id: 57bd0cb
C
bsd-3-clause
exponentjs/exponent,exponent/exponent,exponent/exponent,exponentjs/exponent,exponent/exponent,exponent/exponent,exponent/exponent,exponentjs/exponent,exponentjs/exponent,exponentjs/exponent,exponentjs/exponent,exponentjs/exponent,exponentjs/exponent,exponent/exponent,exponent/exponent,exponent/exponent,exponentjs/exponent,exponent/exponent
dfa2c41cdf0cfe58dc5c24cbf999ce419671a2c9
src/ia64/Gdestroy_addr_space-ia64.c
src/ia64/Gdestroy_addr_space-ia64.c
/* libunwind - a platform-independent unwind library Copyright (C) 2002 Hewlett-Packard Co Contributed by David Mosberger-Tang <[email protected]> This file is part of libunwind. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <stdlib.h> #include "unwind_i.h" void unw_destroy_addr_space (unw_addr_space_t as) { #ifndef UNW_LOCAL_ONLY # ifdef UNW_DEBUG memset (as, 0, sizeof (*as)); # endif free (as); #endif }
Make it a no-op for UNW_LOCAL_ONLY.
(unw_destroy_addr_space): Make it a no-op for UNW_LOCAL_ONLY. 2002/12/18 15:52:23-08:00 mostang.com!davidm Rename: src/ia64/Gdestroy_addr_space.c -> src/ia64/Gdestroy_addr_space-ia64.c (Logical change 1.32)
C
mit
androidarmv6/android_external_libunwind,wdv4758h/libunwind,SyndicateRogue/libunwind,geekboxzone/mmallow_external_libunwind,jrmuizel/libunwind,unkadoug/libunwind,frida/libunwind,pathscale/libunwind,rantala/libunwind,yuyichao/libunwind,pathscale/libunwind,tkelman/libunwind,maltek/platform_external_libunwind,evaautomation/libunwind,jrmuizel/libunwind,unkadoug/libunwind,Chilledheart/libunwind,atanasyan/libunwind-android,cms-externals/libunwind,geekboxzone/lollipop_external_libunwind,lat/libunwind,ehsan/libunwind,CyanogenMod/android_external_libunwind,lat/libunwind,bo-on-software/libunwind,atanasyan/libunwind,zliu2014/libunwind-tilegx,cloudius-systems/libunwind,igprof/libunwind,wdv4758h/libunwind,krytarowski/libunwind,wdv4758h/libunwind,atanasyan/libunwind,dropbox/libunwind,dropbox/libunwind,djwatson/libunwind,martyone/libunwind,fdoray/libunwind,Chilledheart/libunwind,DroidSim/platform_external_libunwind,martyone/libunwind,rantala/libunwind,fillexen/libunwind,rntz/libunwind,dreal-deps/libunwind,atanasyan/libunwind-android,vegard/libunwind,dagar/libunwind,0xlab/0xdroid-external_libunwind,martyone/libunwind,rntz/libunwind,lat/libunwind,project-zerus/libunwind,fillexen/libunwind,geekboxzone/mmallow_external_libunwind,SyndicateRogue/libunwind,evaautomation/libunwind,geekboxzone/lollipop_external_libunwind,tronical/libunwind,rntz/libunwind,tronical/libunwind,tkelman/libunwind,zliu2014/libunwind-tilegx,ehsan/libunwind,djwatson/libunwind,androidarmv6/android_external_libunwind,fillexen/libunwind,rogwfu/libunwind,bo-on-software/libunwind,zeldin/platform_external_libunwind,evaautomation/libunwind,cms-externals/libunwind,joyent/libunwind,zliu2014/libunwind-tilegx,tony/libunwind,0xlab/0xdroid-external_libunwind,dreal-deps/libunwind,geekboxzone/lollipop_external_libunwind,android-ia/platform_external_libunwind,olibc/libunwind,libunwind/libunwind,fdoray/libunwind,Keno/libunwind,krytarowski/libunwind,tronical/libunwind,android-ia/platform_external_libunwind,atanasyan/libunwind-android,cloudius-systems/libunwind,yuyichao/libunwind,fdoray/libunwind,CyanogenMod/android_external_libunwind,project-zerus/libunwind,cloudius-systems/libunwind,unkadoug/libunwind,cms-externals/libunwind,vtjnash/libunwind,rantala/libunwind,olibc/libunwind,CyanogenMod/android_external_libunwind,0xlab/0xdroid-external_libunwind,jrmuizel/libunwind,rogwfu/libunwind,igprof/libunwind,androidarmv6/android_external_libunwind,libunwind/libunwind,zeldin/platform_external_libunwind,olibc/libunwind,vtjnash/libunwind,vtjnash/libunwind,djwatson/libunwind,tkelman/libunwind,adsharma/libunwind,dreal-deps/libunwind,atanasyan/libunwind,tony/libunwind,Chilledheart/libunwind,libunwind/libunwind,SyndicateRogue/libunwind,Keno/libunwind,joyent/libunwind,android-ia/platform_external_libunwind,frida/libunwind,bo-on-software/libunwind,project-zerus/libunwind,pathscale/libunwind,krytarowski/libunwind,maltek/platform_external_libunwind,yuyichao/libunwind,adsharma/libunwind,maltek/platform_external_libunwind,dropbox/libunwind,dagar/libunwind,frida/libunwind,mpercy/libunwind,Keno/libunwind,vegard/libunwind,zeldin/platform_external_libunwind,DroidSim/platform_external_libunwind,igprof/libunwind,rogwfu/libunwind,mpercy/libunwind,DroidSim/platform_external_libunwind,mpercy/libunwind,adsharma/libunwind,geekboxzone/mmallow_external_libunwind,tony/libunwind,joyent/libunwind,ehsan/libunwind,dagar/libunwind,vegard/libunwind
6149b9f287815806eafa12f8ff1b310ea904e25b
tools/regression/tls/ttls4/ttls4.c
tools/regression/tls/ttls4/ttls4.c
/* * This program tests if a new thread's initial tls data * is clean. * * David Xu <[email protected]> * * $FreeBSD$ */ #include <stdio.h> #include <pthread.h> int __thread n; void *f1(void *arg) { n = 1; return (0); } void *f2(void *arg) { if (n != 0) { printf("bug, n == %d \n", n); exit(1); } return (0); } int main() { pthread_t td; int i; pthread_create(&td, NULL, f1, NULL); pthread_join(td, NULL); for (i = 0; i < 1000; ++i) { pthread_create(&td, NULL, f2, NULL); pthread_yield(); pthread_join(td, NULL); } return (0); }
/* * This program tests if a new thread's initial tls data * is clean. * * David Xu <[email protected]> * * $FreeBSD$ */ #include <stdio.h> #include <pthread.h> #include <unistd.h> int __thread n; void *f1(void *arg) { if (n != 0) { printf("bug, n == %d \n", n); exit(1); } n = 1; return (0); } int main() { pthread_t td; int i; for (i = 0; i < 1000; ++i) { pthread_create(&td, NULL, f1, NULL); pthread_join(td, NULL); } sleep(2); for (i = 0; i < 1000; ++i) { pthread_create(&td, NULL, f1, NULL); pthread_join(td, NULL); } return (0); }
Adjust code to be more reliable.
Adjust code to be more reliable.
C
bsd-3-clause
jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase
e865f3e6f4ef2d2617f5003c7c819ed15b5a511b
include/asm-sparc/device.h
include/asm-sparc/device.h
/* * Arch specific extensions to struct device * * This file is released under the GPLv2 */ #include <asm-generic/device.h>
/* * Arch specific extensions to struct device * * This file is released under the GPLv2 */ #ifndef _ASM_SPARC_DEVICE_H #define _ASM_SPARC_DEVICE_H struct device_node; struct of_device; struct dev_archdata { struct device_node *prom_node; struct of_device *op; }; #endif /* _ASM_SPARC_DEVICE_H */
Define minimal struct dev_archdata, similarly to sparc64.
[SPARC]: Define minimal struct dev_archdata, similarly to sparc64. Signed-off-by: David S. Miller <[email protected]>
C
mit
KristFoundation/Programs,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs
a1f23181e284c102d6def1b4a13c29b989c5c097
ui/addressdialog.h
ui/addressdialog.h
#pragma once #include <QtWidgets/QDialog> #include <QtWidgets/QLabel> #include <QtCore/QStringListModel> #include <QtWidgets/QCheckBox> #include <QtWidgets/QComboBox> #include <QtCore/QTimer> #include <QtCore/QThread> #include "binaryninjaapi.h" #include "uitypes.h" class BINARYNINJAUIAPI GetSymbolsListThread: public QThread { Q_OBJECT QStringList m_allSymbols; std::function<void()> m_completeFunc; std::mutex m_mutex; bool m_done; BinaryViewRef m_view; protected: virtual void run() override; public: GetSymbolsListThread(BinaryViewRef view, const std::function<void()>& completeFunc); void cancel(); const QStringList& getSymbols() const { return m_allSymbols; } }; class BINARYNINJAUIAPI AddressDialogWithPreview: public QDialog { Q_OBJECT QComboBox* m_combo; QStringListModel* m_model; QLabel* m_previewText; BinaryViewRef m_view; uint64_t m_addr; uint64_t m_here; QCheckBox* m_checkBox; bool m_resultValid; QTimer* m_updateTimer; QStringList m_historyEntries; int m_historySize; GetSymbolsListThread* m_updateThread; QColor m_defaultColor; QFont m_defaultFont; QString m_prompt; void commitHistory(); void customEvent(QEvent* event); private Q_SLOTS: void updateTimerEvent(); void accepted(); void updateRelativeState(int state); void updatePreview(QString text); public: AddressDialogWithPreview(QWidget* parent, BinaryViewRef view, uint64_t here, const QString& title = "Go to Address", const QString& prompt = "Enter Expression"); ~AddressDialogWithPreview() { delete m_updateThread; } uint64_t getOffset() const { return m_addr; } };
Add autocomplete and preview to 'Go To Address' dialog
Add autocomplete and preview to 'Go To Address' dialog
C
mit
joshwatson/binaryninja-api,joshwatson/binaryninja-api,joshwatson/binaryninja-api,Vector35/binaryninja-api,joshwatson/binaryninja-api,Vector35/binaryninja-api,Vector35/binaryninja-api,Vector35/binaryninja-api,Vector35/binaryninja-api,Vector35/binaryninja-api,joshwatson/binaryninja-api,Vector35/binaryninja-api
4c870904cd1ae7954ea1412d9145ca75b927dc18
gobject/gobject-autocleanups.h
gobject/gobject-autocleanups.h
/* * Copyright © 2015 Canonical Limited * * 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 of the licence, 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, see <http://www.gnu.org/licenses/>. * * Author: Ryan Lortie <[email protected]> */ #if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) #error "Only <glib-object.h> can be included directly." #endif G_DEFINE_AUTOPTR_CLEANUP_FUNC(GObject, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(GInitiallyUnowned, g_object_unref) G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(GValue, g_value_clear)
/* * Copyright © 2015 Canonical Limited * * 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 of the licence, 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, see <http://www.gnu.org/licenses/>. * * Author: Ryan Lortie <[email protected]> */ #if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) #error "Only <glib-object.h> can be included directly." #endif G_DEFINE_AUTOPTR_CLEANUP_FUNC(GObject, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(GInitiallyUnowned, g_object_unref) G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(GValue, g_value_unset)
Revert "gvalue: Use g_value_clear as clear function"
Revert "gvalue: Use g_value_clear as clear function" This reverts commit 3bb2e8dfc9eae7c6abd8fbec5fa751ffcb495121.
C
lgpl-2.1
MathieuDuponchelle/glib,mzabaluev/glib,endlessm/glib,cention-sany/glib,MathieuDuponchelle/glib,endlessm/glib,johne53/MB3Glib,mzabaluev/glib,endlessm/glib,mzabaluev/glib,johne53/MB3Glib,cention-sany/glib,MathieuDuponchelle/glib,johne53/MB3Glib,Distrotech/glib,ieei/glib,johne53/MB3Glib,cention-sany/glib,endlessm/glib,ieei/glib,Distrotech/glib,endlessm/glib,mzabaluev/glib,johne53/MB3Glib,MathieuDuponchelle/glib,Distrotech/glib,Distrotech/glib,ieei/glib,ieei/glib,Distrotech/glib,cention-sany/glib,johne53/MB3Glib,ieei/glib,cention-sany/glib,MathieuDuponchelle/glib,mzabaluev/glib
2b45cbf3663945a2a3178a93b6cf6cce81dd8376
sipXmediaLib/include/mp/MprnIntMsg.h
sipXmediaLib/include/mp/MprnIntMsg.h
// // Copyright (C) 2007 SIPez LLC. // Licensed to SIPfoundry under a Contributor Agreement. // // Copyright (C) 2007 SIPfoundry Inc. // Licensed by SIPfoundry under the LGPL license. // // $$ /////////////////////////////////////////////////////////////////////////////// #ifndef _MprnIntMsg_h_ #define _MprnIntMsg_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 /// Message notification object used to send an abstract integer. class MprnIntMsg : public MpResNotificationMsg { /* //////////////////////////// PUBLIC //////////////////////////////////// */ public: /* ============================ CREATORS ================================== */ ///@name Creators //@{ /// Constructor MprnIntMsg(MpResNotificationMsg::RNMsgType msgType, const UtlString& namedResOriginator, int value, MpConnectionID connId = MP_INVALID_CONNECTION_ID, int streamId = -1); /// Copy constructor MprnIntMsg(const MprnIntMsg& rMsg); /// Create a copy of this msg object (which may be of a derived type) virtual OsMsg* createCopy() const; /// Destructor virtual ~MprnIntMsg(); //@} /* ============================ MANIPULATORS ============================== */ ///@name Manipulators //@{ /// Assignment operator MprnIntMsg& operator=(const MprnIntMsg& rhs); /// Set the value this notification reports. void setValue(int value); //@} /* ============================ ACCESSORS ================================= */ ///@name Accessors //@{ /// Get the value this notification reports. int getValue() const; //@} /* ============================ INQUIRY =================================== */ ///@name Inquiry //@{ //@} /* //////////////////////////// PROTECTED ///////////////////////////////// */ protected: /* //////////////////////////// PRIVATE /////////////////////////////////// */ private: int mValue; ///< Reported value. }; /* ============================ INLINE METHODS ============================ */ #endif // _MprnIntMsg_h_
Add notification message, bearing some abstract integer.
Add notification message, bearing some abstract integer. git-svn-id: f26ccc5efe72c2bd8e1c40f599fe313f2692e4de@10874 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
e590329059edafa461324397f550cf314e35be70
include/dijkstra.h
include/dijkstra.h
#ifndef __DIJKSTRA_H__ #define __DIJKSTRA_H__ #include <track_node.h> int dijkstra(const track_node* const track, const track_node* const start, const track_node* const end, path_node* const path); #endif
#ifndef __DIJKSTRA_H__ #define __DIJKSTRA_H__ #include <track_node.h> #define MAX_ROUTING_TIME_ESTIMATE 5 int dijkstra(const track_node* const track, const track_node* const start, const track_node* const end, path_node* const path); #endif
Add a max routing time estimate (in clock ticks)
Add a max routing time estimate (in clock ticks)
C
mit
ferrous26/cs452-flaming-meme,ferrous26/cs452-flaming-meme,ferrous26/cs452-flaming-meme
f72844ae685bc5516a818402115b0df8b3efd016
libevmjit-cpp/JitVM.h
libevmjit-cpp/JitVM.h
#pragma once #include <libevm/VMFace.h> #include <evmjit/libevmjit/ExecutionEngine.h> namespace dev { namespace eth { class JitVM: public VMFace { public: virtual bytesConstRef execImpl(u256& io_gas, ExtVMFace& _ext, OnOpFunc const& _onOp = {}, uint64_t _steps = (uint64_t)-1) override final; private: jit::RuntimeData m_data; jit::ExecutionEngine m_engine; std::unique_ptr<VMFace> m_fallbackVM; ///< VM used in case of input data rejected by JIT }; } }
#pragma once #include <libevm/VMFace.h> #include <evmjit/libevmjit/ExecutionEngine.h> namespace dev { namespace eth { class JitVM: public VMFace { public: virtual bytesConstRef execImpl(u256& io_gas, ExtVMFace& _ext, OnOpFunc const& _onOp, uint64_t _steps) override final; private: jit::RuntimeData m_data; jit::ExecutionEngine m_engine; std::unique_ptr<VMFace> m_fallbackVM; ///< VM used in case of input data rejected by JIT }; } }
Change the way execution results are collected.
Change the way execution results are collected. Changes handling ExecutionResult by Executive. From now execution results are collected on if a storage for results (ExecutionResult) is provided to an Executiove instance up front. This change allow better output management for calls - VM interface improved.
C
mit
ethereum/evmjit,ethereum/evmjit,ethereum/evmjit
61481afd2d1e81e91b533a55dc544a62738ba663
chrome/browser/extensions/convert_web_app.h
chrome/browser/extensions/convert_web_app.h
// Copyright (c) 2010 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 CHROME_BROWSER_EXTENSIONS_CONVERT_WEB_APP_H_ #define CHROME_BROWSER_EXTENSIONS_CONVERT_WEB_APP_H_ #pragma once #include <string> #include "base/ref_counted.h" class Extension; namespace base { class Time; } namespace webkit_glue { struct WebApplicationInfo; } // Generates a version number for an extension from a time. The goal is to make // use of the version number to communicate some useful information. The // returned version has the format: // <year>.<month><day>.<upper 16 bits of unix timestamp>.<lower 16 bits> std::string ConvertTimeToExtensionVersion(const base::Time& time); // Wraps the specified web app in an extension. The extension is created // unpacked in the system temp dir. Returns a valid extension that the caller // should take ownership on success, or NULL and |error| on failure. // // NOTE: This function does file IO and should not be called on the UI thread. // NOTE: The caller takes ownership of the directory at extension->path() on the // returned object. scoped_refptr<Extension> ConvertWebAppToExtension( const webkit_glue::WebApplicationInfo& web_app_info, const base::Time& create_time); #endif // CHROME_BROWSER_EXTENSIONS_CONVERT_WEB_APP_H_
// Copyright (c) 2010 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 CHROME_BROWSER_EXTENSIONS_CONVERT_WEB_APP_H_ #define CHROME_BROWSER_EXTENSIONS_CONVERT_WEB_APP_H_ #pragma once #include <string> #include "base/ref_counted.h" class Extension; namespace base { class Time; } namespace webkit_glue { class WebApplicationInfo; } // Generates a version number for an extension from a time. The goal is to make // use of the version number to communicate some useful information. The // returned version has the format: // <year>.<month><day>.<upper 16 bits of unix timestamp>.<lower 16 bits> std::string ConvertTimeToExtensionVersion(const base::Time& time); // Wraps the specified web app in an extension. The extension is created // unpacked in the system temp dir. Returns a valid extension that the caller // should take ownership on success, or NULL and |error| on failure. // // NOTE: This function does file IO and should not be called on the UI thread. // NOTE: The caller takes ownership of the directory at extension->path() on the // returned object. scoped_refptr<Extension> ConvertWebAppToExtension( const webkit_glue::WebApplicationInfo& web_app_info, const base::Time& create_time); #endif // CHROME_BROWSER_EXTENSIONS_CONVERT_WEB_APP_H_
Revert 64847 - Clang fix.
Revert 64847 - Clang fix. [email protected] Review URL: http://codereview.chromium.org/4300003 git-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@64850 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
C
bsd-3-clause
wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser
23abb094a622353a97e7a51aa28aa5efb29f6fbb
libc/sysdeps/linux/powerpc/bits/msq.h
libc/sysdeps/linux/powerpc/bits/msq.h
/* Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C 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. The GNU C 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 the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _SYS_MSG_H # error "Never use <bits/msq.h> directly; include <sys/msg.h> instead." #endif #include <bits/types.h> /* Define options for message queue functions. */ #define MSG_NOERROR 010000 /* no error if message is too big */ #ifdef __USE_GNU # define MSG_EXCEPT 020000 /* recv any msg except of specified type */ #endif /* Types used in the structure definition. */ typedef unsigned long int msgqnum_t; typedef unsigned long int msglen_t; /* Structure of record for one message inside the kernel. The type `struct msg' is opaque. */ struct msqid_ds { struct ipc_perm msg_perm; /* structure describing operation permission */ unsigned int __unused1; __time_t msg_stime; /* time of last msgsnd command */ unsigned int __unused2; __time_t msg_rtime; /* time of last msgrcv command */ unsigned int __unused3; __time_t msg_ctime; /* time of last change */ unsigned long __msg_cbytes; /* current number of bytes on queue */ msgqnum_t msg_qnum; /* number of messages currently on queue */ msglen_t msg_qbytes; /* max number of bytes allowed on queue */ __pid_t msg_lspid; /* pid of last msgsnd() */ __pid_t msg_lrpid; /* pid of last msgrcv() */ unsigned long __unused4; unsigned long __unused5; }; #ifdef __USE_MISC # define msg_cbytes __msg_cbytes /* ipcs ctl commands */ # define MSG_STAT 11 # define MSG_INFO 12 /* buffer for msgctl calls IPC_INFO, MSG_INFO */ struct msginfo { int msgpool; int msgmap; int msgmax; int msgmnb; int msgmni; int msgssz; int msgtql; unsigned short int msgseg; }; #endif /* __USE_MISC */
Make powerpc compile. Needs this header...
Make powerpc compile. Needs this header...
C
lgpl-2.1
joel-porquet/tsar-uclibc,joel-porquet/tsar-uclibc,joel-porquet/tsar-uclibc,joel-porquet/tsar-uclibc
ac42aa1f7aa6de3cd131ecb8224f1a6d51179760
libgo/go/log/syslog/syslog_c.c
libgo/go/log/syslog/syslog_c.c
/* syslog_c.c -- call syslog for Go. Copyright 2011 The Go Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. */ #include <syslog.h> /* We need to use a C function to call the syslog function, because we can't represent a C varargs function in Go. */ void syslog_c(int, const char*) asm ("libgo_syslog.syslog.syslog_c"); void syslog_c (int priority, const char *msg) { syslog (priority, "%s", msg); }
/* syslog_c.c -- call syslog for Go. Copyright 2011 The Go Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. */ #include <syslog.h> /* We need to use a C function to call the syslog function, because we can't represent a C varargs function in Go. */ void syslog_c(int, const char*) asm ("libgo_log.syslog.syslog_c"); void syslog_c (int priority, const char *msg) { syslog (priority, "%s", msg); }
Fix name of C syslog function.
syslog: Fix name of C syslog function. From Rainer Orth. R=iant CC=gofrontend-dev https://golang.org/cl/5480052
C
bsd-3-clause
golang/gofrontend,anlhord/gofrontend,anlhord/gofrontend,qskycolor/gofrontend,qskycolor/gofrontend,qskycolor/gofrontend,anlhord/gofrontend,anlhord/gofrontend,golang/gofrontend,golang/gofrontend,anlhord/gofrontend,anlhord/gofrontend,qskycolor/gofrontend,qskycolor/gofrontend,qskycolor/gofrontend,anlhord/gofrontend,qskycolor/gofrontend,golang/gofrontend
31e4a57f6460265515233833bead6202e7304e07
EmbeddedPkg/Include/Library/DebugAgentTimerLib.h
EmbeddedPkg/Include/Library/DebugAgentTimerLib.h
/** @file Platform specific Debug Agent abstraction for timer used by the agent. The timer is used by the debugger to break into a running program. Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR> This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/ #ifndef __GDB_TIMER_LIB__ #define __GDB_TIMER_LIB__ /** Setup all the hardware needed for the debug agents timer. This function is used to set up debug enviroment. It may enable interrupts. **/ VOID EFIAPI DebugAgentTimerIntialize ( VOID ); /** Set the period for the debug agent timer. Zero means disable the timer. @param[in] TimerPeriodMilliseconds Frequency of the debug agent timer. **/ VOID EFIAPI DebugAgentTimerSetPeriod ( IN UINT32 TimerPeriodMilliseconds ); /** Perform End Of Interrupt for the debug agent timer. This is called in the interrupt handler after the interrupt has been processed. **/ VOID EFIAPI DebugAgentTimerEndOfInterrupt ( VOID ); #endif
/** @file Platform specific Debug Agent abstraction for timer used by the agent. The timer is used by the debugger to break into a running program. Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR> This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/ #ifndef __GDB_TIMER_LIB__ #define __GDB_TIMER_LIB__ /** Setup all the hardware needed for the debug agents timer. This function is used to set up debug enviroment. It may enable interrupts. **/ VOID EFIAPI DebugAgentTimerIntialize ( VOID ); /** Set the period for the debug agent timer. Zero means disable the timer. @param[in] TimerPeriodMilliseconds Frequency of the debug agent timer. **/ VOID EFIAPI DebugAgentTimerSetPeriod ( IN UINT32 TimerPeriodMilliseconds ); /** Perform End Of Interrupt for the debug agent timer. This is called in the interrupt handler after the interrupt has been processed. **/ VOID EFIAPI DebugAgentTimerEndOfInterrupt ( VOID ); #endif
Fix newline at end of file issue.
Fix newline at end of file issue. git-svn-id: 5648d1bec6962b0a6d1d1b40eba8cf5cdb62da3d@10508 6f19259b-4bc3-4df7-8a09-765794883524
C
bsd-2-clause
MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2
f69cd49a44ad37edd7d3c7dcab82ab07633da72a
src/software_rasterizer/rasterizer.h
src/software_rasterizer/rasterizer.h
#ifndef RPLNN_RASTERIZER_H #define RPLNN_RASTERIZER_H /* Currently wants the points in pixel coordinates, (0, 0) at screen center increasing towards top-right. Tri wanted as CCW * Depth buffer stores the depth in the first 24bits and the rest 8 are reserved for future use (stencil). */ void rasterizer_rasterize(uint32_t *render_target, uint32_t *depth_buf, const struct vec2_int *target_size, const struct vec4_float *vert_buf, const struct vec2_float *uv_buf, const unsigned int *ind_buf, const unsigned int index_count, uint32_t *texture, struct vec2_int *texture_size); void rasterizer_clear_depth_buffer(uint32_t *depth_buf, const struct vec2_int *buf_size); #endif /* RPLNN_RASTERIZER_H */
#ifndef RPLNN_RASTERIZER_H #define RPLNN_RASTERIZER_H /* Currently wants the points in pixel coordinates, (0, 0) at screen center increasing towards top-right. Tri wanted as CCW * Depth buffer stores the depth in the first 24bits and the rest 8 are reserved for future use (stencil). */ void rasterizer_rasterize(uint32_t *render_target, uint32_t *depth_buf, const struct vec2_int *target_size, const struct vec4_float *vert_buf, const struct vec2_float *uv_buf, const unsigned int *ind_buf, const unsigned int index_count, uint32_t *texture, struct vec2_int *texture_size); void rasterizer_clear_depth_buffer(uint32_t *depth_buf, const struct vec2_int *buf_size); #endif /* RPLNN_RASTERIZER_H */
Clean up 7: Split function parameter list to multiple lines.
Clean up 7: Split function parameter list to multiple lines.
C
mit
ropelinen/rasterizer,ropelinen/rasterizer
d1192bc1cb4ba12af995c6ae6a8a9632eb482c4a
slave/scoils.c
slave/scoils.c
#include "../modlib.h" #include "../parser.h" #include "stypes.h" #include "scoils.h" //Use external slave configuration extern MODBUSSlaveStatus MODBUSSlave;
Create slave coils module header file
Create slave coils module header file
C
mit
Jacajack/modlib
70e0426892b6df38ce023b41ea86526e55a43c11
tests/regression/02-base/79-unknown-spawn.c
tests/regression/02-base/79-unknown-spawn.c
// PARAM: --enable sem.unknown_function.spawn #include <goblint.h> #include <stddef.h> int magic(void* (f (void *))); void *t_fun(void *arg) { // __goblint_check(1); // reachable return NULL; } int main() { magic(t_fun); // unknown function return 0; }
// PARAM: --enable sem.unknown_function.spawn #include <goblint.h> #include <stddef.h> int magic(void* (f (void *))); void *t_fun(void *arg) { __goblint_check(1); // reachable return NULL; } int main() { magic(t_fun); // unknown function return 0; }
Undo commenting out of __goblint_check
Undo commenting out of __goblint_check
C
mit
goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer
9a2c64d71dfd174fb9dcc7f6411e325a54fc64b4
include/config/SkUserConfigManual.h
include/config/SkUserConfigManual.h
/* * Copyright 2017 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkUserConfigManual_DEFINED #define SkUserConfigManual_DEFINED #define GR_TEST_UTILS 1 #define SK_BUILD_FOR_ANDROID_FRAMEWORK #define SK_DEFAULT_FONT_CACHE_LIMIT (768 * 1024) #define SK_DEFAULT_GLOBAL_DISCARDABLE_MEMORY_POOL_SIZE (512 * 1024) #define SK_USE_FREETYPE_EMBOLDEN // Disable these Ganesh features #define SK_DISABLE_EXPLICIT_GPU_RESOURCE_ALLOCATION #define SK_DISABLE_RENDER_TARGET_SORTING // Check error is expensive. HWUI historically also doesn't check its allocations #define GR_GL_CHECK_ALLOC_WITH_GET_ERROR 0 // Legacy flags #define SK_IGNORE_GPU_DITHER #define SK_SUPPORT_DEPRECATED_CLIPOPS #define SK_SUPPORT_LEGACY_DRAWLOOPER #define SK_IGNORE_LINEAR_METRICS_FIX // Needed until we fix https://bug.skia.org/2440 #define SK_SUPPORT_LEGACY_CLIPTOLAYERFLAG #define SK_SUPPORT_LEGACY_EMBOSSMASKFILTER #define SK_SUPPORT_LEGACY_AA_CHOICE #define SK_SUPPORT_LEGACY_AAA_CHOICE #define SK_DISABLE_DAA // skbug.com/6886 #endif // SkUserConfigManual_DEFINED
/* * Copyright 2017 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkUserConfigManual_DEFINED #define SkUserConfigManual_DEFINED #define GR_TEST_UTILS 1 #define SK_BUILD_FOR_ANDROID_FRAMEWORK #define SK_DEFAULT_FONT_CACHE_LIMIT (768 * 1024) #define SK_DEFAULT_GLOBAL_DISCARDABLE_MEMORY_POOL_SIZE (512 * 1024) #define SK_USE_FREETYPE_EMBOLDEN // Disable these Ganesh features #define SK_DISABLE_EXPLICIT_GPU_RESOURCE_ALLOCATION #define SK_DISABLE_RENDER_TARGET_SORTING // Check error is expensive. HWUI historically also doesn't check its allocations #define GR_GL_CHECK_ALLOC_WITH_GET_ERROR 0 // Legacy flags #define SK_IGNORE_GPU_DITHER #define SK_SUPPORT_DEPRECATED_CLIPOPS #define SK_SUPPORT_LEGACY_DRAWLOOPER // Needed until we fix https://bug.skia.org/2440 #define SK_SUPPORT_LEGACY_CLIPTOLAYERFLAG #define SK_SUPPORT_LEGACY_EMBOSSMASKFILTER #define SK_SUPPORT_LEGACY_AA_CHOICE #define SK_SUPPORT_LEGACY_AAA_CHOICE #define SK_DISABLE_DAA // skbug.com/6886 #endif // SkUserConfigManual_DEFINED
Remove SK_IGNORE_LINEAR_METRICS_FIX flag from Skia
Remove SK_IGNORE_LINEAR_METRICS_FIX flag from Skia Test: refactoring change, will land once all existing tests pass. Change-Id: I2cdb41023689e458990a71c5dbcc35844a22bbfa
C
bsd-3-clause
aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia
d488d9cfefc06373fc0f18ec334a5caa8d73e5c9
test/Index/complete-tabs.c
test/Index/complete-tabs.c
// Test code-completion in the presence of tabs struct Point { int x, y; }; void f(struct Point *p) { p-> // RUN: c-index-test -code-completion-at=%s:5:5 %s | FileCheck -check-prefix=CHECK-CC1 %s // CHECK-CC1: {TypedText x} // CHECK-CC1: {TypedText y}
Add a test case for code-completion in the presence of tabs
Add a test case for code-completion in the presence of tabs git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@92882 91177308-0d34-0410-b5e6-96231b3b80d8
C
apache-2.0
apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang
975f8f82233cacbd8aa5f5baeb786b904e4a6dc8
src/libreset/params.h
src/libreset/params.h
/* * libreset - Reentrent set library for fast set operations in C * * Copyright (C) 2014 Matthias Beyer * Copyright (C) 2014 Julian Ganz * * This file is part of libreset. * * libreset 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. * * libreset 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 libreset. If not, see <http://www.gnu.org/licenses/>. */ /** * @addtogroup internal_parameters * * This group contains parameters and tweakables for the data structures. * * @{ */ #ifndef __PARAMS_H__ #define __PARAMS_H__ /** * Number of variants to derive from a hash function * * When generating a bloom filter for a single element from a hash, some * transformatoin will be applied to generate multiple variants of the hash. * This way, only one hash is neccessary to use bloom filters. */ #define HASH_VARIANTS (3) /** * @} */ #endif
Add header for parameters and tweakables
Add header for parameters and tweakables
C
lgpl-2.1
waysome/libreset,waysome/libreset
5616dc9ea64d8fcc7f366f6c11b050817d7ec227
include/Support/ThreadSupport.h
include/Support/ThreadSupport.h
//===-- Support/ThreadSupport.h - Generic threading support -----*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file was developed by the LLVM research group and is distributed under // the University of Illinois Open Source License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines platform-agnostic interfaces that can be used to write // multi-threaded programs. Autoconf is used to chose the correct // implementation of these interfaces, or default to a non-thread-capable system // if no matching system support is available. // //===----------------------------------------------------------------------===// #ifndef SUPPORT_THREADSUPPORT_H #define SUPPORT_THREADSUPPORT_H // FIXME: We need autoconf support to detect pthreads! #if 0 #include "Support/ThreadSupport-PThreads.h" #else #include "Support/ThreadSupport-NoSupport.h" #endif // If no system support is available namespace llvm { /// MutexLocker - Instances of this class acquire a given Lock when /// constructed and hold that lock until destruction. /// class MutexLocker { Mutex &M; MutexLocker(const LockHolder &); // DO NOT IMPLEMENT void operator=(const MutexLocker&); // DO NOT IMPLEMENT public: MutexLocker(Mutex &m) : M(m) { M.acquire(); } ~MutexLocker() { M.release(); } }; } #endif // SUPPORT_THREADSUPPORT_H
//===-- Support/ThreadSupport.h - Generic threading support -----*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file was developed by the LLVM research group and is distributed under // the University of Illinois Open Source License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines platform-agnostic interfaces that can be used to write // multi-threaded programs. Autoconf is used to chose the correct // implementation of these interfaces, or default to a non-thread-capable system // if no matching system support is available. // //===----------------------------------------------------------------------===// #ifndef SUPPORT_THREADSUPPORT_H #define SUPPORT_THREADSUPPORT_H // FIXME: Eventually don't #include config.h here #include "Config/config.h" #if defined(HAVE_PTHREAD_MUTEX_LOCK) && HAVE_PTHREAD_MUTEX_LOCK #include "Support/ThreadSupport-PThreads.h" #else #include "Support/ThreadSupport-NoSupport.h" #endif // If no system support is available namespace llvm { /// MutexLocker - Instances of this class acquire a given Lock when /// constructed and hold that lock until destruction. /// class MutexLocker { Mutex &M; MutexLocker(const MutexLocker &); // DO NOT IMPLEMENT void operator=(const MutexLocker &); // DO NOT IMPLEMENT public: MutexLocker(Mutex &m) : M(m) { M.acquire(); } ~MutexLocker() { M.release(); } }; } #endif // SUPPORT_THREADSUPPORT_H
Use autoconf answers from config.h (FIXME, should autoconf this file directly instead).
Use autoconf answers from config.h (FIXME, should autoconf this file directly instead). Fix LockHolder/MutexLocker typo. git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@11156 91177308-0d34-0410-b5e6-96231b3b80d8
C
apache-2.0
llvm-mirror/llvm,llvm-mirror/llvm,dslab-epfl/asap,llvm-mirror/llvm,GPUOpen-Drivers/llvm,dslab-epfl/asap,apple/swift-llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,apple/swift-llvm,llvm-mirror/llvm,chubbymaggie/asap,llvm-mirror/llvm,dslab-epfl/asap,apple/swift-llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,dslab-epfl/asap,apple/swift-llvm,dslab-epfl/asap,apple/swift-llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,chubbymaggie/asap,dslab-epfl/asap,llvm-mirror/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,llvm-mirror/llvm,chubbymaggie/asap,chubbymaggie/asap,chubbymaggie/asap,dslab-epfl/asap,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm
6b614879e21596184fc0af246243d1cce880e1f7
test/Sema/carbon.c
test/Sema/carbon.c
// RUN: clang %s -fsyntax-only -print-stats #ifdef __APPLE__ #include <Carbon/Carbon.h> #endif
// RUN: clang %s -fsyntax-only -print-stats && // RUN: clang -x c-header -o %t %s && clang -token-cache %t %s #ifdef __APPLE__ #include <Carbon/Carbon.h> #endif
Enhance -fsyntax-only test of Carbon.h to also include testing for PTH.
Enhance -fsyntax-only test of Carbon.h to also include testing for PTH. git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@61958 91177308-0d34-0410-b5e6-96231b3b80d8
C
apache-2.0
apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang
26f5dea4e721592f0e64183b9d0a325174487231
libs/ac_memset/srcs/ac_memset.c
libs/ac_memset/srcs/ac_memset.c
/* * Copyright 2015 Wink Saville * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <ac_stop.h> #include <ac_printf.h> /** * Set memory to the given byte value * * @param s points to the array * @param val is a byte used to fill the array * @param count is an integer the size of a pointer * * @return = s */ void* ac_memset(void *s, ac_u8 val, ac_uptr count) { // TODO: Optimize ac_u8* pU8 = s; for(ac_uptr i = 0; i < count; i++) { *pU8++ = val; } return s; }
/* * Copyright 2015 Wink Saville * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <ac_stop.h> #include <ac_printf.h> /** * Set memory to the given byte value * * @param s points to the array * @param val is a byte used to fill the array * @param count is an integer the size of a pointer * * @return = s */ void* ac_memset(void *s, ac_u8 val, ac_uptr count) { // TODO: Optimize ac_u8* pU8 = s; for(ac_uptr i = 0; i < count; i++) { *pU8++ = val; } return s; } /** * Set memory, compiler needs this for initializing structs and such. */ void* memset(void *s, int val, ac_size_t count) { return ac_memset(s, val, count); }
Add memset, needed by compiler for initializing structs and such
Add memset, needed by compiler for initializing structs and such
C
apache-2.0
winksaville/sadie,winksaville/sadie
497063382b921183790a3ab78a12d7ee3e9943d2
isHUD/ISHAppDelegate.h
isHUD/ISHAppDelegate.h
// // ISHAppDelegate.h // isHUD // // Created by ghawkgu on 11/15/11. // Copyright (c) 2011 ghawkgu. All rights reserved. // #import <Cocoa/Cocoa.h> #define HUD_FADE_IN_DURATION (0.25) #define HUD_FADE_OUT_DURATION (0.5) #define HUD_DISPLAY_DURATION (2.0) #define HUD_ALPHA_VALUE (0.6) #define HUD_CORNER_RADIUS (18.0) #define HUD_HORIZONTAL_MARGIN (30) #define HUD_HEIGHT (100) #define MENUITEM_TAG_TOGGLE_LOGIN_ITEM 1 #define STATUS_MENU_ICON @"icon-18x18.png" @interface ISHAppDelegate : NSObject <NSApplicationDelegate> { @private BOOL fadingOut; } @property (unsafe_unretained) IBOutlet NSWindow *window; @property (unsafe_unretained) IBOutlet NSTextField *isName; @property (unsafe_unretained) IBOutlet NSMenu *statusMenu; @property (unsafe_unretained) IBOutlet NSView *panelView; @property (unsafe_unretained) IBOutlet NSImageView *isImage; @property (strong) NSStatusItem * myStatusMenu; - (IBAction)quit:(id)sender; - (IBAction)toggleLoginItem:(id)sender; @end
// // ISHAppDelegate.h // isHUD // // Created by ghawkgu on 11/15/11. // Copyright (c) 2011 ghawkgu. All rights reserved. // #import <Cocoa/Cocoa.h> #define HUD_FADE_IN_DURATION (0.25) #define HUD_FADE_OUT_DURATION (0.5) #define HUD_DISPLAY_DURATION (2.0) #define HUD_ALPHA_VALUE (0.6) #define HUD_CORNER_RADIUS (18.0) #define HUD_HORIZONTAL_MARGIN (30) #define HUD_HEIGHT (90) #define MENUITEM_TAG_TOGGLE_LOGIN_ITEM 1 #define STATUS_MENU_ICON @"icon-18x18.png" @interface ISHAppDelegate : NSObject <NSApplicationDelegate> { @private BOOL fadingOut; } @property (unsafe_unretained) IBOutlet NSWindow *window; @property (unsafe_unretained) IBOutlet NSTextField *isName; @property (unsafe_unretained) IBOutlet NSMenu *statusMenu; @property (unsafe_unretained) IBOutlet NSView *panelView; @property (unsafe_unretained) IBOutlet NSImageView *isImage; @property (strong) NSStatusItem * myStatusMenu; - (IBAction)quit:(id)sender; - (IBAction)toggleLoginItem:(id)sender; @end
Set the height of the HUD to 90.
Set the height of the HUD to 90.
C
mit
ghawkgu/isHUD
8dd185b184d006b2e646eb4beeaffa1f9d9d930a
include/Genes/Freedom_To_Move_Gene.h
include/Genes/Freedom_To_Move_Gene.h
#ifndef FREEDOM_TO_MOVE_GENE_H #define FREEDOM_TO_MOVE_GENE_H #include <fstream> #include "Gene.h" // Total number of legal moves class Freedom_To_Move_Gene : public Gene { public: Freedom_To_Move_Gene(); explicit Freedom_To_Move_Gene(std::ifstream& ifs); ~Freedom_To_Move_Gene() override; Freedom_To_Move_Gene* duplicate() const override; std::string name() const override; private: size_t maximum_number_of_moves; double score_board(const Board& board, Color perspective) const override; }; #endif // FREEDOM_TO_MOVE_GENE_H
#ifndef FREEDOM_TO_MOVE_GENE_H #define FREEDOM_TO_MOVE_GENE_H #include <fstream> #include "Gene.h" // Total number of legal moves class Freedom_To_Move_Gene : public Gene { public: Freedom_To_Move_Gene(); ~Freedom_To_Move_Gene() override; Freedom_To_Move_Gene* duplicate() const override; std::string name() const override; private: size_t maximum_number_of_moves; double score_board(const Board& board, Color perspective) const override; }; #endif // FREEDOM_TO_MOVE_GENE_H
Remove unneeded method override declaration from Freedom to Move
Remove unneeded method override declaration from Freedom to Move
C
mit
MarkZH/Genetic_Chess,MarkZH/Genetic_Chess,MarkZH/Genetic_Chess,MarkZH/Genetic_Chess,MarkZH/Genetic_Chess
7278a74da3454fff7eb439ef4e1c6a2049c1be9c
Firmware/main.c
Firmware/main.c
#include <stm32f4xx.h> #include <stm32f4xx_gpio.h> void init_GPIO() { GPIO_InitTypeDef GPIO_InitStruct = { .GPIO_Pin = GPIO_Pin_15, .GPIO_Mode = GPIO_Mode_OUT, .GPIO_Speed = GPIO_Speed_50MHz, .GPIO_OType =GPIO_OType_PP, .GPIO_PuPd = GPIO_PuPd_UP }; RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOD, ENABLE); GPIO_Init(GPIOD, &GPIO_InitStruct); } int main() { init_GPIO(); return 0; }
#include <stm32f4xx.h> #include <stm32f4xx_gpio.h> void init_GPIO() { GPIO_InitTypeDef GPIO_InitStruct = { .GPIO_Pin = GPIO_Pin_12 | GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15, .GPIO_Mode = GPIO_Mode_OUT, .GPIO_Speed = GPIO_Speed_50MHz, .GPIO_OType =GPIO_OType_PP, .GPIO_PuPd = GPIO_PuPd_DOWN }; RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOD, ENABLE); GPIO_Init(GPIOD, &GPIO_InitStruct); } int main() { init_GPIO(); GPIO_SetBits(GPIOD, GPIO_Pin_12); return 0; }
Adjust GPIO settings and add some test code
Adjust GPIO settings and add some test code
C
mit
PUCSIE-embedded-course/stm32f4-examples,PUCSIE-embedded-course/stm32f4-examples,PUCSIE-embedded-course/stm32f4-examples,PUCSIE-embedded-course/stm32f4-examples,shengwen1997/stm32_pratice,PUCSIE-embedded-course/stm32f4-examples,shengwen1997/stm32_pratice,PUCSIE-embedded-course/stm32f4-examples,shengwen1997/stm32_pratice,shengwen1997/stm32_pratice,PUCSIE-embedded-course/stm32f4-examples
c46835cc42db06a1fcf12a11726614b66b6763a4
project_config/lmic_project_config.h
project_config/lmic_project_config.h
// project-specific definitions for otaa sensor //#define CFG_eu868 1 //#define CFG_us915 1 //#define CFG_au921 1 //#define CFG_as923 1 #define CFG_in866 1 #define CFG_sx1276_radio 1 //#define LMIC_USE_INTERRUPTS
// project-specific definitions for otaa sensor //#define CFG_eu868 1 #define CFG_us915 1 //#define CFG_au921 1 //#define CFG_as923 1 //#define CFG_in866 1 #define CFG_sx1276_radio 1 //#define LMIC_USE_INTERRUPTS
Change default region back to US
Change default region back to US
C
mit
mcci-catena/arduino-lmic,mcci-catena/arduino-lmic,mcci-catena/arduino-lmic
25ac856508aa714758781513c41ceaf214e42d94
GSXCBuildDelegate.h
GSXCBuildDelegate.h
/* Definition of protocol GSXCBuildDelegate Copyright (C) 2022 Free Software Foundation, Inc. By: Gregory John Casamento Date: 25-01-2022 This file is part of GNUstep. 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 USA. */ #ifndef _GSXCBuildDelegate_h_INCLUDE #define _GSXCBuildDelegate_h_INCLUDE #import <Foundation/NSObject.h> #if defined(__cplusplus) extern "C" { #endif @protocol GSXCBuildDelegate @optional - (void) project: (PBXProject *)project publishMessage: (NSString *)message; @end #if defined(__cplusplus) } #endif #endif /* _GSXCBuildDelegate_h_INCLUDE */
/* Definition of protocol GSXCBuildDelegate Copyright (C) 2022 Free Software Foundation, Inc. By: Gregory John Casamento Date: 25-01-2022 This file is part of GNUstep. 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 USA. */ #ifndef _GSXCBuildDelegate_h_INCLUDE #define _GSXCBuildDelegate_h_INCLUDE #import <Foundation/NSObject.h> #import "PBXProject.h" #if defined(__cplusplus) extern "C" { #endif @protocol GSXCBuildDelegate @optional - (void) project: (PBXProject *)project publishMessage: (NSString *)message; @end #if defined(__cplusplus) } #endif #endif /* _GSXCBuildDelegate_h_INCLUDE */
Build delegate change so reporting back updates shows correctly
Build delegate change so reporting back updates shows correctly
C
lgpl-2.1
gnustep/xcode
a08fb84be93610ecd7851e16daeaeb1d175df74c
Sources/HTMLRange.h
Sources/HTMLRange.h
// // HTMLRange.h // HTMLKit // // Created by Iska on 20/11/16. // Copyright © 2016 BrainCookie. All rights reserved. // #import <Foundation/Foundation.h> @interface HTMLRange : NSObject @end
// // HTMLRange.h // HTMLKit // // Created by Iska on 20/11/16. // Copyright © 2016 BrainCookie. All rights reserved. // #import "HTMLNode.h" /** A HTML Range, represents a sequence of content within a node tree. Each range has a start and an end which are boundary points. A boundary point is a tuple consisting of a node and a non-negative numeric offset. https://dom.spec.whatwg.org/#ranges */ @interface HTMLRange : NSObject /** The node of the start boundary point. */ @property (nonatomic, readonly, strong) HTMLNode *startContainer; /** The offset of the start boundary point. */ @property (nonatomic, readonly, assign) NSUInteger startOffset; /** The node of the end boundary point. */ @property (nonatomic, readonly, strong) HTMLNode *endContainer; /** The offset of the end boundary point. */ @property (nonatomic, readonly, assign) NSUInteger endOffset; /** Checks whether the range is collapsed, i.e. if start is the same as end. @return `YES` if the range is collapsed, `NO` otherwise. */ @property (nonatomic, readonly, assign, getter=isCollapsed) BOOL collapsed; /** The common container node that contains both start and end nodes. */ @property (nonatomic, readonly, weak) HTMLNode *commonAncestorContainer; @end
Add properties to HTML Range interface
Add properties to HTML Range interface See: https://dom.spec.whatwg.org/#range
C
mit
iabudiab/HTMLKit,iabudiab/HTMLKit,iabudiab/HTMLKit,iabudiab/HTMLKit,iabudiab/HTMLKit
90b666664647657fa1317ab126ec03e5a77e9dcb
tests/regression/02-base/91-ad-meet.c
tests/regression/02-base/91-ad-meet.c
// SKIP // TODO: be sound and claim that assert may hold instead of must not hold // assert passes when compiled #include <assert.h> struct s { int fst; }; int main() { struct s a; void *p = &a.fst; void *q = ((int(*)[1]) (&a))[0]; assert(p == q); return 0; }
Add skipped base AD.meet unsoundness test
Add skipped base AD.meet unsoundness test
C
mit
goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer
45ebbc31924b8bda38d9141407bd46581ad8a6a9
SQLite3/Statement.h
SQLite3/Statement.h
#pragma once #include "sqlite3.h" #include "Common.h" namespace SQLite3 { class Statement { friend void notifyUnlock(void* args[], int nArgs); public: static StatementPtr Prepare(sqlite3* sqlite, Platform::String^ sql); ~Statement(); void Bind(const SafeParameterVector& params); void Bind(ParameterMap^ params); void Run(); Platform::String^ One(); Platform::String^ All(); void Each(EachCallback^ callback, Windows::UI::Core::CoreDispatcher^ dispatcher); bool ReadOnly() const; private: Statement(sqlite3_stmt* statement); void BindParameter(int index, Platform::Object^ value); int BindParameterCount(); std::wstring BindParameterName(int index); int BindText(int index, Platform::String^ val); int BindInt(int index, int64 val); int BindDouble(int index, double val); int BindNull(int index); int Step(); void GetRow(std::wostringstream& row); Platform::Object^ GetColumn(int index); int ColumnCount(); int ColumnType(int index); Platform::String^ ColumnName(int index); Platform::String^ ColumnText(int index); int64 ColumnInt(int index); double ColumnDouble(int index); private: HANDLE dbLockMutex; sqlite3_stmt* statement; }; }
#pragma once #include "sqlite3.h" #include "Common.h" namespace SQLite3 { class Statement { public: static StatementPtr Prepare(sqlite3* sqlite, Platform::String^ sql); ~Statement(); void Bind(const SafeParameterVector& params); void Bind(ParameterMap^ params); void Run(); Platform::String^ One(); Platform::String^ All(); void Each(EachCallback^ callback, Windows::UI::Core::CoreDispatcher^ dispatcher); bool ReadOnly() const; private: Statement(sqlite3_stmt* statement); void BindParameter(int index, Platform::Object^ value); int BindParameterCount(); std::wstring BindParameterName(int index); int BindText(int index, Platform::String^ val); int BindInt(int index, int64 val); int BindDouble(int index, double val); int BindNull(int index); int Step(); void GetRow(std::wostringstream& row); Platform::Object^ GetColumn(int index); int ColumnCount(); int ColumnType(int index); Platform::String^ ColumnName(int index); Platform::String^ ColumnText(int index); int64 ColumnInt(int index); double ColumnDouble(int index); private: HANDLE dbLockMutex; sqlite3_stmt* statement; }; }
Remove orphaned notifyUnlock friend function
Remove orphaned notifyUnlock friend function
C
mit
doo/SQLite3-WinRT,roryok/SQLite3-WinRT,roryok/SQLite3-WinRT,doo/SQLite3-WinRT,roryok/SQLite3-WinRT,doo/SQLite3-WinRT,roryok/SQLite3-WinRT
ac9f436e0c8256abd7dd62024325494746702964
src/BotAssert.h
src/BotAssert.h
#pragma once #include <cstdio> #include <cstdarg> #include <sstream> #include <stdarg.h> #include <ctime> #include <iomanip> #define BOT_BREAK __debugbreak(); #if true #define BOT_ASSERT(cond, msg, ...) \ do \ { \ if (!(cond)) \ { \ Assert::ReportFailure(#cond, __FILE__, __LINE__, (msg), ##__VA_ARGS__); \ BOT_BREAK \ } \ } while(0) #else #define BOT_ASSERT(cond, msg, ...) #endif namespace Assert { extern std::string lastErrorMessage; const std::string CurrentDateTime(); void ReportFailure(const char * condition, const char * file, int line, const char * msg, ...); }
#pragma once #include <cstdio> #include <cstdarg> #include <sstream> #include <stdarg.h> #include <ctime> #include <iomanip> #ifdef WIN32 #define BOT_BREAK __debugbreak(); #else #define BOT_BREAK ; #endif #if true #define BOT_ASSERT(cond, msg, ...) \ do \ { \ if (!(cond)) \ { \ Assert::ReportFailure(#cond, __FILE__, __LINE__, (msg), ##__VA_ARGS__); \ BOT_BREAK \ } \ } while(0) #else #define BOT_ASSERT(cond, msg, ...) #endif namespace Assert { extern std::string lastErrorMessage; const std::string CurrentDateTime(); void ReportFailure(const char * condition, const char * file, int line, const char * msg, ...); }
Put dummy BOT_ASSERT in case of non-Windows build
Put dummy BOT_ASSERT in case of non-Windows build Unfortunately non-Windows platforms don't have good analogue for Winodws DebugBrake(). There are several alternatives that depend heavily on debugger time. Since we have lldb, gdb and probably something else but still need to compile the code this commit replaces BOT_ASSERT with a dummy until it will be decided how to handle such cases in a portable way.
C
mit
davechurchill/commandcenter
eb01c70598927adfcfc47a3ab5fc48048e25b4dd
test2/vla/normal_alloca_after_vla.c
test2/vla/normal_alloca_after_vla.c
// RUN: %ocheck 0 %s void abort(void); g() { return 0; } main() { int n = 5; // an unaligned value int vla[n]; vla[0] = 1; vla[1] = 2; vla[2] = 3; vla[3] = 4; { // this alloca is done in order after the vla, // but is coalesced to before the VLA by the stack logic int x = 99; if(x != 99) abort(); if(g()) return 3; // scope-leave/restore vla, but doesn't pop the vla state int y = 35; if(y != 35) abort(); // more scope leave code for(int i = 0; i < 10; i++) if(i == 5) break; if(vla[0] != 1) abort(); if(vla[1] != 2) abort(); if(vla[2] != 3) abort(); if(vla[3] != 4) abort(); if(sizeof vla != n * sizeof(int)) abort(); if(y != 35) abort(); if(x != 99) abort(); } if(vla[0] != 1) abort(); if(vla[1] != 2) abort(); if(vla[2] != 3) abort(); if(vla[3] != 4) abort(); if(sizeof vla != n * sizeof(int)) abort(); return 0; }
Test normal (backend-)allocas inside VLA scope
Test normal (backend-)allocas inside VLA scope
C
mit
bobrippling/ucc-c-compiler,bobrippling/ucc-c-compiler,bobrippling/ucc-c-compiler
236a881c46f7930f74ed656d85c18a93e2fb9e25
CMSIS/DSP/Platforms/IPSS/ipss_bench.h
CMSIS/DSP/Platforms/IPSS/ipss_bench.h
#ifndef IPSS_BENCH_H #define IPSS_BENCH_H extern void start_ipss_measurement(); extern void stop_ipss_measurement(); #endif
#ifndef IPSS_BENCH_H #define IPSS_BENCH_H #ifdef __cplusplus extern "C" { #endif void start_ipss_measurement(); void stop_ipss_measurement(); #ifdef __cplusplus } #endif #endif
Update header for use from C++
CMSIS-DSP: Update header for use from C++
C
apache-2.0
JonatanAntoni/CMSIS_5,JonatanAntoni/CMSIS_5,ARM-software/CMSIS_5,JonatanAntoni/CMSIS_5,JonatanAntoni/CMSIS_5,JonatanAntoni/CMSIS_5,ARM-software/CMSIS_5,ARM-software/CMSIS_5,ARM-software/CMSIS_5,JonatanAntoni/CMSIS_5,ARM-software/CMSIS_5,ARM-software/CMSIS_5
05da06ee7b432a9a4a9f14108cece51f6f557114
cc1/tests/test016.c
cc1/tests/test016.c
/* name: TEST016 description: Basic pointer test output: test016.c:43: error: redefinition of 'func2' test016.c:47: error: incompatible types when assigning G1 I g F1 G2 F1 func1 { - A2 I x A4 P p G1 #I1 :I A2 #I1 :I A4 A2 'P :P A4 @I #I0 :I j L5 A2 #I0 =I yI #I1 L5 A4 G1 'P :P A4 @I #I0 :I j L6 A4 #I0 IP !I yI #I1 L6 yI #I0 } G3 F1 func2 { - A1 I x A2 P p A4 P pp A1 #I1 :I A2 A1 'P :P A4 A2 'P :P j L5 A2 #I0 IP =I A4 @P @I #I0 :I L5 A2 #I0 IP :P yI A1 } ???? */ #line 1 int g; int func1(void) { int x; int *p; g = 1; x = 1; p = &x; *p = 0; if (x) return 1; p = &g; *p = 0; if (p == 0) return 1; return 0; } int func2(void) { int x; int *p; int **pp; x = 1; p = &x; pp = &p; if (p != 0) **pp = 0; p = 0; return x; } int func2(void) { char c; int *p; p = &c; return *p; }
Add basic test for pointers
Add basic test for pointers
C
isc
k0gaMSX/scc,8l/scc,k0gaMSX/scc,8l/scc,k0gaMSX/kcc,k0gaMSX/kcc,8l/scc,k0gaMSX/scc
dc0beb416b6f4033c0fade3ffe719b1dd65bc30b
ObjectiveRocks/ObjectiveRocks.h
ObjectiveRocks/ObjectiveRocks.h
// // ObjectiveRocks.h // ObjectiveRocks // // Created by Iska on 20/11/14. // Copyright (c) 2014 BrainCookie. All rights reserved. // #import "RocksDB.h" #import "RocksDBOptions.h" #import "RocksDBReadOptions.h" #import "RocksDBWriteOptions.h" #import "RocksDBWriteBatch.h" #import "RocksDBIterator.h" #import "RocksDBSnapshot.h"
// // ObjectiveRocks.h // ObjectiveRocks // // Created by Iska on 20/11/14. // Copyright (c) 2014 BrainCookie. All rights reserved. // #import "RocksDB.h" #import "RocksDBOptions.h" #import "RocksDBReadOptions.h" #import "RocksDBWriteOptions.h" #import "RocksDBWriteBatch.h" #import "RocksDBIterator.h" #import "RocksDBSnapshot.h" #import "RocksDBComparator.h"
Add RocksDB comparator import to the main public header
Add RocksDB comparator import to the main public header
C
mit
iabudiab/ObjectiveRocks,iabudiab/ObjectiveRocks,iabudiab/ObjectiveRocks,iabudiab/ObjectiveRocks
83641b5afb00ef76a2b397a2591a705dd1488c7f
cc1/tests/test003.c
cc1/tests/test003.c
/* name: TEST003 description: Select function to call inside ternary operator output: */ int foo(void) { return 42; } int bar(void) { return 24; } int main(void) { return (1 ? foo : bar)(); }
/* name: TEST003 description: Select function to call inside ternary operator output: F1 X1 F1 foo G1 F1 foo { - yI #I2A } X2 F1 bar G2 F1 bar { - yI #I18 } X3 F1 main G3 F1 main { - yI G1 cI } */ int foo(void) { return 42; } int bar(void) { return 24; } int main(void) { return (1 ? foo : bar)(); }
Add correct output for TEST003
Add correct output for TEST003 stateless take a look that it even optimize out the ternary operator.
C
isc
k0gaMSX/scc,8l/scc,k0gaMSX/kcc,k0gaMSX/scc,8l/scc,k0gaMSX/scc,8l/scc,k0gaMSX/kcc
2abc9a8a44d9920d20c30eb639596a8726580381
markdown_lib.h
markdown_lib.h
#include <stdlib.h> #include <stdio.h> #include <glib.h> enum markdown_extensions { EXT_SMART = 1, EXT_NOTES = 2, EXT_FILTER_HTML = 3, EXT_FILTER_STYLES = 4 }; enum markdown_formats { HTML_FORMAT, LATEX_FORMAT, GROFF_MM_FORMAT }; GString * markdown_to_g_string(char *text, int extensions, int output_format); char * markdown_to_string(char *text, int extensions, int output_format); /* vim: set ts=4 sw=4 : */
#include <stdlib.h> #include <stdio.h> #include <glib.h> enum markdown_extensions { EXT_SMART = 0x01, EXT_NOTES = 0x02, EXT_FILTER_HTML = 0x04, EXT_FILTER_STYLES = 0x08 }; enum markdown_formats { HTML_FORMAT, LATEX_FORMAT, GROFF_MM_FORMAT }; GString * markdown_to_g_string(char *text, int extensions, int output_format); char * markdown_to_string(char *text, int extensions, int output_format); /* vim: set ts=4 sw=4 : */
Fix extensions flags bit collision.
Fix extensions flags bit collision. Setting EXT_FILTER_HTML was the same as setting (EXT_SMART | EXT_NOTES); setting EXT_FILTER_STYLES would also set EXT_NOTES. The switch to hex notation is purely to hint that the values are meant to be used as bit flags directly.
C
mit
sftrabbit/MarkdownParse,sftrabbit/MarkdownParse,sftrabbit/MarkdownParse
68a44741998e5a769a9b952ddb422e993dc5b6a9
base/scoped_value.h
base/scoped_value.h
// LAF Base Library // Copyright (c) 2014-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifndef BASE_SCOPED_VALUE_H_INCLUDED #define BASE_SCOPED_VALUE_H_INCLUDED #pragma once namespace base { template<typename T> class ScopedValue { public: ScopedValue(T& instance, const T& inScopeValue, const T& outScopeValue) : m_instance(instance) , m_outScopeValue(outScopeValue) { m_instance = inScopeValue; } ~ScopedValue() { m_instance = m_outScopeValue; } private: T& m_instance; T m_outScopeValue; }; } // namespace base #endif
// LAF Base Library // Copyright (c) 2022 Igara Studio S.A. // Copyright (c) 2014-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifndef BASE_SCOPED_VALUE_H_INCLUDED #define BASE_SCOPED_VALUE_H_INCLUDED #pragma once namespace base { template<typename T, typename U = T> class ScopedValue { public: ScopedValue(T& instance, const U& inScopeValue, const U& outScopeValue) : m_instance(instance) , m_outScopeValue(outScopeValue) { m_instance = inScopeValue; } ~ScopedValue() { m_instance = m_outScopeValue; } private: T& m_instance; U m_outScopeValue; }; } // namespace base #endif
Add new U param to ScopedValue<T, U>
Add new U param to ScopedValue<T, U> In this way we can use it for std::atomics, e.g. base::ScopedValue<std::atomic<bool>, bool>
C
mit
aseprite/laf,aseprite/laf
0c641db27c8ef9501990544b093c0bbbe6244776
media/rx/audio-rx.h
media/rx/audio-rx.h
#ifndef __AUDIO_RX_H__ #define __AUDIO_RX_H__ #include <stdint.h> typedef void (*put_audio_samples_rx)(uint8_t*, int, int); int start_audio_rx(const char* sdp, int maxDelay, put_audio_samples_rx callback); int stop_audio_rx(); #endif /* __AUDIO_RX_H__ */
#ifndef __AUDIO_RX_H__ #define __AUDIO_RX_H__ #include <stdint.h> typedef void (*put_audio_samples_rx)(uint8_t *samples, int size, int nframe); int start_audio_rx(const char* sdp, int maxDelay, put_audio_samples_rx callback); int stop_audio_rx(); #endif /* __AUDIO_RX_H__ */
Add params name in put_audio_samples_rx pointer function definition.
Add params name in put_audio_samples_rx pointer function definition.
C
lgpl-2.1
shelsonjava/kc-media-native,Kurento/kc-media-native,Kurento/kc-media-native,shelsonjava/kc-media-native
43c48cdbc5cf5793ad6f0f46cde5ca91ad2b8756
core/metautils/src/vectorLinkdef.h
core/metautils/src/vectorLinkdef.h
#include <string> #include <vector> #ifndef __hpux using namespace std; #endif #pragma create TClass vector<bool>; #pragma create TClass vector<char>; #pragma create TClass vector<short>; #pragma create TClass vector<long>; #pragma create TClass vector<unsigned char>; #pragma create TClass vector<unsigned short>; #pragma create TClass vector<unsigned int>; #pragma create TClass vector<unsigned long>; #pragma create TClass vector<float>; #pragma create TClass vector<double>; #pragma create TClass vector<char*>; #pragma create TClass vector<const char*>; #pragma create TClass vector<string>; #if (!(G__GNUC==3 && G__GNUC_MINOR==1)) && !defined(G__KCC) && (!defined(G__VISUAL) || G__MSC_VER<1300) // gcc3.1,3.2 has a problem with iterator<void*,...,void&> #pragma create TClass vector<void*>; #endif
#include <string> #include <vector> #ifndef __hpux using namespace std; #endif #pragma create TClass vector<bool>; #pragma create TClass vector<char>; #pragma create TClass vector<short>; #pragma create TClass vector<long>; #pragma create TClass vector<unsigned char>; #pragma create TClass vector<unsigned short>; #pragma create TClass vector<unsigned int>; #pragma create TClass vector<unsigned long>; #pragma create TClass vector<float>; #pragma create TClass vector<double>; #pragma create TClass vector<char*>; #pragma create TClass vector<const char*>; #pragma create TClass vector<string>; #pragma create TClass vector<Long64_t>; #pragma create TClass vector<ULong64_t>; #if (!(G__GNUC==3 && G__GNUC_MINOR==1)) && !defined(G__KCC) && (!defined(G__VISUAL) || G__MSC_VER<1300) // gcc3.1,3.2 has a problem with iterator<void*,...,void&> #pragma create TClass vector<void*>; #endif
Add missing TClass creation for vector<Long64_t> and vector<ULong64_t>
Add missing TClass creation for vector<Long64_t> and vector<ULong64_t> git-svn-id: ecbadac9c76e8cf640a0bca86f6bd796c98521e3@38659 27541ba8-7e3a-0410-8455-c3a389f83636
C
lgpl-2.1
bbannier/ROOT,bbannier/ROOT,bbannier/ROOT,bbannier/ROOT,bbannier/ROOT,bbannier/ROOT,bbannier/ROOT
fb3e3283c4503f80fc73b4ef68d68e68c00bd1be
chip/lm4/mock_pwm.c
chip/lm4/mock_pwm.c
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* Mock PWM control module for Chrome EC */ #include "pwm.h" #include "timer.h" #include "uart.h" static int fan_target_rpm; static int kblight; int pwm_set_fan_target_rpm(int rpm) { uart_printf("Fan RPM: %d\n", rpm); fan_target_rpm = rpm; return EC_SUCCESS; } int pwm_get_fan_target_rpm(void) { return fan_target_rpm; } int pwm_set_keyboard_backlight(int percent) { uart_printf("KBLight: %d\n", percent); kblight = percent; return EC_SUCCESS; } int pwm_get_keyboard_backlight(void) { return kblight; } int pwm_get_keyboard_backlight_enabled(void) { /* Always enabled */ return 1; } int pwm_enable_keyboard_backlight(int enable) { /* Not implemented */ return EC_SUCCESS; } void pwm_task(void) { /* Do nothing */ while (1) usleep(5000000); }
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* Mock PWM control module for Chrome EC */ #include "pwm.h" #include "timer.h" #include "uart.h" static int fan_target_rpm; static int kblight; int pwm_set_fan_target_rpm(int rpm) { uart_printf("Fan RPM: %d\n", rpm); fan_target_rpm = rpm; return EC_SUCCESS; } int pwm_get_fan_target_rpm(void) { return fan_target_rpm; } int pwm_set_keyboard_backlight(int percent) { uart_printf("KBLight: %d\n", percent); kblight = percent; return EC_SUCCESS; } int pwm_get_keyboard_backlight(void) { return kblight; } int pwm_get_keyboard_backlight_enabled(void) { /* Always enabled */ return 1; } int pwm_enable_keyboard_backlight(int enable) { /* Not implemented */ return EC_SUCCESS; } int pwm_set_fan_duty(int percent) { /* Not implemented */ return EC_SUCCESS; } void pwm_task(void) { /* Do nothing */ while (1) usleep(5000000); }
Fix unit test compilation error
Fix unit test compilation error A host command to set fan duty cycle is recently added and mock PWM module doesn't provide the implementation. This breaks our unit test. Let's fix this. BUG=chrome-os-partner:10820 TEST='thermal' unit test passed. Change-Id: I8644742cfec7d2112d7ff1e266b5ac3429c46945 Reviewed-on: https://gerrit.chromium.org/gerrit/26019 Reviewed-by: Vincent Palatin <[email protected]> Commit-Ready: Vic Yang <[email protected]> Tested-by: Vic Yang <[email protected]>
C
bsd-3-clause
md5555/ec,mtk09422/chromiumos-platform-ec,md5555/ec,fourier49/BIZ_EC,longsleep/ec,gelraen/cros-ec,coreboot/chrome-ec,longsleep/ec,md5555/ec,eatbyte/chromium-ec,fourier49/BZ_DEV_EC,mtk09422/chromiumos-platform-ec,longsleep/ec,gelraen/cros-ec,akappy7/ChromeOS_EC_LED_Diagnostics,akappy7/ChromeOS_EC_LED_Diagnostics,alterapraxisptyltd/chromium-ec,alterapraxisptyltd/chromium-ec,eatbyte/chromium-ec,fourier49/BZ_DEV_EC,coreboot/chrome-ec,fourier49/BZ_DEV_EC,akappy7/ChromeOS_EC_LED_Diagnostics,fourier49/BIZ_EC,coreboot/chrome-ec,coreboot/chrome-ec,alterapraxisptyltd/chromium-ec,eatbyte/chromium-ec,thehobn/ec,md5555/ec,thehobn/ec,thehobn/ec,akappy7/ChromeOS_EC_LED_Diagnostics,eatbyte/chromium-ec,fourier49/BIZ_EC,gelraen/cros-ec,alterapraxisptyltd/chromium-ec,gelraen/cros-ec,thehobn/ec,mtk09422/chromiumos-platform-ec,mtk09422/chromiumos-platform-ec,coreboot/chrome-ec,fourier49/BIZ_EC,coreboot/chrome-ec,longsleep/ec,akappy7/ChromeOS_EC_LED_Diagnostics,fourier49/BZ_DEV_EC
a0b104941bb518caa627c79a0a6315c226961496
examples/rmc-test.c
examples/rmc-test.c
#include "rmc.h" // HMMMMM. All of these get optimized away and shouldn't. // Also, if r doesn't get used usefully, that load gets optimized away. // I can't decide whether that is totally fucked or not. int global_p, global_q; int bogus_ctrl_dep1() { XEDGE(read, write); L(read, int r = global_p); if (r == r) { L(write, global_q = 1); } return r; } // Do basically the same thing in each branch int bogus_ctrl_dep2() { XEDGE(read, write); L(read, int r = global_p); if (r) { L(write, global_q = 1); } else { L(write, global_q = 1); } return r; } // Have a bogus ctrl dep int bogus_ctrl_dep3() { XEDGE(read, write); L(read, int r = global_p); if (r) {}; L(write, global_q = 1); return r; }
Add a bunch of rmc tests that we brutally miscompile because llvm optimizes everything away.
Add a bunch of rmc tests that we brutally miscompile because llvm optimizes everything away.
C
mit
msullivan/rmc-compiler,msullivan/rmc-compiler,msullivan/rmc-compiler,msullivan/rmc-compiler,msullivan/rmc-compiler,msullivan/rmc-compiler
ecde2fd66a94951c3a438e411259d2da830ce2a6
thingshub/CDZThingsHubConfiguration.h
thingshub/CDZThingsHubConfiguration.h
// // CDZThingsHubConfiguration.h // thingshub // // Created by Chris Dzombak on 1/13/14. // Copyright (c) 2014 Chris Dzombak. All rights reserved. // @interface CDZThingsHubConfiguration : NSObject /** Asynchronously returns the app's current `CZDThingsHubConfiguration` as the next value in the signal, then completes. Walks from ~ down to the current directory, merging in .thingshubconfig files as they are found. Command-line parameters override any parameters set in the merged config file. If there's a validation error, the signal will complete with an error. */ + (RACSignal *)currentConfiguration; /// Global (typically); configured by "tagNamespace = ". Default is "github". @property (nonatomic, copy, readonly) NSString *tagNamespace; /// Global (typically); configured by "reviewTag = ". Default is "review". @property (nonatomic, copy, readonly) NSString *reviewTagName; /// Global (typically); configured by "githubLogin = " @property (nonatomic, copy, readonly) NSString *githubLogin; /// Per-project (typically); configured by "githubOrg = " @property (nonatomic, copy, readonly) NSString *githubOrgName; /// Per-project; configured by "githubRepo = " @property (nonatomic, copy, readonly) NSString *githubRepoName; /// Per-project; configured by "thingsArea = ". May be missing; default is nil. @property (nonatomic, copy, readonly) NSString *thingsAreaName; @end
// // CDZThingsHubConfiguration.h // thingshub // // Created by Chris Dzombak on 1/13/14. // Copyright (c) 2014 Chris Dzombak. All rights reserved. // @class RACSignal; @interface CDZThingsHubConfiguration : NSObject /** Asynchronously returns the app's current `CZDThingsHubConfiguration` as the next value in the signal, then completes. Walks from ~ down to the current directory, merging in .thingshubconfig files as they are found. Command-line parameters override any parameters set in the merged config file. If there's a validation error, the signal will complete with an error. */ + (RACSignal *)currentConfiguration; /// Global (typically); configured by "tagNamespace = ". Default is "github". @property (nonatomic, copy, readonly) NSString *tagNamespace; /// Global (typically); configured by "reviewTag = ". Default is "review". @property (nonatomic, copy, readonly) NSString *reviewTagName; /// Global (typically); configured by "githubLogin = " @property (nonatomic, copy, readonly) NSString *githubLogin; /// Per-project (typically); configured by "githubOrg = " @property (nonatomic, copy, readonly) NSString *githubOrgName; /// Per-project; configured by "githubRepo = " @property (nonatomic, copy, readonly) NSString *githubRepoName; /// Per-project; configured by "thingsArea = ". May be missing; default is nil. @property (nonatomic, copy, readonly) NSString *thingsAreaName; @end
Add missing forward class declaration to ThingsHubConfiguration
Add missing forward class declaration to ThingsHubConfiguration
C
mit
cdzombak/thingshub,cdzombak/thingshub,cdzombak/thingshub
f7bae4b98f7bacc29addb1b85e5aecee0054c04d
c/arrays.c
c/arrays.c
#include <stdio.h> int my_array[] = {1,2,3,4,5,6}; void f() { printf("called f\n"); } void (*f_pointer())(void) { return &f; } int hundredth(int a[]) { return a[100]; } int head(int a[]) { return a[0]; } int (*f2())(int*) { return &head; } int previous(int a[]) { return a[-1]; } int main(void) { int one = head(my_array); int prev = previous(&my_array[1]); int two = f2()(my_array); f(); f_pointer()(); printf("Head of array => %d\n", one); printf("Head of array => %d\n", prev); printf("Head of array => %d\n", two); return 0; }
#include <stdio.h> int my_array[] = {1,2,3,4,5,6}; void f() { printf("called f\n"); } void (*f_pointer())(void) { return &f; } int hundredth(int a[]) { return a[100]; } int head(int a[]) { return a[0]; } int (*f2())(int*) { return &head; } int previous(int a[]) { return a[-1]; } int main(void) { int one = head(my_array); int prev = previous(&my_array[1]); int two = f2()(my_array); f(); f_pointer()(); printf("Head of array => %d\n", one); printf("Head of array => %d\n", prev); printf("Head of array => %d\n", two); return 0; }
Test taking address of C array
Test taking address of C array
C
bsd-3-clause
dterei/Scraps,dterei/Scraps,dterei/Scraps,dterei/Scraps,dterei/Scraps,dterei/Scraps,dterei/Scraps,dterei/Scraps,dterei/Scraps,dterei/Scraps,dterei/Scraps,dterei/Scraps
fce01fde1fc4ce33ef25cf1af9773474abefa736
primitiv/c/status.h
primitiv/c/status.h
/* Copyright 2017 The primitiv Authors. All Rights Reserved. */ #ifndef PRIMITIV_C_STATUS_H_ #define PRIMITIV_C_STATUS_H_ #include <primitiv/c/define.h> #ifdef __cplusplus extern "C" { #endif typedef enum primitiv_Status { PRIMITIV_OK = 0, PRIMITIV_ERROR = 1, } primitiv_Status; extern PRIMITIV_C_API const char *primitiv_Status_get_message(); extern PRIMITIV_C_API void primitiv_Status_reset(); #ifdef __cplusplus } // end extern "C" #endif #endif // PRIMITIV_C_STATUS_H_
/* Copyright 2017 The primitiv Authors. All Rights Reserved. */ #ifndef PRIMITIV_C_STATUS_H_ #define PRIMITIV_C_STATUS_H_ #include <primitiv/c/define.h> #ifdef __cplusplus extern "C" { #endif typedef enum primitiv_Status { PRIMITIV_OK = 0, PRIMITIV_ERROR = -1, } primitiv_Status; extern PRIMITIV_C_API const char *primitiv_Status_get_message(); extern PRIMITIV_C_API void primitiv_Status_reset(); #ifdef __cplusplus } // end extern "C" #endif #endif // PRIMITIV_C_STATUS_H_
Change the PRIMITIV_ERROR value from 1 to -1 so that MSB can imply errors.
Change the PRIMITIV_ERROR value from 1 to -1 so that MSB can imply errors.
C
apache-2.0
odashi/primitiv,odashi/primitiv,odashi/primitiv
f7d5d48f3d78dc9d8f82aa5af23a23807fa0d6be
ui/views/examples/multiline_example.h
ui/views/examples/multiline_example.h
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_VIEWS_EXAMPLES_MULTILINE_EXAMPLE_H_ #define UI_VIEWS_EXAMPLES_MULTILINE_EXAMPLE_H_ #include "base/compiler_specific.h" #include "base/string16.h" #include "ui/views/controls/textfield/textfield_controller.h" #include "ui/views/examples/example_base.h" namespace views { class Label; namespace examples { // An example that compares the multi-line rendering of different controls. class MultilineExample : public ExampleBase, public TextfieldController { public: MultilineExample(); virtual ~MultilineExample(); // ExampleBase: virtual void CreateExampleView(View* container) OVERRIDE; private: class RenderTextView; // TextfieldController: virtual void ContentsChanged(Textfield* sender, const string16& new_contents) OVERRIDE; virtual bool HandleKeyEvent(Textfield* sender, const ui::KeyEvent& key_event) OVERRIDE; RenderTextView* render_text_view_; Label* label_; Textfield* textfield_; DISALLOW_COPY_AND_ASSIGN(MultilineExample); }; } // namespace examples } // namespace views #endif // UI_VIEWS_EXAMPLES_MULTILINE_EXAMPLE_H_
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_VIEWS_EXAMPLES_MULTILINE_EXAMPLE_H_ #define UI_VIEWS_EXAMPLES_MULTILINE_EXAMPLE_H_ #include "base/compiler_specific.h" #include "base/strings/string16.h" #include "ui/views/controls/textfield/textfield_controller.h" #include "ui/views/examples/example_base.h" namespace views { class Label; namespace examples { // An example that compares the multi-line rendering of different controls. class MultilineExample : public ExampleBase, public TextfieldController { public: MultilineExample(); virtual ~MultilineExample(); // ExampleBase: virtual void CreateExampleView(View* container) OVERRIDE; private: class RenderTextView; // TextfieldController: virtual void ContentsChanged(Textfield* sender, const string16& new_contents) OVERRIDE; virtual bool HandleKeyEvent(Textfield* sender, const ui::KeyEvent& key_event) OVERRIDE; RenderTextView* render_text_view_; Label* label_; Textfield* textfield_; DISALLOW_COPY_AND_ASSIGN(MultilineExample); }; } // namespace examples } // namespace views #endif // UI_VIEWS_EXAMPLES_MULTILINE_EXAMPLE_H_
Update the include of string16.h to point to its new location.
views/examples: Update the include of string16.h to point to its new location. string16.h now lives in base/strings/ directory. BUG=247723 [email protected] NOTRY=true Review URL: https://chromiumcodereview.appspot.com/17193002 git-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@206667 0039d316-1c4b-4281-b951-d872f2087c98
C
bsd-3-clause
mohamed--abdel-maksoud/chromium.src,Pluto-tv/chromium-crosswalk,markYoungH/chromium.src,M4sse/chromium.src,jaruba/chromium.src,M4sse/chromium.src,Just-D/chromium-1,crosswalk-project/chromium-crosswalk-efl,markYoungH/chromium.src,Just-D/chromium-1,anirudhSK/chromium,markYoungH/chromium.src,mogoweb/chromium-crosswalk,ondra-novak/chromium.src,PeterWangIntel/chromium-crosswalk,mohamed--abdel-maksoud/chromium.src,TheTypoMaster/chromium-crosswalk,crosswalk-project/chromium-crosswalk-efl,axinging/chromium-crosswalk,chuan9/chromium-crosswalk,ltilve/chromium,mogoweb/chromium-crosswalk,hujiajie/pa-chromium,Just-D/chromium-1,ondra-novak/chromium.src,krieger-od/nwjs_chromium.src,axinging/chromium-crosswalk,mohamed--abdel-maksoud/chromium.src,Jonekee/chromium.src,anirudhSK/chromium,bright-sparks/chromium-spacewalk,ondra-novak/chromium.src,dushu1203/chromium.src,Pluto-tv/chromium-crosswalk,anirudhSK/chromium,pozdnyakov/chromium-crosswalk,hgl888/chromium-crosswalk,chuan9/chromium-crosswalk,fujunwei/chromium-crosswalk,littlstar/chromium.src,hgl888/chromium-crosswalk,Fireblend/chromium-crosswalk,jaruba/chromium.src,ChromiumWebApps/chromium,littlstar/chromium.src,chuan9/chromium-crosswalk,pozdnyakov/chromium-crosswalk,hujiajie/pa-chromium,ltilve/chromium,dednal/chromium.src,Fireblend/chromium-crosswalk,patrickm/chromium.src,jaruba/chromium.src,hgl888/chromium-crosswalk,bright-sparks/chromium-spacewalk,ltilve/chromium,Jonekee/chromium.src,Chilledheart/chromium,Jonekee/chromium.src,anirudhSK/chromium,ChromiumWebApps/chromium,ChromiumWebApps/chromium,dushu1203/chromium.src,pozdnyakov/chromium-crosswalk,littlstar/chromium.src,axinging/chromium-crosswalk,mohamed--abdel-maksoud/chromium.src,krieger-od/nwjs_chromium.src,M4sse/chromium.src,jaruba/chromium.src,Pluto-tv/chromium-crosswalk,dednal/chromium.src,patrickm/chromium.src,bright-sparks/chromium-spacewalk,pozdnyakov/chromium-crosswalk,anirudhSK/chromium,anirudhSK/chromium,hgl888/chromium-crosswalk,Jonekee/chromium.src,markYoungH/chromium.src,hujiajie/pa-chromium,hgl888/chromium-crosswalk-efl,fujunwei/chromium-crosswalk,PeterWangIntel/chromium-crosswalk,markYoungH/chromium.src,patrickm/chromium.src,krieger-od/nwjs_chromium.src,patrickm/chromium.src,Fireblend/chromium-crosswalk,pozdnyakov/chromium-crosswalk,pozdnyakov/chromium-crosswalk,crosswalk-project/chromium-crosswalk-efl,TheTypoMaster/chromium-crosswalk,mogoweb/chromium-crosswalk,dednal/chromium.src,Pluto-tv/chromium-crosswalk,jaruba/chromium.src,ChromiumWebApps/chromium,Chilledheart/chromium,Fireblend/chromium-crosswalk,axinging/chromium-crosswalk,mohamed--abdel-maksoud/chromium.src,pozdnyakov/chromium-crosswalk,markYoungH/chromium.src,axinging/chromium-crosswalk,hgl888/chromium-crosswalk,fujunwei/chromium-crosswalk,TheTypoMaster/chromium-crosswalk,hgl888/chromium-crosswalk-efl,fujunwei/chromium-crosswalk,bright-sparks/chromium-spacewalk,chuan9/chromium-crosswalk,ltilve/chromium,markYoungH/chromium.src,Chilledheart/chromium,ChromiumWebApps/chromium,dednal/chromium.src,mohamed--abdel-maksoud/chromium.src,hgl888/chromium-crosswalk-efl,M4sse/chromium.src,dednal/chromium.src,Pluto-tv/chromium-crosswalk,M4sse/chromium.src,dednal/chromium.src,pozdnyakov/chromium-crosswalk,M4sse/chromium.src,bright-sparks/chromium-spacewalk,PeterWangIntel/chromium-crosswalk,jaruba/chromium.src,fujunwei/chromium-crosswalk,dushu1203/chromium.src,hujiajie/pa-chromium,dednal/chromium.src,Chilledheart/chromium,littlstar/chromium.src,TheTypoMaster/chromium-crosswalk,Fireblend/chromium-crosswalk,hgl888/chromium-crosswalk-efl,anirudhSK/chromium,hgl888/chromium-crosswalk,Jonekee/chromium.src,Chilledheart/chromium,bright-sparks/chromium-spacewalk,krieger-od/nwjs_chromium.src,PeterWangIntel/chromium-crosswalk,Fireblend/chromium-crosswalk,crosswalk-project/chromium-crosswalk-efl,Fireblend/chromium-crosswalk,crosswalk-project/chromium-crosswalk-efl,TheTypoMaster/chromium-crosswalk,pozdnyakov/chromium-crosswalk,hgl888/chromium-crosswalk-efl,Fireblend/chromium-crosswalk,mogoweb/chromium-crosswalk,pozdnyakov/chromium-crosswalk,Jonekee/chromium.src,PeterWangIntel/chromium-crosswalk,Just-D/chromium-1,jaruba/chromium.src,dushu1203/chromium.src,Pluto-tv/chromium-crosswalk,dushu1203/chromium.src,hujiajie/pa-chromium,bright-sparks/chromium-spacewalk,littlstar/chromium.src,PeterWangIntel/chromium-crosswalk,chuan9/chromium-crosswalk,TheTypoMaster/chromium-crosswalk,PeterWangIntel/chromium-crosswalk,Just-D/chromium-1,ltilve/chromium,dushu1203/chromium.src,PeterWangIntel/chromium-crosswalk,Pluto-tv/chromium-crosswalk,chuan9/chromium-crosswalk,TheTypoMaster/chromium-crosswalk,krieger-od/nwjs_chromium.src,hujiajie/pa-chromium,crosswalk-project/chromium-crosswalk-efl,jaruba/chromium.src,ltilve/chromium,Chilledheart/chromium,mohamed--abdel-maksoud/chromium.src,TheTypoMaster/chromium-crosswalk,Just-D/chromium-1,Just-D/chromium-1,ChromiumWebApps/chromium,Jonekee/chromium.src,anirudhSK/chromium,jaruba/chromium.src,hgl888/chromium-crosswalk,hgl888/chromium-crosswalk-efl,dednal/chromium.src,dednal/chromium.src,axinging/chromium-crosswalk,hgl888/chromium-crosswalk,hgl888/chromium-crosswalk-efl,hgl888/chromium-crosswalk-efl,ChromiumWebApps/chromium,mogoweb/chromium-crosswalk,ondra-novak/chromium.src,Just-D/chromium-1,dednal/chromium.src,patrickm/chromium.src,dushu1203/chromium.src,bright-sparks/chromium-spacewalk,hgl888/chromium-crosswalk-efl,axinging/chromium-crosswalk,M4sse/chromium.src,hujiajie/pa-chromium,mohamed--abdel-maksoud/chromium.src,hgl888/chromium-crosswalk,axinging/chromium-crosswalk,ChromiumWebApps/chromium,littlstar/chromium.src,patrickm/chromium.src,chuan9/chromium-crosswalk,mogoweb/chromium-crosswalk,fujunwei/chromium-crosswalk,littlstar/chromium.src,mogoweb/chromium-crosswalk,hujiajie/pa-chromium,mogoweb/chromium-crosswalk,ondra-novak/chromium.src,PeterWangIntel/chromium-crosswalk,dushu1203/chromium.src,M4sse/chromium.src,Chilledheart/chromium,krieger-od/nwjs_chromium.src,mohamed--abdel-maksoud/chromium.src,krieger-od/nwjs_chromium.src,fujunwei/chromium-crosswalk,markYoungH/chromium.src,bright-sparks/chromium-spacewalk,krieger-od/nwjs_chromium.src,patrickm/chromium.src,Jonekee/chromium.src,ondra-novak/chromium.src,jaruba/chromium.src,hujiajie/pa-chromium,anirudhSK/chromium,Pluto-tv/chromium-crosswalk,patrickm/chromium.src,crosswalk-project/chromium-crosswalk-efl,fujunwei/chromium-crosswalk,Jonekee/chromium.src,chuan9/chromium-crosswalk,anirudhSK/chromium,M4sse/chromium.src,Fireblend/chromium-crosswalk,mogoweb/chromium-crosswalk,ChromiumWebApps/chromium,Chilledheart/chromium,ondra-novak/chromium.src,mogoweb/chromium-crosswalk,TheTypoMaster/chromium-crosswalk,markYoungH/chromium.src,axinging/chromium-crosswalk,ChromiumWebApps/chromium,hujiajie/pa-chromium,jaruba/chromium.src,ltilve/chromium,dushu1203/chromium.src,anirudhSK/chromium,crosswalk-project/chromium-crosswalk-efl,dednal/chromium.src,patrickm/chromium.src,axinging/chromium-crosswalk,mohamed--abdel-maksoud/chromium.src,ltilve/chromium,hujiajie/pa-chromium,fujunwei/chromium-crosswalk,hgl888/chromium-crosswalk-efl,ChromiumWebApps/chromium,ondra-novak/chromium.src,Jonekee/chromium.src,markYoungH/chromium.src,ChromiumWebApps/chromium,krieger-od/nwjs_chromium.src,crosswalk-project/chromium-crosswalk-efl,anirudhSK/chromium,mohamed--abdel-maksoud/chromium.src,markYoungH/chromium.src,krieger-od/nwjs_chromium.src,chuan9/chromium-crosswalk,dushu1203/chromium.src,M4sse/chromium.src,krieger-od/nwjs_chromium.src,Chilledheart/chromium,dushu1203/chromium.src,Just-D/chromium-1,Pluto-tv/chromium-crosswalk,M4sse/chromium.src,pozdnyakov/chromium-crosswalk,littlstar/chromium.src,ondra-novak/chromium.src,axinging/chromium-crosswalk,Jonekee/chromium.src,ltilve/chromium
9b4a41296ef6979aa4622c509d301d8e5fd7f275
ext/binary_search.c
ext/binary_search.c
#include <ruby.h> static ID id_cmp; static VALUE rb_array_binary_index(VALUE self, VALUE value) { int lower = 0; int upper = RARRAY(self)->len - 1; int i, comp; while(lower <= upper) { i = lower + (upper - lower) / 2; comp = FIX2INT(rb_funcall(value, id_cmp, 1, RARRAY(self)->ptr[i])); if(comp == 0) { return LONG2NUM(i); } else if(comp == 1) { lower = i + 1; } else { upper = i - 1; }; } return Qnil; } void Init_binary_search() { id_cmp = rb_intern("<=>"); rb_define_method(rb_cArray, "binary_index", rb_array_binary_index, 1); }
#include <ruby.h> #ifndef RARRAY_PTR #define RARRAY_PTR(ary) RARRAY(ary)->ptr #endif #ifndef RARRAY_LEN #define RARRAY_LEN(ary) RARRAY(ary)->len #endif static ID id_cmp; static VALUE rb_array_binary_index(VALUE self, VALUE value) { int lower = 0; int upper = RARRAY_LEN(self) - 1; int i, comp; while(lower <= upper) { i = lower + (upper - lower) / 2; comp = FIX2INT(rb_funcall(value, id_cmp, 1, RARRAY_PTR(self)[i])); if(comp == 0) { return LONG2NUM(i); } else if(comp == 1) { lower = i + 1; } else { upper = i - 1; }; } return Qnil; } void Init_binary_search() { id_cmp = rb_intern("<=>"); rb_define_method(rb_cArray, "binary_index", rb_array_binary_index, 1); }
Use RARRAY_LEN and RARRAY_PTR on ruby 1.9
Use RARRAY_LEN and RARRAY_PTR on ruby 1.9
C
mit
tyler/binary_search,tyler/binary_search
af0802bae6f1dfc7323d540c479a79c98944e3d4
src/RelativeLink/RelativeLink.c
src/RelativeLink/RelativeLink.c
#include <windows.h> #include <stdio.h> #include <tchar.h> // // RelativeLink.c // by Jacob Appelbaum <[email protected]> // // This is a very small program to work around the lack of relative links // in any of the most recent builds of Windows. // // To build this, you need Cygwin or MSYS. // // You need to build the icon resource first: // windres RelativeLink-res.rc RelativeLink-res.o // // Then you'll compile the program and include the icon object file: // gcc -mwindows -o StartTorBrowserBundle RelativeLink.c RelativeLink-res.o // // End users will be able to use StartTorBrowserBundle.exe // //int _tmain( int argc, TCHAR *argv[]) int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { STARTUPINFO si; PROCESS_INFORMATION pi; ZeroMemory ( &si, sizeof(si) ); si.cb = sizeof(si); ZeroMemory ( &pi, sizeof(pi) ); TCHAR *ProgramToStart; ProgramToStart = TEXT ("App/vidalia.exe --datadir .\\Data\\Vidalia\\"); if( !CreateProcess( NULL, ProgramToStart, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi )) { MessageBox ( NULL, TEXT ("Unable to start Vidalia"), NULL, NULL ); return -1; } return 0; }
#include <windows.h> #include <stdio.h> #include <tchar.h> // // RelativeLink.c // by Jacob Appelbaum <[email protected]> // // This is a very small program to work around the lack of relative links // in any of the most recent builds of Windows. // // To build this, you need Cygwin or MSYS. // // You need to build the icon resource first: // windres RelativeLink-res.rc RelativeLink-res.o // // Then you'll compile the program and include the icon object file: // gcc -mwindows -o StartTorBrowserBundle RelativeLink.c RelativeLink-res.o // // End users will be able to use StartTorBrowserBundle.exe // //int _tmain( int argc, TCHAR *argv[]) int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { STARTUPINFO si; PROCESS_INFORMATION pi; ZeroMemory ( &si, sizeof(si) ); si.cb = sizeof(si); ZeroMemory ( &pi, sizeof(pi) ); TCHAR *ProgramToStart; ProgramToStart = TEXT ("App/vidalia.exe --datadir .\\Data\\Vidalia\\"); if( !CreateProcess( NULL, ProgramToStart, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi )) { MessageBox ( NULL, TEXT ("Unable to start Vidalia"), NULL, MB_OK); return -1; } return 0; }
Fix pointer without cast issue.
Fix pointer without cast issue. svn:r14724
C
bsd-3-clause
Shondoit/torbrowser,Shondoit/torbrowser,Shondoit/torbrowser,Shondoit/torbrowser
cf91829aa3cf0f0916769f776e55973e00227c28
t/mmap_test_1.c
t/mmap_test_1.c
#include <stdlib.h> /* malloc(), free() */ #include <sys/mman.h> /* mmap(), munmap() */ #include <stdio.h> /* perror() */ #include <assert.h> int main(int argc, char **argv) { void *addr, *addr2; size_t size = 16 * 1024; addr = mmap((void*) 0, size, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, (off_t) 0); assert(addr != MAP_FAILED); /* Assert: memory mapped twice does not error. */ addr2 = mmap(addr + (size / 2), size / 2, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, (off_t) 0); assert(addr2 != MAP_FAILED); return 0; }
Test that mmap()ing a region twice does not fail.
Test that mmap()ing a region twice does not fail.
C
mit
kstephens/smal,kstephens/smal,kstephens/smal
01b357ec14e0d8ef60bf12e297c347230fb8da63
src/UIViewController+IDPExtensions.h
src/UIViewController+IDPExtensions.h
// // UIViewController+IDPExtensions.h // ClipIt // // Created by Vadim Lavrov Viktorovich on 2/20/13. // Copyright (c) 2013 IDAP Group. All rights reserved. // #import <UIKit/UIKit.h> #define IDPViewControllerViewOfClassGetterSynthesize(theClass, getterName) \ - (theClass *)getterName { \ if ([self.view isKindOfClass:[theClass class]]) { \ return (theClass *)self.view; \ } \ return nil; \ } @interface UIViewController (IDPExtensions) @property (nonatomic, retain, readonly) UITableView *tableView; @end
// // UIViewController+IDPExtensions.h // ClipIt // // Created by Vadim Lavrov Viktorovich on 2/20/13. // Copyright (c) 2013 IDAP Group. All rights reserved. // #import <UIKit/UIKit.h> @interface UIViewController (IDPExtensions) @property (nonatomic, retain, readonly) UITableView *tableView; @end
Move IDPViewControllerViewOfClassGetterSynthesize to CommonKit -> IDPPropertyMacros.h
Move IDPViewControllerViewOfClassGetterSynthesize to CommonKit -> IDPPropertyMacros.h
C
bsd-3-clause
idapgroup/UIKit,idapgroup/UIKit,idapgroup/UIKit,idapgroup/UIKit
598924ef6499c736f9ba63da255c37bdfebfe213
includes/linux/goblint_preconf.h
includes/linux/goblint_preconf.h
#define KBUILD_MODNAME "SomeModule" #define CONFIG_DEBUG_SPINLOCK 1
#define KBUILD_MODNAME "SomeModule" #define CONFIG_DEBUG_SPINLOCK 1 #undef __GNUC_MINOR__ #define __GNUC_MINOR__ 4
Redefine version macro to avoid gcc 4.5 features not supported by CIL
Redefine version macro to avoid gcc 4.5 features not supported by CIL
C
mit
goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer
231ba5dc3b5833fb64177f6ebb0bd372c7f026ae
test/Driver/XRay/xray-instrument-os.c
test/Driver/XRay/xray-instrument-os.c
// RUN: not %clang -o /dev/null -v -fxray-instrument -c %s // XFAIL: -linux- // REQUIRES: amd64 || x86_64 || x86_64h || arm || aarch64 || arm64 typedef int a;
// RUN: not %clang -o /dev/null -v -fxray-instrument -c %s // XFAIL: -linux- // REQUIRES-ANY: amd64, x86_64, x86_64h, arm, aarch64, arm64 typedef int a;
Revert "[test] Replace `REQUIRES-ANY: a, b, c` with `REQUIRES: a || b || c`."
Revert "[test] Replace `REQUIRES-ANY: a, b, c` with `REQUIRES: a || b || c`." The underlying `lit` change needs to be better-coordinated with libc++. git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@292898 91177308-0d34-0410-b5e6-96231b3b80d8
C
apache-2.0
apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-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,llvm-mirror/clang,apple/swift-clang
d2d549a541fd716457776e796fad96bfaf96782c
src/runtime/scoped_mutex_lock.h
src/runtime/scoped_mutex_lock.h
#ifndef HALIDE_RUNTIME_MUTEX_H #define HALIDE_RUNTIME_MUTEX_H #include "HalideRuntime.h" // Avoid ODR violations namespace { // An RAII mutex struct ScopedMutexLock { halide_mutex *mutex; ScopedMutexLock(halide_mutex *mutex) : mutex(mutex) { halide_mutex_lock(mutex); } ~ScopedMutexLock() { halide_mutex_unlock(mutex); } }; } #endif
Add an OS mutex to Halide runtime.
Add an OS mutex to Halide runtime. Document an issue with the POSIX thread pool. Ensure memoization cache is cleaned up when a JITted module is shutdown. (Also provides a way to clear the cache from AOT code.) Former-commit-id: cf5298c90763481e80a748c1b10453c482fdd7a8
C
mit
Trass3r/Halide,Trass3r/Halide,Trass3r/Halide,darkbuck/Halide,Trass3r/Halide,darkbuck/Halide,darkbuck/Halide,darkbuck/Halide,Trass3r/Halide,darkbuck/Halide,darkbuck/Halide,Trass3r/Halide,darkbuck/Halide,Trass3r/Halide
8337ff531d1611dad7bac73a2751b9f7a44242e5
src/rtcmix/rtdefs.h
src/rtcmix/rtdefs.h
/* To avoid recursion in certain includes */ #ifndef _RTDEFS_H_ #define _RTDEFS_H_ 1 #define MAXCHANS 4 #define MAX_INPUT_FDS 128 #define AUDIO_DEVICE 9999999 /* definition of input file desc struct used by rtinput */ typedef struct inputdesc { char filename[1024]; int fd; int refcount; #ifdef USE_SNDLIB short header_type; /* e.g., AIFF_sound_file (in sndlib.h) */ short data_format; /* e.g., snd_16_linear (in sndlib.h) */ short chans; #else #ifdef sgi void *handle; #endif #endif int data_location; /* offset of sound data start in file */ float dur; } InputDesc; /* for insts - so they don't have to include globals.h */ extern int MAXBUF; extern int NCHANS; extern int RTBUFSAMPS; extern float SR; #endif /* _RTDEFS_H_ */
/* To avoid recursion in certain includes */ #ifndef _RTDEFS_H_ #define _RTDEFS_H_ 1 #define MAXCHANS 4 #define MAX_INPUT_FDS 128 #define AUDIO_DEVICE 9999999 /* definition of input file desc struct used by rtinput */ typedef struct inputdesc { char filename[1024]; int fd; int refcount; #ifdef USE_SNDLIB short header_type; /* e.g., AIFF_sound_file (in sndlib.h) */ short data_format; /* e.g., snd_16_linear (in sndlib.h) */ short chans; float srate; #else #ifdef sgi void *handle; #endif #endif int data_location; /* offset of sound data start in file */ float dur; } InputDesc; /* for insts - so they don't have to include globals.h */ extern int MAXBUF; extern int NCHANS; extern int RTBUFSAMPS; extern float SR; #endif /* _RTDEFS_H_ */
Add srate field to InputDesc.
Add srate field to InputDesc.
C
apache-2.0
RTcmix/RTcmix,RTcmix/RTcmix,RTcmix/RTcmix,RTcmix/RTcmix,RTcmix/RTcmix,RTcmix/RTcmix
92b435334e50b9918e62f8eb6a1cbe8acc4b3321
tests/performance.c
tests/performance.c
#include <stdlib.h> #include <stdio.h> #include "bomalloc.h" #include "dummy.h" #define NUM_ROUNDS 500000 size_t class_for_rnd(int rnd) { return ALIGN(CLASS_TO_SIZE(rnd % NUM_CLASSES) - sizeof(block_t)); } typedef struct { int * space; size_t size; } record_t; int main() { int rnd; size_t alloc_size; srand(0); for (rnd = 0; rnd < NUM_ROUNDS; rnd++) { alloc_size = class_for_rnd(rnd); bomalloc_malloc(alloc_size); } printf("Performance test complete\n"); print_bomalloc_stats(); }
#include <stdlib.h> #include <stdio.h> #include "bomalloc.h" #include "dummy.h" #define NUM_ROUNDS 500 size_t class_for_rnd(int rnd) { return ALIGN(CLASS_TO_SIZE(rnd % NUM_CLASSES) - sizeof(block_t)); } typedef struct { int * space; size_t size; } record_t; int main() { int rnd; size_t alloc_size; srand(0); for (rnd = 0; rnd < NUM_ROUNDS; rnd++) { alloc_size = class_for_rnd(rnd); bomalloc_malloc(alloc_size); } printf("Performance test complete\n"); print_bomalloc_stats(); }
Change perf. test to reasonable number
[test] Change perf. test to reasonable number
C
mit
benohalloran/noomr,benohalloran/noomr,benohalloran/ipa,benohalloran/bomalloc,benohalloran/ipa,benohalloran/bomalloc
c6a82feaaf54cc0888af0266ec1c6113dbd350c6
inc/libutils/io/ostream_log_strategy.h
inc/libutils/io/ostream_log_strategy.h
/* * ostream_log_strategy.h * * Author: Ming Tsang * Copyright (c) 2014 Ming Tsang * Refer to LICENSE for details */ #pragma once #include <ostream> #include "libutils/io/log_strategy.h" namespace utils { namespace io { template<typename CharT_> class OstreamLogStrategy : public LogStrategy<CharT_> { public: void Flush() { GetStream().flush(); } protected: explicit OstreamLogStrategy(std::basic_ostream<CharT_> *stream) : OstreamLogStrategy(stream, true) {} OstreamLogStrategy(std::basic_ostream<CharT_> *stream, const bool is_owner); virtual ~OstreamLogStrategy(); std::basic_ostream<CharT_>& GetStream() { return *m_stream; } private: std::basic_ostream<CharT_> *m_stream; bool m_is_owner; }; } } #include "ostream_log_strategy.tcc"
/* * ostream_log_strategy.h * * Author: Ming Tsang * Copyright (c) 2014 Ming Tsang * Refer to LICENSE for details */ #pragma once #include <ostream> #include "libutils/io/log_strategy.h" namespace utils { namespace io { template<typename CharT_> class OstreamLogStrategy : public LogStrategy<CharT_> { public: void Flush() { GetStream().flush(); } protected: explicit OstreamLogStrategy(std::basic_ostream<CharT_> *stream) : OstreamLogStrategy(stream, true) {} OstreamLogStrategy(std::basic_ostream<CharT_> *stream, const bool is_owner); OstreamLogStrategy(const OstreamLogStrategy&) = delete; OstreamLogStrategy(OstreamLogStrategy&&) = delete; virtual ~OstreamLogStrategy(); std::basic_ostream<CharT_>& GetStream() { return *m_stream; } private: std::basic_ostream<CharT_> *m_stream; bool m_is_owner; }; } } #include "ostream_log_strategy.tcc"
Delete copy and move constructor
Delete copy and move constructor
C
mit
nkming2/libutils,nkming2/libutils,nkming2/libutils,nkming2/libutils,nkming2/libutils,nkming2/libutils
6a4e3316af783cd36cb96a7dd81597cc272801e8
main.c
main.c
#include "config_parse.h" #include <stdio.h> #include <stdlib.h> extern char **environ; /******************************************************************************/ int main( int argc, char *argv[] ) { FILE * conf_fd; config_parse_res_t res; if(argc != 2) { printf("usage: config_parse file\n"); return EXIT_FAILURE; } conf_fd = fopen(argv[1], "r"); if(NULL != conf_fd) { res = config_parse(conf_fd, 1); if(CONFIG_PARSE_OK == res) { char **env; for (env = environ; *env; ++env) printf("%s\n", *env); } else { printf("Error no. %d while processing file \n", res); } fclose(conf_fd); } else { printf("Could not open the specified file.\n"); return EXIT_FAILURE; } return EXIT_SUCCESS; }
#include "config_parse.h" #include <stdio.h> #include <string.h> #include <stdlib.h> extern char **environ; /******************************************************************************/ int main( int argc, char *argv[] ) { FILE * conf_fd; config_parse_res_t res; if(argc != 2) { printf("usage: config_parse file ('-' for stdin)\n"); return EXIT_FAILURE; } if(0 == strcmp("-", argv[1])) { conf_fd = stdin; } else { conf_fd = fopen(argv[1], "r"); } if(NULL != conf_fd) { res = config_parse(conf_fd, 1); if(CONFIG_PARSE_OK == res) { char **env; for (env = environ; *env; ++env) printf("%s\n", *env); } else { printf("Error no. %d while processing file \n", res); } fclose(conf_fd); } else { printf("Could not open the specified file.\n"); return EXIT_FAILURE; } return EXIT_SUCCESS; }
Add option to read from stdin
Add option to read from stdin
C
mit
stefan-misik/config-parse
f5cca606abcaa2dca2585887be7498947058fc9b
psimpl-c.h
psimpl-c.h
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* psimpl-c Copyright (c) 2013 Jamie Bullock <[email protected]> Based on psimpl Copyright (c) 2010-2011 Elmar de Koning <[email protected]> */ #include <stdint.h> #ifdef __cplusplus extern "C" { #endif double *psimpl_simplify_douglas_peucker( uint8_t dimensions, double tolerance, double *original_points, double *simplified_points ); #ifdef __cplusplus } #endif
Add initial C interface with support for Douglas-Peucker
Add initial C interface with support for Douglas-Peucker
C
mpl-2.0
jamiebullock/psimpl-c,jamiebullock/psimpl-c,jamiebullock/psimpl-c,jamiebullock/psimpl-c
bd6796b0bde2d9ccdc55fdaf7747f1846ecd459d
src/unix/unix_c/unix_mcast_utils.h
src/unix/unix_c/unix_mcast_utils.h
/* OCaml promise library * http://www.ocsigen.org/lwt * Copyright (C) 2009-2010 Jérémie Dimino * 2009 Mauricio Fernandez * 2010 Pierre Chambart * * This program 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, with linking exceptions; * either version 2.1 of the License, or (at your option) any later * version. See COPYING file for details. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #pragma once #include "lwt_config.h" #if !defined(LWT_ON_WINDOWS) #include <caml/mlvalues.h> #include <caml/unixsupport.h> int socket_domain(int fd); #endif
/* OCaml promise library * http://www.ocsigen.org/lwt * Copyright (C) 2009-2010 Jérémie Dimino * 2009 Mauricio Fernandez * 2010 Pierre Chambart * * This program 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, with linking exceptions; * either version 2.1 of the License, or (at your option) any later * version. See COPYING file for details. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #pragma once #include "lwt_config.h" /* * Included in: * - unix_mcast_modify_membership.c * - unix_mcast_set_loop.c * - unix_mcast_set_ttl.c * - unix_mcast_utils.c */ #if !defined(LWT_ON_WINDOWS) #include <caml/mlvalues.h> #include <caml/unixsupport.h> int socket_domain(int fd); #endif
Add in comments the files that uses this header
Add in comments the files that uses this header
C
mit
c-cube/lwt,ocsigen/lwt,rneswold/lwt,ocsigen/lwt,ocsigen/lwt,rneswold/lwt,c-cube/lwt,rneswold/lwt,c-cube/lwt
e5c078e0f278adfbe685df2d8e141a9f71ea7cc8
queue/linkedListImplementation/queue.h
queue/linkedListImplementation/queue.h
#include <stdio.h> #include <stdlib.h> #include "utility.h" /* * MAW 3.25.a Write the routines to implement queues using: Linked Lists * * We use a header node at the very beginning of the linked list. * * Front: | header node | -> | data node | -> | data node | :Rear */ #ifndef _QUEUE_H #define _QUEUE_H typedef int ET; struct QueueRecord; struct QueueCDT; typedef struct QueueRecord* PtrToNode; typedef struct QueueCDT* QueueADT; // naming convention: https://www.cs.bu.edu/teaching/c/queue/linked-list/types.html int isEmpty(QueueADT Q); QueueADT createQueue(); void disposeQueue(QueueADT Q); void makeEmpty(QueueADT Q); void enqueue(ET elem, QueueADT Q); ET front(QueueADT Q); void dequeue(QueueADT Q); ET frontAndDequeue(QueueADT Q); QueueADT initializeQueue(ET array[], int lengthArray); void printQueue(QueueADT Q); #endif
#include <stdio.h> #include <stdlib.h> #include "utility.h" /* * MAW 3.25.a Write the routines to implement queues using: Linked Lists * * We use a header node at the very beginning of the linked list. * * Front: | header node | -> | data node | -> | data node | :Rear */ #ifndef _QUEUE_H #define _QUEUE_H typedef int ET; struct QueueRecord; struct QueueCDT; typedef struct QueueRecord* PtrToNode; // CDT: concrete-type-of-a-queue // ADT: abstract-type-of-a-queue typedef struct QueueCDT* QueueADT; // naming convention: https://www.cs.bu.edu/teaching/c/queue/linked-list/types.html int isEmpty(QueueADT Q); QueueADT createQueue(); void disposeQueue(QueueADT Q); void makeEmpty(QueueADT Q); void enqueue(ET elem, QueueADT Q); ET front(QueueADT Q); void dequeue(QueueADT Q); ET frontAndDequeue(QueueADT Q); QueueADT initializeQueue(ET array[], int lengthArray); void printQueue(QueueADT Q); #endif
Add comment remarks to CDT & ADT
Add comment remarks to CDT & ADT
C
mit
xxks-kkk/algo,xxks-kkk/algo
fee691d90d9df4376b6ffffb6516d8a817025c93
StarEngine/jni/Input/GestureManager.h
StarEngine/jni/Input/GestureManager.h
#pragma once #ifdef _WIN32 #else #include <android_native_app_glue.h> #endif #include <vector> #include "BaseGesture.h" namespace star { struct WinInputState; class GestureManager { public: GestureManager(); ~GestureManager(); void Update(const Context& context); void AddGesture(BaseGesture* gesture); void RemoveGesture(BaseGesture* gesture); #ifdef _WIN32 void OnUpdateWinInputState(); #else void OnTouchEvent(AInputEvent* pEvent); #endif private: std::vector<BaseGesture*> m_GestureVec; double m_dTime; double m_TotalTime; GestureManager(const GestureManager& t); GestureManager(GestureManager&& t); GestureManager& operator=(const GestureManager& t); }; }
#pragma once #ifdef _WIN32 #else #include <android_native_app_glue.h> #endif #include <vector> #include "BaseGesture.h" namespace star { struct WinInputState // [COMMENT] Gesture-Tags // Gestures should also be given a user-defined tag // when added to the the manager. // this way the user can look them up by tag, rather then // on pointer ( for adding one, or removing one, or getting one ) // Part of the beauty of this kind of managing concept is // that the user doesn't have to bother about the pointers // as that's all managed inside the manager. // On a side note... It's probably a good practice that the user defines // these gestures in the Game class, as scenes get created // and deleted everytime the screen rotates on android. class GestureManager { public: GestureManager(); ~GestureManager(); void Update(const Context& context); void AddGesture(BaseGesture* gesture); void RemoveGesture(BaseGesture* gesture); #ifdef _WIN32 void OnUpdateWinInputState(); #else void OnTouchEvent(AInputEvent* pEvent); #endif private: std::vector<BaseGesture*> m_GestureVec; double m_dTime; double m_TotalTime; GestureManager(const GestureManager& t); GestureManager(GestureManager&& t); GestureManager& operator=(const GestureManager& t); }; }
Comment for pieter in Gesture manager. Read && fix
Comment for pieter in Gesture manager. Read && fix
C
mit
gh054/engine,gh054/engine,GlenDC/StarEngine,GlenDC/StarEngine,hcxyzlm/engine,StarEngine/engine,GlenDC/StarEngine,StarEngine/engine,hcxyzlm/engine,GlenDC/StarEngine,GlenDC/StarEngine
2d6d79307c500ce31d981ed5c9f54249f8ccb459
src/kudu/util/shared_ptr_util.h
src/kudu/util/shared_ptr_util.h
// Copyright (c) 2015, Cloudera, inc. // Confidential Cloudera Information: Covered by NDA. #ifndef KUDU_UTIL_SHARED_PTR_UTIL_H_ #define KUDU_UTIL_SHARED_PTR_UTIL_H_ #include <cstddef> #include <tr1/memory> namespace kudu { // This is needed on TR1. With C++11, std::hash<std::shared_ptr<>> is provided. template <class T> struct SharedPtrHashFunctor { std::size_t operator()(const std::tr1::shared_ptr<T>& key) const { return reinterpret_cast<std::size_t>(key.get()); } }; } // namespace kudu #endif // KUDU_UTIL_SHARED_PTR_UTIL_H_
Add hash function for std::tr1::shared_ptr<>
Add hash function for std::tr1::shared_ptr<> This exists as a std::hash<> specialization for std::shared_ptr in C++11 but it does not ship with TR1. Change-Id: Id342f8e9c45f93a2b22e530a689ca18ebf8534b1 Reviewed-on: http://gerrit.sjc.cloudera.com:8080/5998 Tested-by: Michael Percy <[email protected]> Reviewed-by: Todd Lipcon <[email protected]>
C
apache-2.0
helifu/kudu,helifu/kudu,cloudera/kudu,helifu/kudu,helifu/kudu,InspurUSA/kudu,helifu/kudu,InspurUSA/kudu,andrwng/kudu,EvilMcJerkface/kudu,andrwng/kudu,helifu/kudu,InspurUSA/kudu,andrwng/kudu,EvilMcJerkface/kudu,cloudera/kudu,EvilMcJerkface/kudu,helifu/kudu,andrwng/kudu,andrwng/kudu,cloudera/kudu,cloudera/kudu,EvilMcJerkface/kudu,EvilMcJerkface/kudu,EvilMcJerkface/kudu,andrwng/kudu,InspurUSA/kudu,EvilMcJerkface/kudu,andrwng/kudu,cloudera/kudu,helifu/kudu,cloudera/kudu,EvilMcJerkface/kudu,InspurUSA/kudu,cloudera/kudu,InspurUSA/kudu,cloudera/kudu,andrwng/kudu,InspurUSA/kudu,EvilMcJerkface/kudu,andrwng/kudu,InspurUSA/kudu,cloudera/kudu,InspurUSA/kudu,helifu/kudu
1f9749452f0d1c50eb920c5df7b026542d07eab8
TARGET_STM/TARGET_STM32F4XX/cmsis_nvic.c
TARGET_STM/TARGET_STM32F4XX/cmsis_nvic.c
/* mbed Microcontroller Library - cmsis_nvic for STM32F4 * Copyright (c) 2009-2011 ARM Limited. All rights reserved. * * CMSIS-style functionality to support dynamic vectors */ #include "cmsis_nvic.h" #define NVIC_RAM_VECTOR_ADDRESS (0x20000000) // Location of vectors in RAM #define NVIC_FLASH_VECTOR_ADDRESS (0x0) // Initial vector position in flash void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector) { uint32_t *vectors = (uint32_t*)SCB->VTOR; uint32_t i; // Copy and switch to dynamic vectors if the first time called if (SCB->VTOR == NVIC_FLASH_VECTOR_ADDRESS) { uint32_t *old_vectors = vectors; vectors = (uint32_t*)NVIC_RAM_VECTOR_ADDRESS; for (i=0; i<NVIC_NUM_VECTORS; i++) { vectors[i] = old_vectors[i]; } SCB->VTOR = (uint32_t)NVIC_RAM_VECTOR_ADDRESS; } vectors[IRQn + 16] = vector; } uint32_t NVIC_GetVector(IRQn_Type IRQn) { uint32_t *vectors = (uint32_t*)SCB->VTOR; return vectors[IRQn + 16]; }
/* mbed Microcontroller Library - cmsis_nvic for STM32F4 * Copyright (c) 2009-2011 ARM Limited. All rights reserved. * * CMSIS-style functionality to support dynamic vectors */ #include "cmsis_nvic.h" #define NVIC_RAM_VECTOR_ADDRESS (0x20000000) // Location of vectors in RAM static unsigned char vtor_relocated; void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector) { uint32_t *vectors = (uint32_t*)SCB->VTOR; uint32_t i; // Copy and switch to dynamic vectors if the first time called if (!vtor_relocated) { uint32_t *old_vectors = vectors; vectors = (uint32_t*)NVIC_RAM_VECTOR_ADDRESS; for (i=0; i<NVIC_NUM_VECTORS; i++) { vectors[i] = old_vectors[i]; } SCB->VTOR = (uint32_t)NVIC_RAM_VECTOR_ADDRESS; vtor_relocated = 1; } vectors[IRQn + 16] = vector; } uint32_t NVIC_GetVector(IRQn_Type IRQn) { uint32_t *vectors = (uint32_t*)SCB->VTOR; return vectors[IRQn + 16]; }
Fix relocation of vector on STM32.
Fix relocation of vector on STM32.
C
apache-2.0
Psykar/kubos,Psykar/kubos,Psykar/kubos,kubostech/KubOS,Psykar/kubos,Psykar/kubos,Psykar/kubos,Psykar/kubos,kubostech/KubOS
ddc2419c090b0af65edc9eb07ac0a736eb351b69
build_msvc/libsecp256k1_config.h
build_msvc/libsecp256k1_config.h
/********************************************************************** * Copyright (c) 2013, 2014 Pieter Wuille * * Distributed under the MIT software license, see the accompanying * * file COPYING or http://www.opensource.org/licenses/mit-license.php.* **********************************************************************/ #ifndef BITCOIN_LIBSECP256K1_CONFIG_H #define BITCOIN_LIBSECP256K1_CONFIG_H #undef USE_ASM_X86_64 #undef USE_ENDOMORPHISM #undef USE_FIELD_10X26 #undef USE_FIELD_5X52 #undef USE_FIELD_INV_BUILTIN #undef USE_FIELD_INV_NUM #undef USE_NUM_GMP #undef USE_NUM_NONE #undef USE_SCALAR_4X64 #undef USE_SCALAR_8X32 #undef USE_SCALAR_INV_BUILTIN #undef USE_SCALAR_INV_NUM #define USE_NUM_NONE 1 #define USE_FIELD_INV_BUILTIN 1 #define USE_SCALAR_INV_BUILTIN 1 #define USE_FIELD_10X26 1 #define USE_SCALAR_8X32 1 #endif /* BITCOIN_LIBSECP256K1_CONFIG_H */
/********************************************************************** * Copyright (c) 2013, 2014 Pieter Wuille * * Distributed under the MIT software license, see the accompanying * * file COPYING or http://www.opensource.org/licenses/mit-license.php.* **********************************************************************/ #ifndef BITCOIN_LIBSECP256K1_CONFIG_H #define BITCOIN_LIBSECP256K1_CONFIG_H #undef USE_ASM_X86_64 #undef USE_ENDOMORPHISM #undef USE_FIELD_10X26 #undef USE_FIELD_5X52 #undef USE_FIELD_INV_BUILTIN #undef USE_FIELD_INV_NUM #undef USE_NUM_GMP #undef USE_NUM_NONE #undef USE_SCALAR_4X64 #undef USE_SCALAR_8X32 #undef USE_SCALAR_INV_BUILTIN #undef USE_SCALAR_INV_NUM #define USE_NUM_NONE 1 #define USE_FIELD_INV_BUILTIN 1 #define USE_SCALAR_INV_BUILTIN 1 #define USE_FIELD_10X26 1 #define USE_SCALAR_8X32 1 #define ECMULT_GEN_PREC_BITS 4 #define ECMULT_WINDOW_SIZE 15 #endif /* BITCOIN_LIBSECP256K1_CONFIG_H */
Update MSVC build config for libsecp256k1
Update MSVC build config for libsecp256k1
C
mit
namecoin/namecore,MeshCollider/bitcoin,apoelstra/bitcoin,instagibbs/bitcoin,JeremyRubin/bitcoin,jambolo/bitcoin,jambolo/bitcoin,lateminer/bitcoin,pataquets/namecoin-core,bitcoin/bitcoin,bitcoin/bitcoin,practicalswift/bitcoin,apoelstra/bitcoin,mruddy/bitcoin,mm-s/bitcoin,MeshCollider/bitcoin,prusnak/bitcoin,ElementsProject/elements,n1bor/bitcoin,AkioNak/bitcoin,yenliangl/bitcoin,fujicoin/fujicoin,kallewoof/bitcoin,jnewbery/bitcoin,practicalswift/bitcoin,lateminer/bitcoin,sipsorcery/bitcoin,MeshCollider/bitcoin,jnewbery/bitcoin,fanquake/bitcoin,tecnovert/particl-core,MarcoFalke/bitcoin,EthanHeilman/bitcoin,jamesob/bitcoin,JeremyRubin/bitcoin,GroestlCoin/bitcoin,domob1812/namecore,litecoin-project/litecoin,jlopp/statoshi,domob1812/namecore,particl/particl-core,instagibbs/bitcoin,bitcoinsSG/bitcoin,ajtowns/bitcoin,sstone/bitcoin,rnicoll/bitcoin,kallewoof/bitcoin,mm-s/bitcoin,MarcoFalke/bitcoin,lateminer/bitcoin,sstone/bitcoin,namecoin/namecoin-core,EthanHeilman/bitcoin,sipsorcery/bitcoin,prusnak/bitcoin,domob1812/namecore,pataquets/namecoin-core,JeremyRubin/bitcoin,domob1812/bitcoin,MarcoFalke/bitcoin,AkioNak/bitcoin,anditto/bitcoin,rnicoll/bitcoin,sstone/bitcoin,MeshCollider/bitcoin,bitcoin/bitcoin,namecoin/namecore,fanquake/bitcoin,jnewbery/bitcoin,alecalve/bitcoin,litecoin-project/litecoin,fujicoin/fujicoin,anditto/bitcoin,n1bor/bitcoin,Sjors/bitcoin,jambolo/bitcoin,namecoin/namecoin-core,qtumproject/qtum,domob1812/bitcoin,ElementsProject/elements,instagibbs/bitcoin,domob1812/bitcoin,namecoin/namecoin-core,rnicoll/bitcoin,ajtowns/bitcoin,fujicoin/fujicoin,Xekyo/bitcoin,Sjors/bitcoin,pstratem/bitcoin,cdecker/bitcoin,anditto/bitcoin,bitcoinknots/bitcoin,EthanHeilman/bitcoin,andreaskern/bitcoin,AkioNak/bitcoin,rnicoll/dogecoin,EthanHeilman/bitcoin,MarcoFalke/bitcoin,bitcoinsSG/bitcoin,achow101/bitcoin,andreaskern/bitcoin,bitcoinsSG/bitcoin,fanquake/bitcoin,sipsorcery/bitcoin,namecoin/namecoin-core,Sjors/bitcoin,n1bor/bitcoin,mm-s/bitcoin,Xekyo/bitcoin,sipsorcery/bitcoin,particl/particl-core,Xekyo/bitcoin,tecnovert/particl-core,jnewbery/bitcoin,fujicoin/fujicoin,kallewoof/bitcoin,alecalve/bitcoin,tecnovert/particl-core,apoelstra/bitcoin,prusnak/bitcoin,bitcoin/bitcoin,litecoin-project/litecoin,practicalswift/bitcoin,midnightmagic/bitcoin,achow101/bitcoin,yenliangl/bitcoin,practicalswift/bitcoin,bitcoinsSG/bitcoin,rnicoll/dogecoin,achow101/bitcoin,lateminer/bitcoin,GroestlCoin/bitcoin,MarcoFalke/bitcoin,AkioNak/bitcoin,namecoin/namecore,anditto/bitcoin,cdecker/bitcoin,domob1812/bitcoin,domob1812/namecore,particl/particl-core,yenliangl/bitcoin,Sjors/bitcoin,mruddy/bitcoin,bitcoinsSG/bitcoin,mruddy/bitcoin,dscotese/bitcoin,mruddy/bitcoin,GroestlCoin/GroestlCoin,midnightmagic/bitcoin,cdecker/bitcoin,dscotese/bitcoin,instagibbs/bitcoin,bitcoinknots/bitcoin,bitcoinknots/bitcoin,fanquake/bitcoin,Xekyo/bitcoin,bitcoin/bitcoin,bitcoinknots/bitcoin,rnicoll/bitcoin,jonasschnelli/bitcoin,GroestlCoin/GroestlCoin,JeremyRubin/bitcoin,n1bor/bitcoin,MarcoFalke/bitcoin,sipsorcery/bitcoin,jlopp/statoshi,particl/particl-core,alecalve/bitcoin,GroestlCoin/bitcoin,pataquets/namecoin-core,prusnak/bitcoin,anditto/bitcoin,jnewbery/bitcoin,cdecker/bitcoin,achow101/bitcoin,andreaskern/bitcoin,practicalswift/bitcoin,anditto/bitcoin,jambolo/bitcoin,bitcoin/bitcoin,dscotese/bitcoin,jlopp/statoshi,JeremyRubin/bitcoin,qtumproject/qtum,apoelstra/bitcoin,midnightmagic/bitcoin,litecoin-project/litecoin,mruddy/bitcoin,achow101/bitcoin,MeshCollider/bitcoin,pataquets/namecoin-core,tecnovert/particl-core,andreaskern/bitcoin,fanquake/bitcoin,pataquets/namecoin-core,qtumproject/qtum,andreaskern/bitcoin,jlopp/statoshi,alecalve/bitcoin,jambolo/bitcoin,fujicoin/fujicoin,EthanHeilman/bitcoin,GroestlCoin/GroestlCoin,pataquets/namecoin-core,qtumproject/qtum,GroestlCoin/bitcoin,Xekyo/bitcoin,ElementsProject/elements,ElementsProject/elements,jonasschnelli/bitcoin,sipsorcery/bitcoin,pstratem/bitcoin,qtumproject/qtum,namecoin/namecoin-core,dscotese/bitcoin,kallewoof/bitcoin,litecoin-project/litecoin,EthanHeilman/bitcoin,particl/particl-core,ajtowns/bitcoin,jamesob/bitcoin,n1bor/bitcoin,alecalve/bitcoin,jonasschnelli/bitcoin,midnightmagic/bitcoin,jlopp/statoshi,kallewoof/bitcoin,midnightmagic/bitcoin,achow101/bitcoin,pstratem/bitcoin,dscotese/bitcoin,mruddy/bitcoin,fanquake/bitcoin,cdecker/bitcoin,yenliangl/bitcoin,prusnak/bitcoin,GroestlCoin/bitcoin,tecnovert/particl-core,pstratem/bitcoin,jonasschnelli/bitcoin,cdecker/bitcoin,AkioNak/bitcoin,GroestlCoin/GroestlCoin,pstratem/bitcoin,namecoin/namecoin-core,jamesob/bitcoin,apoelstra/bitcoin,dscotese/bitcoin,mm-s/bitcoin,GroestlCoin/GroestlCoin,bitcoinsSG/bitcoin,yenliangl/bitcoin,litecoin-project/litecoin,yenliangl/bitcoin,rnicoll/bitcoin,Xekyo/bitcoin,practicalswift/bitcoin,namecoin/namecore,instagibbs/bitcoin,fujicoin/fujicoin,qtumproject/qtum,namecoin/namecore,sstone/bitcoin,JeremyRubin/bitcoin,rnicoll/dogecoin,qtumproject/qtum,rnicoll/dogecoin,Sjors/bitcoin,tecnovert/particl-core,jamesob/bitcoin,instagibbs/bitcoin,bitcoinknots/bitcoin,ajtowns/bitcoin,mm-s/bitcoin,andreaskern/bitcoin,rnicoll/bitcoin,jamesob/bitcoin,lateminer/bitcoin,alecalve/bitcoin,midnightmagic/bitcoin,MeshCollider/bitcoin,pstratem/bitcoin,prusnak/bitcoin,rnicoll/dogecoin,particl/particl-core,ElementsProject/elements,ElementsProject/elements,kallewoof/bitcoin,jambolo/bitcoin,ajtowns/bitcoin,sstone/bitcoin,GroestlCoin/bitcoin,ajtowns/bitcoin,domob1812/bitcoin,namecoin/namecore,mm-s/bitcoin,jamesob/bitcoin,GroestlCoin/GroestlCoin,sstone/bitcoin,domob1812/namecore,n1bor/bitcoin,jonasschnelli/bitcoin,jlopp/statoshi,domob1812/namecore,lateminer/bitcoin,apoelstra/bitcoin,AkioNak/bitcoin,domob1812/bitcoin
447a5d8024b547e4b008268f128456ca3b764b6b
src/test.c
src/test.c
#include <stdio.h> int main() { int a = 0; while(1) { printf("%d\t",a); printf("a = 0x%x\n",a); int temp; scanf("%d",&temp); if(temp == 0) { continue; } else { a = temp; } printf("%d\t",a); printf("a changed 0x%x\n",a); } return 0; }
#include <stdio.h> int main() { int a = 0; while(1) { printf("%d\t",a); printf("a = 0x%x\n",a); int temp; scanf("%d",&temp); if(temp == 0) { continue; } else { a = temp; } printf("%d\t",a); printf("a changed 0x%x\n",a); } return 0; }
Test file tab to space
Test file tab to space
C
bsd-3-clause
allencch/med,allencch/med,allencch/med
25caea025ae66c815cc85599e51b0b07d9957321
RectConfinementForce.h
RectConfinementForce.h
/*===- RectConfinementForce.h - libSimulation -================================= * * DEMON * * This file is distributed under the BSD Open Source License. See LICENSE.TXT * for details. * *===-----------------------------------------------------------------------===*/ #ifndef RECTCONFINEMENTFORCE_H #define RECTCONFINEMENTFORCE_H #include "Force.h" #include "VectorCompatibility.h" class RectConfinementForce : public Force { public: RectConfinementForce(Cloud * const myCloud, double confineConstX, double confineConstY); // confinement consts must be positive! ~RectConfinementForce() {} // destructor // public functions: // Note: currentTime parameter is necessary (due to parent class) but unused void force1(const double currentTime); // rk substep 1 void force2(const double currentTime); // rk substep 2 void force3(const double currentTime); // rk substep 3 void force4(const double currentTime); // rk substep 4 void writeForce(fitsfile * const file, int * const error) const; void readForce(fitsfile * const file, int * const error); private: // private variables: double confineX; double confineY; // private functions: void force(const unsigned int currentParticle, const __m128d currentPositionX, const __m128d currentPositionY); }; #endif // RECTCONFINEMENTFORCE_H
/*===- RectConfinementForce.h - libSimulation -================================= * * DEMON * * This file is distributed under the BSD Open Source License. See LICENSE.TXT * for details. * *===-----------------------------------------------------------------------===*/ #ifndef RECTCONFINEMENTFORCE_H #define RECTCONFINEMENTFORCE_H #include "Force.h" #include "VectorCompatibility.h" class RectConfinementForce : public Force { public: RectConfinementForce(Cloud * const myCloud, double confineConstX, double confineConstY); // IMPORTANT: In the above constructor, confineConst_'s must be positive! ~RectConfinementForce() {} // destructor // public functions: // Note: currentTime parameter is necessary (due to parent class) but unused void force1(const double currentTime); // rk substep 1 void force2(const double currentTime); // rk substep 2 void force3(const double currentTime); // rk substep 3 void force4(const double currentTime); // rk substep 4 void writeForce(fitsfile * const file, int * const error) const; void readForce(fitsfile * const file, int * const error); private: // private variables: double confineX; double confineY; // private functions: void force(const unsigned int currentParticle, const __m128d currentPositionX, const __m128d currentPositionY); }; #endif // RECTCONFINEMENTFORCE_H
Reword comment to be consistent with comment in ConfinementForce.
Reword comment to be consistent with comment in ConfinementForce.
C
bsd-3-clause
leios/demonsimulationcode,leios/demonsimulationcode
ffc3e8a32700194477d5d576c8bd3f7df853a6b1
common/macros.h
common/macros.h
/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* Copyright (C) 2009 Red Hat, Inc. 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, see <http://www.gnu.org/licenses/>. */ #ifndef __MACROS_H #define __MACROS_H #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) #define SPICE_ATTR_PRINTF(a,b) \ __attribute__((format(printf,a,b))) #else #define SPICE_ATTR_PRINTF(a,b) #endif /* __GNUC__ */ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5) #define SPICE_ATTR_NORETURN \ __attribute__((noreturn)) #else #define SPICE_ATTR_NORETURN #endif /* __GNUC__ */ #endif /* __MACROS_H */
/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* Copyright (C) 2009 Red Hat, Inc. 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, see <http://www.gnu.org/licenses/>. */ #ifndef __MACROS_H #define __MACROS_H #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5) #define SPICE_ATTR_NORETURN \ __attribute__((noreturn)) #define SPICE_ATTR_PRINTF(a,b) \ __attribute__((format(printf,a,b))) #else #define SPICE_ATTR_NORETURN #define SPICE_ATTR_PRINTF #endif /* __GNUC__ */ #endif /* __MACROS_H */
Fix min gcc version for __attribute__(format)
Fix min gcc version for __attribute__(format) We currently use it only on gcc 4.5 or newer, but it was actually introduced much earlier than that. It's documented in gcc 2.95.3 manual: http://gcc.gnu.org/onlinedocs/gcc-2.95.3/gcc_4.html#SEC84 and glib uses starting from gcc 2.2.5. This commit uses the same minimum version as glib. This was causing warnings on RHEL6 systems which have gcc 4.4.7
C
lgpl-2.1
fgouget/spice-common,fgouget/spice-common,elmarco/spice-common,fgouget/spice-common,SPICE/spice-common,freedesktop-unofficial-mirror/spice__spice-common,elmarco/spice-common,fgouget/spice-common,freedesktop-unofficial-mirror/spice__spice-common,freedesktop-unofficial-mirror/spice__spice-common,elmarco/spice-common,freedesktop-unofficial-mirror/spice__spice-common,Fantu/spice-common,SPICE/spice-common,Fantu/spice-common,Fantu/spice-common,Fantu/spice-common,SPICE/spice-common,elmarco/spice-common
f363bf4d9d27601fb67e4a2e5bc2c730cf2eb156
Pukli/src/Menu_state.h
Pukli/src/Menu_state.h
#ifndef __MENU_STATE_H__ #define __MENU_STATE_H__ #include <vector> #include "Game_state.h" #include "Game_object.h" class Menu_state : public Game_state { public: void update(); void render(); bool on_enter(); bool on_exit(); const std::string get_state_id() const { return s_menu_id; }; private: static const std::string s_menu_id; std::vector<Game_object*> m_game_objects; static void menu_to_play(); static void menu_to_exit(); }; #endif
#ifndef __MENU_STATE_H__ #define __MENU_STATE_H__ #include <vector> #include "Game_state.h" #include "Game_object.h" class Menu_state : public Game_state { public: void update(); void render(); bool on_enter(); bool on_exit(); const std::string get_state_id() const { return s_menu_id; }; private: static const std::string s_menu_id; std::vector<Game_object*> m_game_objects; }; #endif
Revert "added button callback functions"
Revert "added button callback functions" This reverts commit 8962b70fe01cbbd0bd4a82a8c68208ab276add31.
C
mit
AdjustmentBeaver/pukli,AdjustmentBeaver/pukli
7fa5884b0122ecaaee5a4a872a6a8b6b73012b58
webkit/glue/form_data.h
webkit/glue/form_data.h
// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef WEBKIT_GLUE_FORM_DATA_H__ #define WEBKIT_GLUE_FORM_DATA_H__ #include <vector> #include "base/string_util.h" #include "googleurl/src/gurl.h" #include "webkit/glue/form_field.h" namespace webkit_glue { // Holds information about a form to be filled and/or submitted. struct FormData { // The name of the form. string16 name; // GET or POST. string16 method; // The URL (minus query parameters) containing the form. GURL origin; // The action target of the form. GURL action; // true if this form was submitted by a user gesture and not javascript. bool user_submitted; // A vector of all the input fields in the form. std::vector<FormField> fields; // Used by FormStructureTest. inline bool operator==(const FormData& form) const { return (name == form.name && StringToLowerASCII(method) == StringToLowerASCII(form.method) && origin == form.origin && action == form.action && user_submitted == form.user_submitted && fields == form.fields); } }; } // namespace webkit_glue #endif // WEBKIT_GLUE_FORM_DATA_H__
// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef WEBKIT_GLUE_FORM_DATA_H__ #define WEBKIT_GLUE_FORM_DATA_H__ #include <vector> #include "base/string_util.h" #include "googleurl/src/gurl.h" #include "webkit/glue/form_field.h" namespace webkit_glue { // Holds information about a form to be filled and/or submitted. struct FormData { // The name of the form. string16 name; // GET or POST. string16 method; // The URL (minus query parameters) containing the form. GURL origin; // The action target of the form. GURL action; // true if this form was submitted by a user gesture and not javascript. bool user_submitted; // A vector of all the input fields in the form. std::vector<FormField> fields; FormData() : user_submitted(false) {} // Used by FormStructureTest. inline bool operator==(const FormData& form) const { return (name == form.name && StringToLowerASCII(method) == StringToLowerASCII(form.method) && origin == form.origin && action == form.action && user_submitted == form.user_submitted && fields == form.fields); } }; } // namespace webkit_glue #endif // WEBKIT_GLUE_FORM_DATA_H__
Add a default constructor for FormData. There are too many places that create FormDatas, and we shouldn't need to initialize user_submitted for each call site.
AutoFill: Add a default constructor for FormData. There are too many places that create FormDatas, and we shouldn't need to initialize user_submitted for each call site. BUG=50423 TEST=none Review URL: http://codereview.chromium.org/3074023 git-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@54641 0039d316-1c4b-4281-b951-d872f2087c98
C
bsd-3-clause
gavinp/chromium,adobe/chromium,yitian134/chromium,gavinp/chromium,yitian134/chromium,adobe/chromium,ropik/chromium,gavinp/chromium,ropik/chromium,gavinp/chromium,gavinp/chromium,adobe/chromium,Crystalnix/house-of-life-chromium,yitian134/chromium,Crystalnix/house-of-life-chromium,Crystalnix/house-of-life-chromium,yitian134/chromium,adobe/chromium,ropik/chromium,yitian134/chromium,Crystalnix/house-of-life-chromium,Crystalnix/house-of-life-chromium,ropik/chromium,Crystalnix/house-of-life-chromium,adobe/chromium,Crystalnix/house-of-life-chromium,adobe/chromium,yitian134/chromium,gavinp/chromium,yitian134/chromium,gavinp/chromium,ropik/chromium,ropik/chromium,adobe/chromium,yitian134/chromium,gavinp/chromium,Crystalnix/house-of-life-chromium,adobe/chromium,adobe/chromium,Crystalnix/house-of-life-chromium,adobe/chromium,Crystalnix/house-of-life-chromium,gavinp/chromium,ropik/chromium,yitian134/chromium,yitian134/chromium,Crystalnix/house-of-life-chromium,gavinp/chromium,ropik/chromium,adobe/chromium,ropik/chromium
b4aa51bece92b29c40af44290210e1abdfcc2078
3rdparty/GLKit/GLKMath.h
3rdparty/GLKit/GLKMath.h
// // GLKMath.h // GLKit // // Copyright (c) 2011, Apple Inc. All rights reserved. // #include <GLKit/GLKMathTypes.h> #include <GLKit/GLKMatrix3.h> #include <GLKit/GLKMatrix4.h> #include <GLKit/GLKVector2.h> #include <GLKit/GLKVector3.h> #include <GLKit/GLKVector4.h> #include <GLKit/GLKQuaternion.h> #include <GLKit/GLKMatrixStack.h> #include <GLKit/GLKMathUtils.h>
// // GLKMath.h // GLKit // // Copyright (c) 2011, Apple Inc. All rights reserved. // #include <GLKit/GLKMathTypes.h> #include <GLKit/GLKMatrix3.h> #include <GLKit/GLKMatrix4.h> #include <GLKit/GLKVector2.h> #include <GLKit/GLKVector3.h> #include <GLKit/GLKVector4.h> #include <GLKit/GLKQuaternion.h> //#include <GLKit/GLKMatrixStack.h> #include <GLKit/GLKMathUtils.h>
Remove GLKMatrixStack ... thanks Twilight! :D
Remove GLKMatrixStack ... thanks Twilight! :D
C
bsd-3-clause
MiJyn/nightmare,MiJyn/nightmare
8f40a8f6eafed187bc8d5ed38b1d080c9dc2af98
src/torcontrol.h
src/torcontrol.h
// Copyright (c) 2015 The BitCoin Core developers // Copyright (c) 2016 The Silk Network developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. /** * Functionality for communicating with Tor. */ #ifndef SILK_TORCONTROL_H #define SILK_TORCONTROL_H #include "scheduler.h" extern const std::string DEFAULT_TOR_CONTROL; static const bool DEFAULT_LISTEN_ONION = true; void StartTorControl(boost::thread_group& threadGroup, CScheduler& scheduler); void InterruptTorControl(); void StopTorControl(); #endif /* SILK_TORCONTROL_H */
// Copyright (c) 2015 The BitCoin Core developers // Copyright (c) 2016 The Silk Network developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. /** * Functionality for communicating with Tor. */ #ifndef SILK_TORCONTROL_H #define SILK_TORCONTROL_H #include "scheduler.h" extern const std::string DEFAULT_TOR_CONTROL; static const bool DEFAULT_LISTEN_ONION = false; void StartTorControl(boost::thread_group& threadGroup, CScheduler& scheduler); void InterruptTorControl(); void StopTorControl(); #endif /* SILK_TORCONTROL_H */
Set Tor Default Monitoring to False
Set Tor Default Monitoring to False
C
mit
SilkNetwork/Silk-Core,duality-solutions/Sequence,SilkNetwork/Silk-Core,SilkNetwork/Silk-Core,duality-solutions/Sequence,duality-solutions/Sequence,SilkNetwork/Silk-Core,duality-solutions/Sequence,SilkNetwork/Silk-Core,duality-solutions/Sequence,SilkNetwork/Silk-Core,duality-solutions/Sequence
c6e1f67b17b4cb9d707af1245c1ecf00f91f23c0
utils/count/count.c
utils/count/count.c
/*===- count.c - The 'count' testing tool ---------------------------------===*\ * * The LLVM Compiler Infrastructure * * This file is distributed under the University of Illinois Open Source * License. See LICENSE.TXT for details. * \*===----------------------------------------------------------------------===*/ #include <stdlib.h> #include <stdio.h> int main(int argc, char **argv) { unsigned Count, NumLines, NumRead; char Buffer[4096], *End; if (argc != 2) { fprintf(stderr, "usage: %s <expected line count>\n", argv[0]); return 2; } Count = strtol(argv[1], &End, 10); if (*End != '\0' && End != argv[1]) { fprintf(stderr, "%s: invalid count argument '%s'\n", argv[0], argv[1]); return 2; } NumLines = 0; while ((NumRead = fread(Buffer, 1, sizeof(Buffer), stdin))) { unsigned i; for (i = 0; i != NumRead; ++i) if (Buffer[i] == '\n') ++NumLines; } if (!feof(stdin)) { fprintf(stderr, "%s: error reading stdin\n", argv[0]); return 3; } if (Count != NumLines) { fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines); return 1; } return 0; }
/*===- count.c - The 'count' testing tool ---------------------------------===*\ * * The LLVM Compiler Infrastructure * * This file is distributed under the University of Illinois Open Source * License. See LICENSE.TXT for details. * \*===----------------------------------------------------------------------===*/ #include <stdlib.h> #include <stdio.h> int main(int argc, char **argv) { unsigned Count, NumLines, NumRead; char Buffer[4096], *End; if (argc != 2) { fprintf(stderr, "usage: %s <expected line count>\n", argv[0]); return 2; } Count = strtol(argv[1], &End, 10); if (*End != '\0' && End != argv[1]) { fprintf(stderr, "%s: invalid count argument '%s'\n", argv[0], argv[1]); return 2; } NumLines = 0; do { unsigned i; NumRead = fread(Buffer, 1, sizeof(Buffer), stdin); for (i = 0; i != NumRead; ++i) if (Buffer[i] == '\n') ++NumLines; } while (NumRead == sizeof(Buffer)); if (!feof(stdin)) { fprintf(stderr, "%s: error reading stdin\n", argv[0]); return 3; } if (Count != NumLines) { fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines); return 1; } return 0; }
Fix extra fread after EOF, non-wires-crossed version.
Fix extra fread after EOF, non-wires-crossed version. git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@105270 91177308-0d34-0410-b5e6-96231b3b80d8
C
bsd-2-clause
dslab-epfl/asap,llvm-mirror/llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,dslab-epfl/asap,chubbymaggie/asap,apple/swift-llvm,llvm-mirror/llvm,apple/swift-llvm,llvm-mirror/llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,dslab-epfl/asap,apple/swift-llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,dslab-epfl/asap,GPUOpen-Drivers/llvm,dslab-epfl/asap,dslab-epfl/asap,apple/swift-llvm,apple/swift-llvm,llvm-mirror/llvm,dslab-epfl/asap,chubbymaggie/asap,chubbymaggie/asap,llvm-mirror/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,llvm-mirror/llvm,llvm-mirror/llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,chubbymaggie/asap
15c0a7f99f4179861dc1f77969bf2b62897e4e25
Source/BugsnagSink.h
Source/BugsnagSink.h
// // BugsnagSink.h // // Created by Conrad Irwin on 2014-10-01. // // Copyright (c) 2014 Bugsnag, Inc. All rights reserved. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including 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 remain in place // in this source code. // // 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 <Foundation/Foundation.h> #import <KSCrash/KSCrash.h> @interface BugsnagSink : NSObject <KSCrashReportFilter> @end
// // BugsnagSink.h // // Created by Conrad Irwin on 2014-10-01. // // Copyright (c) 2014 Bugsnag, Inc. All rights reserved. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including 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 remain in place // in this source code. // // 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 <Foundation/Foundation.h> #import <KSCrash/KSCrashReportFilter.h> @interface BugsnagSink : NSObject <KSCrashReportFilter> @end
Update import to be compatible with KSCrash 1.8.8+
Update import to be compatible with KSCrash 1.8.8+
C
mit
bugsnag/bugsnag-cocoa,bugsnag/bugsnag-cocoa,bugsnag/bugsnag-cocoa,bugsnag/bugsnag-cocoa
31455c34d693edfbf6e29bc6c669b9178b4cb223
cocos2d/CCActionManager_Private.h
cocos2d/CCActionManager_Private.h
/* * cocos2d for iPhone: http://www.cocos2d-iphone.org * * Copyright (c) 2013-2014 Cocos2D Authors * * 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 "CCActionManager.h" @interface CCActionManager () -(void)migrateActions:(id)target from:(CCActionManager*)oldManager; @end
/* * cocos2d for iPhone: http://www.cocos2d-iphone.org * * Copyright (c) 2013-2014 Cocos2D Authors * * 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 "CCActionManager.h" @interface CCActionManager () // TODO eliminate file @end
Remove unneeded method from private header
Remove unneeded method from private header
C
mit
TukekeSoft/cocos2d-spritebuilder,TukekeSoft/cocos2d-spritebuilder,TukekeSoft/cocos2d-spritebuilder,TukekeSoft/cocos2d-spritebuilder
3e752a6b1abdc2770c1968bed604b639cf93be09
io/file_descriptor.h
io/file_descriptor.h
#ifndef FILE_DESCRIPTOR_H #define FILE_DESCRIPTOR_H #include <io/channel.h> class FileDescriptor : public Channel { LogHandle log_; protected: int fd_; public: FileDescriptor(int); ~FileDescriptor(); virtual Action *close(EventCallback *); virtual Action *read(size_t, EventCallback *); virtual Action *write(Buffer *, EventCallback *); virtual bool shutdown(bool, bool) { return (false); } }; #endif /* !FILE_DESCRIPTOR_H */
#ifndef FILE_DESCRIPTOR_H #define FILE_DESCRIPTOR_H #include <io/channel.h> class FileDescriptor : public Channel { LogHandle log_; protected: int fd_; public: FileDescriptor(int); ~FileDescriptor(); virtual Action *close(EventCallback *); virtual Action *read(size_t, EventCallback *); virtual Action *write(Buffer *, EventCallback *); virtual bool shutdown(bool, bool) { return (true); } }; #endif /* !FILE_DESCRIPTOR_H */
Return success rather than failure from shutdown() on FileDescriptor, since it is entirely immaterial.
Return success rather than failure from shutdown() on FileDescriptor, since it is entirely immaterial. git-svn-id: 9e2532540f1574e817ce42f20b9d0fb64899e451@333 4068ffdb-0463-0410-8185-8cc71e3bd399
C
bsd-2-clause
splbio/wanproxy,diegows/wanproxy,diegows/wanproxy,diegows/wanproxy,splbio/wanproxy,splbio/wanproxy
ede9100cc73dfc9a0ed831c1801a3d100cf5b9a9
src/h/startup.h
src/h/startup.h
typedef struct { int cluster; /* Condor Cluster # */ int proc; /* Condor Proc # */ int job_class; /* STANDARD, VANILLA, PVM, PIPE, ... */ uid_t uid; /* Execute job under this UID */ gid_t gid; /* Execute job under this pid */ pid_t virt_pid; /* PVM virt pid of this process */ int soft_kill_sig; /* Use this signal for a soft kill */ char *a_out_name; /* Where to get executable file */ char *cmd; /* Command name given by the user */ char *args; /* Command arguments given by the user */ char *env; /* Environment variables */ char *iwd; /* Initial working directory */ BOOLEAN ckpt_wanted; /* Whether user wants checkpointing */ BOOLEAN is_restart; /* Whether this run is a restart */ BOOLEAN coredump_limit_exists; /* Whether user wants to limit core size */ int coredump_limit; /* Limit in bytes */ } STARTUP_INFO;
Structure defining information starter needs from the shadow to start up a user job.
Structure defining information starter needs from the shadow to start up a user job.
C
apache-2.0
djw8605/condor,zhangzhehust/htcondor,bbockelm/condor-network-accounting,bbockelm/condor-network-accounting,htcondor/htcondor,htcondor/htcondor,neurodebian/htcondor,clalancette/condor-dcloud,djw8605/condor,clalancette/condor-dcloud,mambelli/osg-bosco-marco,mambelli/osg-bosco-marco,djw8605/htcondor,djw8605/htcondor,bbockelm/condor-network-accounting,zhangzhehust/htcondor,djw8605/condor,zhangzhehust/htcondor,bbockelm/condor-network-accounting,mambelli/osg-bosco-marco,bbockelm/condor-network-accounting,clalancette/condor-dcloud,djw8605/condor,htcondor/htcondor,htcondor/htcondor,htcondor/htcondor,mambelli/osg-bosco-marco,djw8605/htcondor,djw8605/htcondor,djw8605/condor,zhangzhehust/htcondor,djw8605/htcondor,bbockelm/condor-network-accounting,mambelli/osg-bosco-marco,clalancette/condor-dcloud,djw8605/htcondor,djw8605/condor,clalancette/condor-dcloud,neurodebian/htcondor,djw8605/condor,zhangzhehust/htcondor,bbockelm/condor-network-accounting,zhangzhehust/htcondor,zhangzhehust/htcondor,mambelli/osg-bosco-marco,djw8605/htcondor,neurodebian/htcondor,djw8605/htcondor,clalancette/condor-dcloud,neurodebian/htcondor,bbockelm/condor-network-accounting,mambelli/osg-bosco-marco,mambelli/osg-bosco-marco,neurodebian/htcondor,htcondor/htcondor,htcondor/htcondor,djw8605/condor,clalancette/condor-dcloud,htcondor/htcondor,neurodebian/htcondor,neurodebian/htcondor,neurodebian/htcondor,zhangzhehust/htcondor,zhangzhehust/htcondor,neurodebian/htcondor,djw8605/htcondor
58e3caf75a50a64d485b82d12d2353985413401f
src/util/bitwise.h
src/util/bitwise.h
#pragma once #include "../definitions.h" #include "log.h" namespace bitwise { inline u16 compose_bytes(const u8 high, const u8 low) { return static_cast<u16>((high << 8) + low); } inline bool check_bit(const u8 value, const u8 bit) { return (value & (1 << bit)) != 0; } inline u8 set_bit(const u8 value, const u8 bit) { auto value_set = value | (1 << bit); return static_cast<u8>(value_set); } inline u8 clear_bit(const u8 value, const u8 bit) { auto value_cleared = value & ~(1 << bit); return static_cast<u8>(value_cleared); } inline u8 set_bit_to(const u8 value, const u8 bit, bool bit_on) { return bit_on ? set_bit(value, bit) : clear_bit(value, bit); } } // namespace bitwise
#pragma once #include "../definitions.h" #include "log.h" namespace bitwise { inline u16 compose_bytes(const u8 high, const u8 low) { return static_cast<u16>((high << 8) + low); } inline bool check_bit(const u8 value, const u8 bit) { return (value & (1 << bit)) != 0; } inline u8 bit_value(const u8 value, const u8 bit) { return (value >> bit) & 1; } inline u8 set_bit(const u8 value, const u8 bit) { auto value_set = value | (1 << bit); return static_cast<u8>(value_set); } inline u8 clear_bit(const u8 value, const u8 bit) { auto value_cleared = value & ~(1 << bit); return static_cast<u8>(value_cleared); } inline u8 set_bit_to(const u8 value, const u8 bit, bool bit_on) { return bit_on ? set_bit(value, bit) : clear_bit(value, bit); } } // namespace bitwise
Add a bit_value function for the numeric value of a single bit
Add a bit_value function for the numeric value of a single bit
C
bsd-3-clause
jgilchrist/emulator,jgilchrist/emulator,jgilchrist/emulator
d007207f3e5c11744d612786df9e7c35887de2b5
core/include/crash.h
core/include/crash.h
/* * Copyright (C) 2014 INRIA * * This file is subject to the terms and conditions of the GNU Lesser General * Public License. See the file LICENSE in the top level directory for more * details. */ /** * @addtogroup core_util * @{ * * @file crash.h * @brief Crash handling header * * Define a panic() function that allows to stop/reboot the system * when an unrecoverable problem has occured. * * @author Kévin Roussel <[email protected]> */ #ifndef __CRASH_H #define __CRASH_H #include "kernel.h" /** Handle an unrecoverable error by halting or rebooting the system. A numeric code indicating the failure reason can be given as the ::crash_code parameter. Detailing the failure is possible using the ::message parameter. This function should serve a similar purpose than the panic() function of Unix/Linux kernels. if DEVELHELP macro is defined, system will be halted; system will be rebooted otherwise. WARNING: this function NEVER returns! */ NORETURN void core_panic(int crash_code, const char *message); /** @} */ #endif /* __CRASH_H */
Add a mechanism for handling fatal errors (and reboots)
Add a mechanism for handling fatal errors (and reboots)
C
lgpl-2.1
rfswarm2/RIOT,rfswarm/RIOT,zhuoshuguo/RIOT,cladmi/RIOT,dkm/RIOT,locicontrols/RIOT,ant9000/RIOT,OlegHahm/RIOT,mziegert/RIOT,dkm/RIOT,A-Paul/RIOT,koenning/RIOT,arvindpdmn/RIOT,PSHIVANI/Riot-Code,abkam07/RIOT,altairpearl/RIOT,robixnai/RIOT,MonsterCode8000/RIOT,OTAkeys/RIOT,altairpearl/RIOT,LudwigOrtmann/RIOT,dhruvvyas90/RIOT,Darredevil/RIOT,lazytech-org/RIOT,Osblouf/RIOT,gebart/RIOT,openkosmosorg/RIOT,thiagohd/RIOT,FrancescoErmini/RIOT,neumodisch/RIOT,smlng/RIOT,hamilton-mote/RIOT-OS,TobiasFredersdorf/RIOT,Lexandro92/RIOT-CoAP,ximus/RIOT,biboc/RIOT,cladmi/RIOT,rousselk/RIOT,l3nko/RIOT,rakendrathapa/RIOT,Lotterleben/RIOT,OlegHahm/RIOT,BytesGalore/PetersRIOT,AnonMall/RIOT,khhhh/RIOT,attdona/RIOT,locicontrols/RIOT,alignan/RIOT,spium/IoT-RIOT,kerneltask/RIOT,automote/RIOT,MonsterCode8000/RIOT,MonsterCode8000/RIOT,Osblouf/RIOT,Yonezawa-T2/RIOT,daniel-k/RIOT,JensErdmann/RIOT,gautric/RIOT,Lotterleben/RIOT,altairpearl/RIOT,ntrtrung/RIOT,herrfz/RIOT,nsol-nmsu/RIOT,kYc0o/RIOT,jasonatran/RIOT,jhollister/RIOT,openkosmosorg/RIOT,dailab/RIOT,Hyungsin/RIOT-OS,thiagohd/RIOT,zhuoshuguo/RIOT,yogo1212/RIOT,malosek/RIOT,Josar/RIOT,ros2/ros2_embedded_riot,smlng/RIOT,avmelnikoff/RIOT,x3ro/RIOT,Osblouf/RIOT,lebrush/RIOT,attdona/RIOT,robixnai/RIOT,ks156/RIOT,fnack/RIOT,herrfz/RIOT,backenklee/RIOT,rousselk/RIOT,brettswann/RIOT,mziegert/RIOT,herrfz/RIOT-old,RBartz/RIOT,sumanpanchal/RIOT,aeneby/RIOT,changbiao/RIOT,kbumsik/RIOT,jferreir/RIOT,hamilton-mote/RIOT-OS,RIOT-OS/RIOT,jfischer-phytec-iot/RIOT,fnack/RIOT,haoyangyu/RIOT,BytesGalore/RIOT,MohmadAyman/RIOT,authmillenon/RIOT,katezilla/RIOT,gautric/RIOT,rakendrathapa/RIOT,A-Paul/RIOT,rfswarm2/RIOT,adjih/RIOT,changbiao/RIOT,tdautc19841202/RIOT,ntrtrung/RIOT,hamilton-mote/RIOT-OS,kaleb-himes/RIOT,Hyungsin/RIOT-OS,MonsterCode8000/RIOT,adrianghc/RIOT,biboc/RIOT,roberthartung/RIOT,adjih/RIOT,neumodisch/RIOT,Yonezawa-T2/RIOT,mfrey/RIOT,altairpearl/RIOT,gebart/RIOT,dhruvvyas90/RIOT,A-Paul/RIOT,chris-wood/RIOT,aeneby/RIOT,herrfz/RIOT,herrfz/RIOT,bartfaizoltan/RIOT,gbarnett/RIOT,gebart/RIOT,shady33/RIOT,abp719/RIOT,LudwigOrtmann/RIOT,shady33/RIOT,mfrey/RIOT,watr-li/RIOT,shady33/RIOT,zhuoshuguo/RIOT,dhruvvyas90/RIOT,dkm/RIOT,JensErdmann/RIOT,brettswann/RIOT,hamilton-mote/RIOT-OS,Lotterleben/RIOT,Lexandro92/RIOT-CoAP,authmillenon/RIOT,herrfz/RIOT-old,smlng/RIOT,Ell-i/RIOT,brettswann/RIOT,daniel-k/RIOT,rajma996/RIOT,josephnoir/RIOT,OTAkeys/RIOT,OTAkeys/RIOT,Hyungsin/RIOT-OS,roberthartung/RIOT,ant9000/RIOT,rakendrathapa/RIOT,x3ro/RIOT,plushvoxel/RIOT,EmuxEvans/RIOT,daniel-k/RIOT,d00616/RIOT,binarylemon/RIOT,msolters/RIOT,sgso/RIOT,kaspar030/RIOT,koenning/RIOT,abkam07/RIOT,sumanpanchal/RIOT,arvindpdmn/RIOT,neiljay/RIOT,emmanuelsearch/RIOT,MonsterCode8000/RIOT,gautric/RIOT,rakendrathapa/RIOT,malosek/RIOT,automote/RIOT,jferreir/RIOT,jbeyerstedt/RIOT-OTA-update,rajma996/RIOT,foss-for-synopsys-dwc-arc-processors/RIOT,attdona/RIOT,toonst/RIOT,biboc/RIOT,BytesGalore/RIOT,MarkXYang/RIOT,OlegHahm/RIOT,rfswarm/RIOT,lazytech-org/RIOT,alex1818/RIOT,ntrtrung/RIOT,binarylemon/RIOT,rfswarm2/RIOT,ThanhVic/RIOT,bartfaizoltan/RIOT,marcosalm/RIOT,haoyangyu/RIOT,kushalsingh007/RIOT,attdona/RIOT,neiljay/RIOT,marcosalm/RIOT,abp719/RIOT,foss-for-synopsys-dwc-arc-processors/RIOT,abkam07/RIOT,rfswarm2/RIOT,authmillenon/RIOT,syin2/RIOT,RBartz/RIOT,jferreir/RIOT,malosek/RIOT,1blankz7/RIOT,RubikonAlpha/RIOT,neiljay/RIOT,thomaseichinger/RIOT,kaleb-himes/RIOT,RBartz/RIOT,LudwigOrtmann/RIOT,adrianghc/RIOT,wentaoshang/RIOT,latsku/RIOT,wentaoshang/RIOT,centurysys/RIOT,alex1818/RIOT,spium/IoT-RIOT,l3nko/RIOT,PSHIVANI/Riot-Code,PSHIVANI/Riot-Code,MohmadAyman/RIOT,RIOT-OS/RIOT,luciotorre/RIOT,patkan/RIOT,dailab/RIOT,adrianghc/RIOT,malosek/RIOT,haoyangyu/RIOT,toonst/RIOT,emmanuelsearch/RIOT,avmelnikoff/RIOT,Lotterleben/RIOT,adjih/RIOT,gbarnett/RIOT,Lotterleben/RIOT,Lexandro92/RIOT-CoAP,MarkXYang/RIOT,spium/IoT-RIOT,thiagohd/RIOT,ThanhVic/RIOT,syin2/RIOT,RubikonAlpha/RIOT,immesys/RiSyn,tdautc19841202/RIOT,immesys/RiSyn,Darredevil/RIOT,ntrtrung/RIOT,Darredevil/RIOT,kb2ma/RIOT,latsku/RIOT,gbarnett/RIOT,yogo1212/RIOT,DipSwitch/RIOT,tfar/RIOT,rousselk/RIOT,alex1818/RIOT,kYc0o/RIOT,d00616/RIOT,syin2/RIOT,miri64/RIOT,RIOT-OS/RIOT,ks156/RIOT,abp719/RIOT,benoit-canet/RIOT,jremmert-phytec-iot/RIOT,arvindpdmn/RIOT,msolters/RIOT,adrianghc/RIOT,Josar/RIOT,patkan/RIOT,immesys/RiSyn,jremmert-phytec-iot/RIOT,katezilla/RIOT,daniel-k/RIOT,wentaoshang/RIOT,backenklee/RIOT,jbeyerstedt/RIOT-OTA-update,herrfz/RIOT-old,miri64/RIOT,josephnoir/RIOT,koenning/RIOT,hamilton-mote/RIOT-OS,ximus/RIOT,AnonMall/RIOT,aeneby/RIOT,d00616/RIOT,asanka-code/RIOT,AnonMall/RIOT,josephnoir/RIOT,abp719/RIOT,FrancescoErmini/RIOT,DipSwitch/RIOT,jasonatran/RIOT,alex1818/RIOT,basilfx/RIOT,cladmi/RIOT,rajma996/RIOT,kb2ma/RIOT,kYc0o/RIOT,dhruvvyas90/RIOT,ximus/RIOT,fnack/RIOT,asanka-code/RIOT,koenning/RIOT,rfuentess/RIOT,DipSwitch/RIOT,FrancescoErmini/RIOT,robixnai/RIOT,lebrush/RIOT,gbarnett/RIOT,FrancescoErmini/RIOT,AnonMall/RIOT,binarylemon/RIOT,Ell-i/RIOT,phiros/RIOT,luciotorre/RIOT,jhollister/RIOT,josephnoir/RIOT,gbarnett/RIOT,ntrtrung/RIOT,kbumsik/RIOT,phiros/RIOT,bartfaizoltan/RIOT,beurdouche/RIOT,Lotterleben/RIOT,MohmadAyman/RIOT,Darredevil/RIOT,locicontrols/RIOT,Josar/RIOT,brettswann/RIOT,ks156/RIOT,nsol-nmsu/RIOT,MarkXYang/RIOT,tfar/RIOT,toonst/RIOT,jfischer-phytec-iot/RIOT,RubikonAlpha/RIOT,DipSwitch/RIOT,altairpearl/RIOT,OlegHahm/RIOT,alex1818/RIOT,foss-for-synopsys-dwc-arc-processors/RIOT,wentaoshang/RIOT,thomaseichinger/RIOT,benoit-canet/RIOT,latsku/RIOT,katezilla/RIOT,ros2/ros2_embedded_riot,mtausig/RIOT,ntrtrung/RIOT,BytesGalore/RIOT,nsol-nmsu/RIOT,alignan/RIOT,yogo1212/RIOT,sgso/RIOT,stevenj/RIOT,smlng/RIOT,ant9000/RIOT,gautric/RIOT,gautric/RIOT,kushalsingh007/RIOT,binarylemon/RIOT,haoyangyu/RIOT,khhhh/RIOT,x3ro/RIOT,rfuentess/RIOT,neumodisch/RIOT,rfswarm/RIOT,jbeyerstedt/RIOT-OTA-update,DipSwitch/RIOT,plushvoxel/RIOT,luciotorre/RIOT,jbeyerstedt/RIOT-OTA-update,MohmadAyman/RIOT,adrianghc/RIOT,patkan/RIOT,DipSwitch/RIOT,Osblouf/RIOT,sgso/RIOT,OTAkeys/RIOT,katezilla/RIOT,dailab/RIOT,abkam07/RIOT,yogo1212/RIOT,mtausig/RIOT,tfar/RIOT,BytesGalore/PetersRIOT,biboc/RIOT,mfrey/RIOT,Josar/RIOT,phiros/RIOT,PSHIVANI/Riot-Code,automote/RIOT,neiljay/RIOT,Ell-i/RIOT,Osblouf/RIOT,Yonezawa-T2/RIOT,rousselk/RIOT,haoyangyu/RIOT,dailab/RIOT,TobiasFredersdorf/RIOT,MohmadAyman/RIOT,kaleb-himes/RIOT,JensErdmann/RIOT,Hyungsin/RIOT-OS,dkm/RIOT,rousselk/RIOT,jfischer-phytec-iot/RIOT,sgso/RIOT,Yonezawa-T2/RIOT,tdautc19841202/RIOT,adjih/RIOT,haoyangyu/RIOT,abkam07/RIOT,sumanpanchal/RIOT,kb2ma/RIOT,centurysys/RIOT,EmuxEvans/RIOT,watr-li/RIOT,Darredevil/RIOT,cladmi/RIOT,robixnai/RIOT,PSHIVANI/Riot-Code,malosek/RIOT,plushvoxel/RIOT,zhuoshuguo/RIOT,stevenj/RIOT,chris-wood/RIOT,smlng/RIOT,miri64/RIOT,automote/RIOT,emmanuelsearch/RIOT,basilfx/RIOT,jremmert-phytec-iot/RIOT,RubikonAlpha/RIOT,marcosalm/RIOT,sumanpanchal/RIOT,bartfaizoltan/RIOT,mtausig/RIOT,attdona/RIOT,RBartz/RIOT,rakendrathapa/RIOT,dailab/RIOT,mziegert/RIOT,msolters/RIOT,phiros/RIOT,stevenj/RIOT,thiagohd/RIOT,RubikonAlpha/RIOT,Lexandro92/RIOT-CoAP,katezilla/RIOT,l3nko/RIOT,AnonMall/RIOT,immesys/RiSyn,basilfx/RIOT,jremmert-phytec-iot/RIOT,foss-for-synopsys-dwc-arc-processors/RIOT,marcosalm/RIOT,bartfaizoltan/RIOT,emmanuelsearch/RIOT,rajma996/RIOT,Hyungsin/RIOT-OS,avmelnikoff/RIOT,kb2ma/RIOT,sgso/RIOT,authmillenon/RIOT,asanka-code/RIOT,MonsterCode8000/RIOT,ThanhVic/RIOT,phiros/RIOT,stevenj/RIOT,herrfz/RIOT,syin2/RIOT,watr-li/RIOT,TobiasFredersdorf/RIOT,1blankz7/RIOT,BytesGalore/RIOT,koenning/RIOT,kaspar030/RIOT,cladmi/RIOT,marcosalm/RIOT,kaleb-himes/RIOT,thiagohd/RIOT,latsku/RIOT,ant9000/RIOT,OlegHahm/RIOT,dhruvvyas90/RIOT,watr-li/RIOT,arvindpdmn/RIOT,yogo1212/RIOT,jasonatran/RIOT,khhhh/RIOT,rfswarm/RIOT,RBartz/RIOT,rfuentess/RIOT,gbarnett/RIOT,authmillenon/RIOT,patkan/RIOT,MohmadAyman/RIOT,JensErdmann/RIOT,LudwigKnuepfer/RIOT,kerneltask/RIOT,kbumsik/RIOT,RIOT-OS/RIOT,alignan/RIOT,x3ro/RIOT,robixnai/RIOT,josephnoir/RIOT,benoit-canet/RIOT,abp719/RIOT,herrfz/RIOT,kerneltask/RIOT,TobiasFredersdorf/RIOT,foss-for-synopsys-dwc-arc-processors/RIOT,arvindpdmn/RIOT,Lexandro92/RIOT-CoAP,ximus/RIOT,changbiao/RIOT,EmuxEvans/RIOT,marcosalm/RIOT,emmanuelsearch/RIOT,LudwigOrtmann/RIOT,ros2/ros2_embedded_riot,centurysys/RIOT,mfrey/RIOT,daniel-k/RIOT,d00616/RIOT,jfischer-phytec-iot/RIOT,tfar/RIOT,FrancescoErmini/RIOT,yogo1212/RIOT,chris-wood/RIOT,alignan/RIOT,centurysys/RIOT,wentaoshang/RIOT,khhhh/RIOT,RBartz/RIOT,herrfz/RIOT-old,LudwigKnuepfer/RIOT,jfischer-phytec-iot/RIOT,RubikonAlpha/RIOT,jhollister/RIOT,kaleb-himes/RIOT,beurdouche/RIOT,BytesGalore/RIOT,thomaseichinger/RIOT,khhhh/RIOT,biboc/RIOT,BytesGalore/PetersRIOT,luciotorre/RIOT,roberthartung/RIOT,l3nko/RIOT,syin2/RIOT,chris-wood/RIOT,aeneby/RIOT,kushalsingh007/RIOT,Lexandro92/RIOT-CoAP,1blankz7/RIOT,PSHIVANI/Riot-Code,JensErdmann/RIOT,Lotterleben/RIOT,neumodisch/RIOT,immesys/RiSyn,LudwigOrtmann/RIOT,kb2ma/RIOT,MarkXYang/RIOT,ximus/RIOT,rousselk/RIOT,Josar/RIOT,khhhh/RIOT,adjih/RIOT,sgso/RIOT,zhuoshuguo/RIOT,rfswarm/RIOT,openkosmosorg/RIOT,roberthartung/RIOT,kaspar030/RIOT,patkan/RIOT,mziegert/RIOT,koenning/RIOT,l3nko/RIOT,backenklee/RIOT,miri64/RIOT,rfswarm2/RIOT,plushvoxel/RIOT,basilfx/RIOT,1blankz7/RIOT,chris-wood/RIOT,latsku/RIOT,EmuxEvans/RIOT,lebrush/RIOT,openkosmosorg/RIOT,roberthartung/RIOT,ThanhVic/RIOT,msolters/RIOT,openkosmosorg/RIOT,stevenj/RIOT,benoit-canet/RIOT,kbumsik/RIOT,Yonezawa-T2/RIOT,1blankz7/RIOT,backenklee/RIOT,mtausig/RIOT,mziegert/RIOT,miri64/RIOT,herrfz/RIOT-old,JensErdmann/RIOT,stevenj/RIOT,alignan/RIOT,jasonatran/RIOT,locicontrols/RIOT,sumanpanchal/RIOT,BytesGalore/PetersRIOT,rfuentess/RIOT,jferreir/RIOT,binarylemon/RIOT,kaspar030/RIOT,zhuoshuguo/RIOT,rajma996/RIOT,brettswann/RIOT,backenklee/RIOT,jhollister/RIOT,tdautc19841202/RIOT,benoit-canet/RIOT,attdona/RIOT,abp719/RIOT,neumodisch/RIOT,toonst/RIOT,luciotorre/RIOT,changbiao/RIOT,kushalsingh007/RIOT,jhollister/RIOT,rfswarm2/RIOT,ks156/RIOT,immesys/RiSyn,BytesGalore/PetersRIOT,basilfx/RIOT,d00616/RIOT,jferreir/RIOT,Ell-i/RIOT,bartfaizoltan/RIOT,emmanuelsearch/RIOT,locicontrols/RIOT,RIOT-OS/RIOT,authmillenon/RIOT,locicontrols/RIOT,A-Paul/RIOT,lebrush/RIOT,LudwigKnuepfer/RIOT,shady33/RIOT,ros2/ros2_embedded_riot,jbeyerstedt/RIOT-OTA-update,jferreir/RIOT,dkm/RIOT,spium/IoT-RIOT,jasonatran/RIOT,rfswarm/RIOT,fnack/RIOT,thomaseichinger/RIOT,EmuxEvans/RIOT,watr-li/RIOT,l3nko/RIOT,lazytech-org/RIOT,kbumsik/RIOT,TobiasFredersdorf/RIOT,spium/IoT-RIOT,msolters/RIOT,asanka-code/RIOT,neiljay/RIOT,Ell-i/RIOT,Darredevil/RIOT,MarkXYang/RIOT,OTAkeys/RIOT,automote/RIOT,daniel-k/RIOT,changbiao/RIOT,thomaseichinger/RIOT,benoit-canet/RIOT,malosek/RIOT,gebart/RIOT,avmelnikoff/RIOT,ros2/ros2_embedded_riot,tdautc19841202/RIOT,dhruvvyas90/RIOT,fnack/RIOT,thiagohd/RIOT,fnack/RIOT,lebrush/RIOT,latsku/RIOT,ThanhVic/RIOT,alex1818/RIOT,openkosmosorg/RIOT,Yonezawa-T2/RIOT,centurysys/RIOT,tfar/RIOT,jremmert-phytec-iot/RIOT,luciotorre/RIOT,mziegert/RIOT,msolters/RIOT,kYc0o/RIOT,locicontrols/RIOT,beurdouche/RIOT,tdautc19841202/RIOT,lebrush/RIOT,kerneltask/RIOT,ros2/ros2_embedded_riot,plushvoxel/RIOT,rajma996/RIOT,wentaoshang/RIOT,BytesGalore/PetersRIOT,lazytech-org/RIOT,jremmert-phytec-iot/RIOT,shady33/RIOT,kushalsingh007/RIOT,gebart/RIOT,ThanhVic/RIOT,1blankz7/RIOT,ks156/RIOT,avmelnikoff/RIOT,kerneltask/RIOT,toonst/RIOT,beurdouche/RIOT,automote/RIOT,nsol-nmsu/RIOT,neumodisch/RIOT,x3ro/RIOT,aeneby/RIOT,nsol-nmsu/RIOT,changbiao/RIOT,mfrey/RIOT,EmuxEvans/RIOT,Osblouf/RIOT,LudwigKnuepfer/RIOT,binarylemon/RIOT,sumanpanchal/RIOT,ant9000/RIOT,MarkXYang/RIOT,brettswann/RIOT,asanka-code/RIOT,kushalsingh007/RIOT,spium/IoT-RIOT,watr-li/RIOT,rakendrathapa/RIOT,d00616/RIOT,BytesGalore/PetersRIOT,AnonMall/RIOT,lazytech-org/RIOT,robixnai/RIOT,patkan/RIOT,FrancescoErmini/RIOT,LudwigKnuepfer/RIOT,ximus/RIOT,abkam07/RIOT,chris-wood/RIOT,kYc0o/RIOT,phiros/RIOT,kaspar030/RIOT,jhollister/RIOT,arvindpdmn/RIOT,centurysys/RIOT,LudwigOrtmann/RIOT,rfuentess/RIOT,ros2/ros2_embedded_riot,beurdouche/RIOT,A-Paul/RIOT,mtausig/RIOT,shady33/RIOT,asanka-code/RIOT,altairpearl/RIOT
7a68c33310eef9aae11d887e36a0ea9a4fce15b1
Settings/Updater/ProgressWindow.h
Settings/Updater/ProgressWindow.h
#pragma once #include "../Controls/Dialog.h" #include "../resource.h" class ProgressWindow : public Dialog { public: ProgressWindow() : Dialog(L"3RVX-UpdateProgress", MAKEINTRESOURCE(IDD_DOWNLOAD)) { ShowWindow(Dialog::DialogHandle(), SW_SHOWNORMAL); } };
Add class for the progress window
Add class for the progress window
C
bsd-2-clause
malensek/3RVX,malensek/3RVX,malensek/3RVX
5dcd7a8c429aa6f7d26cb8dfce62e4a793a6d9b5
test/Modules/DebugInfoSubmoduleImport.c
test/Modules/DebugInfoSubmoduleImport.c
// RUN: rm -rf %t // RUN: %clang_cc1 -fmodules -fmodule-format=obj -debug-info-kind=limited -dwarf-ext-refs \ // RUN: -fimplicit-module-maps -x c -fmodules-cache-path=%t -I %S/Inputs \ // RUN: %s -emit-llvm -debugger-tuning=lldb -o - | FileCheck %s #include "DebugSubmoduleA.h" #include "DebugSubmoduleB.h" // CHECK: !DICompileUnit // CHECK-NOT: !DICompileUnit // CHECK: !DIModule(scope: ![[PARENT:.*]], name: "DebugSubmoduleA" // CHECK: [[PARENT]] = !DIModule(scope: null, name: "DebugSubmodules" // CHECK: !DIModule(scope: ![[PARENT]], name: "DebugSubmoduleB" // CHECK: !DICompileUnit({{.*}}splitDebugFilename: {{.*}}DebugSubmodules // CHECK-SAME: dwoId: // CHECK-NOT: !DICompileUnit
// RUN: rm -rf %t // RUN: %clang_cc1 -fmodules -fmodule-format=obj -debug-info-kind=limited -dwarf-ext-refs \ // RUN: -fimplicit-module-maps -x c -fmodules-cache-path=%t -I %S/Inputs \ // RUN: %s -emit-llvm -debugger-tuning=lldb -o - | FileCheck %s // // RUN: %clang_cc1 -fmodules -fmodule-format=obj -debug-info-kind=limited -dwarf-ext-refs \ // RUN: -fimplicit-module-maps -x c -fmodules-cache-path=%t -I %S/Inputs \ // RUN: -fmodules-local-submodule-visibility \ // RUN: %s -emit-llvm -debugger-tuning=lldb -o - | FileCheck %s #include "DebugSubmoduleA.h" #include "DebugSubmoduleB.h" // CHECK: !DICompileUnit // CHECK-NOT: !DICompileUnit // CHECK: !DIModule(scope: ![[PARENT:.*]], name: "DebugSubmoduleA" // CHECK: [[PARENT]] = !DIModule(scope: null, name: "DebugSubmodules" // CHECK: !DIModule(scope: ![[PARENT]], name: "DebugSubmoduleB" // CHECK: !DICompileUnit({{.*}}splitDebugFilename: {{.*}}DebugSubmodules // CHECK-SAME: dwoId: // CHECK-NOT: !DICompileUnit
Add a test that local submodule visibility has no effect on debug info
Add a test that local submodule visibility has no effect on debug info rdar://problem/27876262 git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@302809 91177308-0d34-0410-b5e6-96231b3b80d8
C
apache-2.0
llvm-mirror/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,apple/swift-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
1abf575c1cf36df59d0673c0e5d8b326f4526a8b
example/ex-array04.c
example/ex-array04.c
#include <gmp.h> #include "m-array.h" #include "m-algo.h" ARRAY_DEF(mpz, mpz_t, M_CLASSIC_OPLIST(mpz)) ALGO_DEF(array_mpz, ARRAY_OPLIST(mpz, M_CLASSIC_OPLIST(mpz))) static inline void my_mpz_inc(mpz_t d, const mpz_t a){ mpz_add(d, d, a); } static inline void my_mpz_sqr(mpz_t d, const mpz_t a){ mpz_mul(d, a, a); } int main(void) { mpz_t z; mpz_init_set_ui(z, 1); array_mpz_t a; array_mpz_init(a); array_mpz_push_back(a, z); for(size_t i = 2 ; i < 1000; i++) { mpz_mul_ui(z, z, i); array_mpz_push_back(a, z); } /* z = sum (a[i]^2) */ array_mpz_map_reduce (&z, a, my_mpz_inc, my_mpz_sqr); gmp_printf ("Z=%Zd\n", z); array_mpz_clear(a); mpz_clear(z); }
#include <gmp.h> #include "m-array.h" #include "m-algo.h" ARRAY_DEF(mpz, mpz_t, M_CLASSIC_OPLIST(mpz)) ALGO_DEF(array_mpz, ARRAY_OPLIST(mpz, M_CLASSIC_OPLIST(mpz))) static inline void my_mpz_inc(mpz_t *d, const mpz_t a){ mpz_add(*d, *d, a); } static inline void my_mpz_sqr(mpz_t *d, const mpz_t a){ mpz_mul(*d, a, a); } int main(void) { mpz_t z; mpz_init_set_ui(z, 1); array_mpz_t a; array_mpz_init(a); array_mpz_push_back(a, z); for(size_t i = 2 ; i < 1000; i++) { mpz_mul_ui(z, z, i); array_mpz_push_back(a, z); } /* z = sum (a[i]^2) */ array_mpz_map_reduce (&z, a, my_mpz_inc, my_mpz_sqr); gmp_printf ("Z=%Zd\n", z); array_mpz_clear(a); mpz_clear(z); }
Update example with new constraints on map/reduce prototype.
Update example with new constraints on map/reduce prototype.
C
bsd-2-clause
P-p-H-d/mlib,P-p-H-d/mlib
c57119c6a4ae1a666a1bc7261dd9afeee1224d02
util.h
util.h
#ifndef util_h #define util_h #define min(a,b) ((a)<(b)?(a):(b)) int warn(const char *s); void v(); #endif /*util_h*/
#ifndef util_h #define util_h #define min(a,b) ((a)<(b)?(a):(b)) int warn(const char *s); void v(); #ifdef DEBUG #define dprintf(fmt, args...) fprintf(stderr, fmt, ##args) #else #define dprintf(fmt, ...) (0) #endif #endif /*util_h*/
Add a debugging print macro.
Add a debugging print macro.
C
mit
amyvmiwei/beanstalkd,PhillipMwaniki/beanstalkd,yetone/beanstalkd,diditaxi/beanstalkd,tdg5/beanstalkd,bmhatfield/beanstalkd,naderman/beanstalkd,LomoX-Offical/beanstalkd-win,amyvmiwei/beanstalkd,CompendiumSoftware/beanstalkd,naderman/beanstalkd,pinguo-xudianyang/beanstalkd,JensRantil/beanstalkd,PhillipMwaniki/beanstalkd,aidaima/beanstalkd,kr/beanstalkd,cgvarela/beanstalkd,wyzssw/beanstalkd,mobliyishengyuan/beanstalkd,handautsav/beanstalkd,potatosalad/beanstalkd,naderman/beanstalkd,yetone/beanstalkd,pinguo-xudianyang/beanstalkd,Qihoo360/beanstalkd-win,mickeyouyou/beanstalkd,diditaxi/beanstalkd,cgvarela/beanstalkd,wyzssw/beanstalkd,handautsav/beanstalkd,ifduyue/beanstalkd,justintung/beanstalkd,kr/beanstalkd,orangeholic/beanstalkd,r3jack/beanstalkd,lzpfmh/beanstalkd,aidaima/beanstalkd,davies/beanstalkd,Qihoo360/beanstalkd-win,LomoX-Offical/beanstalkd-win,justintung/beanstalkd,wfxiang08/beanstalkd,mobliyishengyuan/beanstalkd,bmhatfield/beanstalkd,qbdsoft/beanstalkd,wfxiang08/beanstalkd,ifduyue/beanstalkd,orangeholic/beanstalkd,potatosalad/beanstalkd,qbdsoft/beanstalkd,tdg5/beanstalkd,r3jack/beanstalkd,JensRantil/beanstalkd,lzpfmh/beanstalkd,mickeyouyou/beanstalkd,CompendiumSoftware/beanstalkd,davies/beanstalkd