代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/17156/720672
c lvcstr.c
#include "extcode.h"
#include
_declspec(dllexport) void LVCStr(CStr input, CStr output);
_declspec(dllexport) void LVCStr(CStr input, CStr output)
{
int i, j;
/* Reverse "i" c
www.eeworm.com/read/233448/4678616
c bitreverse-0.c
/* APPLE LOCAL file */
#include
#include
/* This tests layout when the pragma is off, as a sanity check. */
/* { dg-do run { target powerpc*-*-darwin* } } */
#pragma reverse_bit
www.eeworm.com/read/233448/4678652
c bitreverse-12.c
/* APPLE LOCAL file */
/* Radar 4317709 */
/* { dg-do compile { target powerpc-*-darwin* } } */
/* { dg-options "-w" } */
#pragma reverse_bitfields on
#pragma ms_struct on
#pragma pack(1)
typedef st
www.eeworm.com/read/229812/4737094
c asm04.c
#include "fail.h"
#define INLINE
#if defined(__386__) || defined(__I86__)
INLINE int sub( int a, int b ) {
return a - b;
}
#pragma aux (__stdcall) sub parm reverse;
int INLINE burst
www.eeworm.com/read/221464/4831163
jamfile
subproject libs/iterator/example ;
import testing ;
# Make tests run by default.
DEPENDS all : test ;
test-suite iterator_examples
: [ run reverse_iterator.cpp ]
[ run node_iterator1
www.eeworm.com/read/216502/4890493
1 col.1
.TH COL 1
.SH NAME
col \- filter reverse line feeds
.SH SYNOPSIS
.B col [\|\-bfx\|]
.SH DESCRIPTION
.I Col
reads the standard input and writes the standard output.
It performs the line overlays implie
www.eeworm.com/read/207991/4999549
mal tst350.mal
#inspection of the runtime setting
#it uses the dynamic type analysis scheme
function dir(b:bat[:int,:str]):void;
atm:= inspect.getAtomNames();
brev:= bat.reverse(b);
bm := bat.mirror(brev);
h :=
www.eeworm.com/read/193974/5138450
py pr233.py
# test for PR#233 -- more immutability of tuples (see also PR#174)
target = (1,2,3)
tpl = (1,2,3)
list(tpl).reverse()
if tpl target:
print 'Tuples are mutable'
www.eeworm.com/read/326711/3470064
c fig08_13.c
/* Fig. 8.13: fig08_13.c
Using gets and putchar */
#include
void reverse( const char * const sPtr ); /* prototype */
int main( void )
{
char sentence[ 80 ]; /* create ch
www.eeworm.com/read/318039/3572172
c hash.c
/*
* hash.c Non-thread-safe split-ordered hash table.
*
* The weird "reverse" function is based on an idea from
* "Split-Ordered Lists - Lock-free Resizable Hash Tables", with
* modifications