| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | selftest.h | 392 #define ASSERT_GT(LHS, RHS) \ argument 393 ASSERT_GT_AT ((SELFTEST_LOCATION), (LHS), (RHS)) 398 #define ASSERT_GT_AT(LOC, LHS, RHS) \ argument 400 const char *desc_ = "ASSERT_GT (" #LHS ", " #RHS ")"; \ 401 if ((LHS) > (RHS)) \ 411 #define ASSERT_LT(LHS, RHS) \ argument 412 ASSERT_LT_AT ((SELFTEST_LOCATION), (LHS), (RHS)) 417 #define ASSERT_LT_AT(LOC, LHS, RHS) \ argument 419 const char *desc_ = "ASSERT_LT (" #LHS ", " #RHS ")"; \ 420 if ((LHS) < (RHS)) \
|
| H A D | gimple.def | 87 SUBCODE is the tree code for the expression computed by the RHS of the 95 RHS1 is the first operand on the RHS of the assignment. It must always be 98 RHS2 is the second operand on the RHS of the assignment. It must be a tree
|
| H A D | rtl.h | 2657 #define MEM_COPY_ATTRIBUTES(LHS, RHS) \ 2658 (MEM_VOLATILE_P (LHS) = MEM_VOLATILE_P (RHS), \ 2659 MEM_NOTRAP_P (LHS) = MEM_NOTRAP_P (RHS), \ 2660 MEM_READONLY_P (LHS) = MEM_READONLY_P (RHS), \ 2661 MEM_KEEP_ALIAS_SET_P (LHS) = MEM_KEEP_ALIAS_SET_P (RHS), \ 2662 MEM_POINTER (LHS) = MEM_POINTER (RHS), \ 2663 MEM_ATTRS (LHS) = MEM_ATTRS (RHS))
|
| H A D | tree.def | 1018 the RHS of assignments.
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | selftest.h | 392 #define ASSERT_GT(LHS, RHS) \ argument 393 ASSERT_GT_AT ((SELFTEST_LOCATION), (LHS), (RHS)) 398 #define ASSERT_GT_AT(LOC, LHS, RHS) \ argument 400 const char *desc_ = "ASSERT_GT (" #LHS ", " #RHS ")"; \ 401 if ((LHS) > (RHS)) \ 411 #define ASSERT_LT(LHS, RHS) \ argument 412 ASSERT_LT_AT ((SELFTEST_LOCATION), (LHS), (RHS)) 417 #define ASSERT_LT_AT(LOC, LHS, RHS) \ argument 419 const char *desc_ = "ASSERT_LT (" #LHS ", " #RHS ")"; \ 420 if ((LHS) < (RHS)) \
|
| H A D | gimple.def | 87 SUBCODE is the tree code for the expression computed by the RHS of the 95 RHS1 is the first operand on the RHS of the assignment. It must always be 98 RHS2 is the second operand on the RHS of the assignment. It must be a tree
|
| H A D | rtl.h | 2657 #define MEM_COPY_ATTRIBUTES(LHS, RHS) \ 2658 (MEM_VOLATILE_P (LHS) = MEM_VOLATILE_P (RHS), \ 2659 MEM_NOTRAP_P (LHS) = MEM_NOTRAP_P (RHS), \ 2660 MEM_READONLY_P (LHS) = MEM_READONLY_P (RHS), \ 2661 MEM_KEEP_ALIAS_SET_P (LHS) = MEM_KEEP_ALIAS_SET_P (RHS), \ 2662 MEM_POINTER (LHS) = MEM_POINTER (RHS), \ 2663 MEM_ATTRS (LHS) = MEM_ATTRS (RHS))
|
| H A D | tree.def | 1018 the RHS of assignments.
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/rust/rust-llvm/ |
| H A D | 0001-AsmMatcherEmitter-sort-ClassInfo-lists-by-name-as-we.patch | 24 - return ValueName < RHS.ValueName; 25 + if (ValueName != RHS.ValueName) 26 + return ValueName < RHS.ValueName; 28 + return Name < RHS.Name;
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/llvm/llvm/ |
| H A D | 0001-AsmMatcherEmitter-sort-ClassInfo-lists-by-name-as-we.patch | 24 - return ValueName < RHS.ValueName; 25 + if (ValueName != RHS.ValueName) 26 + return ValueName < RHS.ValueName; 28 + return Name < RHS.Name;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/function_types/ |
| H A D | property_tags.hpp | 54 template<class LHS, class RHS> struct compound_tag 60 , ::boost::function_types::detail::bits<RHS>::value 61 , ::boost::function_types::detail::mask<RHS>::value 69 , ::boost::function_types::detail::bits<RHS>::value 70 , ::boost::function_types::detail::mask<RHS>::value
|
| /OK3568_Linux_fs/external/security/librkcrypto/test/c_mode/ |
| H A D | ecp.c | 1645 mbedtls_mpi YY, RHS; in ecp_check_pubkey_sw() local 1654 mbedtls_mpi_init( &YY ); mbedtls_mpi_init( &RHS ); in ecp_check_pubkey_sw() 1661 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &RHS, &pt->X, &pt->X ) ); MOD_MUL( RHS ); in ecp_check_pubkey_sw() 1666 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_int( &RHS, &RHS, 3 ) ); MOD_SUB( RHS ); in ecp_check_pubkey_sw() 1670 MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( &RHS, &RHS, &grp->A ) ); MOD_ADD( RHS ); in ecp_check_pubkey_sw() 1673 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &RHS, &RHS, &pt->X ) ); MOD_MUL( RHS ); in ecp_check_pubkey_sw() 1674 MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( &RHS, &RHS, &grp->B ) ); MOD_ADD( RHS ); in ecp_check_pubkey_sw() 1676 if( mbedtls_mpi_cmp_mpi( &YY, &RHS ) != 0 ) in ecp_check_pubkey_sw() 1681 mbedtls_mpi_free( &YY ); mbedtls_mpi_free( &RHS ); in ecp_check_pubkey_sw()
|
| /OK3568_Linux_fs/u-boot/scripts/dtc/ |
| H A D | dtc-parser.tab.c_shipped | 740 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. 742 the previous symbol: RHS[0] (always defined). */ 1271 /* The number of symbols on the RHS of the reduced rule.
|
| /OK3568_Linux_fs/buildroot/support/kconfig/ |
| H A D | zconf.tab.c_shipped | 1310 /* The number of symbols on the RHS of the reduced rule.
|
| /OK3568_Linux_fs/u-boot/scripts/kconfig/ |
| H A D | zconf.tab.c_shipped | 1311 /* The number of symbols on the RHS of the reduced rule.
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/ |
| H A D | gccint.info | 12827 assignments, where subcode indicates the operation done on the RHS 13331 than two slots on the RHS. For instance, a 'COND_EXPR' expression 13351 to its GENERIC form but in GIMPLE, the 'PLUS_EXPR' on the RHS of the 13507 the operation performed by the 'RHS' of the assignment. 13770 Return the code of the expression computed on the 'RHS' of 13786 Return the first operand on the 'RHS' of assignment statement 'G'. 13789 Return the address of the first operand on the 'RHS' of assignment 13793 Return the second operand on the 'RHS' of assignment statement 'G'. 13796 Return the address of the second operand on the 'RHS' of assignment 13800 Return the third operand on the 'RHS' of assignment statement 'G'. [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/ |
| H A D | gccint.info | 12827 assignments, where subcode indicates the operation done on the RHS 13331 than two slots on the RHS. For instance, a 'COND_EXPR' expression 13351 to its GENERIC form but in GIMPLE, the 'PLUS_EXPR' on the RHS of the 13507 the operation performed by the 'RHS' of the assignment. 13770 Return the code of the expression computed on the 'RHS' of 13786 Return the first operand on the 'RHS' of assignment statement 'G'. 13789 Return the address of the first operand on the 'RHS' of assignment 13793 Return the second operand on the 'RHS' of assignment statement 'G'. 13796 Return the address of the second operand on the 'RHS' of assignment 13800 Return the third operand on the 'RHS' of assignment statement 'G'. [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/info/ |
| H A D | libc.info-13 | 4349 -- Function: int thrd_equal (thrd_t LHS, thrd_t RHS) 4354 ‘thrd_equal’ checks whether LHS and RHS refer to the same thread. 4355 If LHS and RHS are different threads, this function returns 0; 17336 ‘int thrd_equal (thrd_t LHS, thrd_t RHS)’
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/info/ |
| H A D | libc.info-13 | 4349 -- Function: int thrd_equal (thrd_t LHS, thrd_t RHS) 4354 ‘thrd_equal’ checks whether LHS and RHS refer to the same thread. 4355 If LHS and RHS are different threads, this function returns 0; 17336 ‘int thrd_equal (thrd_t LHS, thrd_t RHS)’
|