Home
last modified time | relevance | path

Searched refs:dw (Results 1 – 20 of 20) sorted by relevance

/minix/crypto/external/bsd/heimdal/dist/lib/hcrypto/
H A Dcamellia-ntt.c628 dw = CamelliaSubkeyL(2) ^ CamelliaSubkeyR(2), dw = CAMELLIA_RL8(dw); in camellia_setup128()
630 dw = CamelliaSubkeyL(3) ^ CamelliaSubkeyR(3), dw = CAMELLIA_RL8(dw); in camellia_setup128()
632 dw = CamelliaSubkeyL(4) ^ CamelliaSubkeyR(4), dw = CAMELLIA_RL8(dw); in camellia_setup128()
634 dw = CamelliaSubkeyL(5) ^ CamelliaSubkeyR(5), dw = CAMELLIA_RL8(dw); in camellia_setup128()
636 dw = CamelliaSubkeyL(6) ^ CamelliaSubkeyR(6), dw = CAMELLIA_RL8(dw); in camellia_setup128()
638 dw = CamelliaSubkeyL(7) ^ CamelliaSubkeyR(7), dw = CAMELLIA_RL8(dw); in camellia_setup128()
902 dw = CamelliaSubkeyL(2) ^ CamelliaSubkeyR(2), dw = CAMELLIA_RL8(dw); in camellia_setup256()
904 dw = CamelliaSubkeyL(3) ^ CamelliaSubkeyR(3), dw = CAMELLIA_RL8(dw); in camellia_setup256()
906 dw = CamelliaSubkeyL(4) ^ CamelliaSubkeyR(4), dw = CAMELLIA_RL8(dw); in camellia_setup256()
908 dw = CamelliaSubkeyL(5) ^ CamelliaSubkeyR(5), dw = CAMELLIA_RL8(dw); in camellia_setup256()
[all …]
/minix/usr.sbin/makefs/cd9660/
H A Dcd9660_conversion.c102 cd9660_bothendian_dword(uint32_t dw, unsigned char *eightchar) in cd9660_bothendian_dword() argument
106 le = dw; in cd9660_bothendian_dword()
107 be = bswap32(dw); in cd9660_bothendian_dword()
110 be = dw; in cd9660_bothendian_dword()
111 le = bswap32(dw); in cd9660_bothendian_dword()
124 cd9660_bothendian_word(uint16_t dw, unsigned char *fourchar) in cd9660_bothendian_word() argument
128 le = dw; in cd9660_bothendian_word()
129 be = bswap16(dw); in cd9660_bothendian_word()
132 be = dw; in cd9660_bothendian_word()
133 le = bswap16(dw); in cd9660_bothendian_word()
/minix/external/bsd/libpcap/dist/msdos/
H A Dpkt_rx0.asm46 firstCount dw 0 ; # of bytes on 1st call
47 secondCount dw 0 ; # of bytes on 2nd call
48 handle dw 0 ; handle for upcall
51 protocol dw 0 ; packet protocol number
55 _rxOutOfs dw offset _pktRxBuf ; ring buffer offsets
56 _rxInOfs dw offset _pktRxBuf ; into _pktRxBuf
57 _pktDrop dw 0,0 ; packet drop counter
63 screenSeg dw 0B800h
64 newInOffset dw 0
67 fanIndex dw 0
H A Dpkt_rx1.s30 _rxOutOfs dw offset _pktRxBuf ; ring buffer offsets
31 _rxInOfs dw offset _pktRxBuf ; into _pktRxBuf
32 _pktDrop dw 0,0 ; packet drop counter
38 screenSeg dw 0B800h
39 newInOffset dw 0
42 fanIndex dw 0
/minix/usr.bin/cal/
H A Dcal.c494 int day, dw, dm; in day_array() local
504 for (dm = month + year * 12, dw = 0; dw < 4; dw++) { in day_array()
505 if (dm == shift_days[julian][dw][MAXDAYS]) { in day_array()
506 memmove(days, shift_days[julian][dw], in day_array()
514 dw = day_in_week(1, month, year); in day_array()
520 days[dw++] = SPACE - day++; in day_array()
522 days[dw++] = day++; in day_array()
/minix/external/bsd/llvm/dist/llvm/test/MC/COFF/
H A Dglobal_ctors_dtors.ll59 ; MINGW32: .section .ctors,"dw"
61 ; MINGW32: .section .ctors,"dw",associative,{{_?}}b
64 ; MINGW32: .section .dtors,"dw"
H A Dweak-symbol.ll40 ; X86: .section .tls$,"dw",discard,_b
44 ; X64: .section .tls$,"dw",discard,b
/minix/external/bsd/llvm/dist/clang/test/CodeGenObjC/
H A Dmisc-atomic-property.m47 dword dw; field
54 @synthesize dword_p=dw;
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/ARM/
H A Dcarry.ll35 %dw = add i64 %ch, %bw
36 ret i64 %dw
/minix/usr.sbin/makefs/
H A Dcd9660.h318 void cd9660_bothendian_dword(uint32_t dw, unsigned char *);
319 void cd9660_bothendian_word(uint16_t dw, unsigned char *);
/minix/crypto/external/bsd/openssl/dist/crypto/pem/
H A Dpvkfmt.c415 static void write_ledword(unsigned char **out, unsigned int dw) in write_ledword() argument
418 *p++ = dw & 0xff; in write_ledword()
419 *p++ = (dw >> 8) & 0xff; in write_ledword()
420 *p++ = (dw >> 16) & 0xff; in write_ledword()
421 *p++ = (dw >> 24) & 0xff; in write_ledword()
/minix/external/bsd/llvm/dist/llvm/lib/Target/PowerPC/
H A DREADME.txt293 void func(unsigned int *ret, float dx, float dy, float dz, float dw) {
295 if(dx < -dw) code |= 1;
296 if(dx > dw) code |= 2;
297 if(dy < -dw) code |= 4;
298 if(dy > dw) code |= 8;
299 if(dz < -dw) code |= 16;
300 if(dz > dw) code |= 32;
H A DPPC.td88 "Enable the popcnt[dw] instructions">;
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/X86/
H A Ddllexport-x86_64.ll50 ; CHECK: .section .data,"dw",discard,WeakVar1
H A Ddllexport.ll71 ; CHECK: .section .data,"dw",discard,_WeakVar1
/minix/external/bsd/bind/dist/bin/win32/BINDInstall/
H A DBINDInstallDlg.cpp622 catch(DWORD dw) { in OnInstall() local
624 msg.Format("A fatal error occured\n(%s)", GetErrMessage(dw)); in OnInstall()
/minix/minix/share/beaglebone/weather/
H A Dprocessing.js13dw(ea){F.debug("Unimplemented - "+ea)}var cW=this;cW.externals={canvas:ae,context:t,sketch:t};cW.n… function
/minix/share/terminfo/
H A Dterminfo10098 …50}%<%t%{8}%e%{12}%;%?%p4%{250}%<%t%{0}%e%p4%{500}%<%t%{1}%e%p4%{750}%<%t%{2}%e%{3}%;%{1}%+%+%+%dw,
10108 rs3=\E[?5l, sc=\E7, setb=\E[62;%p1%dw, setf=\E[61;%p1%dw,
13120 #------- wind=\E[%i%p1%d;%p2%d;%p3%{1}%+%d;%p4%{1}%+%dw
18914 dw2|decwriter|dw|decwriter II,
/minix/etc/
H A Dservices16483 com-bardac-dw 48556/tcp # com-bardac-dw [Nicholas_J_Howes] …
16484 com-bardac-dw 48556/udp # com-bardac-dw [Nicholas_J_Howes] …
H A Dtermcap.big7824 #------- wind=\E[%i%p1%d;%p2%d;%p3%{1}%+%d;%p4%{1}%+%dw
13463 dw2|decwriter|dw|decwriter II:\