Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Use different header to be yet more compatible with Windows
#pragma once #include <string> #include <vector> #include <sqltypes.h> namespace cpp_odbc { namespace level2 { /** * @brief This class represents a buffer for u16strings for use with the unixodbc C API. */ class u16string_buffer { public: /** * @brief Constructs a new string buffer with the given capacity...
#pragma once #include <string> #include <vector> #include <sql.h> namespace cpp_odbc { namespace level2 { /** * @brief This class represents a buffer for u16strings for use with the unixodbc C API. */ class u16string_buffer { public: /** * @brief Constructs a new string buffer with the given capacity, i.e...
Add ArchBreak to the header.
#ifndef SHUTDOWN_I6F54URD #define SHUTDOWN_I6F54URD void ArchShutdown(void); #endif /* end of include guard: SHUTDOWN_I6F54URD */
#ifndef SHUTDOWN_I6F54URD #define SHUTDOWN_I6F54URD void ArchBreak(void); void ArchShutdown(void); #endif /* end of include guard: SHUTDOWN_I6F54URD */
Fix gy-30 light sensor i2c address
/** * @file * @brief * * @date 29.03.2017 * @author Alex Kalmuk */ #include <unistd.h> #include <util/log.h> #include <drivers/i2c/i2c.h> #include "gy_30.h" #define GY30_ADDR 0x46 uint16_t gy_30_read_light_level(unsigned char id) { uint16_t level = 0; /* It would be better do not hang here but ret...
/** * @file * @brief * * @date 29.03.2017 * @author Alex Kalmuk */ #include <unistd.h> #include <util/log.h> #include <drivers/i2c/i2c.h> #include "gy_30.h" /* http://www.elechouse.com/elechouse/images/product/Digital%20light%20Sensor/bh1750fvi-e.pdf */ #define GY30_ADDR 0x23 uint16_t gy_30_read_ligh...
Add new API files to umbrella header
/// Umbrella header for the Hub Framework #import "HUBManager.h" #import "HUBComponent.h" #import "HUBComponentModel.h" #import "HUBComponentRegistry.h" #import "HUBComponentFallbackHandler.h"
/// Umbrella header for the Hub Framework #import "HUBManager.h" #import "HUBComponent.h" #import "HUBComponentModel.h" #import "HUBComponentModelBuilder.h" #import "HUBComponentImageData.h" #import "HUBComponentImageDataBuilder.h" #import "HUBComponentRegistry.h" #import "HUBComponentFallbackHandler.h"
Mend Win32 build broken by 8e1c4386
#ifndef PLUGIN_H_ #define PLUGIN_H_ #include "plugin_portable.h" #include <windows.h> // TODO use __stdcall #define EXPORT_CALLING __cdecl #define EXPORT __declspec(dllexport) EXPORT_CALLING #include "common.h" // just defined to make compilation work ; ignored #define RTLD_DEFAULT NULL #define RTLD_LOCAL -1 #de...
#ifndef PLUGIN_H_ #define PLUGIN_H_ #include "plugin_portable.h" #include <windows.h> // TODO use __stdcall #define EXPORT_CALLING __cdecl #define EXPORT __declspec(dllexport) EXPORT_CALLING #include "common.h" // just defined to make compilation work ; ignored #define RTLD_DEFAULT NULL #define RTLD_LOCAL -1 #de...
Revert "tests: check if gpg-agent command exists in shutdown code"
/** * @file * * @brief module for shutting down the gpg-agent * * @copyright BSD License (see LICENSE.md or https://www.libelektra.org) * */ #include "gpg_shutdown.h" #include <stdio.h> #include <stdlib.h> /** * @brief shutdown the gpg-agent * @retval 0 on success. * @retval -1 on error. */ int ELEKTRA_PLU...
/** * @file * * @brief module for shutting down the gpg-agent * * @copyright BSD License (see LICENSE.md or https://www.libelektra.org) * */ #include "gpg_shutdown.h" #include <stdio.h> #include <stdlib.h> /** * @brief shutdown the gpg-agent * @retval 0 on success. * @retval -1 on error. */ int ELEKTRA_PLU...
Add gtk and x11 headers to linux specific platform header
/** ****************************************************************************** * Xenia : Xbox 360 Emulator Research Project * ****************************************************************************** * Copyright 2015 Ben Vanik. All rights reserved. ...
Add function prototypes and ifndef wrapper
// Configurable constants int const MAIN_MOTOR_PWM_TOP = 255; int const MAIN_MOTOR_BRAKE_SPEED = 120; int const MAIN_MOTOR_MIN_SPEED = 150; int const MAIN_MOTOR_MED_SPEED = 254; int const MAIN_MOTOR_MAX_SPEED = 255; int const MAGNET_OPEN_WAIT = 5; // 10ths of a second void init(void);
#ifndef HAL1_H #define HAL1_H // Configurable constants int const MAIN_MOTOR_PWM_TOP = 255; int const MAIN_MOTOR_BRAKE_SPEED = 120; int const MAIN_MOTOR_MIN_SPEED = 150; int const MAIN_MOTOR_MED_SPEED = 254; int const MAIN_MOTOR_MAX_SPEED = 255; int const MAGNET_OPEN_WAIT = 5; // 10ths of a second void init(void); ...
Remove dealloc from header as it is declared in NSObject
#import <Foundation/Foundation.h> #ifdef __cplusplus #include <memory> #include <mx3/mx3.hpp> #endif @interface MX3Snapshot : NSObject // adding this here allows you to include this file from non-objc++ files // since it is using c++ types #ifdef __cplusplus - (instancetype)initWithSnapshot:(std::unique_ptr<mx3::SqlSn...
#import <Foundation/Foundation.h> #ifdef __cplusplus #include <memory> #include <mx3/mx3.hpp> #endif @interface MX3Snapshot : NSObject // adding this here allows you to include this file from non-objc++ files // since it is using c++ types #ifdef __cplusplus - (instancetype)initWithSnapshot:(std::unique_ptr<mx3::SqlSn...
Fix a build error (Python 3.5)
#pragma once #if defined(_MSC_VER) #define round(x) (x >= 0 ? (x + 0.5) : (x - 0.5)) #endif class WindowFeature { public: WindowFeature(); virtual ~WindowFeature(); virtual void apply(double *windowImage, double *descriptorVector) = 0; unsigned int descriptorLengthPerWindow; };
#pragma once #if _MSC_VER < 1900 #define round(x) (x >= 0 ? (x + 0.5) : (x - 0.5)) #endif class WindowFeature { public: WindowFeature(); virtual ~WindowFeature(); virtual void apply(double *windowImage, double *descriptorVector) = 0; unsigned int descriptorLengthPerWindow; };
Declare void parameter for RIOT
#include "port/oc_assert.h" // TODO: void abort_impl() { }
#include "port/oc_assert.h" // TODO: void abort_impl(void) { }
Add stub for auditing in the tester
/* * This file is part of Kotaka, a mud library for DGD * http://github.com/shentino/kotaka * * Copyright (C) 2013 Raymond Jennings * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundati...
Implement long double -> double
#include "../../math/reinterpret.h" #include <stdint.h> static uint64_t magnitude_(uint64_t high, uint64_t low) { if (high > 0x7FFF000000000000 || (high == 0x7FFF000000000000 && low)) return high; if (high >= 0x43FF000000000000) return 0x7FF0000000000000; if (high >= 0x3C01000000000000) ...
Make operator-> constexpr and return a T const*.
#ifndef VAST_OPTION_HPP #define VAST_OPTION_HPP #include <cppa/option.hpp> namespace vast { /// An optional value of `T` with similar semantics as `std::optional`. template <typename T> class option : public cppa::option<T> { typedef cppa::option<T> super; public: #ifdef VAST_HAVE_INHERTING_CONSTRUCTORS using su...
#ifndef VAST_OPTION_HPP #define VAST_OPTION_HPP #include <cppa/option.hpp> namespace vast { /// An optional value of `T` with similar semantics as `std::optional`. template <typename T> class option : public cppa::option<T> { typedef cppa::option<T> super; public: #ifdef VAST_HAVE_INHERTING_CONSTRUCTORS using su...
Check version string only if MMDB_lib_version != NULL
#include "MMDB.h" #include "tap.h" #include <sys/stat.h> #include <string.h> #if HAVE_CONFIG_H # include <config.h> #endif int main(void) { const char *version = MMDB_lib_version(); ok(version != NULL, "MMDB_lib_version exists"); ok(strcmp(version, PACKAGE_VERSION) == 0, "version is " PACKAGE_VERSION); ...
#include "MMDB.h" #include "tap.h" #include <sys/stat.h> #include <string.h> #if HAVE_CONFIG_H # include <config.h> #endif int main(void) { const char *version = MMDB_lib_version(); ok(version != NULL, "MMDB_lib_version exists"); if ( version ) ok(strcmp(version, PACKAGE_VERSION) == 0, "version is ...
Remove "Module Name:" from include file headers.
/** @file GUID for hardware error record variables. Copyright (c) 2007 - 2009, Intel Corporation All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the ...
/** @file GUID for hardware error record variables. Copyright (c) 2007 - 2009, Intel Corporation All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the ...
Add stub routines for !CONFIG_DCB
/* * Copyright (c) 2010, Intel Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but...
/* * Copyright (c) 2010, Intel Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but...
Disable __WINCRYPT_H__ headers for Windows
#ifndef OSSL_CORE_COMMON_H_INCLUDE #define OSSL_CORE_COMMON_H_INCLUDE #include <nan.h> #include "logger.h" #include "scoped_ssl.h" #include "excep.h" #include "key_exp.h" #include "digest.h" #include "bn.h" #include <openssl/bn.h> #endif // OSSL_CORE_COMMON_H_INCLUDE
#ifndef OSSL_CORE_COMMON_H_INCLUDE #define OSSL_CORE_COMMON_H_INCLUDE #ifdef _WIN32 #define __WINCRYPT_H__ #endif #include <nan.h> #include "logger.h" #include "scoped_ssl.h" #include "excep.h" #include "key_exp.h" #include "digest.h" #include "bn.h" #include <openssl/bn.h> #endif // OSSL_CORE_COMM...
Fix a header that had failed to track dome changed locations.
/*************************************************************************** getarg.h - Support routines for the giflib utilities **************************************************************************/ #ifndef _GETARG_H #define _GETARG_H #include <stdbool.h> #define VERSION_COOKIE " Version %d.%d, " /********...
/*************************************************************************** getarg.h - Support routines for the giflib utilities **************************************************************************/ #ifndef _GETARG_H #define _GETARG_H #include <stdbool.h> #define VERSION_COOKIE " Version %d.%d, " /********...
Move inclusion of internal headers before system headers
/* * libaacs by Doom9 ppl 2009, 2010 */ #ifndef AACS_H_ #define AACS_H_ #include <stdint.h> #include "../file/configfile.h" #define LIBAACS_VERSION "1.0" typedef struct aacs AACS; struct aacs { uint8_t pk[16], mk[16], vuk[16], vid[16]; uint8_t *uks; /* unit key array (size = 16 * num_uks, each ...
/* * libaacs by Doom9 ppl 2009, 2010 */ #ifndef AACS_H_ #define AACS_H_ #include "../file/configfile.h" #include <stdint.h> #define LIBAACS_VERSION "1.0" typedef struct aacs AACS; struct aacs { uint8_t pk[16], mk[16], vuk[16], vid[16]; uint8_t *uks; /* unit key array (size = 16 * num_uks, each ...
Generalize this test to work without instruction names.
// RUN: %clang_cc1 -Werror -triple i386-unknown-unknown -emit-llvm -O1 -disable-llvm-optzns -o %t %s // RUN: FileCheck < %t %s // Types with the may_alias attribute should be considered equivalent // to char for aliasing. typedef int __attribute__((may_alias)) aliasing_int; void test0(aliasing_int *ai, int *i) { *...
// RUN: %clang_cc1 -Werror -triple i386-unknown-unknown -emit-llvm -O1 -disable-llvm-optzns -o %t %s // RUN: FileCheck < %t %s // Types with the may_alias attribute should be considered equivalent // to char for aliasing. typedef int __attribute__((may_alias)) aliasing_int; void test0(aliasing_int *ai, int *i) { *...
Add thread group to manage threads
// // synchronizer.h // P2PSP // // This code is distributed under the GNU General Public License (see // THE_GENERAL_GNU_PUBLIC_LICENSE.txt for extending this information). // Copyright (C) 2016, the P2PSP team. // http://www.p2psp.org // #include <boost/format.hpp> #include <boost/program_options/parsers.hpp> ...
// // synchronizer.h // P2PSP // // This code is distributed under the GNU General Public License (see // THE_GENERAL_GNU_PUBLIC_LICENSE.txt for extending this information). // Copyright (C) 2016, the P2PSP team. // http://www.p2psp.org // #include <boost/format.hpp> #include <boost/program_options/parsers.hpp> ...
Add Doxygen comments for new Singleton methods
/// \file /// \brief Singleton design pattern /// /// \author Peter 'png' Hille <peter@das-system-networks.de> #ifndef SINGLETON_HH #define SINGLETON_HH 1 #include <dsnutil/compiler_features.h> namespace dsn { /// \brief Template for singleton classes /// /// This template can be used to implement the "singleton" des...
/// \file /// \brief Singleton design pattern /// /// \author Peter 'png' Hille <peter@das-system-networks.de> #ifndef SINGLETON_HH #define SINGLETON_HH 1 #include <dsnutil/compiler_features.h> namespace dsn { /// \brief Template for singleton classes /// /// This template can be used to implement the "singleton" des...
Transform from base 10 in whatever base you want
/* * The decimal number, 585 = 1001001001 (binary), is palindromic in both bases. * Find the sum of all numbers, less than 5 000 000, which are palindromic in * base 10 and base 2. (Please note that the palindromic number, in either base, * may not include leading zeros.) */ #include <stdio.h> #include <string.h>...
Fix control device IOCTLS access type
/* * UsbDk filter/redirector driver * * Copyright (c) 2013 Red Hat, Inc. * * Authors: * Dmitry Fleytman <dfleytma@redhat.com> * */ #pragma once #include "UsbDkData.h" #include "UsbDkNames.h" #define USBDK_DEVICE_TYPE 50000 // UsbDk Control Device IOCTLs #define IOCTL_USBDK_COUNT_DEVICES \ ULONG(CTL_CODE( USB...
/* * UsbDk filter/redirector driver * * Copyright (c) 2013 Red Hat, Inc. * * Authors: * Dmitry Fleytman <dfleytma@redhat.com> * */ #pragma once #include "UsbDkData.h" #include "UsbDkNames.h" #define USBDK_DEVICE_TYPE 50000 // UsbDk Control Device IOCTLs #define IOCTL_USBDK_COUNT_DEVICES \ ULONG(CTL_CODE( USB...
Add mock for AppExtension class
/* * Copyright (c) 2018, Ford Motor Company * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this * list of condit...
Add operators for some types for PUP
#pragma once #include <glm/glm.hpp> #include "sv/scivis.h" inline void operator|(PUP::er &p, sv::VolumeDType &dtype) { if (p.isUnpacking()) { int t = 0; p | t; dtype = (sv::VolumeDType)t; } else { int t = dtype; p | t; } } inline void operator|(PUP::er &p, glm::uvec3 &v) { p | v.x; p | v.y; p | v.z; }...
Disable a few misc flags
#include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <termios.h> #include <unistd.h> struct termios orig_termios; void disableRawMode() { tcsetattr(STDIN_FILENO, TCSAFLUSH, &orig_termios); } void enableRawMode() { tcgetattr(STDIN_FILENO, &orig_termios); atexit(disableRawMode); struct termios r...
#include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <termios.h> #include <unistd.h> struct termios orig_termios; void disableRawMode() { tcsetattr(STDIN_FILENO, TCSAFLUSH, &orig_termios); } void enableRawMode() { tcgetattr(STDIN_FILENO, &orig_termios); atexit(disableRawMode); struct termios r...
Synchronize the mailbox after expunging messages to actually get them expunged.
/* Copyright (c) 2002-2008 Dovecot authors, see the included COPYING file */ #include "common.h" #include "commands.h" #include "imap-expunge.h" bool cmd_close(struct client_command_context *cmd) { struct client *client = cmd->client; struct mailbox *mailbox = client->mailbox; struct mail_storage *storage; if (!...
/* Copyright (c) 2002-2008 Dovecot authors, see the included COPYING file */ #include "common.h" #include "commands.h" #include "imap-expunge.h" bool cmd_close(struct client_command_context *cmd) { struct client *client = cmd->client; struct mailbox *mailbox = client->mailbox; struct mail_storage *storage; if (!...
Comment out old Command to avoid name collisions
#ifndef TE_COMMANDS_H #define TE_COMMANDS_H #include <functional> #include <map> #include <SDL_keycode.h> #include <SDL_events.h> #include <memory> namespace te { class Rectangle; enum class Action { UP, DOWN }; typedef std::function<void()> Command; typedef std::map<Action, Command> CommandMap; ...
#ifndef TE_COMMANDS_H #define TE_COMMANDS_H #include <functional> #include <map> #include <SDL_keycode.h> #include <SDL_events.h> #include <memory> namespace te { class Rectangle; enum class Action { UP, DOWN }; //typedef std::function<void()> Command; //typedef std::map<Action, Command> CommandMap...
Update trapv tests with explicit signal name
// RUN: %ucc -ftrapv -fno-const-fold -o %t %s // RUN: %t; [ $? -ne 0 ] main() { int x; // ensure powers of two aren't shift-converted, as overflow can't catch this x = -3 * 0x4000000000000000; return 0; }
// RUN: %ocheck SIGILL %s -ftrapv -fno-const-fold -DT=int // RUN: %ocheck SIGILL %s -ftrapv -fno-const-fold -DT=long // RUN: %ocheck 0 %s -fno-const-fold -DT=int // RUN: %ocheck 0 %s -fno-const-fold -DT=long main() { // test with T being both int and long, to check how truncations are dealt with T x; // ensure pow...
Remove const from ThreadChecker in NullAudioPoller.
/* * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contribut...
/* * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contribut...
Add value parameter to fprintf in safe_malloc
#include "safe-c/safe_memory.h" #include <stdio.h> #include <stdlib.h> #include <string.h> void* safe_malloc_function(size_t size, const char* calling_function) { if (size == 0) { fprintf(stderr, "Error allocating memory: The function %s called " "'safe_malloc' and requested zero memor...
#include "safe-c/safe_memory.h" #include <stdio.h> #include <stdlib.h> #include <string.h> void* safe_malloc_function(size_t size, const char* calling_function) { if (size == 0) { fprintf(stderr, "Error allocating memory: The function %s called " "'safe_malloc' and requested zero memor...
Add a missing file, even though it doesn't do much right now.
/** * This program sets up a 50 Hz PWM and a basic UART command structure. * Users may connect to the UART and send one byte at a time to make up * more complex commands. The basic layout of the command format is * like this: [B_1,B_2,0xFE], with the commas, brackets, and quotes all * being abstract (e.g. not rea...
Add __func__, __LINE__ to TRACE if DEBUG, otherwise add progname.
#ifndef _TRACE_H_ #define _TRACE_H_ #include <stdio.h> #include <errno.h> #ifdef DEBUG #define TRACE ERROR #else #define TRACE(fmt,arg...) ((void) 0) #endif #define ERROR(fmt,arg...) \ fprintf(stderr, "%s:%s:%d: "fmt, program_invocation_short_name, __func__, __LINE__, ##arg) #define FATAL(fmt,arg...) do { \ ER...
#ifndef _TRACE_H_ #define _TRACE_H_ #include <stdio.h> #include <errno.h> #ifdef DEBUG #define TRACE ERROR #else #define TRACE(fmt,arg...) ((void) 0) #endif #ifdef DEBUG #define ERROR(fmt,arg...) \ fprintf(stderr, "%s:%d: "fmt, __func__, __LINE__, ##arg) #else #define ERROR(fmt,arg...) \ fprintf(stderr, "%s: "fmt...
Update version number to 8.02.01-k2.
/* * QLogic Fibre Channel HBA Driver * Copyright (c) 2003-2008 QLogic Corporation * * See LICENSE.qla2xxx for copyright and licensing details. */ /* * Driver version */ #define QLA2XXX_VERSION "8.02.01-k1" #define QLA_DRIVER_MAJOR_VER 8 #define QLA_DRIVER_MINOR_VER 2 #define QLA_DRIVER_PATCH_VER 1 #define...
/* * QLogic Fibre Channel HBA Driver * Copyright (c) 2003-2008 QLogic Corporation * * See LICENSE.qla2xxx for copyright and licensing details. */ /* * Driver version */ #define QLA2XXX_VERSION "8.02.01-k2" #define QLA_DRIVER_MAJOR_VER 8 #define QLA_DRIVER_MINOR_VER 2 #define QLA_DRIVER_PATCH_VER 1 #define...
Update driver version to 5.02.00-k14
/* * QLogic iSCSI HBA Driver * Copyright (c) 2003-2010 QLogic Corporation * * See LICENSE.qla4xxx for copyright and licensing details. */ #define QLA4XXX_DRIVER_VERSION "5.02.00-k13"
/* * QLogic iSCSI HBA Driver * Copyright (c) 2003-2010 QLogic Corporation * * See LICENSE.qla4xxx for copyright and licensing details. */ #define QLA4XXX_DRIVER_VERSION "5.02.00-k14"
UPDATE Commented out some test code
#ifndef SSPAPPLICATION_ENTITIES_DOORENTITY_H #define SSPAPPLICATION_ENTITIES_DOORENTITY_H #include "Entity.h" #include <vector> class DoorEntity : public Entity { private: struct ElementState { int entityID; EVENT desiredState; bool desiredStateReached; }; std::vector<ElementState> m_elementStates; bool...
#ifndef SSPAPPLICATION_ENTITIES_DOORENTITY_H #define SSPAPPLICATION_ENTITIES_DOORENTITY_H #include "Entity.h" #include <vector> class DoorEntity : public Entity { private: /*struct ElementState { int entityID; EVENT desiredState; bool desiredStateReached; }; std::vector<ElementState> m_elementStates;*/ ...
Fix the addr=NULL issue in mmap.
/* * Copyright (c) 2006-2018, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2017/11/30 Bernard The first version. */ #include <stdint.h> #include <stdio.h> #include <rtthread.h> #include <dfs_posix.h> #include <sys/mman.h> ...
/* * Copyright (c) 2006-2018, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2017/11/30 Bernard The first version. */ #include <stdint.h> #include <stdio.h> #include <rtthread.h> #include <dfs_posix.h> #include <sys/mman.h> ...
Change key state array constness.
#ifndef INPUTSTATE_H #define INPUTSTATE_H #include <SDL2/SDL.h> #undef main #include <map> class InputState { public: enum KeyFunction { KF_EXIT, KF_FORWARDS, KF_BACKWARDS, KF_ROTATE_SUN }; InputState(); void readInputState(); bool getKeyState(KeyFunction f); int getAbsoluteMouseX() { return mouse_x; }; int ge...
#ifndef INPUTSTATE_H #define INPUTSTATE_H #include <SDL2/SDL.h> #undef main #include <map> class InputState { public: enum KeyFunction { KF_EXIT, KF_FORWARDS, KF_BACKWARDS, KF_ROTATE_SUN }; InputState(); void readInputState(); bool getKeyState(KeyFunction f); int getAbsoluteMouseX() { return mouse_x; }; int ge...
Use suggested change from Martin in defining OSCL_UNUSED_ARG.
/* ------------------------------------------------------------------ * Copyright (C) 2009 Martin Storsjo * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org...
/* ------------------------------------------------------------------ * Copyright (C) 2009 Martin Storsjo * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org...
Use GCC "noreturn" function attribute.
#ifndef ERROR_H #define ERROR_H /* * Note that we include "fmt" in the variadic argument list, because C99 * apparently doesn't allow variadic macros to be invoked without any vargs * parameters. */ #define ERROR(...) var_error(__FILE__, __LINE__, __VA_ARGS__) #define FAIL() simple_error(__FILE__, __...
#ifndef ERROR_H #define ERROR_H /* * Note that we include "fmt" in the variadic argument list, because C99 * apparently doesn't allow variadic macros to be invoked without any vargs * parameters. */ #define ERROR(...) var_error(__FILE__, __LINE__, __VA_ARGS__) #define FAIL() simple_error(__FILE__, __...
Enlarge default buffer size limit
// MIT License // Copyright (c) 2017 Zhuhao Wang // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, mer...
// MIT License // Copyright (c) 2017 Zhuhao Wang // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, mer...
Add assert fail/success comments to 13/32
#include <pthread.h> #include <assert.h> int g = 0; pthread_mutex_t A = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t B = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t C = PTHREAD_MUTEX_INITIALIZER; void *t_fun(void *arg) { pthread_mutex_lock(&A); pthread_mutex_lock(&C); pthread_mutex_lock(&B); g = 5; pthread_mut...
#include <pthread.h> #include <assert.h> int g = 0; pthread_mutex_t A = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t B = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t C = PTHREAD_MUTEX_INITIALIZER; void *t_fun(void *arg) { pthread_mutex_lock(&A); pthread_mutex_lock(&C); pthread_mutex_lock(&B); g = 5; pthread_mut...
Use new `estragon_send` API in CPU plugin
#include <uv.h> #include <estragon.h> #ifdef __sun #include <sys/pset.h> #include <sys/loadavg.h> #endif static uv_timer_t cpu_timer; void send_cpu_usage(uv_timer_t *timer, int status) { double loadinfo[3]; #ifdef DEBUG printf("cpu usage timer fired, status %d\n", status); #endif #ifdef __sun /* On SunOS, if w...
#include <uv.h> #include <estragon.h> #ifdef __sun #include <sys/pset.h> #include <sys/loadavg.h> #endif static uv_timer_t cpu_timer; void send_cpu_usage(uv_timer_t *timer, int status) { double loadinfo[3]; #ifdef DEBUG printf("cpu usage timer fired, status %d\n", status); #endif #ifdef __sun /* On SunOS, if w...
Include stdio.h in case bzlib.h needs it.
/* Copyright (c) 2005-2008 Dovecot authors, see the included COPYING file */ #include "lib.h" #include "istream-internal.h" #include "istream-zlib.h" #ifdef HAVE_BZLIB #include <bzlib.h> #define BZLIB_INCLUDE #define gzFile BZFILE #define gzdopen BZ2_bzdopen #define gzclose BZ2_bzclose #define gzread BZ2_bzread #de...
/* Copyright (c) 2005-2008 Dovecot authors, see the included COPYING file */ #include "lib.h" #include "istream-internal.h" #include "istream-zlib.h" #ifdef HAVE_BZLIB #include <stdio.h> #include <bzlib.h> #define BZLIB_INCLUDE #define gzFile BZFILE #define gzdopen BZ2_bzdopen #define gzclose BZ2_bzclose #define gz...
Add serial port console implementation
#include <kernel/kernel.h> #include <kernel/console.h> #include <arch/ioport.h> #define SERIAL_PORT_IO_BASE 0x3f8 #define REG_DATA (SERIAL_PORT_IO_BASE) #define REG_DLL (SERIAL_PORT_IO_BASE) #define REG_IER (SERIAL_PORT_IO_BASE + 1) #define REG_DLH (SERIAL_PORT_IO_BASE + ...
Use the correct import syntax
// // APIAFNetworkingHTTPClient.h // APIClient // // Created by Klaas Pieter Annema on 30-08-13. // Copyright (c) 2013 Klaas Pieter Annema. All rights reserved. // #import <Foundation/Foundation.h> #import "AFNetworking.h" #import "APIHTTPClient.h" @interface APIAFNetworkingHTTPClient : NSObject <APIHTTPClient> ...
// // APIAFNetworkingHTTPClient.h // APIClient // // Created by Klaas Pieter Annema on 30-08-13. // Copyright (c) 2013 Klaas Pieter Annema. All rights reserved. // #import <Foundation/Foundation.h> #import <AFNetworking/AFNetworking.h> #import "APIHTTPClient.h" @interface APIAFNetworkingHTTPClient : NSObject <AP...
Make read only functions as const.
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef OZONE_WAYLAND_INPUT_DEVICE_H_ #define OZONE_WAYLAND_INPUT_DEVICE_H_ #include <wayland-client.h> #include "base/basictypes.h" namespace ozonewayl...
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef OZONE_WAYLAND_INPUT_DEVICE_H_ #define OZONE_WAYLAND_INPUT_DEVICE_H_ #include <wayland-client.h> #include "base/basictypes.h" namespace ozonewayl...
Fix for Ubuntu 14.04, CentOS should work too
#include <stdio.h> #include <sys/socket.h> #include <netdb.h> #include <string.h> #include <unistd.h> int main(int argc, char *argv[]) { char *host = "127.0.0.1"; int port = 2000; int timeout = 2; int sockfd, n; char buffer[256]; struct sockaddr_in serv_addr; struct hostent *server; ...
#include <stdio.h> #include <sys/socket.h> #include <netdb.h> #include <string.h> #include <unistd.h> int main(int argc, char *argv[]) { char *host = "127.0.0.1"; int port = 2000; int timeout = 2; int sockfd, n; char buffer[256]; struct sockaddr_in serv_addr; struct hostent *server; ...
Add basic test about pointer and structs
/* name: TEST017 description: Basic test about pointers and structs output: F1 G9 F1 main { - S2 s1 ( M3 I y M4 I z ) A2 S2 nested S6 s2 ( M8 P p ) A3 S6 v A3 M8 .P A2 'P :P A3 M8 .P @S2 M3 .I #I1 :I A3 M8 .P @S2 M4 .I #I2 :I j L4 A2 M3 .I #I1 =I yI #I1 L4 j L5 A2 M4 .I #I2 =I yI #I2 L5 yI #I0 } */ #line 1 st...
Fix abort_on_error: Don't forget to exit(-1).
#pragma once #define pi (3.14159265358979323846) #define abort_on_error(where, error) ({ \ typeof(where) _where = where; \ typeof(error) _error = error; \ \ if(_error) { \ fprintf( \ stderr, \ __FILE__ ":%d: %s error (%#x).\n", \ __LINE__, \ _whe...
#pragma once #include <stdlib.h> #define pi (3.14159265358979323846) #define abort_on_error(where, error) ({ \ typeof(where) _where = where; \ typeof(error) _error = error; \ \ if(_error) { \ fprintf( \ stderr, \ __FILE__ ":%d: %s error (%#x).\n", \ __LINE__...
Fix the qualification of `IntrusiveRefCntPtr` to use `llvm::`.
//===--- FSProvider.h - VFS provider for ClangdServer ------------*- C++-*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
//===--- FSProvider.h - VFS provider for ClangdServer ------------*- C++-*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
Add typedefs for VertexBuffer, IndexBuffer in GL
#pragma once #include <ionGL.h> typedef ion::GL::Uniform IUniform; template <typename T> using CUniformValue = ion::GL::UniformValue<T>; template <typename T> using CUniformReference = ion::GL::UniformReference<T>;
#pragma once #include <ionGL.h> typedef ion::GL::Uniform IUniform; template <typename T> using CUniformValue = ion::GL::UniformValue<T>; template <typename T> using CUniformReference = ion::GL::UniformReference<T>; typedef ion::GL::VertexBuffer CVertexBuffer; typedef ion::GL::IndexBuffer CIndexB...
Update ILogListener interface with docs
// Copyright 2016 Airtame #ifndef MANAGEDEVICE_LOGGING_ILOGLISTENER_H_ #define MANAGEDEVICE_LOGGING_ILOGLISTENER_H_ #include <string> // Forward declarations. enum class ELogLevel; class ILogListener { public: virtual ~ILogListener() {} virtual void Notify(const std::string& iLog, ELogLevel iLevel) = 0; }; ...
// Copyright 2016 Pierre Fourgeaud #ifndef PF_ILOGLISTENER_H_ #define PF_ILOGLISTENER_H_ #include <string> // Forward declarations. enum class ELogLevel; /** * @brief The ILogListener class * * Define an interface to implement when creating a new LogListener. * SimpleLogger provide 3 default listeners: Buffer,...
Revert this, we can now avoid error cascades better.
// Test this without pch. // RUN: clang-cc -include %S/functions.h -fsyntax-only -verify %s && // Test with pch. // RUN: clang-cc -emit-pch -o %t %S/functions.h && // RUN: clang-cc -include-pch %t -fsyntax-only -verify %s int f0(int x0, int y0, ...) { return x0 + y0; } float *test_f1(int val, double x, double y) { ...
// Test this without pch. // RUN: clang-cc -include %S/functions.h -fsyntax-only -verify %s && // Test with pch. // RUN: clang-cc -emit-pch -o %t %S/functions.h && // RUN: clang-cc -include-pch %t -fsyntax-only -verify %s int f0(int x0, int y0, ...) { return x0 + y0; } float *test_f1(int val, double x, double y) { ...
Make KMALLOC_FIRST_HEAP_SIZE depend on KERNEL_MAX_SIZE
/* SPDX-License-Identifier: BSD-2-Clause */ /* * This is a TEMPLATE. The actual config file is generated by CMake and stored * in <BUILD_DIR>/tilck_gen_headers/. */ #pragma once #include <tilck_gen_headers/config_global.h> /* --------- Boolean config variables --------- */ #cmakedefine01 KMALLOC_FREE_MEM_POISONI...
/* SPDX-License-Identifier: BSD-2-Clause */ /* * This is a TEMPLATE. The actual config file is generated by CMake and stored * in <BUILD_DIR>/tilck_gen_headers/. */ #pragma once #include <tilck_gen_headers/config_global.h> /* --------- Boolean config variables --------- */ #cmakedefine01 KMALLOC_FREE_MEM_POISONI...
Use const for struct members
// actions: // // * read from queue // * read from array // * write to queue // * write to array // * stop action (with and/or without time?) // * query xrun stats etc. // timestamp! start, duration (number of samples? unlimited?) // return values: actual start, actual duration (number of samples?) // queue usage: st...
// actions: // // * read from queue // * read from array // * write to queue // * write to array // * stop action (with and/or without time?) // * query xrun stats etc. // timestamp! start, duration (number of samples? unlimited?) // return values: actual start, actual duration (number of samples?) // queue usage: st...
Fix cut and paste bug for board specific disconnection
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. * * STM32F3 Family specific USB functionality */ #include "usb-stm32f3.h" #include "usb_api.h" void usb_connect(void) { usb_board_connect(); ...
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. * * STM32F3 Family specific USB functionality */ #include "usb-stm32f3.h" #include "usb_api.h" void usb_connect(void) { usb_board_connect(); ...
Remove some hacks from libcurl sample
#include <stdio.h> // Those types are needed but not defined or used in libcurl headers. typedef size_t header_callback(char *buffer, size_t size, size_t nitems, void *userdata); typedef size_t write_data_callback(void *buffer, size_t size, size_t nmemb, void *userp); extern void something_using_callback1(header_...
#include <stddef.h> // Those types are needed but not defined or used in libcurl headers. typedef size_t header_callback(char *buffer, size_t size, size_t nitems, void *userdata); typedef size_t write_data_callback(void *buffer, size_t size, size_t nmemb, void *userp);
Add boost::optional wrapper for python bindings
/*ckwg +5 * Copyright 2011 by Kitware, Inc. All Rights Reserved. Please refer to * KITWARE_LICENSE.TXT for licensing information, or contact General Counsel, * Kitware, Inc., 28 Corporate Drive, Clifton Park, NY 12065. */ #ifndef VISTK_PYTHON_HELPERS_PYTHON_CONVERT_OPTIONAL_H #define VISTK_PYTHON_HELPERS_PYTHON_CO...
Fix doxygen comments for new header.
#ifndef _ECORE_STR_H # define _ECORE_STR_H #ifdef EAPI #undef EAPI #endif #ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else # define EAPI __declspec(dllimport) # endif #else # ifdef __GNUC__ # if __GNUC__ >= 4 # define EAPI __attribute__ ((visibility("default"))) # else # define EAPI...
#ifndef _ECORE_STR_H # define _ECORE_STR_H #ifdef EAPI #undef EAPI #endif #ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else # define EAPI __declspec(dllimport) # endif #else # ifdef __GNUC__ # if __GNUC__ >= 4 # define EAPI __attribute__ ((visibility("default"))) # else # define EAPI...
Add Quaternion to variant types, makes Q_PROPERTY support it
/* <one line to give the program's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (...
/* <one line to give the program's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (...
Make Serpent's key_schedule and actual round keys private. Add protected accessor functions for get and set. Set is needed by the x86 version since it implements the key schedule directly.
/* * Serpent * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_SERPENT_H__ #define BOTAN_SERPENT_H__ #include <botan/block_cipher.h> namespace Botan { /** * Serpent, an AES finalist */ class BOTAN_DLL Serpent : public BlockCipher { public: void encrypt_n(co...
/* * Serpent * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_SERPENT_H__ #define BOTAN_SERPENT_H__ #include <botan/block_cipher.h> namespace Botan { /** * Serpent, an AES finalist */ class BOTAN_DLL Serpent : public BlockCipher { public: void encrypt_n(co...
Add testcase for recent checkin.
// RUN: clang-cc -verify -fsyntax-only %s static void (*fp0)(void) __attribute__((noreturn)); static void __attribute__((noreturn)) f0(void) { fatal(); } // expected-warning {{function declared 'noreturn' should not return}} // On K&R int f1() __attribute__((noreturn)); int g0 __attribute__((noreturn)); // expect...
// RUN: clang -cc1 -verify -fsyntax-only %s static void (*fp0)(void) __attribute__((noreturn)); static void __attribute__((noreturn)) f0(void) { fatal(); } // expected-warning {{function declared 'noreturn' should not return}} // On K&R int f1() __attribute__((noreturn)); int g0 __attribute__((noreturn)); // expe...
Move kmer functionality from kmei to dlib.
#ifndef KMER_UTIL_H #define KMER_UTIL_H #include <assert.h> #include "logging_util.h" // Largest odd kmer that can be held in a uint64_t #define MAX_KMER 31 #define DEFAULT_KMER 21 #ifndef num2nuc # ifndef NUM2NUC_STR # define NUM2NUC_STR "ACGTN" # endif # define num2nuc(x) NUM2NUC_STR[(uint8_t)x] #endif #ifdef __cp...
#ifndef KMER_UTIL_H #define KMER_UTIL_H #include <assert.h> #include "logging_util.h" // Largest odd kmer that can be held in a uint64_t #define MAX_KMER 31 #define DEFAULT_KMER 21 #ifndef num2nuc # ifndef NUM2NUC_STR # define NUM2NUC_STR "ACGTN" # endif # define num2nuc(x) NUM2NUC_STR[(uint8_t)x] #endif #ifdef __cp...
Add a generic driver model.
// ============================================================================= // PROJECT CHRONO - http://projectchrono.org // // Copyright (c) 2014 projectchrono.org // All right reserved. // // Use of this source code is governed by a BSD-style license that can be found // in the LICENSE file at the top level of th...
Add new common block to compute some diagnostics when needed
C $Header$ C $Name$ C The physics state uses the dynamics dimensions in the horizontal C and the land dimensions in the horizontal for turbulence variables c c Secret Hiding Place - Use to compute gridalt correction term diagnostics c ------------------------------------------------------------------------ ...
Reimplement no-op version of DLOG to avoid C++ compiler warning
#pragma once #include <iostream> // The same as assert, but expression is always evaluated and result returned #define CHECK(expr) (assert(expr), expr) #if !defined(NDEBUG) // Debug namespace dev { namespace evmjit { std::ostream& getLogStream(char const* _channel); } } #define DLOG(CHANNEL) ::dev::evmjit::getLo...
#pragma once #include <iostream> // The same as assert, but expression is always evaluated and result returned #define CHECK(expr) (assert(expr), expr) #if !defined(NDEBUG) // Debug namespace dev { namespace evmjit { std::ostream& getLogStream(char const* _channel); } } #define DLOG(CHANNEL) ::dev::evmjit::getLo...
Use SafelyCloseFileDescriptor instead of close.
//===- lib/ReaderWriter/PECOFF/PDBPass.h ----------------------------------===// // // The LLVM Linker // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------...
//===- lib/ReaderWriter/PECOFF/PDBPass.h ----------------------------------===// // // The LLVM Linker // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------...
Simplify the test for wait4(2) with WNOHANG.
static int parent_main(pid_t child_pid) { pid_t pid; int status; pid = wait4(child_pid, &status, WNOHANG, NULL); if (pid != 0) return (1); return (0); } static void signal_handler(int sig) { } int main(int argc, const char *argv[]) { struct sigaction act; struct timespec t; pid_t child_pid; int retval; ...
static int parent_main(pid_t child_pid) { pid_t pid; int status; pid = wait4(child_pid, &status, WNOHANG, NULL); if (pid != 0) return (1); return (0); } int main(int argc, const char *argv[]) { pid_t child_pid; int retval; child_pid = fork(); switch (child_pid) { case -1: return (18); case 0: for ...
Use proper return type X-(
// Copyright (c) 2015, Matthew Malensek. // Distributed under the BSD 2-Clause License (see LICENSE.txt for details) #pragma once class VolumeTransformation; class VolumeController { public: struct DeviceInfo { std::wstring name; std::wstring id; }; /// <summary> /// Retrieves the cu...
// Copyright (c) 2015, Matthew Malensek. // Distributed under the BSD 2-Clause License (see LICENSE.txt for details) #pragma once class VolumeTransformation; class VolumeController { public: struct DeviceInfo { std::wstring name; std::wstring id; }; /// <summary> /// Retrieves the cu...
Add Arduino Data packet header.
/** * Project * # # # ###### ###### * # # # # # # # # * # # # # # # # # * ### # # ###### ###### * # # ####### # # # # * # # # # # # # # * # # # # # # # # * * Copyright (c) 2014, Projec...
Change version number to 1.50
#pragma once // const float in a header file can lead to duplication of the storage // but I don't really care in this case. Just don't do it with a header // that is included hundreds of times. const float kCurrentVersion = 1.49f; // Put a "#define VERSION_SUFFIX 'b'" line here to add a minor version // incr...
#pragma once // const float in a header file can lead to duplication of the storage // but I don't really care in this case. Just don't do it with a header // that is included hundreds of times. const float kCurrentVersion = 1.50f; // Put a "#define VERSION_SUFFIX 'b'" line here to add a minor version // incr...
Replace unnecessary import of UIKit with Foundation
#import <UIKit/UIKit.h> //! Project version number for EasyImagy. FOUNDATION_EXPORT double EasyImagyVersionNumber; //! Project version string for EasyImagy. FOUNDATION_EXPORT const unsigned char EasyImagyVersionString[]; // In this header, you should import all the public headers of your framework using statements l...
#import <Foundation/Foundation.h> //! Project version number for EasyImagy. FOUNDATION_EXPORT double EasyImagyVersionNumber; //! Project version string for EasyImagy. FOUNDATION_EXPORT const unsigned char EasyImagyVersionString[]; // In this header, you should import all the public headers of your framework using st...
Add relational traces even-more-rpb example
// SKIP PARAM: --sets ana.activated[+] octApron #include <pthread.h> #include <assert.h> int g = 17; // matches write in t_fun int h = 14; // matches write in t_fun pthread_mutex_t A = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t B = PTHREAD_MUTEX_INITIALIZER; void *t_fun(void *arg) { int t; pthread_mutex_lock(&A);...
Add macros for byte/word sized load and store instructions.
/*- * Copyright (c) 1998 Doug Rabson * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditi...
Fix shared library build for aura.
// Copyright (c) 2011 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_AURA_AURA_SWITCHES_H_ #define UI_AURA_AURA_SWITCHES_H_ #pragma once namespace switches { extern const char kAuraHostWindowSize[]; extern ...
// Copyright (c) 2011 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_AURA_AURA_SWITCHES_H_ #define UI_AURA_AURA_SWITCHES_H_ #pragma once #include "ui/aura/aura_export.h" namespace switches { AURA_EXPORT ex...
REFACTOR removed duplicates and created own file for this
void multiply_by_diagonal(const int rows, const int cols, double* restrict diagonal, double* restrict matrix) { /* * Multiply a matrix by a diagonal matrix (represented as a flat array * of n values). The diagonal structure is exploited (so that we use * n^2 ...
Fix size error in malloc call
#include "nb_simp.c" struct arrayProb* gibbsC_shim(struct arrayProb* topic_prior_b, struct arrayProb* word_prior_c, struct arrayNat* z_d, struct arrayNat* w_e, struct arrayNat* doc_f, unsigned int docUpdate_g) { struct arrayProb* res = (...
#include "nb_simp.c" struct arrayProb* gibbsC_shim(struct arrayProb* topic_prior_b, struct arrayProb* word_prior_c, struct arrayNat* z_d, struct arrayNat* w_e, struct arrayNat* doc_f, unsigned int docUpdate_g) { struct arrayProb* res = (...
Revert "Adding a public method to be able to update the database"
// // MLMediaLibrary.h // MobileMediaLibraryKit // // Created by Pierre d'Herbemont on 7/14/10. // Copyright 2010 __MyCompanyName__. All rights reserved. // #import <CoreData/CoreData.h> @interface MLMediaLibrary : NSObject { NSManagedObjectContext *_managedObjectContext; NSManagedObjectModel *_managedO...
// // MLMediaLibrary.h // MobileMediaLibraryKit // // Created by Pierre d'Herbemont on 7/14/10. // Copyright 2010 __MyCompanyName__. All rights reserved. // #import <CoreData/CoreData.h> @interface MLMediaLibrary : NSObject { NSManagedObjectContext *_managedObjectContext; NSManagedObjectModel *_managedO...
Add newline at end of file
// Copyright (c) 2011 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. // Common IPC messages used for child processes. // Multiply-included message file, hence no include guard. #include "googleurl/src/gurl.h" #include ...
// Copyright (c) 2011 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. // Common IPC messages used for child processes. // Multiply-included message file, hence no include guard. #include "googleurl/src/gurl.h" #include ...
Add session files to session doc group
/* * waysome - wayland based window manager * * Copyright in alphabetical order: * * Copyright (C) 2014-2015 Julian Ganz * Copyright (C) 2014-2015 Manuel Messner * Copyright (C) 2014-2015 Marcel Müller * Copyright (C) 2014-2015 Matthias Beyer * Copyright (C) 2014-2015 Nadja Sommerfeld * * This file is part o...
/* * waysome - wayland based window manager * * Copyright in alphabetical order: * * Copyright (C) 2014-2015 Julian Ganz * Copyright (C) 2014-2015 Manuel Messner * Copyright (C) 2014-2015 Marcel Müller * Copyright (C) 2014-2015 Matthias Beyer * Copyright (C) 2014-2015 Nadja Sommerfeld * * This file is part o...
Use the appropriate assembler for OSX.
#if defined(__APPLE__) && defined(__MACH__) /* for OSX */ # define Fprefix "_" #else /* Default to linux */ # define Fprefix "" #endif #define Assembler "as --32 -g -o %s -"
#if defined(__APPLE__) && defined(__MACH__) /* for OSX */ # define Assembler "as -arch i386 -g -o %s -" # define Fprefix "_" #else /* Default to linux */ # define Assembler "as --32 -g -o %s -" # define Fprefix "" #endif
Allow both yaw and azimuth
#pragma once #include <math.h> struct Vector3 { union { float v[3]; struct { float x; float y; float z; }; struct { float azimuth; float pitch; float roll; }; }; Vector3() { x = 0; ...
#pragma once #include <math.h> struct Vector3 { union { float v[3]; struct { float x; float y; float z; }; struct { union { float azimuth; float yaw; }; float pitch; ...
Fix read_all and return content without segment fault
#include <cgreen/slurp.h> #include <stdlib.h> #include <stdio.h> static char *read_all(FILE *file, int gulp); char *slurp(const char *file_name, int gulp) { FILE *file = fopen(file_name, "r"); if (file == NULL) { return NULL; } char *content = read_all(file, gulp); fclose(file); return...
#include <cgreen/slurp.h> #include <stdlib.h> #include <stdio.h> #include <strings.h> static char *read_all(FILE *file, int gulp); char *slurp(const char *file_name, int gulp) { FILE *file = fopen(file_name, "r"); if (file == NULL) { return NULL; } char *content = read_all(file, gulp); fcl...
Add missing header from last commit
/** * tapcfg - A cross-platform configuration utility for TAP driver * Copyright (C) 2008 Juho Vähä-Herttua * * 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 * versio...
Add basic support for shared memory
#include <signal.h> #include <unistd.h> #include <stdlib.h> void spawn_again(int signum) { (void) signum; /* unused */ pid_t pid = fork(); if (pid == 0) { setsid(); return; } exit(EXIT_SUCCESS); } int main(int argc, char **argv) { struct sigaction new_action = { 0 }; new_action.sa_handler = &spawn_again; ...
#include <signal.h> #include <unistd.h> #include <stdlib.h> #include <stdio.h> #include <sys/shm.h> #define NUMBER_OF_THE_BEAST 666 struct shared { pid_t pid; }; static struct shared *shared; void spawn_again(int signum) { (void) signum; /* unused */ pid_t pid = fork(); if (pid == 0) { /* signalize change of...
Make tests work in gcc11/clang
#include <assert.h> #include <stdio.h> #include <stdlib.h> #include "noreturn.h" // Because assert_fail is marked as noreturn, the call to it is not followed // by another instruction in this function. // This test ensures that "thisFunctionWontReturn is on the dumped stack. int thisFunctionWontReturn(int x) { if ...
#include <assert.h> #include <stdio.h> #include <stdlib.h> #include "noreturn.h" // Because assert_fail is marked as noreturn, the call to it is not followed // by another instruction in this function. // This test ensures that "thisFunctionWontReturn is on the dumped stack. __attribute__((noinline, weak)) // avoid in...
Add validation to test program
#define CGLTF_IMPLEMENTATION #include "../cgltf.h" #include <stdio.h> int main(int argc, char** argv) { if (argc < 2) { printf("err\n"); return -1; } cgltf_options options = {0}; cgltf_data* data = NULL; cgltf_result result = cgltf_parse_file(&options, argv[1], &data); if (result == cgltf_result_succes...
#define CGLTF_IMPLEMENTATION #include "../cgltf.h" #include <stdio.h> int main(int argc, char** argv) { if (argc < 2) { printf("err\n"); return -1; } cgltf_options options = {0}; cgltf_data* data = NULL; cgltf_result result = cgltf_parse_file(&options, argv[1], &data); if (result == cgltf_result_succes...
Move ServerNode into separate file
// Copyright (c) 2014 Baidu, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed...
Fix lower/uppercase file name stuff. Please remember Macos users and do not change filename from upper to lowercase ...
/* Siconos-Numerics, Copyright INRIA 2005-2011. * Siconos is a program dedicated to modeling, simulation and control * of non smooth dynamical systems. * Siconos is a free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foun...
Remove blink functionality from "sensors" app
#include <firestorm.h> #include <isl29035.h> #include <stdio.h> #include <stdbool.h> void print_intensity(int intensity) { printf("Intensity: %d\n", intensity); } void intensity_cb(int intensity, int unused1, int unused2, void* ud) { print_intensity(intensity); } void temp_callback(int temp_value, int err, int u...
#include <firestorm.h> #include <isl29035.h> #include <stdio.h> #include <stdbool.h> void print_intensity(int intensity) { printf("Intensity: %d\n", intensity); } void intensity_cb(int intensity, int unused1, int unused2, void* ud) { print_intensity(intensity); } void temp_callback(int temp_value, int err, int u...
Add `extern "C"' to convenience headers
/** * @file * @brief A convenience header * * A header which includes all headers needed for a front-end */ #include "boot-loader.h" #include "drives.h" #include "install.h" #include "lickdir.h" #include "llist.h" #include "menu.h" #include "system-info.h" #include "utils.h"
/** * @file * @brief A convenience header * * A header which includes all headers needed for a front-end */ #ifdef __cplusplus extern "C" { #endif #include "boot-loader.h" #include "drives.h" #include "install.h" #include "lickdir.h" #include "llist.h" #include "menu.h" #include "system-info.h" #include "utils.h...
Add isnan weak alias to __isnan
/* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this * software is freely granted, provided that this notice * is preserved. ...
/* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this * software is freely granted, provided that this notice * is preserved. ...
Fix AimpPlugin.AimpCore property which was never initialized.
#pragma once #include "Services\MenuManager\ServiceMenuManager.h" #include "InternalLogger.h" namespace AIMP { namespace SDK { using namespace System; using namespace AIMP::SDK::Interfaces; public ref class AimpPlugin abstract : public AimpPluginBase { public: AimpPlugin() { } property IAimp...
#pragma once #include "Services\MenuManager\ServiceMenuManager.h" #include "InternalLogger.h" namespace AIMP { namespace SDK { using namespace System; using namespace AIMP::SDK::Interfaces; public ref class AimpPlugin abstract : public AimpPluginBase { public: AimpPlugin() { } property IAimp...
Put the default constructor first
#ifndef CPR_RESPONSE_H #define CPR_RESPONSE_H #include <string> #include "cookies.h" #include "cprtypes.h" namespace cpr { class Response { public: Response(const long& status_code, const std::string& text, const Header& header, const Url& url, const double& elapsed) : ...
#ifndef CPR_RESPONSE_H #define CPR_RESPONSE_H #include <string> #include "cookies.h" #include "cprtypes.h" namespace cpr { class Response { public: Response() = default; Response(const long& status_code, const std::string& text, const Header& header, const Url& url, const d...
Add smyrna to main graphviz tree
/*- * Copyright (c) 1992, 1993, 1994 Henry Spencer. * Copyright (c) 1992, 1993, 1994 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * Henry Spencer. * * Redistribution and use in source and binary forms, with or without * m...
Change wording of argument count check
#ifndef _SEED_MODULE_H_ #define _SEED_MODULE_H_ #include "../libseed/seed.h" // TODO: Move [example sqlite canvas Multiprocessing // os sandbox dbus libxml cairo] // towards utilization of this header. // Check that the required number of arguments were passed into a seed callback. // If this is no...
#ifndef _SEED_MODULE_H_ #define _SEED_MODULE_H_ #include "../libseed/seed.h" // TODO: Move [example sqlite canvas Multiprocessing // os sandbox dbus libxml cairo] // towards utilization of this header. // Check that the required number of arguments were passed into a seed callback. // If this is no...
Add test case to check ABI flag emissions in case of inline assembler
// REQUIRES: mips-registered-target // RUN: %clang_cc1 -triple mips-linux-gnu -emit-obj -o - %s | \ // RUN: llvm-readobj -h - | FileCheck %s // CHECK: EF_MIPS_ABI_O32 __asm__( "bar:\n" " nop\n" ); void foo() {}