代码搜索:SWAP
找到约 10,000 项符合「SWAP」的源代码
代码结果 10,000
www.eeworm.com/read/173687/9641935
c swap.c
/******************************************************************************
* Swap.c Process swaper bits
******************************************************************************
*/
# in
www.eeworm.com/read/368447/9694200
pas swap.pas
unit Swap;
interface
// Swap bytes within a word, that is, convert little-ending or big-endian
// or vice versa.
// Copyright
www.eeworm.com/read/172474/9706112
m swap.m
function P=swap(P)
%SWAP
%Swap two rows of matrix.
%Used in row reduction.
%Calling format: A=swap(A)
%Copyright Gareth Williams, Stetson University
%gwilliam@stetson.edu, http://www.stetson.
www.eeworm.com/read/368137/9710025
cpp swap.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/368137/9710322
cpp swap.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/415793/11053538
vhd swap.vhd
LIBRARY ieee ;
USE ieee.std_logic_1164.all ;
USE work.components.all ;
ENTITY swap IS
PORT ( Data : IN STD_LOGIC_VECTOR(7 DOWNTO 0) ;
Resetn, w : IN STD_LOGIC ;
Clock, Extern :
www.eeworm.com/read/413844/11139926
bmp swap.bmp
www.eeworm.com/read/412583/11191251
vhd swap.vhd
www.eeworm.com/read/335795/12498288
cpp swap.cpp
// swap() does not swap the value of the arguments!
void swap( int v1, int v2 ) {
int tmp = v2;
v2 = v1;
v1 = tmp;
}