代码搜索:SWAP
找到约 10,000 项符合「SWAP」的源代码
代码结果 10,000
www.eeworm.com/read/480930/1304806
c swap_state.c
/*
* linux/mm/swap_state.c
*
* Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
* Swap reorganised 29.12.95, Stephen Tweedie
*
* Rewritten to use page cache, (C) 1998 Stephen Tweedie
*/
www.eeworm.com/read/475965/1374240
c swap2.c
/* swap2.c -- researching swap1.c */
#include
void interchange(int u, int v);
int main(void)
{
int x = 5, y = 10;
printf("Originally x = %d and y = %d.\n", x , y);
int
www.eeworm.com/read/475965/1374249
c swap1.c
/* swap1.c -- first attempt at a swapping function */
#include
void interchange(int u, int v); /* declare function */
int main(void)
{
int x = 5, y = 10;
printf("Originally
www.eeworm.com/read/475965/1374252
c swap3.c
/* swap3.c -- using pointers to make swapping work */
#include
void interchange(int * u, int * v);
int main(void)
{
int x = 5, y = 10;
printf("Originally x = %d and y = %d.
www.eeworm.com/read/463239/1538888
v swap_synch.v
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|12 Jun 2002 17:40:20 -0000
vti_extenderversion:SR|5.0.2.4330
vti_lineageid:SR|{F3733F0D-C888-48C2-A21F-AC2D264DE709}
vti_cacheddtm:TX|12 Jun 2002 17
www.eeworm.com/read/463239/1538916
v swap_synch.v
module swap_synch (set1, set2, clk, data_a, data_b);
output data_a, data_b;
input clk, set1, set2, swap;
reg data_a, data_b;
always @ (posedge clk)
begin
if (set
www.eeworm.com/read/247473/4481608
h db_swap.h
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996-2002
* Sleepycat Software. All rights reserved.
*/
/*
* Copyright (c) 1990, 1993, 1994
* The Regents of the Un
www.eeworm.com/read/241128/4563560
results swap1.results
TYPE='swap'
LABEL='SWAP-TEST'
UUID='8ff8e77f-8553-485e-8656-58be67a81666'
www.eeworm.com/read/238768/4609561
pod bn_swap.pod
=pod
=head1 NAME
BN_swap - exchange BIGNUMs
=head1 SYNOPSIS
#include
void BN_swap(BIGNUM *a, BIGNUM *b);
=head1 DESCRIPTION
BN_swap() exchanges the values of I and I.
L