| /src/external/gpl3/gdb.old/dist/gdb/arch/ |
| aarch64.c | 93 aarch64_mask_from_pac_registers (const CORE_ADDR cmask, const CORE_ADDR dmask) 96 if (dmask != cmask) 97 return dmask > cmask ? dmask : cmask; 99 return cmask;
|
| aarch64.h | 105 /* Given CMASK and DMASK the two PAC mask registers, return the correct PAC 108 aarch64_mask_from_pac_registers (const CORE_ADDR cmask, const CORE_ADDR dmask);
|
| /src/external/gpl3/gdb/dist/gdb/arch/ |
| aarch64.c | 101 aarch64_mask_from_pac_registers (const CORE_ADDR cmask, const CORE_ADDR dmask) 104 if (dmask != cmask) 105 return dmask > cmask ? dmask : cmask; 107 return cmask;
|
| aarch64.h | 117 /* Given CMASK and DMASK the two PAC mask registers, return the correct PAC 120 aarch64_mask_from_pac_registers (const CORE_ADDR cmask, const CORE_ADDR dmask);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/ |
| aarch64-non-address-bits.exp | 51 gdb_test_multiple "ptype \$pauth_cmask" "fetch PAC cmask" { 63 # Value of the cmask register. 64 set cmask 0 68 set cmask [get_valueof "" "\$pauth_cmask >> 48" "0" "fetch PAC cmask"] 87 # checking cmask. 88 gdb_test_multiple "p/x (~${cmask}ULL & (${lower_bits}ULL))" "" { 90 # Either cmask is 0x7F or lower_bits is 0x0. 95 # cmask doesn't mask off all the PAC bits, which
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/ |
| aarch64-non-address-bits.exp | 51 gdb_test_multiple "ptype \$pauth_cmask" "fetch PAC cmask" { 63 # Value of the cmask register. 64 set cmask 0 68 set cmask [get_valueof "" "\$pauth_cmask >> 48" "0" "fetch PAC cmask"] 87 # checking cmask. 88 gdb_test_multiple "p/x (~${cmask}ULL & (${lower_bits}ULL))" "" { 90 # Either cmask is 0x7F or lower_bits is 0x0. 95 # cmask doesn't mask off all the PAC bits, which
|
| /src/external/bsd/ntp/dist/sntp/libopts/ |
| pgusage.c | 55 static mode_t const cmask = S_IRWXO | S_IRWXG; local 56 mode_t svmsk = umask(cmask);
|
| /src/usr.bin/at/ |
| at.c | 183 mode_t cmask; local 252 cmask = umask(S_IRUSR | S_IWUSR | S_IXUSR); 308 (void)fprintf(fp, "umask %o\n", cmask);
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_aes_cbc_hmac_sha1_hw.c | 602 unsigned int c, cmask; local 606 cmask = ((int)(j - off - SHA_DIGEST_LENGTH)) >> (sizeof(int) * 8 - 1); 607 res |= (c ^ pad) & ~cmask; /* ... and padding */ 608 cmask &= ((int)(off - 1 - j)) >> (sizeof(int) * 8 - 1); 609 res |= (c ^ pmac->c[i]) & cmask; 610 i += 1 & cmask;
|
| cipher_aes_cbc_hmac_sha256_hw.c | 653 unsigned int c, cmask; local 659 cmask = ((int)(j - off - SHA256_DIGEST_LENGTH)) >> (sizeof(int) * 8 - 1); 660 res |= (c ^ pad) & ~cmask; /* ... and padding */ 661 cmask &= ((int)(off - 1 - j)) >> (sizeof(int) * 8 - 1); 662 res |= (c ^ pmac->c[i]) & cmask; 663 i += 1 & cmask;
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_aes_cbc_hmac_sha1_hw.c | 604 unsigned int c, cmask; local 608 cmask = 611 res |= (c ^ pad) & ~cmask; /* ... and padding */ 612 cmask &= ((int)(off - 1 - j)) >> (sizeof(int) * 8 - 1); 613 res |= (c ^ pmac->c[i]) & cmask; 614 i += 1 & cmask;
|
| cipher_aes_cbc_hmac_sha256_hw.c | 656 unsigned int c, cmask; local 662 cmask = 665 res |= (c ^ pad) & ~cmask; /* ... and padding */ 666 cmask &= ((int)(off - 1 - j)) >> (sizeof(int) * 8 - 1); 667 res |= (c ^ pmac->c[i]) & cmask; 668 i += 1 & cmask;
|
| /src/external/gpl3/gdb.old/dist/sim/rl78/ |
| rl78.c | 253 int vmask, cmask, amask, avmask; local 258 cmask = 0x10000; 265 cmask = 0x100; 276 if ((after & cmask) != (before & cmask))
|
| /src/external/gpl3/gdb/dist/sim/rl78/ |
| rl78.c | 253 int vmask, cmask, amask, avmask; local 258 cmask = 0x10000; 265 cmask = 0x100; 276 if ((after & cmask) != (before & cmask))
|
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| e_aes_cbc_hmac_sha1.c | 703 unsigned int c, cmask; local 707 cmask = ((int)(j - off - SHA_DIGEST_LENGTH)) >> (sizeof(int) * 8 - 1); 708 res |= (c ^ pad) & ~cmask; /* ... and padding */ 709 cmask &= ((int)(off - 1 - j)) >> (sizeof(int) * 8 - 1); 710 res |= (c ^ pmac->c[i]) & cmask; 711 i += 1 & cmask;
|
| e_aes_cbc_hmac_sha256.c | 699 unsigned int c, cmask; local 704 cmask = ((int)(j - off - SHA256_DIGEST_LENGTH)) >> (sizeof(int) * 8 - 1); 705 res |= (c ^ pad) & ~cmask; /* ... and padding */ 706 cmask &= ((int)(off - 1 - j)) >> (sizeof(int) * 8 - 1); 707 res |= (c ^ pmac->c[i]) & cmask; 708 i += 1 & cmask;
|
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| e_aes_cbc_hmac_sha1.c | 703 unsigned int c, cmask; local 707 cmask = 710 res |= (c ^ pad) & ~cmask; /* ... and padding */ 711 cmask &= ((int)(off - 1 - j)) >> (sizeof(int) * 8 - 1); 712 res |= (c ^ pmac->c[i]) & cmask; 713 i += 1 & cmask;
|
| e_aes_cbc_hmac_sha256.c | 707 unsigned int c, cmask; local 712 cmask = 715 res |= (c ^ pad) & ~cmask; /* ... and padding */ 716 cmask &= ((int)(off - 1 - j)) >> (sizeof(int) * 8 - 1); 717 res |= (c ^ pmac->c[i]) & cmask; 718 i += 1 & cmask;
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| e_aes_cbc_hmac_sha1.c | 698 unsigned int c, cmask; local 703 cmask = 706 res |= (c ^ pad) & ~cmask; /* ... and padding */ 707 cmask &= ((int)(off - 1 - j)) >> (sizeof(int) * 8 - 1); 708 res |= (c ^ pmac->c[i]) & cmask; 709 i += 1 & cmask;
|
| e_aes_cbc_hmac_sha256.c | 703 unsigned int c, cmask; local 708 cmask = 711 res |= (c ^ pad) & ~cmask; /* ... and padding */ 712 cmask &= ((int)(off - 1 - j)) >> (sizeof(int) * 8 - 1); 713 res |= (c ^ pmac->c[i]) & cmask; 714 i += 1 & cmask;
|
| /src/external/gpl3/gcc.old/dist/libcpp/ |
| charset.cc | 1344 size_t cmask = width_to_mask (cwidth); 1358 c = n & cmask; 2004 size_t cmask = width_to_mask (cwidth); 2028 result = (result << cwidth) | (c & cmask); 1342 size_t cmask = width_to_mask (cwidth); local 2000 size_t cmask = width_to_mask (cwidth); local
|
| /src/sys/arch/hppa/dev/ |
| gftfb.c | 924 uint32_t bg, fg, mask, cmask; local 968 cmask = 0xffffffff << (32 - wi); 969 gftfb_write4(sc, NGLE_BINC_MASK, cmask); 1022 gftfb_write4(sc, NGLE_BINC_DATA_D, cmask);
|
| hyperfb.c | 1135 uint32_t bg, fg, mask, cmask; local 1178 cmask = 0xffffffff << (32 - wi); 1179 hyperfb_write4(sc, NGLE_BINC_MASK, cmask); 1231 hyperfb_write4(sc, NGLE_BINC_DATA_D, cmask);
|
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| trans-stmt.cc | 5417 CMASK is the updated execution mask on output, or NULL if not required. 5423 tree mask, bool invert, tree cmask, tree pmask, 5476 if (mask && (cmask || pmask)) 5485 if (mask && (cmask || pmask)) 5493 if (cmask) 5495 tmp1 = gfc_build_array_ref (cmask, count, NULL); 5782 tree cmask = NULL_TREE; local 5853 cmask = allocate_temp_for_forall_nest_1 (mask_type, size, block, 5873 then we don't need to update the control mask (cmask). 5879 cblock->next ? cmask : NULL_TREE [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| trans-stmt.cc | 5317 CMASK is the updated execution mask on output, or NULL if not required. 5323 tree mask, bool invert, tree cmask, tree pmask, 5376 if (mask && (cmask || pmask)) 5385 if (mask && (cmask || pmask)) 5393 if (cmask) 5395 tmp1 = gfc_build_array_ref (cmask, count, NULL); 5682 tree cmask = NULL_TREE; local 5753 cmask = allocate_temp_for_forall_nest_1 (mask_type, size, block, 5773 then we don't need to update the control mask (cmask). 5779 cblock->next ? cmask : NULL_TREE [all...] |