HomeSort by relevance Sort by last modified time
    Searched defs:Equal (Results 1 - 25 of 28) sorted by null

1 2

  /external/openfst/src/script/
equal.cc 19 #include <fst/script/equal.h>
24 bool Equal(const FstClass &fst1, const FstClass &fst2, float kDelta) {
25 if (!ArcTypesMatch(fst1, fst2, "Equal")) return false;
30 Apply<Operation<EqualArgs> >("Equal", fst1.ArcType(), &args_with_retval);
35 REGISTER_FST_OPERATION(Equal, StdArc, EqualArgs);
36 REGISTER_FST_OPERATION(Equal, LogArc, EqualArgs);
37 REGISTER_FST_OPERATION(Equal, Log64Arc, EqualArgs);
  /external/openfst/src/include/fst/script/
equal.h 22 #include <fst/equal.h>
31 void Equal(EqualArgs *args) {
35 args->retval = Equal(fst1, fst2, args->args.arg3);
38 bool Equal(const FstClass &fst1, const FstClass &fst2,
  /external/webkit/Source/JavaScriptGlue/
JSBase.cpp 75 UInt8 JSBase::Equal(JSBase* other)
JSObject.cpp 112 UInt8 JSUserObject::Equal(JSBase* other)
118 if (fCallBacks.equal)
120 result = fCallBacks.equal(GetData(), obj->GetData());
  /external/openfst/src/include/fst/
equal.h 31 bool Equal(const Fst<Arc> &fst1, const Fst<Arc> &fst2, float delta = kDelta) {
36 VLOG(1) << "Equal: mismatched start states";
45 VLOG(1) << "Equal: mismatched # of states";
51 VLOG(1) << "Equal: mismatched states:"
59 VLOG(1) << "Equal: mismatched final weights:"
69 VLOG(1) << "Equal: mismatched # of arcs"
76 VLOG(1) << "Equal: mismatched arc input labels:"
83 VLOG(1) << "Equal: mismatched arc output labels:"
90 VLOG(1) << "Equal: mismatched arc weights:"
97 VLOG(1) << "Equal: mismatched input label:
    [all...]
state-map.h 507 struct Equal {
517 Equal equal_;
582 struct Equal {
593 Equal equal_;
  /external/skia/legacy/src/core/
SkTypeface.cpp 58 bool SkTypeface::Equal(const SkTypeface* facea, const SkTypeface* faceb) {
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
equal.h 28 bool Equal(const Fst<Arc> &fst1, const Fst<Arc> &fst2) {
33 VLOG(1) << "Equal: mismatched start states";
42 VLOG(1) << "Equal: mismatched # of states";
48 VLOG(1) << "Equal: mismatched states:"
56 VLOG(1) << "Equal: mismatched final weights:"
66 VLOG(1) << "Equal: mismatched # of arcs"
73 VLOG(1) << "Equal: mismatched arc input labels:"
80 VLOG(1) << "Equal: mismatched arc output labels:"
87 VLOG(1) << "Equal: mismatched arc weights:"
94 VLOG(1) << "Equal: mismatched input label:
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/unicode/
Collator.h 46 enum Result { Equal = 0, Greater = 1, Less = -1 };
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 30 Value *Equal = Builder.CreateICmpEQ(Orig, Cmp);
31 Value *Res = Builder.CreateSelect(Equal, Val, Orig);
  /external/skia/src/core/
SkTypeface.cpp 59 bool SkTypeface::Equal(const SkTypeface* facea, const SkTypeface* faceb) {
  /external/v8/src/
bignum.h 72 static bool Equal(const Bignum& a, const Bignum& b) {
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerSH4.cpp 34 const Condition MacroAssemblerSH4::Equal = SH4Assembler::EQ;
MacroAssemblerX86Common.h 45 Equal = X86Assembler::ConditionE,
640 return branch32(branchType ? NotEqual : Equal, dest, TrustedImm32(0x80000000));
655 // Convert the integer result back to float & compare to the original value - if not equal or unordered (NaN) then jump.
791 // treated as a signed 32bit value, is less than or equal to 5.
793 // jz and jnz test whether the first operand is equal to zero, and take
811 if (((cond == Equal) || (cond == NotEqual)) && !right.m_value)
    [all...]
MacroAssemblerARM.h 46 Equal = ARMAssembler::EQ,
912 return Jump(m_assembler.jmp(ARMCondition(Equal)));
924 // Convert the integer result back to float & compare to the original value - if not equal or unordered (NaN) then jump.
    [all...]
MacroAssemblerARMv7.h 104 Equal = ARMv7Assembler::ConditionEQ,
671 // We get here if either unordered or equal.
694 // Convert the integer result back to float & compare to the original value - if not equal or unordered (NaN) then jump.
719 // We get here if either unordered or equal.
825 // treated as a signed 32bit value, is less than or equal to 5.
827 // jz and jnz test whether the first operand is equal to zero, and take
831 // Should we be using TEQ for equal/not-equal?
    [all...]
MacroAssemblerMIPS.h 61 Equal,
898 // treated as a signed 32bit value, is less than or equal to 5.
900 // jz and jnz test whether the first operand is equal to zero, and take
914 if (cond == Equal || cond == Zero
    [all...]
MacroAssemblerSH4.h 43 static const Condition Equal;
218 compare32(32, shiftamount, Equal);
353 if (((cond == Equal) || (cond == NotEqual)) && (dst == SH4Registers::r0) && m_assembler.isImmediate(imm)) {
873 if (((cond == Equal) || (cond == NotEqual)) && !right.m_value)
909 m_assembler.cmplRegReg(scratchReg3, scr, Equal);
914 m_assembler.cmplRegReg(scratchReg3, scr, Equal);
946 m_assembler.cmplRegReg(scratchReg3, scr, Equal);
951 m_assembler.cmplRegReg(scratchReg3, scr, Equal);
963 m_assembler.cmplRegReg(scratchReg3, scr, Equal);
968 m_assembler.cmplRegReg(scratchReg3, scr, Equal);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IdempotentOperationChecker.cpp 80 enum Assumption { Possible = 0, Impossible, Equal, LHSis1, RHSis1, LHSis0,
199 UpdateAssumption(A, Equal);
225 UpdateAssumption(A, Equal);
387 case Equal:
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 45 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /external/regex-re2/re2/
regexp.cc 377 LOG(DFATAL) << "Unexpected op in Regexp::Equal: " << a->op();
381 bool Regexp::Equal(Regexp* a, Regexp* b) {
406 // be compared. The regexps are only equal if
407 // all the pairs end up being equal.
690 // ranges as equal if they overlap at all, so that
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
RenderState.java 94 * The test succeeds if the input value is equal to the reference value.
96 Equal,
102 * The test succeeds if the input value is less than or equal to
111 * The test succeeds if the input value is greater than or equal to
116 * The test succeeds if the input value does not equal the
518 * The input pixel's depth value must be less than or equal than
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 243 bool Equal(const FlagValue& x) const;
419 bool FlagValue::Equal(const FlagValue& x) const {
573 if (!modified_ && !current_->Equal(*defvalue_)) {
581 if (!current_->Equal(*src.current_)) current_->CopyFrom(*src.current_);
582 if (!defvalue_->Equal(*src.defvalue_)) defvalue_->CopyFrom(*src.defvalue_);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 158 "KnownZero, KnownOne and Min, Max must have equal bitwidth.");
182 "Ty, KnownZero, KnownOne and Min, Max must have equal bitwidth.");
728 // so the values can never be equal. Similarly for all other "or equals"
    [all...]
  /external/open-vcdiff/gflags/src/
gflags.cc 243 bool Equal(const FlagValue& x) const;
419 bool FlagValue::Equal(const FlagValue& x) const {
573 if (!modified_ && !current_->Equal(*defvalue_)) {
581 if (!current_->Equal(*src.current_)) current_->CopyFrom(*src.current_);
582 if (!defvalue_->Equal(*src.defvalue_)) defvalue_->CopyFrom(*src.defvalue_);
    [all...]

Completed in 1362 milliseconds

1 2