Searched refs:DOIT (Results 1 - 18 of 18) sorted by relevance

/macosx-10.9.5/xnu-2422.115.4/tools/tests/libMicro/apple/
H A Dlmbench_bw_mem.c211 #define DOIT(i) p[i]+ macro
212 DOIT(0) DOIT(4) DOIT(8) DOIT(12) DOIT(16) DOIT(20) DOIT(24)
213 DOIT(28) DOIT(3
223 #undef DOIT macro
234 #define DOIT macro
244 #undef DOIT macro
256 #define DOIT macro
267 #undef DOIT macro
280 #define DOIT macro
292 #undef DOIT macro
304 #define DOIT macro
332 #undef DOIT macro
345 #define DOIT macro
373 #undef DOIT macro
385 #define DOIT macro
[all...]
/macosx-10.9.5/ncurses-42/ncurses/
H A Dtar-copy.sh41 #DOIT=echo
42 DOIT=eval
71 $DOIT rm -rf $LIST 2>/dev/null
72 $DOIT tar xvf $TMP
/macosx-10.9.5/uucp-11/uucp/contrib/
H A Duudemon.shar57 X DOIT="no"
61 X DOIT="yes"
64 X if [ "$DOIT" = "yes" ]; then
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dreloc.c876 #define DOIT(x) \ macro
884 DOIT (x);
892 DOIT (x);
899 DOIT (x);
907 DOIT (x);
916 DOIT (x);
929 DOIT (x);
1255 #define DOIT(x) \ macro
1265 DOIT (x);
1273 DOIT (
[all...]
H A Dcpu-ns32k.c517 #define DOIT(x) \ macro
526 DOIT (x);
535 DOIT (x);
543 DOIT (x);
551 DOIT(x);
565 DOIT (x);
H A Dcoff-i860.c86 #define DOIT(x) \ macro
99 DOIT (x);
107 DOIT (x);
115 DOIT (x);
H A Dcoff-x86_64.c132 #define DOIT(x) \ macro
145 DOIT (x);
153 DOIT (x);
161 DOIT (x);
168 DOIT (x);
H A Dcoff-i386.c140 #define DOIT(x) \ macro
153 DOIT (x);
161 DOIT (x);
169 DOIT (x);
H A Dcoff-m68k.c299 #define DOIT(x) \
312 DOIT (x);
320 DOIT (x);
328 DOIT (x);
298 #define DOIT macro
H A Dpe-mips.c89 #define DOIT(x) \ macro
103 DOIT (x);
112 DOIT (x);
121 DOIT (x);
H A Dcoff-arm.c109 #define DOIT(x) \ macro
123 DOIT (x);
131 DOIT (x);
139 DOIT (x);
H A Delf32-bfin.c373 #define DOIT(x) \
382 DOIT (x);
390 DOIT (x);
372 #define DOIT macro
H A Delf32-m32r.c219 #define DOIT(x) \ macro
229 DOIT (x);
236 DOIT (x);
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Dmd4.c60 #define DOIT(a,b,c,d,k,s,i,OP) \ macro
63 #define DO1(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,F)
64 #define DO2(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,G)
65 #define DO3(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,H)
H A Dmd5.c61 #define DOIT(a,b,c,d,k,s,i,OP) \ macro
64 #define DO1(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,F)
65 #define DO2(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,G)
66 #define DO3(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,H)
67 #define DO4(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,I)
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/libdes/src/
H A Dmd4.c81 /* * Copyright (c) 1995, 1996, 1997, 1998 Kungliga Tekniska H�gskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Kungliga Tekniska * H�gskolan and its contributors. * * 4. Neither the name of the Institute nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #ifdef HAVE_CONFIG_H #include "config.h" RCSID("$Id: md4.c,v 1.4 2005/01/10 19:09:06 snsimon Exp $"); #endif #include <stdlib.h> #include <string.h> #include "md4.h" #ifndef min #define min(a,b) (((a)>(b))?(b):(a)) #endif #define A m->counter[0] #define B m->counter[1] #define C m->counter[2] #define D m->counter[3] #define X data void md4_init (struct md4 *m) { m->offset = 0; m->sz = 0; D = 0x10325476; C = 0x98badcfe; B = 0xefcdab89; A = 0x67452301; } static inline u_int32_t cshift (u_int32_t x, unsigned int n) { return (x << n) | (x >> (32 - n)); } #define F(x,y,z) ((x & y) | (~x & z)) #define G(x,y,z) ((x & y) | (x & z) | (y & z)) #define H(x,y,z) (x ^ y ^ z) #define DOIT(a,b,c,d,k,s,i,OP) \ a = cshift(a + OP(b,c,d) + X[k] + i, s) #define DO1(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,F) #define DO2(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,G) #define DO3(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,H) static inline void calc (struct md4 *m, u_int32_t *data) { u_int32_t AA, BB, C (…)
H A Dmd5.c82 /* * Copyright (c) 1995, 1996, 1997, 1998 Kungliga Tekniska H�gskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Kungliga Tekniska * H�gskolan and its contributors. * * 4. Neither the name of the Institute nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #ifdef HAVE_CONFIG_H #include "config.h" RCSID("$Id: md5.c,v 1.4 2005/01/10 19:09:06 snsimon Exp $"); #endif #include <stdlib.h> #include <string.h> #include "md5.h" #ifndef min #define min(a,b) (((a)>(b))?(b):(a)) #endif #define A m->counter[0] #define B m->counter[1] #define C m->counter[2] #define D m->counter[3] #define X data void md5_init (struct md5 *m) { m->offset = 0; m->sz = 0; D = 0x10325476; C = 0x98badcfe; B = 0xefcdab89; A = 0x67452301; } static inline u_int32_t cshift (u_int32_t x, unsigned int n) { return (x << n) | (x >> (32 - n)); } #define F(x,y,z) ((x & y) | (~x & z)) #define G(x,y,z) ((x & z) | (y & ~z)) #define H(x,y,z) (x ^ y ^ z) #define I(x,y,z) (y ^ (x | ~z)) #define DOIT(a,b,c,d,k,s,i,OP) \ a = b + cshift(a + OP(b,c,d) + X[k] + (i), s) #define DO1(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,F) #define DO2(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,G) #define DO3(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,H) #define DO4(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,I) static inline void calc (struct md5 *m, u_int32_t *data) { u_int32_t AA, BB, C (…)
/macosx-10.9.5/tidy-15.12/tidy/test/
H A Donetesta.cmd35 if EXIST %INFILE% goto DOIT
42 :DOIT label

Completed in 190 milliseconds