代码搜索:Rotates
找到约 176 项符合「Rotates」的源代码
代码结果 176
www.eeworm.com/read/440226/1799329
cc my-endian.cc
#include "my-endian.h"
/* rotates 2 bytes */
unsigned short swap2(u_2bytes In) {
u_2bytes Out;
((char*)&(Out))[0] = ((char*)&(In))[1];
((char*)&(Out))[1] = ((char*)&(In))[0];
return Out;
}
/*
www.eeworm.com/read/429717/1946711
cc endian.cc
#include "endian.h"
/* rotates 2 bytes */
unsigned short swap2(u_2bytes In) {
u_2bytes Out;
((char*)&(Out))[0] = ((char*)&(In))[1];
((char*)&(Out))[1] = ((char*)&(In))[0];
return Out;
}
/* ro
www.eeworm.com/read/389028/2545645
cc my-endian.cc
#include "my-endian.h"
/* rotates 2 bytes */
unsigned short swap2(u_2bytes In) {
u_2bytes Out;
((char*)&(Out))[0] = ((char*)&(In))[1];
((char*)&(Out))[1] = ((char*)&(In))[0];
return Out;
}
/*
www.eeworm.com/read/380709/2654163
cc my-endian.cc
#include "my-endian.h"
/* rotates 2 bytes */
unsigned short swap2(u_2bytes In) {
u_2bytes Out;
((char*)&(Out))[0] = ((char*)&(In))[1];
((char*)&(Out))[1] = ((char*)&(In))[0];
return Out;
}
/*
www.eeworm.com/read/358861/10177723
m rot_cossin.m
function [c, s] = rot_cossin (x, y);
%ROT_COSSIN Givens rotation angles
%
% [c, s] = rot_cossin (x, y);
% returns cos and sin vectors for Givens-rotation matrix
% which rotates y to zero.
%
% x, y
www.eeworm.com/read/131113/5948083
in dz_rotate_rrd.in
#! @PERL@
# $Id: dz_rotate_rrd.in,v 1.2 2004/02/29 18:16:44 vtt Exp $
# This script rotates the RRD database.
# These values are set forth by configure script.
$RRD_DIR = "@RRD_DIR@";
$RRD = "${RR
www.eeworm.com/read/147681/12539831
m rot_cossin.m
function [c, s] = rot_cossin (x, y);
%ROT_COSSIN Givens rotation angles
%
% [c, s] = rot_cossin (x, y);
% returns cos and sin vectors for Givens-rotation matrix
% which rotates y to zero.
%
% x, y
www.eeworm.com/read/131113/5948082
dz_rotate_rrd
#! /usr/bin/perl
# $Id: dz_rotate_rrd.in,v 1.2 2004/02/29 18:16:44 vtt Exp $
# This script rotates the RRD database.
# These values are set forth by configure script.
$RRD_DIR = "/opt/vt/dz-/var";
www.eeworm.com/read/265252/11272107
m scalerotatetranslate.m
function X_out=ScaleRotateTranslate(X_in,s,Theta,tx,ty);
%function X_out=ScaleRotateTranslate(X_in,s,Theta,tx,ty);
% scale rotate THEN translate
%rotates around 0,0
M=[ s*cos(Theta) , -s*sin(Theta);
www.eeworm.com/read/151137/12233268
m scalerotatetranslate.m
function X_out=ScaleRotateTranslate(X_in,s,Theta,tx,ty);
%function X_out=ScaleRotateTranslate(X_in,s,Theta,tx,ty);
% scale rotate THEN translate
%rotates around 0,0
M=[ s*cos(Theta) , -s*sin(Theta);