代码搜索:Convert
找到约 10,000 项符合「Convert」的源代码
代码结果 10,000
www.eeworm.com/read/469304/1481390
java talkclientapplet.java
/*
* Java(TM) SE 6 version.
* Exercise for the reader: Convert this applet to use SwingWorker
* and Timer. SwingWorker can be downloaded at:
* https://swingworker.dev.java.net/
* SwingWorker must
www.eeworm.com/read/456296/1606540
awk packetdat.awk
BEGIN {
# we need to know (usual) packet size to convert byte numbers
# to packet numbers
if (packetsize
www.eeworm.com/read/455463/1614504
m strvec2mat.m
function smat=strvec2mat(svec)
% Given a string vector with possibly more than one logical
% field in it with fields separated by a '|'. Convert vector
% into a string matrix with each field on a sep
www.eeworm.com/read/249895/4445015
java patriciatriekey.java
package org.garret.perst;
/**
* Convert different type of keys to 64-bit long value used in PATRICIA trie
* (Practical Algorithm To Retrieve Information Coded In Alphanumeric)
*/
public cl
www.eeworm.com/read/240162/4588943
c udconvert.c
double
unsigned_to_double1 (u)
unsigned u;
{
double d;
d = (int) u; /* convert as from a *signed* integer */
return ((int) u < 0)
? d + 4294967296.0
: d;
}
/* Alternatively */
www.eeworm.com/read/233554/4666177
c tstotv.c
/*
* tstotv - tables for converting from NTP time stamps to struct timeval
*/
#include "ntp_types.h"
/*
* Tables to convert from a time stamp fraction to usecs. Note that
* the units of these t
www.eeworm.com/read/233448/4681570
f90 int_1.f90
! { dg-do run }
!
! 13.7.53 INT(A [, KIND])
!
! Description. Convert to integer type.
! Class. Elemental function.
! Arguments.
! A shall be of type integer, real, or comple
www.eeworm.com/read/233448/4682375
c mzero6.c
/* Tail call optimizations would convert func() into the moral equivalent of:
double acc = 0.0;
for (int i = 0; i
www.eeworm.com/read/233448/4682947
c udconvert.c
double
unsigned_to_double1 (u)
unsigned u;
{
double d;
d = (int) u; /* convert as from a *signed* integer */
return ((int) u < 0)
? d + 4294967296.0
: d;
}
/* Alternatively */