HomeSort by: relevance | last modified time | path
    Searched defs:xor (Results 1 - 21 of 21) sorted by relevancy

  /src/include/
iso646.h 21 #define xor ^ macro
  /src/external/apache2/llvm/dist/clang/lib/Headers/
iso646.h 23 #define xor ^ macro
  /src/external/gpl3/gcc/dist/gcc/ginclude/
iso646.h 41 #define xor ^ macro
  /src/external/gpl3/gcc.old/dist/gcc/ginclude/
iso646.h 41 #define xor ^ macro
  /src/sys/dev/audio/
linear.c 48 uint8_t xor; local
62 xor = audio_format2_is_signed(arg->srcfmt) ? 0 : 0x80;
67 val ^= xor;
81 uint8_t xor; local
95 xor = audio_format2_is_signed(arg->dstfmt) ? 0 : 0x80;
100 val ^= xor;
115 uint16_t xor; local
133 xor = audio_format2_is_signed(arg->srcfmt) ? 0 : 0x8000;
141 if (__predict_true(xor == 0) && is_src_NE == false) {
157 val ^= xor;
173 uint16_t xor; local
232 auint_t xor; local
280 auint_t xor; local
332 auint_t xor; local
372 auint_t xor; local
    [all...]
audio.c 9233 aint2_t v, xor; local
9248 xor = audio_format2_is_signed(fmt) ? 0 : (aint2_t)1 << 31;
9255 v = *m++ ^ xor;
9264 v = *m++ ^ xor;
9272 v = *m++ ^ xor;
9279 v = *m++ ^ xor;
9288 v = *m++ ^ xor;
9297 v = *m++ ^ xor;
9305 v = *m++ ^ xor;
9312 v = *m++ ^ xor;
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
fe51_pack.S 112 xor %rdx,%rax label
139 xor %rdx,%rcx label
169 xor %rdx,%rcx label
196 xor %rdx,%rcx label
  /src/external/bsd/wpa/dist/src/crypto/
aes-siv.c 33 static void xor(u8 *a, const u8 *b) function
95 xor(tmp, tmp2);
111 xor(tmp, tmp2);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa20/xmm6/
salsa20_xmm6-asm.S 946 xor %rax,%rax label
  /src/sys/crypto/aes/
aes_ccm.c 51 xor(uint8_t *x, const uint8_t *a, const uint8_t *b, size_t n) function
152 xor(auth + i, auth + i, adp, MIN(adlen, 16 - i));
169 xor(auth, auth, adp, adlen);
202 xor(auth + C->i, auth + C->i, p, m);
203 xor(q, C->out + C->i, p, m);
232 xor(auth, auth, p, nbytes);
237 xor(q, C->out, p, nbytes);
262 xor(q, C->out + C->i, p, m);
263 xor(auth + C->i, auth + C->i, q, m);
294 xor(q, C->out, p, nbytes)
    [all...]
  /src/crypto/external/apache2/openssl/dist/include/internal/
constant_time.h 393 uint32_t xor = *a ^ *b; local
395 xor&= value_barrier_32(mask);
396 *a ^= xor;
397 *b ^= xor;
413 uint64_t xor = *a ^ *b; local
415 xor&= value_barrier_64(mask);
416 *a ^= xor;
417 *b ^= xor;
  /src/crypto/external/bsd/openssl/dist/include/internal/
constant_time.h 357 uint32_t xor = *a ^ *b; local
359 xor &= mask;
360 *a ^= xor;
361 *b ^= xor;
377 uint64_t xor = *a ^ *b; local
379 xor &= mask;
380 *a ^= xor;
381 *b ^= xor;
  /src/crypto/external/bsd/openssl.old/dist/include/internal/
constant_time.h 328 uint32_t xor = *a ^ *b; local
330 xor &= mask;
331 *a ^= xor;
332 *b ^= xor;
348 uint64_t xor = *a ^ *b; local
350 xor &= mask;
351 *a ^= xor;
352 *b ^= xor;
  /src/sys/arch/arm/ti/
omap2_nand.c 502 uint32_t oecc, cecc, xor; local
510 xor = oecc ^ cecc;
513 if (xor == 0x00)
516 switch (popcount32(xor)) {
519 parity = xor >> 16;
  /src/crypto/external/apache2/openssl/dist/crypto/bn/
bn_lib.c 437 int neg = 0, xor = 0, carry = 0; local
480 xor = neg ? 0xff : 0x00;
485 * Skip leading sign extensions (the value of |xor|).
488 for (; len > 0 && *s2 == xor; s2 += inc2, len--)
496 if (xor == 0xff) {
517 BN_ULONG byte_xored = *s ^ xor;
548 int xor = 0, carry = 0, ext = 0; local
562 xor = a->neg ? 0xff : 0x00;
616 byte_xored = byte ^ xor;
  /src/external/gpl3/gdb/dist/sim/ppc/
vm.c 220 /* address xor for PPC endian */
221 unsigned xor[WITH_XOR_ENDIAN]; member in struct:_om_map
420 account for the PPC's XOR operation */
430 ra ^= map->xor[sizeof(instruction_word) - 1];
443 ra ^= map->xor[sizeof(instruction_word) - 1];
972 /* set up the XOR registers if the current endian mode conflicts
983 virtual->instruction_map.translation.xor[i-1] = mask;
984 virtual->data_map.translation.xor[i-1] = mask;
1104 ra ^= map->translation.xor[sizeof(instruction_word) - 1];
1130 ra ^= map->translation.xor[0]
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/ppc/
vm.c 220 /* address xor for PPC endian */
221 unsigned xor[WITH_XOR_ENDIAN]; member in struct:_om_map
420 account for the PPC's XOR operation */
430 ra ^= map->xor[sizeof(instruction_word) - 1];
443 ra ^= map->xor[sizeof(instruction_word) - 1];
972 /* set up the XOR registers if the current endian mode conflicts
983 virtual->instruction_map.translation.xor[i-1] = mask;
984 virtual->data_map.translation.xor[i-1] = mask;
1104 ra ^= map->translation.xor[sizeof(instruction_word) - 1];
1130 ra ^= map->translation.xor[0]
    [all...]
  /src/external/mpl/dhcp/dist/keama/
confparse.c 4600 uint8_t xor[16]; local
4608 xor[i] = lo[i] ^ hi[i];
4610 if (xor[plen / 8] != 0)
4615 if (xor[i] != 0)
4618 uint8_t msk = ~xor[plen / 8];
  /src/sys/dev/pci/
radeonfb.c 3978 uint8_t and[512], xor[512]; local
3985 * by a line of XOR data. (Each line corresponds to a whole hardware
3990 * AND XOR Result
4008 * IF mask bit == 1, AND = 0, XOR = color.
4009 * IF mask bit == 0, AND = 1, XOR = 0.
4011 * hence: AND = ~(mask); XOR = color & ~(mask);
4018 memset(xor, 0x00, 512);
4029 xor[dst] = img[src] & msk[src];
4038 xor[i] = radeonfb_backwards(xor[i])
    [all...]
if_mcx.c 3229 mcx_mix_u64(uint32_t xor, uint64_t u64)
3231 xor ^= u64 >> 32;
3232 xor ^= u64;
3234 return (xor);
3238 mcx_mix_u32(uint32_t xor, uint32_t u32)
3240 xor ^= u32;
3242 return (xor);
3246 mcx_mix_u8(uint32_t xor, uint8_t u8)
3248 xor ^= u8;
3250 return (xor);
3266 uint32_t xor = 0xff; local
3458 uint32_t xor = 0xff; local
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_rar.c 3532 uint8_t xor; local
3535 xor = 0;
3537 xor ^= bytes[i];
3538 if (!length || xor != bytes[0])

Completed in 81 milliseconds