代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/352327/10563513
h utils.h
/** Header for utilities.
* functions for vectors, window functions, ...
*/
#ifndef utils_h_inc
#define utils_h_inc
#include
#include
#include
#include
www.eeworm.com/read/352165/10576960
em utils.em
/* Utils.em - a small collection of useful editing macros */
/*-------------------------------------------------------------------------
I N S E R T H E A D E R
Inserts a comment header
www.eeworm.com/read/351797/10609794
hh utils.hh
/******************************************************************************
File : utils.hh
Date : Wednesday 13th September 2000
Author : Dr Gavin C. Cawley
Descript
www.eeworm.com/read/422570/10629651
c utils.c
#include "utils.h"
/*
* given log(a) and log(b), return log(a + b)
*
*/
double log_sum(double log_a, double log_b)
{
double v;
if (log_a < log_b)
{
v = log_b+log(1 + exp(log_a-log_b)
www.eeworm.com/read/422570/10629712
h utils.h
#ifndef UTILS_H
#define UTILS_H
#include
#include
#include
#include
#include
#include
double log_sum(double log_a, double log_b);
d
www.eeworm.com/read/351669/10631188
h utils.h
#ifndef __UTILS_H
#define __UTILS_H
#include"csl.h"
//void memcpy(void *s1, const void *s2, int n);
//void memset(void *s, const char ch, int n);
unsigned short ntohs(unsigned short s);
Ui
www.eeworm.com/read/351669/10631377
c utils.c
#include "utils.h"
/*
void memcpy(void *s1, const void *s2, int n)
{
int i;
for (i = 0; i < n; i++)
((char *)(s1))[i] = ((const char *)(s2))[i];
}
void memset(void *s, const char ch,
www.eeworm.com/read/351619/10635046
h utils.h
#ifndef __UTILS_H
#define __UTILS_H
void memcpy(void *s1, const void *s2, int n);
void memset(void *s, const char ch, int n);
unsigned short ntohs(unsigned short s);
unsigned long ntohl(unsigne
www.eeworm.com/read/351619/10635075
o utils.o
www.eeworm.com/read/351619/10635147
c utils.c
#include "../inc/def.h"
#include "../inc/board.h"
#include "../inc/utils.h"
void memcpy(void *s1, const void *s2, int n)
{
int i;
for (i = 0; i < n; i++)
((char *)(s1))[i] = ((const cha