Home
last modified time | relevance | path

Searched refs:Byte0 (Results 1 – 25 of 156) sorted by relevance

1234567

/dports/security/libadacrypt/Ada-Crypto-Library-abc534f/src/
H A Dcrypto-symmetric-algorithm-aes.adb49 S(Byte3(Temp)), S(Byte0(Temp)))
53 Temp:=To_Word(S(Byte0(Temp)), S(Byte1(Temp)),
87 Decrypt_Key(Index) := U1(Byte0(A0)) xor U2(Byte1(A0)) xor
187 Ciphertext(0) := S(Byte0(X0)) xor Byte0(Encrypt_Key(Index));
194 Ciphertext(4) := S(Byte0(X1)) xor Byte0(Encrypt_Key(Index));
201 Ciphertext(8) := S(Byte0(X2)) xor Byte0(Encrypt_Key(Index));
208 Ciphertext(12) := S(Byte0(X3)) xor Byte0(Encrypt_Key(Index));
301 Plaintext(0) := Si(Byte0(X0)) xor Byte0(Decrypt_Key(0));
306 Plaintext(4) := Si(Byte0(X1)) xor Byte0(Decrypt_Key(1));
311 Plaintext(8) := Si(Byte0(X2)) xor Byte0(Decrypt_Key(2));
[all …]
H A Dcrypto-symmetric-algorithm-whirlpool.adb126 C0(Byte0(State(0))) xor C1(Byte1(State(7))) xor
133 C0(Byte0(State(1))) xor C1(Byte1(State(0))) xor
140 C0(Byte0(State(2))) xor C1(Byte1(State(1))) xor
147 C0(Byte0(State(3))) xor C1(Byte1(State(2))) xor
154 C0(Byte0(State(4))) xor C1(Byte1(State(3))) xor
161 C0(Byte0(State(5))) xor C1(Byte1(State(4))) xor
168 C0(Byte0(State(6))) xor C1(Byte1(State(5))) xor
175 C0(Byte0(State(7))) xor C1(Byte1(State(6))) xor
474 C0(Byte0(State(0))) xor C1(Byte1(State(7))) xor
481 C0(Byte0(State(1))) xor C1(Byte1(State(0))) xor
[all …]
/dports/games/alephone/alephone-release-20190331/Source_Files/Files/
H A DPacking.cpp33 uint16 Byte0 = uint16(*(Stream++)); in StreamToValueBE() local
36 Value = (Byte0 << 8) | Byte1; in StreamToValueBE()
49 uint32 Byte0 = uint32(*(Stream++)); in StreamToValueBE() local
54 Value = (Byte0 << 24) | (Byte1 << 16) | (Byte2 << 8) | Byte3; in StreamToValueBE()
94 uint16 Byte0 = uint16(*(Stream++)); in StreamToValueLE() local
97 Value = (Byte1 << 8) | Byte0; in StreamToValueLE()
110 uint32 Byte0 = uint32(*(Stream++)); in StreamToValueLE() local
115 Value = (Byte3 << 24) | (Byte2 << 16) | (Byte1 << 8) | Byte0; in StreamToValueLE()
H A DAStream.cpp135 uint16 Byte0 = uint16(*(_M_stream_pos++)); in operator >>() local
138 value = (Byte0 << 8) | Byte1; in operator >>()
157 uint32 Byte0 = uint32(*(_M_stream_pos++)); in operator >>() local
162 value = (Byte0 << 24) | (Byte1 << 16) | (Byte2 << 8) | Byte3; in operator >>()
216 uint16 Byte0 = uint16(*(_M_stream_pos++)); in operator >>() local
219 value = (Byte1 << 8) | Byte0; in operator >>()
238 uint32 Byte0 = uint32(*(_M_stream_pos++)); in operator >>() local
243 value = (Byte3 << 24) | (Byte2 << 16) | (Byte1 << 8) | Byte0; in operator >>()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmThreadInstanceEntryImpl.java59 public final static class Byte0 { class in JvmThreadInstanceEntryImpl.ThreadStateMap
87 setBit(bitmap,0,Byte0.inNative); in setNative()
90 setBit(bitmap,0,Byte0.suspended); in setSuspended()
95 setBit(bitmap,0,Byte0.blocked); in setState()
98 setBit(bitmap,0,Byte0.newThread); in setState()
101 setBit(bitmap,0,Byte0.runnable); in setState()
104 setBit(bitmap,0,Byte0.terminated); in setState()
107 setBit(bitmap,0,Byte0.timedWaiting); in setState()
110 setBit(bitmap,0,Byte0.waiting); in setState()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmThreadInstanceEntryImpl.java59 public final static class Byte0 { class in JvmThreadInstanceEntryImpl.ThreadStateMap
87 setBit(bitmap,0,Byte0.inNative); in setNative()
90 setBit(bitmap,0,Byte0.suspended); in setSuspended()
95 setBit(bitmap,0,Byte0.blocked); in setState()
98 setBit(bitmap,0,Byte0.newThread); in setState()
101 setBit(bitmap,0,Byte0.runnable); in setState()
104 setBit(bitmap,0,Byte0.terminated); in setState()
107 setBit(bitmap,0,Byte0.timedWaiting); in setState()
110 setBit(bitmap,0,Byte0.waiting); in setState()
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
H A DVtutf8.c194 UINT8 Byte0; in Utf8ToUnicode() local
216 Byte0 = Utf8Char.Utf8_2[0]; in Utf8ToUnicode()
219 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
228 Byte0 = Utf8Char.Utf8_3[0]; in Utf8ToUnicode()
232 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/MdeModulePkg/Universal/Console/TerminalDxe/
H A DVtutf8.c194 UINT8 Byte0; in Utf8ToUnicode() local
216 Byte0 = Utf8Char.Utf8_2[0]; in Utf8ToUnicode()
219 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
228 Byte0 = Utf8Char.Utf8_3[0]; in Utf8ToUnicode()
232 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/MdeModulePkg/Universal/Console/TerminalDxe/
H A DVtutf8.c200 UINT8 Byte0; in Utf8ToUnicode() local
222 Byte0 = Utf8Char.Utf8_2[0]; in Utf8ToUnicode()
225 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
234 Byte0 = Utf8Char.Utf8_3[0]; in Utf8ToUnicode()
238 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
H A DVtutf8.c194 UINT8 Byte0; in Utf8ToUnicode() local
216 Byte0 = Utf8Char.Utf8_2[0]; in Utf8ToUnicode()
219 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
228 Byte0 = Utf8Char.Utf8_3[0]; in Utf8ToUnicode()
232 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
H A DVtutf8.c194 UINT8 Byte0; in Utf8ToUnicode() local
216 Byte0 = Utf8Char.Utf8_2[0]; in Utf8ToUnicode()
219 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
228 Byte0 = Utf8Char.Utf8_3[0]; in Utf8ToUnicode()
232 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
H A DVtutf8.c194 UINT8 Byte0; in Utf8ToUnicode() local
216 Byte0 = Utf8Char.Utf8_2[0]; in Utf8ToUnicode()
219 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
228 Byte0 = Utf8Char.Utf8_3[0]; in Utf8ToUnicode()
232 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/MdeModulePkg/Universal/Console/TerminalDxe/
H A DVtutf8.c194 UINT8 Byte0; in Utf8ToUnicode() local
216 Byte0 = Utf8Char.Utf8_2[0]; in Utf8ToUnicode()
219 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
228 Byte0 = Utf8Char.Utf8_3[0]; in Utf8ToUnicode()
232 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
H A DVtutf8.c194 UINT8 Byte0; in Utf8ToUnicode() local
216 Byte0 = Utf8Char.Utf8_2[0]; in Utf8ToUnicode()
219 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
228 Byte0 = Utf8Char.Utf8_3[0]; in Utf8ToUnicode()
232 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
H A DVtutf8.c194 UINT8 Byte0; in Utf8ToUnicode() local
216 Byte0 = Utf8Char.Utf8_2[0]; in Utf8ToUnicode()
219 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
228 Byte0 = Utf8Char.Utf8_3[0]; in Utf8ToUnicode()
232 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
/dports/sysutils/edk2/edk2-edk2-stable202102/MdeModulePkg/Universal/Console/TerminalDxe/
H A DVtutf8.c194 UINT8 Byte0; in Utf8ToUnicode() local
216 Byte0 = Utf8Char.Utf8_2[0]; in Utf8ToUnicode()
219 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
228 Byte0 = Utf8Char.Utf8_3[0]; in Utf8ToUnicode()
232 UnicodeByte0 = (UINT8) ((Byte1 << 6) | (Byte0 & 0x3f)); in Utf8ToUnicode()
/dports/lang/sdcc/sdcc-4.0.0/support/regression/tests/
H A Dabsolute.c71 volatile __data __at(0x20) unsigned char Byte0 = 0x00;
81 ASSERT(Byte0 == 0x00); in testAbsBdata()
82 Byte0 = 0xFF; in testAbsBdata()
84 ASSERT(Byte0 == 0xFF); in testAbsBdata()
/dports/sysutils/edk2/edk2-platforms-89f6170d/Platform/Intel/QuarkPlatformPkg/Acpi/DxeSmm/AcpiSmm/
H A DAcpiSmmPlatform.h62 #define PCI_REG_MASK(Byte0, Byte1, Byte2, Byte3, Byte4, Byte5, Byte6, Byte7) \ argument
63 Byte0, Byte1, Byte2, Byte3, Byte4, Byte5, Byte6, Byte7
/dports/devel/llbuild/swift-llbuild-swift-DEVELOPMENT-SNAPSHOT-2017-12-10-a/include/llvm/Support/
H A DSwapByteOrder.h48 uint32_t Byte0 = value & 0x000000FF; in SwapByteOrder_32()
52 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in SwapByteOrder_32()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DSwapByteOrder.h50 uint32_t Byte0 = value & 0x000000FF; in SwapByteOrder_32()
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in SwapByteOrder_32()
/dports/devel/llvm80/llvm-8.0.1.src/include/llvm/Support/
H A DSwapByteOrder.h50 uint32_t Byte0 = value & 0x000000FF; in SwapByteOrder_32()
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in SwapByteOrder_32()
/dports/devel/llvm70/llvm-7.0.1.src/include/llvm/Support/
H A DSwapByteOrder.h50 uint32_t Byte0 = value & 0x000000FF;
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
/dports/devel/py-keystone-engine/keystone-engine-0.9.1-3/src/llvm/include/llvm/Support/
H A DSwapByteOrder.h48 uint32_t Byte0 = value & 0x000000FF; in SwapByteOrder_32()
52 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in SwapByteOrder_32()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/compiler-rt/lib/orc/
H A Dendianness.h72 uint32_t Byte0 = value & 0x000000FF; in ByteSwap_32()
76 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in ByteSwap_32()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/compiler-rt/lib/orc/
H A Dendianness.h72 uint32_t Byte0 = value & 0x000000FF; in ByteSwap_32()
76 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in ByteSwap_32()

1234567