代码搜索:SWAP
找到约 10,000 项符合「SWAP」的源代码
代码结果 10,000
www.eeworm.com/read/157007/11745076
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;
}
www.eeworm.com/read/156364/11808604
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;
}
www.eeworm.com/read/155163/11892960
c swap.c
/* swap.c -- swap two complex numbers (by their addresses) */
#include
void swap(a,b)
complex *a, *b;
{
complex t;
t = *a;
*a = *b;
*b = t;
}
www.eeworm.com/read/255541/12074857
c swap.c
/*
* linux/mm/swap.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
/*
* This file should contain most things doing the swapping from/to disk.
* Started 18.12.91
*/
#include
www.eeworm.com/read/255347/12085879
opt swap.opt
www.eeworm.com/read/255347/12085881
dsw swap.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/255347/12085883
ncb swap.ncb
www.eeworm.com/read/255347/12085885
plg swap.plg
Build Log
--------------------Configuration: swap - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~1
www.eeworm.com/read/255347/12085887
dsp swap.dsp
# Microsoft Developer Studio Project File - Name="swap" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons