repo_name stringlengths 6 97 | path stringlengths 3 341 | text stringlengths 8 1.02M |
|---|---|---|
josnelihurt/algorithms | cpp-src/src/algorithms/hacker-rank/implementation/divisible_sum_pairs.h |
#include <bits/stdc++.h>
#include <vector>
namespace divisible_sum_pairs{
int divisibleSumPairs(int n, int k, std::vector<int> ar);
}
|
josnelihurt/algorithms | cpp-src/src/tools/functions.h |
int getRandomValue(); |
josnelihurt/algorithms | cpp-src/src/data-structures/tree/avl/avl_tree.h | <reponame>josnelihurt/algorithms
#pragma once
namespace avl{
struct node{
int val;
struct node* left;
struct node* right;
int ht;
};
//utils functions
int max(int l, int r);
//newNode creates a new instance of the node
node* newNode(int val);
//insert insets... |
josnelihurt/algorithms | cpp-src/src/algorithms/hacker-rank/search/icecream_parlor.h | <reponame>josnelihurt/algorithms<filename>cpp-src/src/algorithms/hacker-rank/search/icecream_parlor.h
#include <vector>
namespace icecream_parlor{
//Function definition goes here
std::vector<int> icecreamParlor(int m, std::vector<int> arr);
} |
josnelihurt/algorithms | cpp-src/src/algorithms/hacker-rank/implementation/breaking_best_and_worst_records.h |
#include <bits/stdc++.h>
#include <vector>
namespace breaking_best_and_worst_records{
std::vector<int> breakingRecords(std::vector<int> scores);
}
|
josnelihurt/algorithms | cpp-src/src/algorithms/hacker-rank/strings/camelcase.h | <filename>cpp-src/src/algorithms/hacker-rank/strings/camelcase.h
#include <string>
namespace camelcase{
//Function definition goes here
int camelcase(std::string s);
} |
finncyr/Drum_maschine | software/DM_final_PIO_solution_bsp/system.h | <gh_stars>1-10
/*
* system.h - SOPC Builder system and BSP software package information
*
* Machine generated for CPU 'CPU' in SOPC Builder design 'nios_system'
* SOPC Builder design path: C:/Sciebo/THK/DTS/Drum_maschine/_known_working_sdram/nios_system.sopcinfo
*
* Generated: Thu Jan 23 10:23:12 CET 2020
*/
/*... |
finncyr/Drum_maschine | software/DM_PIO_Ansatz_bsp/drivers/inc/altera_up_avalon_usb_ptd.h | <reponame>finncyr/Drum_maschine<gh_stars>1-10
/******************************************************************************
* *
* License Agreement *
* ... |
finncyr/Drum_maschine | software/DM_final_PIO_solution/main.c | /*
* main.c
*
* This is the Main IO Functions of the Drum Maschine
*
* 7Segments from Left to Right: [7][6] [5][4] [3][2][1][0]
* 7-6:
* 5-4: Bank Number
* 3-0: BPM
*
* Buttons from Left to Right: [1] [2] [3] [4]
* 1: Play/Pause
* 2: BPM up/down in Steps of 10 (Range: 60-240)
* 3: ... |
finncyr/Drum_maschine | software/DM_PIO_Ansatz_bsp/drivers/src/altera_up_avalon_usb_low_level_driver.c | /******************************************************************************
* *
* License Agreement *
* ... |
finncyr/Drum_maschine | software/DM_PIO_Ansatz_bsp/drivers/inc/altera_up_avalon_usb_regs.h | /******************************************************************************
* *
* License Agreement *
* ... |
finncyr/Drum_maschine | software/DM_PIO_Ansatz_bsp/drivers/src/altera_up_avalon_usb_ptd.c | /******************************************************************************
* *
* License Agreement *
* ... |
finncyr/Drum_maschine | software/DM_PIO_Ansatz_bsp/drivers/inc/altera_up_avalon_character_lcd.h | #ifndef __ALTERA_UP_AVALON_CHARACTER_LCD_H__
#define __ALTERA_UP_AVALON_CHARACTER_LCD_H__
#include <stddef.h>
#include "sys/alt_dev.h"
#include "sys/alt_alarm.h"
#include "sys/alt_warning.h"
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
/*
* Device structure definition. Each instance of t... |
finncyr/Drum_maschine | software/DM_PIO_Ansatz_bsp/drivers/src/altera_up_avalon_irda.c | /******************************************************************************
* *
* License Agreement *
* ... |
finncyr/Drum_maschine | software/DM_PIO_Ansatz_bsp/drivers/src/Altera_UP_SD_Card_Avalon_Interface.c | /******************************************************************************
* *
* License Agreement *
* ... |
finncyr/Drum_maschine | software/DM_PIO_Ansatz/main.h | /*
* DM_IO.h
*
* This is the Header File for the Main IO of the Drum Maschine.
* It contains all includes and defines.
*
* The SRAM is defined as follows:
*
* SRAM_BASE -> | patterns | BPM | Play/Pause | SD Files |
* | 64 bit | 16 bit | 8 bit ... |
finncyr/Drum_maschine | software/DM_PIO_Ansatz_bsp/drivers/inc/altera_up_avalon_character_lcd_regs.h | /******************************************************************************
* *
* License Agreement *
* ... |
so1h/so1 | PRACT0/SO1PUB/LL_S_SO1/WAITPID.c | <gh_stars>0
#include <so1pub.h\ll_s_so1.h>
pid_t waitpid ( pid_t pid, int far * statloc )
{
asm
{
mov bx,pid ;
les dx,statloc ;
mov ax,WAITPID ;
int nVIntSO1 ;
}
return(_AX) ;
} |
so1h/so1 | PRACT0/SO1PUB/LL_S_SO1/EXIT.c | #include <so1pub.h\ll_s_so1.h>
void exit ( int status )
{
asm
{
mov bx,status ;
mov ax,EXIT ;
int nVIntSO1 ;
}
} |
ondrejnovakcvut/ThermistorLibrary | src/tables/thermistortable_148.h | <filename>src/tables/thermistortable_148.h<gh_stars>0
/**
* Marlin 3D Printer Firmware
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (C) 2011 <NAME> / <NAME>
*
* This program is free software: you can redistribute it and/or modify
* it... |
ondrejnovakcvut/ThermistorLibrary | src/tables/thermistortable_80.h | <reponame>ondrejnovakcvut/ThermistorLibrary
const short temptable_80[][2] PROGMEM = {
{ OV(21.5), 300 },
{ OV(23.0625), 295 },
{ OV(24.8125), 290 },
{ OV(26.75), 285 },
{ OV(28.8125), 280 },
{ OV(31.125), 275 },
{ OV(33.625), 270 },
{ OV(36.375), 265 },
{ OV(39.375), 260 },
{ OV(42.6875), 255 },
{ OV(46.3125)... |
lukewli/pa01_lukewli | cards.h | <reponame>lukewli/pa01_lukewli
// cards.h
#ifndef CardBST_H
#define CardBST_H
#include <iostream>
#include <string>
using namespace std;
class CardBST {
private:
struct Node {
string suit;
string rank;
Node *left, *right, *parent;
// useful constructor:
Node(string s = "", string r = "") : sui... |
masteranza/qprop | base/factorial.h | <reponame>masteranza/qprop
#ifndef factorial_h
#define factorial_h factorial_h
#include <stdio.h>
#include <stdlib.h>
double factorial(long n);
#endif // factorial_h
|
masteranza/qprop | base/wavefunction.h | <gh_stars>0
#define __STDCPP_WANT_MATH_SPEC_FUNCS__ 1
#ifndef wavefunction_h
#define wavefunction_h wavefunction_h
#include <iostream>
#include <assert.h>
#include <complex>
#include <fstream>
#include <cmath>
#include <cstdlib>
#include <string>
#include <factorial.h>
using namespace std;
void f(double, double[], do... |
masteranza/qprop | base/gfunc.h | <gh_stars>0
#ifndef gfunc
#define gfunc gfunc
#include <wavefunction.h>
#include <grid.h>
#include <fluid.h>
class grid;
class hamop;
class wavefunction;
//
// Applies a Green's function operator 1/(H-Ek) to the wavefunction
//
void gfunc(wavefunction &psi_at_RI, wavefunction &d_psi_dr_at_RI,
double energ... |
masteranza/qprop | base/fluid.h | <gh_stars>0
#ifndef fluid_h
#define fluid_h fluid_h
#include<assert.h>
#include<iostream>
#include<fstream>
#include<cmath>
#include<cstdlib>
#include<string>
using namespace std;
class grid;
class hamop;
class wavefunction;
class fluid
{
public:
fluid(long x=0) : fluid_dim(x), start(new double[x]) { }
flui... |
masteranza/qprop | base/ylm.h | #ifndef ylm_h
#define ylm_h ylm_h
#include<iostream>
#include<cmath>
#include<complex>
#include<factorial.h>
typedef std::complex<double> cplxd;
using namespace std;
cplxd ylm(long l, long m, double theta, double phi);
cplxd ylm2(long l, long m, double theta, double phi);
#endif // ylm_h
|
masteranza/qprop | base/hamop.h | <filename>base/hamop.h
#ifndef hamop_h
#define hamop_h hamop_h
#include <functional>
#include <complex>
#include <iostream>
#include <cmath>
#include <cstdlib>
#include <grid.h>
// using namespace std;
class wavefunction;
class fluid;
class hamop
{
public:
hamop(grid g,
std::function<double(double, int)> fpx,
... |
masteranza/qprop | base/bar.h | #ifndef bar_h
#define bar_h bar_h
#include<stdio.h>
#include<math.h>
#include<time.h>
bool is_time(double time_interval_s);
int put_progress_bar(FILE*,char *,long step,long no_of_steps,long len_of_bar);
int put_progress_counter(FILE*, long st, long no_st, long len, int ind);
int put_progress_counter(FILE* file, const ... |
masteranza/qprop | base/winop.h | #ifndef winop_h
#define winop_h winop_h
#include<wavefunction.h>
#include<grid.h>
#include<fluid.h>
class grid;
class hamop;
class wavefunction;
//
// Applies a window operator W(energy, gamma) to the wavefunction
//
int winop_fullchi(wavefunction &fullchi, wavefunction &spec_result_lsub,
cplxd *spec_result_tot, d... |
XPliant/OpenXPS | include/openXpsAging.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
XPliant/OpenXPS | include/openXpsPlatformInterface.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
XPliant/OpenXPS | xpnet/include/xp_header.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* 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; version 2
* ... |
XPliant/OpenXPS | include/openXpsInit.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
XPliant/OpenXPS | xpnet/include/xp_export.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* 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; version 2
* ... |
XPliant/OpenXPS | xpnet/src/xp_pcie_slave.c | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* 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; version 2
* ... |
XPliant/OpenXPS | include/openXpsReasonCodeTable.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
XPliant/OpenXPS | xpnet/include/xp_common.h | <filename>xpnet/include/xp_common.h
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* 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 Fr... |
XPliant/OpenXPS | xpnet/include/xp_netdev.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* 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; version 2
* ... |
XPliant/OpenXPS | include/openXpsEnums.h | <gh_stars>10-100
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy ... |
XPliant/OpenXPS | include/openXpsPort.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
XPliant/OpenXPS | include/openXpsFdb.h | <filename>include/openXpsFdb.h
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtai... |
XPliant/OpenXPS | xpnet/src/xp_netdev_core.c | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* 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; versio... |
XPliant/OpenXPS | include/openXpsSalInterface.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
XPliant/OpenXPS | xpnet/include/xp_reg_info.h | <gh_stars>10-100
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* 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 Foundat... |
XPliant/OpenXPS | xpnet/src/xp_netdev_proc.c | <filename>xpnet/src/xp_netdev_proc.c
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* 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 F... |
XPliant/OpenXPS | include/openXpsPolicer.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
XPliant/OpenXPS | include/openXpsQos.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
XPliant/OpenXPS | include/openXpsAcm.h | //
// openXpsAcm.h
//
/************************************************************************/
/* Copyright (c) [2011-2015] Cavium, Inc. All rights reserved. */
/* Unpublished - rights reserved under the Copyright Laws of the */
/* United States. Use, duplication, or di... |
XPliant/OpenXPS | include/openXpsL3.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
XPliant/OpenXPS | include/openXpsIacl.h | //
// openXpsIacl.h
//
/************************************************************************/
/* Copyright (c) [2011-2015] Cavium, Inc. All rights reservered. Confidential. */
/* Unpublished - rights reserved under the Copyright Laws of the */
/* United States. Use, duplication, or... |
XPliant/OpenXPS | include/openXpsPacketDrv.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
XPliant/OpenXPS | xpnet/include/version.h | <reponame>XPliant/OpenXPS<gh_stars>10-100
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* 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 ... |
XPliant/OpenXPS | include/openXpsTcamMgr.h | <gh_stars>10-100
// openXpsTcamMgr.h
/************************************************************************/
/* Copyright (c) [2011-2015] Cavium, Inc. All rights reserved. */
/* Unpublished - rights reserved under the Copyright Laws of the */
/* United States. Use, dup... |
XPliant/OpenXPS | include/openXpsOpenflow.h | <filename>include/openXpsOpenflow.h
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may ... |
XPliant/OpenXPS | include/openXpsVlan.h | <gh_stars>10-100
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy ... |
XPliant/OpenXPS | include/openXpsStp.h | <filename>include/openXpsStp.h<gh_stars>10-100
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the Licens... |
XPliant/OpenXPS | include/openXpsAclIdMgr.h | <filename>include/openXpsAclIdMgr.h
// openXpsAclIdMgr.h
/************************************************************************/
/* Copyright (c) [2011-2015] Cavium, Inc. All rights reserved. */
/* Unpublished - rights reserved under the Copyright Laws of the */
/* Unit... |
XPliant/OpenXPS | include/openXpsMac.h | <reponame>XPliant/OpenXPS<gh_stars>10-100
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. Yo... |
XPliant/OpenXPS | xpnet/src/xp_netdev_intf.c | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* 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; versio... |
XPliant/OpenXPS | include/openXpsInterface.h | <filename>include/openXpsInterface.h
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may... |
XPliant/OpenXPS | include/openXpsLag.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
XPliant/OpenXPS | xpnet/include/xp_pcie_slave.h | <reponame>XPliant/OpenXPS<gh_stars>10-100
/************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* 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 ... |
XPliant/OpenXPS | include/openXpsTypes.h | /************************************************************************
* Copyright (C) 2016, Cavium, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at... |
maxi376/utcn-imp | lab5.c | <reponame>maxi376/utcn-imp<filename>lab5.c
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#define LETTER 257
#define NEWLINE '\n'
int symbol;
char yylval;
typedef struct _tree {
struct _tree *left, *right;
char k;
}tree;
void next_symbol();
void error(int line);
tree *E();
tree *F();
tree *T();
tree *P(... |
fmgoncalves/tectonic | tectonic/dpx-dvipdfmx.c | <gh_stars>1-10
/* This is (x)dvipdfmx, an extended version of...
DVIPDFMx, an eXtended version of DVIPDFM by <NAME>.
Copyright (C) 2002-2017 by <NAME>, <NAME>, and <NAME>,
the DVIPDFMx project team.
Copyright (c) 2006 SIL. (xdvipdfmx extensions for XeTeX support)
Copyright (C) 1998, 1999 by <NAM... |
fmgoncalves/tectonic | tectonic/dpx-cff_types.h | <gh_stars>1-10
/* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
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 ... |
fmgoncalves/tectonic | tectonic/dpx-pdfdev.c | <gh_stars>1-10
/* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Ge... |
fmgoncalves/tectonic | tectonic/core-strutils.h | /* tectonic/core-strutils.h: miscellaneous C string utilities
Copyright 2016-2018 the Tectonic Project
Licensed under the MIT License.
*/
#ifndef TECTONIC_CORE_STRUTILS_H
#define TECTONIC_CORE_STRUTILS_H
#include "core-foundation.h"
#ifndef isblank
#define isblank(c) ((c) == ' ' || (c) == '\t')
#endif
#define ... |
fmgoncalves/tectonic | tectonic/dpx-dpxconf.h | /* This is DVIPDFMx, an eXtended version of DVIPDFM by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public Li... |
fmgoncalves/tectonic | tectonic/dpx-pdfdoc.h | <reponame>fmgoncalves/tectonic<filename>tectonic/dpx-pdfdoc.h
/* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2007-2017 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and... |
fmgoncalves/tectonic | tectonic/dpx-pst.c | /* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public Li... |
fmgoncalves/tectonic | tectonic/dpx-cs_type2.c | <filename>tectonic/dpx-cs_type2.c<gh_stars>1-10
/* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public Lice... |
fmgoncalves/tectonic | tectonic/dpx-cmap.h | <filename>tectonic/dpx-cmap.h
/* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published b... |
fmgoncalves/tectonic | tectonic/xetex-XeTeXFontInst_Mac.h | <gh_stars>1-10
/****************************************************************************\
Part of the XeTeX typesetting system
Copyright (c) 1994-2008 by SIL International
Copyright (c) 2009 by <NAME>
Copyright (c) 2012, 2013 by <NAME>
SIL Author(s): <NAME>
Permission is hereby granted, free of charge, to an... |
fmgoncalves/tectonic | tectonic/dpx-subfont.c | /* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
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;... |
fmgoncalves/tectonic | tectonic/dpx-unicode.c | <reponame>fmgoncalves/tectonic
/* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and/or modify
it under the ter... |
fmgoncalves/tectonic | tectonic/dpx-dpxfile.c | /* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2007-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License a... |
fmgoncalves/tectonic | tectonic/dpx-cmap.c | /* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
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;... |
fmgoncalves/tectonic | tectonic/dpx-spc_pdfm.c | /* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2007-2017 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public Li... |
fmgoncalves/tectonic | tectonic/dpx-pdfcolor.h | /* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public Li... |
fmgoncalves/tectonic | tectonic/dpx-cmap_read.c | /* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License... |
fmgoncalves/tectonic | tectonic/dpx-pdfdev.h | <reponame>fmgoncalves/tectonic
/* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and/or modify
it under the ter... |
fmgoncalves/tectonic | tectonic/xetex-shipout.c | /* Copyright 2016-2018 The Tectonic Project
* Licensed under the MIT License.
*/
#include "xetex-core.h"
#include "xetex-xetexd.h"
#include "xetex-synctex.h"
#include "core-bridge.h"
#define DVI_BUF_SIZE 16384
#define HALF_BUF 8192
#define FNT_NUM_0 171 /* DVI code */
static rust_output_handle_t dvi_file;
static ... |
fmgoncalves/tectonic | tectonic/dpx-error.c | /* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License... |
fmgoncalves/tectonic | tectonic/dpx-tfm.c | /* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by <NAME> <<EMAIL>>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License... |
fmgoncalves/tectonic | tectonic/core-bridge.c | <gh_stars>0
/* tectonic/core-bridge.c: the C/C++ => Rust bridge
Copyright 2017 the Tectonic Project
Licensed under the MIT License.
*/
#include "core-bridge.h"
#include <setjmp.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h> /*vsnprintf*/
/* TODO: these are needed for the various *_main routines... |
fmgoncalves/tectonic | tectonic/dpx-tt_glyf.h | <filename>tectonic/dpx-tt_glyf.h<gh_stars>1-10
/* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public Licen... |
fmgoncalves/tectonic | tectonic/dpx-t1_char.h | <filename>tectonic/dpx-t1_char.h
#ifndef _T1_CSTR_H_
#define _T1_CSTR_H_
#include "dpx-core.h"
#include "dpx-cff_types.h"
typedef struct {
int use_seac;
double wx, wy;
struct {
double llx, lly, urx, ury;
} bbox;
struct {
double asb, adx, ady;
card8 bchar, achar;
} seac;
} t1_ginfo;
int t1ch... |
fmgoncalves/tectonic | tectonic/xetex-scaledmath.c | <gh_stars>1-10
/* tectonic/xetex-scaledmath.c: low-level math functions
Copyright 2017 The Tectonic Project
Licensed under the MIT License.
*/
#include "xetex-core.h"
#include "xetex-xetexd.h"
int32_t
tex_round (double r)
{
/* We must reproduce very particular rounding semantics to pass the TRIP
* tes... |
fmgoncalves/tectonic | tectonic/core-memory.c | /* tectonic/core-memory.c: basic C dynamic memory helpers
Copyright 1993, 1994, 1995, 2008, 2009, 2010, 2011 <NAME>.
Copyright 1997, 2002, 2005 <NAME>.
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 Fr... |
fmgoncalves/tectonic | tectonic/core-memory.h | /* tectonic/core-memory.h: basic dynamic memory helpers
Copyright 2016-2018 the Tectonic Project
Licensed under the MIT License.
*/
#ifndef TECTONIC_CORE_MEMORY_H
#define TECTONIC_CORE_MEMORY_H
#include "core-foundation.h"
BEGIN_EXTERN_C
char *xstrdup (const char *s);
void *xmalloc (size_t size);
void *xreall... |
fmgoncalves/tectonic | tectonic/dpx-core.h | <gh_stars>1-10
/* tectonic/dpx-core.h: core header for xdvipdvmx C code
Copyright 2018 the Tectonic Project
Licensed under the MIT License.
*/
#ifndef TECTONIC_DPX_CORE_H
#define TECTONIC_DPX_CORE_H
#include "core-foundation.h"
#include "core-bridge.h"
#include "core-memory.h"
#include "core-strutils.h"
#endif... |
fmgoncalves/tectonic | tectonic/dpx-cs_type2.h | /* This is dvipdfmx, an eXtended version of dvipdfm by <NAME>.
Copyright (C) 2002-2016 by <NAME> and <NAME>,
the dvipdfmx project team.
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 Founda... |
sebastienvas/esp | src/api_manager/context/service_context.h | <reponame>sebastienvas/esp<filename>src/api_manager/context/service_context.h<gh_stars>0
/* Copyright (C) Extensible Service Proxy Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a c... |
sebastienvas/esp | src/nginx/grpc_queue.h | /*
* Copyright (C) Extensible Service Proxy Authors
* 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 ... |
sebastienvas/esp | src/grpc/zero_copy_stream.h | <reponame>sebastienvas/esp<filename>src/grpc/zero_copy_stream.h
/*
* Copyright (C) Extensible Service Proxy Authors
* 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... |
sebastienvas/esp | src/nginx/zero_copy_stream.h | /*
* Copyright (C) Extensible Service Proxy Authors
* 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 ... |
typesAreSpaces/AXDInterpolator | include/AXDInterpolant.h | <reponame>typesAreSpaces/AXDInterpolator
#ifndef _AXD_INTERPOLANT_
#define _AXD_INTERPOLANT_
#include "z3++.h"
#include <iostream>
#include <utility>
#include <set>
#include <cstring>
#include <fstream>
#include "Preprocess.h"
#include "StandardInput.h"
#define _DEBUG_AXD_LOOP_ 0
#define _DEBUG_AXD_CONSTRUC... |
typesAreSpaces/AXDInterpolator | include/StandardInput.h | <reponame>typesAreSpaces/AXDInterpolator<gh_stars>0
#ifndef _STANDARD_INPUT_
#define _STANDARD_INPUT_
#include "z3++.h"
#define _DEBUG_STDINPUT_ 0
#ifndef NDEBUG
# define ASSERT(condition, message) \
do { \
if (! (condition)) { \
std::cerr << "Assertion `" #condition "` failed in " << __FILE__ \
<... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.