代码搜索:SWAP
找到约 10,000 项符合「SWAP」的源代码
代码结果 10,000
www.eeworm.com/read/301795/13848299
vhd swap.vhd
www.eeworm.com/read/301636/13853316
vhd swap.vhd
www.eeworm.com/read/238536/13877466
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/149098/5703497
cpp swap.cpp
/**************************************************************************
*
* swap.cpp - Example program of swap algorithm. See Class Reference Section
*
************************************
www.eeworm.com/read/146906/5734301
java swap.java
/* WARANTY NOTICE AND COPYRIGHT
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation;
www.eeworm.com/read/141176/5775382
h swap.h
/* $Id: swap.h,v 1.1 2002/02/06 02:17:07 linfusheng Exp $
*/
#ifndef __SYS_SWAP_BYTES_H
#define __SYS_SWAP_BYTES_H
#undef ntohs
#undef htons
#undef ntohl
#undef htonl
#define ntohs(x)
www.eeworm.com/read/135153/5887286
h swap.h
/*
* Copyright (c) 2001 Greg Haerr
*
* Byte and word swapping header file for big/little endian mapping
*/
#include
#include
#if __BYTE_ORDER == __BIG_E
www.eeworm.com/read/135153/5888821
h swap.h
#ifndef _LINUX_SWAP_H
#define _LINUX_SWAP_H
#include
#include
#define SWAP_FLAG_PREFER 0x8000 /* set if swap priority specified */
#define SWAP_FLAG_PRIO_MASK 0x7fff
www.eeworm.com/read/132748/5909724
h swap.h
#ifndef _LINUX_SWAP_H
#define _LINUX_SWAP_H
#include
#define SWAP_FLAG_PREFER 0x8000 /* set if swap priority specified */
#define SWAP_FLAG_PRIO_MASK 0x7fff
#define SWAP_FLAG_PRIO_SHIFT
www.eeworm.com/read/131315/5940979
h swap.h
/* From Ron Guillmette; apparently needed for Hansen's code */
#define swap(a,b) ({ typeof(a) temp = (a); (a) = (b); (b) = temp; })