代码搜索:Times
找到约 10,000 项符合「Times」的源代码
代码结果 10,000
www.eeworm.com/read/282413/9096998
cmd times.cmd
times.obj
-o times.out
-m times.map
MEMORY
{PAGE 0:RAM1: origin =1000h ,length =500h
PAGE 1:SPRAM1: origin=0060h,length=20h
SPRAM2: origin=0100h,length=200h
}
SECTIONS
{
.text :
www.eeworm.com/read/282413/9097003
map times.map
******************************************************************************
TMS320C54x COFF Linker PC Version 3.70
******************************************************
www.eeworm.com/read/282413/9097005
asm times.asm
.mmregs
.def _c_int00
STACK .usect "STACK",100h
t0_cout .usect "vars",1 ;计数器
t0_flag .usect "vars",1 ;当前XF输出电平标志。t0_flag=1,则XF=1;
;t0_flag=0,则XF=0
TVAL .set 1639 ;1640(10
www.eeworm.com/read/282413/9097014
out times.out
www.eeworm.com/read/282413/9097015
pjt times.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="D:\ti\myprojects\times\"
ProjectType=Executable
CPUFamily=TMS320C54XX
Tool="Compiler
www.eeworm.com/read/380485/9145334
h times.h
#ifndef _TIMES_H
#define _TIMES_H
#include
struct tms {
time_t tms_utime;
time_t tms_stime;
time_t tms_cutime;
time_t tms_cstime;
};
extern time_t times(struct tms * tp);
#endif
www.eeworm.com/read/379736/9179703
h times.h
#ifndef _TIMES_H
#define _TIMES_H
#include
struct tms {
time_t tms_utime;
time_t tms_stime;
time_t tms_cutime;
time_t tms_cstime;
};
extern time_t times(struct tms * tp);
#endif
www.eeworm.com/read/379714/9181049
h times.h
#ifndef _TIMES_H
#define _TIMES_H
#include
struct tms {
time_t tms_utime;
time_t tms_stime;
time_t tms_cutime;
time_t tms_cstime;
};
extern time_t times(struct tms * tp);
#endif
www.eeworm.com/read/379711/9181858
h times.h
#ifndef _LINUX_TIMES_H
#define _LINUX_TIMES_H
struct tms {
clock_t tms_utime;
clock_t tms_stime;
clock_t tms_cutime;
clock_t tms_cstime;
};
#endif
www.eeworm.com/read/181830/9235721
m times.m
function Q = times(P1,P2)
% TIMES -- elementwise product of matrix polynomial objects
%
% Q = P1 .* P2
% Q = times(P1,P2)
%
% This function is not meant to be called by the user.