代码搜索:SWAP
找到约 10,000 项符合「SWAP」的源代码
代码结果 10,000
www.eeworm.com/read/477461/6736495
pdb iter_swap.pdb
www.eeworm.com/read/476355/6757763
c use_swap.c
#include
void swap_values(int *, int *);
void main(void)
{
int a = 1, b = 2;
printf("Original values a %d b %d\n", a, b);
swap_values(a, b);
printf("Swapped value
www.eeworm.com/read/410432/11287518
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/410432/11287535
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/410432/11287542
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/410258/11295345
txt swap.h.txt
#ifndef __swap_h__
#define __swap_h__
#ifdef __cplusplus
extern "C" {
#endif
uint16 byteswap_16(uint16 x);
#define FAST
#ifdef FAST
#define rotl(x,n) (((x)
www.eeworm.com/read/409272/11337341
c use_swap.c
#include
void swap_values(int *, int *);
void main(void)
{
int a = 1, b = 2;
printf("Original values a %d b %d\n", a, b);
swap_values(a, b);
printf("Swapped value
www.eeworm.com/read/406613/11438952
c use_swap.c
#include
void swap_values(int *, int *);
void main(void)
{
int a = 1, b = 2;
printf("Original values a %d b %d\n", a, b);
swap_values(a, b);
printf("Swapped value
www.eeworm.com/read/403933/11498613
html help.swap.html
Instruction : swap
swap
This instruction swaps the contents of the ?BX? register with its
www.eeworm.com/read/402273/11539908
cpp swap1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti