代码搜索:TRUNC
找到约 911 项符合「TRUNC」的源代码
代码结果 911
www.eeworm.com/read/493005/6403677
trunc
NAME
trunc - truncate a value to a number of decimal places
SYNOPSIS
trunc(x [,j])
TYPES
x real
j int
return real
DESCRIPTION
Truncate x to j decimal places. If j is omi
www.eeworm.com/read/387005/8713655
c trunc.c
/*
ftruncate test program
AUP2, Sec. 2.17 (not in book)
Copyright 2003 by Marc J. Rochkind. All rights reserved.
May be copied only for purposes and under conditions described
on the Web page ww
www.eeworm.com/read/164767/10089537
cc trunc.cc
#include
#include
#include "inode.h"
#include "fs.h"
#include "buf.h"
/* need not mark the indirect block buffer dirty */
int inode_t::truncate(int nindirect, minixzone_t *
www.eeworm.com/read/327324/13086376
c trunc.c
/*
ftruncate test program
AUP2, Sec. 2.17 (not in book)
Copyright 2003 by Marc J. Rochkind. All rights reserved.
May be copied only for purposes and under conditions described
on the Web page ww
www.eeworm.com/read/133329/5905761
d trunc.d
#pragma D option quiet
BEGIN
{
last = timestamp;
}
syscall:::entry
{
@func[execname] = count();
}
tick-10sec
{
trunc(@func, 10);
normalize(@func, (timestamp - last) / 1000000000);
printa(@func
www.eeworm.com/read/131315/5944559
c trunc.c
/*-
* Copyright (c) 1979, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are perm
www.eeworm.com/read/101082/6242831
c trunc.c
/* Copyright (c) 1979 Regents of the University of California */
static char sccsid[] = "@(#)TRUNC.c 1.2 3/7/81";
long
TRUNC(value)
double value;
{
return (long)(value);
}
www.eeworm.com/read/158498/11609522
bas trunc.bas
Option Explicit
Function Trunc& (num#)
Dim t$, i%
Static dec_sep$
If dec_sep$ = "" Then dec_sep$ = GetPrivateProfileString$("intl", "sDecimal", "WIN.INI")
t$ = CStr(num#)
i% = InS
www.eeworm.com/read/226567/14458633