repo_name stringlengths 5 122 | path stringlengths 3 232 | text stringlengths 6 1.05M |
|---|---|---|
msharov/casycom | util.c | <gh_stars>1-10
// This file is part of the casycom project
//
// Copyright (c) 2015 by <NAME> <<EMAIL>>
// This file is free software, distributed under the ISC license.
#include "util.h"
#include <stdarg.h>
#if __has_include(<execinfo.h>)
#include <execinfo.h>
#endif
//{{{ Memory management ---------------------... |
msharov/casycom | vector.c | <filename>vector.c
// This file is part of the casycom project
//
// Copyright (c) 2015 by <NAME> <<EMAIL>>
// This file is free software, distributed under the ISC license.
#include "vector.h"
#include "util.h"
void vector_reserve (void* vv, size_t sz)
{
CharVector* v = vv;
if (v->allocated >= sz)
return;
... |
msharov/casycom | stm.c | <reponame>msharov/casycom
// This file is part of the casycom project
//
// Copyright (c) 2015 by <NAME> <<EMAIL>>
// This file is free software, distributed under the ISC license.
#include "stm.h"
const char* casystm_read_string (RStm* s)
{
uint32_t vlen = casystm_read_uint32 (s);
const char* v = s->_p;
... |
msharov/casycom | xcom.h | // This file is part of the casycom project
//
// Copyright (c) 2015 by <NAME> <<EMAIL>>
// This file is free software, distributed under the ISC license.
#pragma once
#include "main.h"
#include "vector.h"
#include <sys/socket.h>
#include <netinet/in.h>
#if !defined(NDEBUG) && !defined(UC_VERSION)
#include <arpa/i... |
msharov/casycom | io.c | <filename>io.c<gh_stars>1-10
// This file is part of the casycom project
//
// Copyright (c) 2015 by <NAME> <<EMAIL>>
// This file is free software, distributed under the ISC license.
#include "io.h"
#include "timer.h"
//{{{ IO interface -----------------------------------------------------
enum { method_IO_read, me... |
msharov/casycom | main.c | <reponame>msharov/casycom<gh_stars>1-10
// This file is part of the casycom project
//
// Copyright (c) 2015 by <NAME> <<EMAIL>>
// This file is free software, distributed under the ISC license.
#include "app.h"
#include "timer.h"
#include "vector.h"
#include <signal.h>
#include <stdarg.h>
#include <sys/wait.h>
//{{{... |
msharov/casycom | timer.c | <gh_stars>1-10
// This file is part of the casycom project
//
// Copyright (c) 2015 by <NAME> <<EMAIL>>
// This file is free software, distributed under the ISC license.
#include "timer.h"
#include "main.h"
#include "vector.h"
#include <time.h>
//----------------------------------------------------------------------
... |
muzle/NewsAggregator | NetworkPlatform/NetworkPlatform/NetworkPlatform.h | <gh_stars>0
#import <Foundation/Foundation.h>
//! Project version number for NetworkPlatform.
FOUNDATION_EXPORT double NetworkPlatformVersionNumber;
//! Project version string for NetworkPlatform.
FOUNDATION_EXPORT const unsigned char NetworkPlatformVersionString[];
// In this header, you should import all the publi... |
muzle/NewsAggregator | CoreDataPlatform/CoreDataPlatform/CoreDataPlatform.h | <gh_stars>0
#import <Foundation/Foundation.h>
//! Project version number for CoreDataPlatform.
FOUNDATION_EXPORT double CoreDataPlatformVersionNumber;
//! Project version string for CoreDataPlatform.
FOUNDATION_EXPORT const unsigned char CoreDataPlatformVersionString[];
// In this header, you should import all the p... |
hansemannn/titanium-sirikit | ios/Classes/TiSirikit.h | <filename>ios/Classes/TiSirikit.h
//
// TiSirikit.h
// titanium-sirikit
//
// Created by Your Name
// Copyright (c) 2019 Your Company. All rights reserved.
//
#import <UIKit/UIKit.h>
//! Project version number for TiSirikit.
FOUNDATION_EXPORT double TiSirikitVersionNumber;
//! Project version string for TiSiriki... |
jeroen/hdf5r | inst/CWrappers_1.10.2/headers/H5ACpublic.h | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5E.h | #ifndef _WRAPPER_AUTO_H5E_H_
#define _WRAPPER_AUTO_H5E_H_
#include "global.h"
/* H5_DLL herr_t H5Eauto_is_v2(hid_t err_stack, unsigned *is_stack); */
SEXP R_H5Eauto_is_v2(SEXP R_err_stack, SEXP R_is_stack);
/* H5_DLL herr_t H5Eclear2(hid_t err_stack); */
SEXP R_H5Eclear2(SEXP R_err_stack);
/* H5_DLL herr_t H5Eclose_msg... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5FDsec2.c | <filename>src/1_8_16/Wrapper_auto_H5FDsec2.c<gh_stars>10-100
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research Inc.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compl... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5G.h | <reponame>jeroen/hdf5r<gh_stars>10-100
#ifndef _WRAPPER_AUTO_H5G_H_
#define _WRAPPER_AUTO_H5G_H_
#include "global.h"
/* H5_DLL herr_t H5Gclose(hid_t group_id); */
SEXP R_H5Gclose(SEXP R_group_id);
/* H5_DLL hid_t H5Gcreate_anon(hid_t loc_id, hid_t gcpl_id, hid_t gapl_id); */
SEXP R_H5Gcreate_anon(SEXP R_loc_id, SEXP R_... |
jeroen/hdf5r | src/Wrapper_manual_H5T.h |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | inst/CWrappers_1.8.16/headers/H5PLextern.h | <gh_stars>10-100
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* All rights reserved. *
* ... |
jeroen/hdf5r | inst/CWrappers_1.12.0/auto_include.h |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_8_14/Wrapper_auto_H5.c | <gh_stars>10-100
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 ... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5F.h | #ifndef _WRAPPER_AUTO_H5F_H_
#define _WRAPPER_AUTO_H5F_H_
#include "global.h"
/* H5_DLL herr_t H5Fclear_elink_file_cache(hid_t file_id); */
SEXP R_H5Fclear_elink_file_cache(SEXP R_file_id);
/* H5_DLL herr_t H5Fclose(hid_t file_id); */
SEXP R_H5Fclose(SEXP R_file_id);
/* H5_DLL hid_t H5Fcreate(const char *filename, unsi... |
jeroen/hdf5r | src/Wrapper_manual_H5T.c | /**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licens... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5DS.h | #ifndef _WRAPPER_AUTO_H5DS_H_
#define _WRAPPER_AUTO_H5DS_H_
#include "global.h"
/* H5_HLDLL herr_t H5DSattach_scale( hid_t did, hid_t dsid, unsigned int idx); */
SEXP R_H5DSattach_scale(SEXP R_did, SEXP R_dsid, SEXP R_idx);
/* H5_HLDLL herr_t H5DSdetach_scale( hid_t did, hid_t dsid, unsigned int idx); */
SEXP R_H5DSdet... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5F.h | <reponame>jeroen/hdf5r
#ifndef _WRAPPER_AUTO_H5F_H_
#define _WRAPPER_AUTO_H5F_H_
#include "global.h"
/* H5_DLL herr_t H5Fclear_elink_file_cache(hid_t file_id); */
SEXP R_H5Fclear_elink_file_cache(SEXP R_file_id);
/* H5_DLL herr_t H5Fclose(hid_t file_id); */
SEXP R_H5Fclose(SEXP R_file_id);
/* H5_DLL hid_t H5Fcreate(con... |
jeroen/hdf5r | src/1_10_0/export_auto.h | #ifndef _EXPORT_AUTO_H_
#define _EXPORT_AUTO_H_
R_CallMethodDef library_WRAPPER_AUTO_H5[] = {
{"R_H5check_version", (DL_FUNC) &R_H5check_version, 3},
{"R_H5close", (DL_FUNC) &R_H5close, 0},
{"R_H5dont_atexit", (DL_FUNC) &R_H5dont_atexit, 0},
{"R_H5free_memory", (DL_FUNC) &R_H5free_memory, 2},
{"R_H5garbage_collect", (D... |
jeroen/hdf5r | inst/CWrappers_1.10.3/headers/H5version.h | <reponame>jeroen/hdf5r
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. ... |
jeroen/hdf5r | src/export_manual.h | <filename>src/export_manual.h
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research Inc.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You ... |
jeroen/hdf5r | src/1_8_16/const_export.h | <reponame>jeroen/hdf5r<filename>src/1_8_16/const_export.h
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research Inc.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in complianc... |
jeroen/hdf5r | src/1_10_0/Wrapper_auto_H5F.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | inst/CWrappers_1.10.3/headers/H5Rpublic.h | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5L.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_10_0/Wrapper_auto_H5P.h | <reponame>jeroen/hdf5r<filename>src/1_10_0/Wrapper_auto_H5P.h
#ifndef _WRAPPER_AUTO_H5P_H_
#define _WRAPPER_AUTO_H5P_H_
#include "global.h"
/* H5_DLL herr_t H5Padd_merge_committed_dtype_path(hid_t plist_id, const char *path); */
SEXP R_H5Padd_merge_committed_dtype_path(SEXP R_plist_id, SEXP R_path);
/* H5_DLL htri_t H5... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5.h | #ifndef _WRAPPER_AUTO_H5_H_
#define _WRAPPER_AUTO_H5_H_
#include "global.h"
/* H5_DLL herr_t H5check_version(unsigned majnum, unsigned minnum, unsigned relnum); */
SEXP R_H5check_version(SEXP R_majnum, SEXP R_minnum, SEXP R_relnum);
/* H5_DLL herr_t H5close(void); */
SEXP R_H5close(void);
/* H5_DLL herr_t H5dont_atexit... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5R.h | <reponame>jeroen/hdf5r
#ifndef _WRAPPER_AUTO_H5R_H_
#define _WRAPPER_AUTO_H5R_H_
#include "global.h"
/* H5_DLL herr_t H5Rcreate(void *ref, hid_t loc_id, const char *name, H5R_type_t ref_type, hid_t space_id); */
SEXP R_H5Rcreate(SEXP R_ref, SEXP R_loc_id, SEXP R_name, SEXP R_ref_type, SEXP R_space_id, SEXP _dupl_ref);
... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5I.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5O.h | #ifndef _WRAPPER_AUTO_H5O_H_
#define _WRAPPER_AUTO_H5O_H_
#include "global.h"
/* H5_DLL herr_t H5Oclose(hid_t object_id); */
SEXP R_H5Oclose(SEXP R_object_id);
/* H5_DLL herr_t H5Ocopy(hid_t src_loc_id, const char *src_name, hid_t dst_loc_id, const char *dst_name, hid_t ocpypl_id, hid_t lcpl_id); */
SEXP R_H5Ocopy(SEXP... |
jeroen/hdf5r | src/1_10_3/Wrapper_auto_H5T.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_10_3/Wrapper_auto_H5D.c | <reponame>jeroen/hdf5r
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 obt... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5FDfamily.h | #ifndef _WRAPPER_AUTO_H5FDFAMILY_H_
#define _WRAPPER_AUTO_H5FDFAMILY_H_
#include "global.h"
/* H5_DLL hid_t H5FD_family_init(void); */
SEXP R_H5FD_family_init(void);
/* H5_DLL herr_t H5Pget_fapl_family(hid_t fapl_id, hsize_t *memb_size, hid_t *memb_fapl_id); */
SEXP R_H5Pget_fapl_family(SEXP R_fapl_id, SEXP R_memb_size... |
jeroen/hdf5r | inst/CWrappers_1.8.12/headers/H5Ipublic.h | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... |
jeroen/hdf5r | inst/CWrappers_1.8.16/headers/H5IMpublic.h | <reponame>jeroen/hdf5r<gh_stars>100-1000
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. ... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5I.h | #ifndef _WRAPPER_AUTO_H5I_H_
#define _WRAPPER_AUTO_H5I_H_
#include "global.h"
/* H5_DLL herr_t H5Iclear_type(H5I_type_t type, hbool_t force); */
SEXP R_H5Iclear_type(SEXP R_type, SEXP R_force);
/* H5_DLL int H5Idec_ref(hid_t id); */
SEXP R_H5Idec_ref(SEXP R_id);
/* H5_DLL int H5Idec_type_ref(H5I_type_t type); */
SEXP R... |
jeroen/hdf5r | src/1_10_3/Wrapper_auto_H5S.h | #ifndef _WRAPPER_AUTO_H5S_H_
#define _WRAPPER_AUTO_H5S_H_
#include "global.h"
/* H5_DLL herr_t H5Sclose(hid_t space_id); */
SEXP R_H5Sclose(SEXP R_space_id);
/* H5_DLL hid_t H5Scopy(hid_t space_id); */
SEXP R_H5Scopy(SEXP R_space_id);
/* H5_DLL hid_t H5Screate(H5S_class_t type); */
SEXP R_H5Screate(SEXP R_type);
/* H5_... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5O.c | <filename>src/1_12_0/Wrapper_auto_H5O.c<gh_stars>10-100
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research Inc.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5FDsec2.h | #ifndef _WRAPPER_AUTO_H5FDSEC2_H_
#define _WRAPPER_AUTO_H5FDSEC2_H_
#include "global.h"
/* H5_DLL hid_t H5FD_sec2_init(void); */
SEXP R_H5FD_sec2_init(void);
/* H5_DLL void H5FD_sec2_term(void); */
SEXP R_H5FD_sec2_term(void);
/* H5_DLL herr_t H5Pset_fapl_sec2(hid_t fapl_id); */
SEXP R_H5Pset_fapl_sec2(SEXP R_fapl_id);... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5R.h | <filename>src/1_12_0/Wrapper_auto_H5R.h
#ifndef _WRAPPER_AUTO_H5R_H_
#define _WRAPPER_AUTO_H5R_H_
#include "global.h"
/* H5_DLL herr_t H5Rcopy(const H5R_ref_t *src_ref_ptr, H5R_ref_t *dst_ref_ptr); */
SEXP R_H5Rcopy(SEXP R_src_ref_ptr, SEXP R_dst_ref_ptr);
/* H5_DLL herr_t H5Rcreate(void *ref, hid_t loc_id, const char ... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5O.h | <reponame>jeroen/hdf5r<gh_stars>10-100
#ifndef _WRAPPER_AUTO_H5O_H_
#define _WRAPPER_AUTO_H5O_H_
#include "global.h"
/* H5_DLL herr_t H5Oare_mdc_flushes_disabled(hid_t object_id, hbool_t *are_disabled); */
SEXP R_H5Oare_mdc_flushes_disabled(SEXP R_object_id, SEXP R_are_disabled);
/* H5_DLL herr_t H5Oclose(hid_t object_... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5G.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5LT.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5FDstdio.h | <filename>src/1_12_0/Wrapper_auto_H5FDstdio.h
#ifndef _WRAPPER_AUTO_H5FDSTDIO_H_
#define _WRAPPER_AUTO_H5FDSTDIO_H_
#include "global.h"
/* H5_DLL hid_t H5FD_stdio_init(void); */
SEXP R_H5FD_stdio_init(void);
/* H5_DLL herr_t H5Pset_fapl_stdio(hid_t fapl_id); */
SEXP R_H5Pset_fapl_stdio(SEXP R_fapl_id);
#endif
|
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5DS.c | <gh_stars>10-100
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 ... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5Z.h | <reponame>jeroen/hdf5r
#ifndef _WRAPPER_AUTO_H5Z_H_
#define _WRAPPER_AUTO_H5Z_H_
#include "global.h"
/* H5_DLL htri_t H5Zfilter_avail(H5Z_filter_t id); */
SEXP R_H5Zfilter_avail(SEXP R_id);
/* H5_DLL herr_t H5Zget_filter_info(H5Z_filter_t filter, unsigned int *filter_config_flags); */
SEXP R_H5Zget_filter_info(SEXP R_f... |
jeroen/hdf5r | inst/CWrappers_1.12.0/headers/H5IMpublic.h | <filename>inst/CWrappers_1.12.0/headers/H5IMpublic.h
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. ... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5FDlog.h | <filename>src/1_8_16/Wrapper_auto_H5FDlog.h
#ifndef _WRAPPER_AUTO_H5FDLOG_H_
#define _WRAPPER_AUTO_H5FDLOG_H_
#include "global.h"
/* H5_DLL hid_t H5FD_log_init(void); */
SEXP R_H5FD_log_init(void);
/* H5_DLL void H5FD_log_term(void); */
SEXP R_H5FD_log_term(void);
/* H5_DLL herr_t H5Pset_fapl_log(hid_t fapl_id, const c... |
jeroen/hdf5r | inst/CWrappers_1.8.16/headers/H5DSpublic.h | <gh_stars>100-1000
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. ... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5TB.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | inst/CWrappers_1.12.0/headers/H5FDlog.h | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5R.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_12_0/datatype_export.c | /**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licens... |
jeroen/hdf5r | src/1_8_12/Wrapper_auto_H5E.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_10_3/Wrapper_auto_H5O.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5T.h | <gh_stars>10-100
#ifndef _WRAPPER_AUTO_H5T_H_
#define _WRAPPER_AUTO_H5T_H_
#include "global.h"
/* H5_DLL hid_t H5Tarray_create2(hid_t base_id, unsigned ndims, const hsize_t dim[]); */
SEXP R_H5Tarray_create2(SEXP R_base_id, SEXP R_ndims, SEXP R_dim);
/* H5_DLL herr_t H5Tclose(hid_t type_id); */
SEXP R_H5Tclose(SEXP R_t... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5D.h | <reponame>jeroen/hdf5r
#ifndef _WRAPPER_AUTO_H5D_H_
#define _WRAPPER_AUTO_H5D_H_
#include "global.h"
/* H5_DLL herr_t H5Dclose(hid_t dset_id); */
SEXP R_H5Dclose(SEXP R_dset_id);
/* H5_DLL hid_t H5Dcreate_anon(hid_t file_id, hid_t type_id, hid_t space_id, hid_t plist_id, hid_t dapl_id); */
SEXP R_H5Dcreate_anon(SEXP R_... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5FDcore.h | <reponame>jeroen/hdf5r
#ifndef _WRAPPER_AUTO_H5FDCORE_H_
#define _WRAPPER_AUTO_H5FDCORE_H_
#include "global.h"
/* H5_DLL herr_t H5Pget_fapl_core(hid_t fapl_id, size_t *increment, hbool_t *backing_store); */
SEXP R_H5Pget_fapl_core(SEXP R_fapl_id, SEXP R_increment, SEXP R_backing_store);
/* H5_DLL herr_t H5Pset_fapl_cor... |
jeroen/hdf5r | src/1_10_3/HelperStructs.h |
#ifndef _HELPER_STRUCTS_H
#define _HELPER_STRUCTS_H
typedef struct H5F_info1_helper_t {
hsize_t hdr_size;
H5_ih_info_t msgs_info;
} H5F_info1_helper_t;
typedef struct H5O_hdr_info_helper_space_t {
hsize_t total;
hsize_t meta;
hsize_t mesg;
hsize_t free;
} H5O_hdr_info_helper_space_t;
typedef stru... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5S.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_10_3/Wrapper_auto_H5P.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | inst/CWrappers_1.10.0/headers/H5Fpublic.h | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... |
jeroen/hdf5r | src/1_10_2/const_export.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/convert.h |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | inst/CWrappers_1.8.12/headers/H5Spublic.h | <filename>inst/CWrappers_1.8.12/headers/H5Spublic.h
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. ... |
jeroen/hdf5r | inst/CWrappers_1.8.16/headers/H5Opublic.h | <filename>inst/CWrappers_1.8.16/headers/H5Opublic.h
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. ... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5Z.c | <filename>src/1_8_16/Wrapper_auto_H5Z.c
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research Inc.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the Licens... |
jeroen/hdf5r | src/1_10_0/Wrapper_auto_H5R.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5IM.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5A.h | #ifndef _WRAPPER_AUTO_H5A_H_
#define _WRAPPER_AUTO_H5A_H_
#include "global.h"
/* H5_DLL herr_t H5Aclose(hid_t attr_id); */
SEXP R_H5Aclose(SEXP R_attr_id);
/* H5_DLL hid_t H5Acreate_by_name(hid_t loc_id, const char *obj_name, const char *attr_name, hid_t type_id, hid_t space_id, hid_t acpl_id, hid_t aapl_id, hid_t lapl... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5FDlog.c |
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licen... |
jeroen/hdf5r | src/H5ls.h | /**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 Licens... |
jeroen/hdf5r | inst/CWrappers_1.10.0/headers/H5public.h | <filename>inst/CWrappers_1.10.0/headers/H5public.h
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. ... |
jeroen/hdf5r | src/1_8_16/Wrapper_auto_H5IM.h | <reponame>jeroen/hdf5r
#ifndef _WRAPPER_AUTO_H5IM_H_
#define _WRAPPER_AUTO_H5IM_H_
#include "global.h"
/* H5_HLDLL herr_t H5IMget_image_info( hid_t loc_id, const char *dset_name, hsize_t *width, hsize_t *height, hsize_t *planes, char *interlace, hssize_t *npals ); */
SEXP R_H5IMget_image_info(SEXP R_loc_id, SEXP R_dset... |
jeroen/hdf5r | src/1_12_0/Wrapper_auto_H5FDcore.c | <reponame>jeroen/hdf5r
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 obt... |
jeroen/hdf5r | inst/CWrappers_1.8.16/headers/H5Tpublic.h | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... |
jeroen/hdf5r | src/convert.c | <filename>src/convert.c
/**************************************************************************
*
* Copyright 2016 Novartis Institutes for BioMedical Research 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 ob... |
fuyao19920730/testPod | Example/test/FTViewController.h | <gh_stars>0
//
// FTViewController.h
// test
//
// Created by <NAME> on 01/03/2020.
// Copyright (c) 2020 <NAME>. All rights reserved.
//
@import UIKit;
@interface FTViewController : UIViewController
@end
|
fuyao19920730/testPod | test/Classes/testpod.h | <reponame>fuyao19920730/testPod
//
// testpod.h
// Empty
//
// Created by fotoable on 2020/1/3.
// Copyright © 2020 fotoable. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface testpod : NSObject
@end
NS_ASSUME_NONNULL_END
|
fuyao19920730/testPod | Example/test/FTAppDelegate.h | //
// FTAppDelegate.h
// test
//
// Created by <NAME> on 01/03/2020.
// Copyright (c) 2020 <NAME>. All rights reserved.
//
@import UIKit;
@interface FTAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
|
pankajgree/myproj | pankaj_new.c | #include <stdio.h>
main()sdsiqwhsw
{
printf("my first checking");
printf("this is the first git file\n");
} |
pankajgree/myproj | pankaj1.c | <filename>pankaj1.c
#include<stdio.h>
void main()
{
prinf("hello DevOps");
}
|
trkinvincible/DaVinciOrderMatching | hdr/DaVinciDerivatives.h | <gh_stars>0
#pragma once
#include <set>
#include <string>
#include <iostream>
#include <string_view>
#include <iostream>
#include <iterator>
#include <vector>
#include <regex>
#include <unordered_map>
#include <chrono>
#include <sstream>
#include <limits>
#include <stack>
#include <map>
#include <thread>
#include <fut... |
trkinvincible/DaVinciOrderMatching | hdr/command.h | #pragma once
class Command
{
public:
virtual void execute()=0;
};
|
mohsinalimat/ExpenseManager | iRun/Classes/ViewControllers/AddExpenseViewController/IRAddExpenseViewController.h | //
// IRCategoryViewController.h
// ExpenseManager
//
// Created by <NAME> on 04/09/14.
// Copyright (c) 2014 Shibin. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "FPNumberPadView.h"
#import "IRCalenderViewController.h"
#import "IRCategoryTableViewCell.h"
#import "IRExpense.h"
typedef enum {
EMAdd,... |
mohsinalimat/ExpenseManager | iRun/FAQ/IRFAQAnswerCell.h | //
// GSFAQAnswerCell.h
// GoSafe
//
// Created by <NAME> on 19/03/14.
// Copyright (c) 2014 Tata Consultancy Services. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface IRFAQAnswerCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UITextView *answer;
@end
|
mohsinalimat/ExpenseManager | iRun/Classes/ViewControllers/MainViewController/IRMainViewController.h | //
// IRViewController.h
// iRun
//
// Created by <NAME> on 29/08/14.
// Copyright (c) 2014 Shibin. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "iAd/iAd.h"
@interface IRMainViewController : UIViewController<UITableViewDataSource,UITableViewDelegate,UICollectionViewDataSource,UICollectionViewDelegate,U... |
mohsinalimat/ExpenseManager | iRun/Classes/ViewControllers/HistoryViewController/IRHistoryViewController.h | //
// IRHistoryViewController.h
// ExpenseManager
//
// Created by <NAME> on 13/09/14.
// Copyright (c) 2014 Shibin. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
#import <iAd/iAd.h>
@interface IRHistoryViewController : UIViewController<NSFetchedResultsControllerDelegate,UITableVie... |
mohsinalimat/ExpenseManager | iRun/Classes/AppDelegate/IRAppDelegate.h | //
// IRAppDelegate.h
// iRun
//
// Created by <NAME> on 29/08/14.
// Copyright (c) 2014 Shibin. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface IRAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
|
mohsinalimat/ExpenseManager | iRun/Classes/CustomCells/IROverviewTableViewCell.h | //
// IROverviewTableViewCell.h
// ExpenseManager
//
// Created by <NAME> on 06/09/14.
// Copyright (c) 2014 Shibin. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface IROverviewTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *expenseLabel;
@property (assign, nonatomic) doubl... |
mohsinalimat/ExpenseManager | iRun/Classes/ViewControllers/FAQViewController/IRFAQViewController.h | <gh_stars>1-10
//
// IRFAQViewController.h
// ExpenseMobile
//
// Created by <NAME> on 05/06/15.
// Copyright (c) 2015 Shibin. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface IRFAQViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
@end
|
mohsinalimat/ExpenseManager | iRun/Classes/CustomCells/IRCategoryExpenseTableViewCell.h | //
// IRCategoryExpenseTableViewCell.h
// ExpenseManager
//
// Created by <NAME> on 08/09/14.
// Copyright (c) 2014 Shibin. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface IRCategoryExpenseTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *note;
@property (weak, nonatomic) I... |
mohsinalimat/ExpenseManager | iRun/Classes/Entity/CategoryGroup.h | //
// CategoryGroup.h
// ExpenseMobile
//
// Created by <NAME> on 28/05/15.
// Copyright (c) 2015 Shibin. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@class Expense;
@interface CategoryGroup : NSManagedObject
@property (nonatomic, retain) NSString * categoryName;
@pro... |
mohsinalimat/ExpenseManager | iRun/Classes/CustomViews/InfoView/IRInfoView.h | <filename>iRun/Classes/CustomViews/InfoView/IRInfoView.h
//
// IRInfoView.h
// iRun
//
// Created by <NAME> on 30/08/14.
// Copyright (c) 2014 Shibin. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface IRInfoView : UIView
@property (weak, nonatomic) IBOutlet UIButton *closeButton;
@property (weak, nonato... |
mohsinalimat/ExpenseManager | iRun/Classes/Common/IRCommon.h | <reponame>mohsinalimat/ExpenseManager
//
// IRCommon.h
// iRun
//
// Created by <NAME> on 30/08/14.
// Copyright (c) 2014 Shibin. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "IRCategory.h"
@interface IRCommon : NSObject
+ (void)showAlertWithTitle:(NSString *)title message:(NSString *)messag... |
mohsinalimat/ExpenseManager | iRun/Classes/Model/IRExpense.h | //
// IRExpense.h
// ExpenseManager
//
// Created by <NAME> on 04/09/14.
// Copyright (c) 2014 Shibin. All rights reserved.
//
#import <Foundation/Foundation.h>
@class Expense;
@interface IRExpense : NSObject
@property (nonatomic, strong) NSString *expenseId;
@property (nonatomic, strong) NSString * category;
@... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.