代码搜索:SWAP
找到约 10,000 项符合「SWAP」的源代码
代码结果 10,000
www.eeworm.com/read/179705/9342789
c test_swap.c
#include
#include
#include
#include
#include "tests.h"
void
test_swap (void) {
const double flteps = 1e-4, dbleps = 1e-6;
www.eeworm.com/read/179705/9344279
c swap_source.c
/* vector/swap_source.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms
www.eeworm.com/read/179705/9344373
c swap_source.c
/* matrix/swap_source.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms
www.eeworm.com/read/374163/9418557
h swap_constants.h
/*
* It is too painful to get these out of
* (which again requires etc).
* These exist since Linux 1.3.2.
*/
#ifndef SWAP_FLAG_PREFER
#define SWAP_FLAG_PREFER 0x8000 /
www.eeworm.com/read/372465/9509510
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/176083/9518001
pl0 swap.pl0
PROGRAM SSWAP;
VAR
A,B:INTEGER;
FUNCTION SWAP(VAR C,D:INTEGER):INTEGER;
VAR
TEMP:INTEGER;
BEGIN
TEMP:=C;
C:=D;
D:=TEMP;
END;
BEGIN
A:=3;
www.eeworm.com/read/366524/9810131
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/364791/9895224
h endian_swap.h
/*
* Copyright (c) 2002 The Board of Trustees of the University of Illinois and
* William Marsh Rice University
* Copyright (c) 2002 The University of Utah
* Copyright (c) 2002
www.eeworm.com/read/168443/9914002
c swap3.c
www.eeworm.com/read/360263/10105290
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