Home
last modified time | relevance | path

Searched refs:a (Results 1 – 11 of 11) sorted by relevance

/RevoEX-3.1/build/demos/netdemo/src/
Ddigest.c199 #define PrintResultEq( a, b, f ) \ argument
200 …do { OSReport( ((a) == (b)) ? "[--OK--] " : "[**NG**] " ); (f) = (f) && ((a) == (b)); } while( FAL…
201 #define PrintResultDigestEq( a, b, l, f ) \ argument
202 …do { OSReport( (memcmp((a), (b), (l)) == 0) ? "[--OK--] " : "[**NG**] " ); (f) = (f) && (memcmp((a
213 char *a[] = { in DoTest() local
219 for (i = 0; i < sizeof(a) / sizeof(char *); i++) in DoTest()
223 result = NETCalcCRC16(a[i], strlen(a[i])); in DoTest()
225 OSReport("NETCalcCRC16(%s) = %04x\n", a[i], result); in DoTest()
231 char *a[] = { in DoTest() local
237 for (i = 0; i < sizeof(a) / sizeof(char *); i++) in DoTest()
[all …]
Dcrypto.c185 #define PrintResultEq( a, b, f ) \ argument
186 …do { OSReport( ((a) == (b)) ? "[--OK--] " : "[**NG**] " ); (f) = (f) && ((a) == (b)); } while( FAL…
187 #define PrintResultBinaryEq( a, b, l, f ) \ argument
188 …do { OSReport( (memcmp((a), (b), (l)) == 0) ? "[--OK--] " : "[**NG**] " ); (f) = (f) && (memcmp((a
/RevoEX-3.1/include/revolution/net/
DNETMisc.h95 static inline u32 NETMinU32(u32 a, u32 b) in NETMinU32() argument
97 return (a <= b) ? a : b; in NETMinU32()
DNETDigest.h144 unsigned long a, b, c, d; member
/RevoEX-3.1/man/en_US/nwc24/tools/NWC24Editor/
DNWC24Editor.css75 a:visited
80 a:link, a:active, a:hover
/RevoEX-3.1/docs/
DNWC24MessageBoxEditor.txt11 The NWC24 Message Box Editor is a tool used to edit the contents of a WiiConnect24 message box.
51 +--[New message box] Initializes and creates a new message boxes on the editor.
85 [Add Wii message] Adds a new Wii message.
87 [Add Public message] Adds a new Public (to a general address) message.
108 +--[Add] Adds a new message destination.
/RevoEX-3.1/build/buildtools/
Dcommondefs.rex50 # added ntr.a mpfs.a
107 # Changed specifications so that socket.a or so.a can be specified.
185 # Added socket.a to REVOLUTION_LIBS.
266 REX_LIBFILES = $(addsuffix $(REX_LIBSUFFIX).a,$(REX_LIBNAMES))
271 REX_NW4R_LIBFILES = $(addsuffix .a,$(addprefix libnw4r_,$(REX_NW4R_LIBNAMES)))
328 MAKEO_FLAGS = -a 64
Deppccleandepend.sed1 # this file will clean up ONE makefile dependency rule in a file. It must
Dmodulerules.rex23 # Dealt with issue wherein a build error would occur if the entries contained in MODULENAME and BIN…
97 # Corrected a problem where "@" was applied to the wrong place within the operating details of do-s…
106 # Revised the method of creating a directory during setup.
287 REX_DISTCLEAN += $(INSTALL_ROOT)/lib/$(LIBNAME).a $(INSTALL_ROOT)/lib/$(LIBNAME)D.a
/RevoEX-3.1/
DREADME.txt41 Unpack the REX package in a directory different from the SDK directory.
/RevoEX-3.1/build/demos/share/src/
Dgraphic.c329 sampleGroundCol.a = 0xFF; in REXDEMOSetGroundColor()