Searched refs:lhs (Results 126 - 150 of 232) sorted by relevance

12345678910

/freebsd-11-stable/contrib/gcc/
H A Dtree-ssa-loop-prefetch.c461 tree stmt, lhs, rhs; local
478 lhs = TREE_OPERAND (stmt, 0);
483 if (REFERENCE_CLASS_P (lhs))
484 gather_memory_references_ref (loop, &refs, lhs, true, stmt);
H A Dtree-vect-generic.c375 tree *p_lhs, *p_rhs, lhs, rhs, type, compute_type;
392 lhs = *p_lhs;
456 if (lang_hooks.types_compatible_p (TREE_TYPE (lhs), TREE_TYPE (rhs)))
459 *p_rhs = gimplify_build1 (bsi, VIEW_CONVERT_EXPR, TREE_TYPE (lhs), rhs);
374 tree *p_lhs, *p_rhs, lhs, rhs, type, compute_type; local
H A Dtree-vrp.c3964 tree lhs = TREE_OPERAND (stmt, 0); local
3970 if (TREE_CODE (lhs) == SSA_NAME
3971 && (INTEGRAL_TYPE_P (TREE_TYPE (lhs))
3972 || POINTER_TYPE_P (TREE_TYPE (lhs)))
4006 tree lhs = PHI_RESULT (phi); local
4007 set_value_range_to_varying (get_value_range (lhs));
4041 tree lhs, rhs, def; local
4044 lhs = TREE_OPERAND (stmt, 0);
4048 if (TREE_CODE (lhs) == SSA_NAME
4049 && ((INTEGRAL_TYPE_P (TREE_TYPE (lhs))
4773 tree lhs = PHI_RESULT (phi); local
[all...]
H A Dcombine.c6447 rtx rhs, lhs;
6602 lhs = XEXP (x, 0);
6608 && GET_CODE (lhs) == ASHIFT
6609 && GET_CODE (XEXP (lhs, 1)) == CONST_INT
6610 && INTVAL (rhs) >= INTVAL (XEXP (lhs, 1)))
6612 new = make_compound_operation (XEXP (lhs, 0), next_code);
6614 INTVAL (rhs) - INTVAL (XEXP (lhs, 1)),
6625 if (!OBJECT_P (lhs)
6626 && ! (GET_CODE (lhs) == SUBREG
6627 && (OBJECT_P (SUBREG_REG (lhs))))
6422 rtx rhs, lhs; local
7774 rtx rhs, lhs; local
7934 rtx lhs, rhs, other; local
8993 rtx lhs = simplify_shift_const (NULL_RTX, code, shift_mode, local
[all...]
H A Dipa-pure-const.c192 /* Any indirect reference that occurs on the lhs
417 /* First look on the lhs and see what variable is stored to */
418 tree lhs = TREE_OPERAND (t, 0); local
420 check_lhs_var (local, lhs);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DHashing.h85 friend bool operator==(const hash_code &lhs, const hash_code &rhs) { argument
86 return lhs.value == rhs.value;
88 friend bool operator!=(const hash_code &lhs, const hash_code &rhs) { argument
89 return lhs.value != rhs.value;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h162 /// If \a full is false, then the directory names for \a lhs and \a rhs are
167 /// \param[in] lhs
176 /// and either directory from \a lhs or \a rhs is empty, then
180 /// \return -1 if \a lhs is less than \a rhs, 0 if \a lhs is equal to \a rhs,
181 /// 1 if \a lhs is greater than \a rhs
182 static int Compare(const FileSpec &lhs, const FileSpec &rhs, bool full);
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dmacro.c442 cpp_token *lhs; local
463 lhs = _cpp_lex_direct (pfile);
466 source_location saved_loc = lhs->src_loc;
472 /* We have to remove the PASTE_LEFT flag from the old lhs, but
474 *lhs = **plhs;
475 *plhs = lhs;
476 lhs->src_loc = saved_loc;
477 lhs->flags &= ~PASTE_LEFT;
487 *plhs = lhs;
500 paste_all_tokens (cpp_reader *pfile, const cpp_token *lhs) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocationList.cpp64 static bool Compare(BreakpointLocationSP lhs, lldb::break_id_t val) { argument
65 return lhs->GetID() < val;
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_environment.cpp458 kmp_env_var_t const *lhs, kmp_env_var_t const *rhs) {
459 return strcmp(lhs->name, rhs->name);
H A Dkmp_str.cpp356 char const *lhs, // First string.
361 result = (_stricmp(lhs, rhs) == 0);
363 result = (strcmp(lhs, rhs) == 0);
355 __kmp_str_eqf( char const *lhs, char const *rhs ) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp217 [](const IndexedBase &lhs, const IndexedBase &rhs) {
218 return lhs.first < rhs.first;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceLocation.h435 bool operator()(const FullSourceLoc& lhs, const FullSourceLoc& rhs) const { argument
436 return lhs.isBeforeInTranslationUnitThan(rhs);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h2469 ArraySubscriptExpr(Expr *lhs, Expr *rhs, QualType t, argument
2473 lhs->isTypeDependent() || rhs->isTypeDependent(),
2474 lhs->isValueDependent() || rhs->isValueDependent(),
2475 (lhs->isInstantiationDependent() ||
2477 (lhs->containsUnexpandedParameterPack() ||
2479 SubExprs[LHS] = lhs;
3441 BinaryOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, argument
3445 lhs->isTypeDependent() || rhs->isTypeDependent(),
3446 lhs->isValueDependent() || rhs->isValueDependent(),
3447 (lhs
3626 BinaryOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, ExprValueKind VK, ExprObjectKind OK, SourceLocation opLoc, FPOptions FPFeatures, bool dead2) argument
3658 CompoundAssignOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResType, ExprValueKind VK, ExprObjectKind OK, QualType CompLHSType, QualType CompResultType, SourceLocation OpLoc, FPOptions FPFeatures) argument
3738 ConditionalOperator(Expr *cond, SourceLocation QLoc, Expr *lhs, SourceLocation CLoc, Expr *rhs, QualType t, ExprValueKind VK, ExprObjectKind OK) argument
3821 BinaryConditionalOperator(Expr *common, OpaqueValueExpr *opaqueValue, Expr *cond, Expr *lhs, Expr *rhs, SourceLocation qloc, SourceLocation cloc, QualType t, ExprValueKind VK, ExprObjectKind OK) argument
4142 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, QualType t, ExprValueKind VK, ExprObjectKind OK, SourceLocation RP, bool condIsTrue, bool TypeDependent, bool ValueDependent) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp718 Value *lhs = inst->getOperand(0); local
724 if (!frame.EvaluateValue(L, lhs, module)) {
725 LLDB_LOGF(log, "Couldn't evaluate %s", PrintValue(lhs).c_str());
797 LLDB_LOGF(log, " L : %s", frame.SummarizeValue(lhs).c_str());
1029 Value *lhs = inst->getOperand(0); local
1035 if (!frame.EvaluateValue(L, lhs, module)) {
1036 LLDB_LOGF(log, "Couldn't evaluate %s", PrintValue(lhs).c_str());
1106 LLDB_LOGF(log, " L : %s", frame.SummarizeValue(lhs).c_str());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DAddress.cpp955 bool lldb_private::operator<(const Address &lhs, const Address &rhs) { argument
956 ModuleSP lhs_module_sp(lhs.GetModule());
962 return lhs.GetFileAddress() < rhs.GetFileAddress();
970 bool lldb_private::operator>(const Address &lhs, const Address &rhs) { argument
971 ModuleSP lhs_module_sp(lhs.GetModule());
977 return lhs.GetFileAddress() > rhs.GetFileAddress();
H A DSourceManager.cpp606 bool lldb_private::operator==(const SourceManager::File &lhs, argument
608 if (lhs.m_file_spec != rhs.m_file_spec)
610 return lhs.m_mod_time == rhs.m_mod_time;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h540 bool operator==(const InternalMmapVectorNoCtor<T> &lhs, argument
542 if (lhs.size() != rhs.size()) return false;
543 return internal_memcmp(lhs.data(), rhs.data(), lhs.size() * sizeof(T)) == 0;
547 bool operator!=(const InternalMmapVectorNoCtor<T> &lhs, argument
549 return !(lhs == rhs);
/freebsd-11-stable/contrib/bmake/
H A Dvar.c260 /* struct passed as 'void *' to VarSubstitute() for ":S/lhs/rhs/",
261 * to VarSYSVMatch() for ":lhs=rhs". */
263 const char *lhs; /* String to match */ member in struct:__anon112
1413 if ((ptr = Str_SYSVMatch(word, pat->lhs, &len)) != NULL) {
1502 (strncmp(word, pattern->lhs, pattern->leftLen) == 0)) {
1550 * that because the $ will be left at the end of the lhs, we have
1555 (strncmp(cp, pattern->lhs, pattern->leftLen) == 0)) {
1595 cp = Str_FindSubstring(word, pattern->lhs);
1804 * We set the temp variable named in pattern.lhs to word and expand
2199 * unescaped ampersands with the lhs o
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dcache-membuffer.c500 static svn_error_t* assert_equal_tags(const entry_tag_t *lhs, argument
503 SVN_ERR_ASSERT(memcmp(lhs->content_hash, rhs->content_hash,
504 sizeof(lhs->content_hash)) == 0);
505 SVN_ERR_ASSERT(memcmp(lhs->prefix_hash, rhs->prefix_hash,
506 sizeof(lhs->prefix_hash)) == 0);
507 SVN_ERR_ASSERT(memcmp(lhs->key_hash, rhs->key_hash,
508 sizeof(lhs->key_hash)) == 0);
509 SVN_ERR_ASSERT(memcmp(lhs->prefix_tail, rhs->prefix_tail,
510 sizeof(lhs->prefix_tail)) == 0);
512 SVN_ERR_ASSERT(lhs
1371 entry_keys_match(const entry_key_t *lhs, const entry_key_t *rhs) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h231 friend bool operator==(const ProcessModID &lhs, const ProcessModID &rhs);
338 inline bool operator==(const ProcessModID &lhs, const ProcessModID &rhs) { argument
339 if (lhs.StopIDEqual(rhs) && lhs.MemoryIDEqual(rhs))
345 inline bool operator!=(const ProcessModID &lhs, const ProcessModID &rhs) { argument
346 return (!lhs.StopIDEqual(rhs) || !lhs.MemoryIDEqual(rhs));
/freebsd-11-stable/sbin/devd/
H A Ddevd.cc699 config::chop_var(char *&buffer, char *&lhs, char *&rhs) const argument
705 walker = lhs = buffer;
738 char *lhs; local
742 if (!chop_var(buffer, lhs, rhs))
744 set_variable(lhs, rhs);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h659 bool pathComponentMatches(llvm::StringRef lhs, llvm::StringRef rhs) const { argument
660 if ((CaseSensitive ? lhs.equals(rhs) : lhs.equals_lower(rhs)))
662 return (lhs == "/" && rhs == "\\") || (lhs == "\\" && rhs == "/");
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DChunks.h557 static bool isEqual(const ChunkAndOffset &lhs, const ChunkAndOffset &rhs) { argument
558 return lhs.inputChunk == rhs.inputChunk && lhs.offset == rhs.offset;
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DScriptParser.cpp112 Expr readExpr1(Expr lhs, int minPrec);
1008 Expr ScriptParser::readExpr1(Expr lhs, int minPrec) {
1012 return readTernary(lhs);
1030 lhs = combine(op1, lhs, rhs);
1032 return lhs;

Completed in 266 milliseconds

12345678910