HomeSort by relevance Sort by last modified time
    Searched defs:fcmp (Results 1 - 14 of 14) sorted by null

  /external/python/cpython2/Demo/threads/
fcmp.py 29 # fcmp lexicographically compares the fringes of two nested lists
30 def fcmp(l1, l2): function
52 print fcmp(range(7), x) # 0; fringes are equal
53 print fcmp(range(6), x) # -1; 1st list ends early
54 print fcmp(x, range(6)) # 1; 2nd list ends early
55 print fcmp(range(8), x) # 1; 2nd list ends early
56 print fcmp(x, range(8)) # -1; 1st list ends early
57 print fcmp([1,[[2],8]],
59 print fcmp([1,[[3],8]],
61 print fcmp([1,[[2],8]]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_support.py 30 "fcmp", "have_unicode", "is_jython", "TESTFN", "HOST", "FUZZ",
320 def fcmp(x, y): # fuzzy comparison function function
330 outcome = fcmp(x[i], y[i])
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
object.c 950 cmpfunc fcmp; local
963 fcmp = v->ob_type->tp_compare;
964 if (fcmp != NULL) {
965 int c = (*fcmp)(v, w);
    [all...]
  /external/python/cpython2/Lib/test/
test_support.py 34 "fcmp", "have_unicode", "is_jython", "TESTFN", "HOST", "FUZZ",
560 def fcmp(x, y): # fuzzy comparison function function
570 outcome = fcmp(x[i], y[i])
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_support.py 33 "fcmp", "have_unicode", "is_jython", "TESTFN", "HOST", "FUZZ",
387 def fcmp(x, y): # fuzzy comparison function function
397 outcome = fcmp(x[i], y[i])
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_support.py 33 "fcmp", "have_unicode", "is_jython", "TESTFN", "HOST", "FUZZ",
387 def fcmp(x, y): # fuzzy comparison function function
397 outcome = fcmp(x[i], y[i])
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_support.py 33 "fcmp", "have_unicode", "is_jython", "TESTFN", "HOST", "FUZZ",
387 def fcmp(x, y): # fuzzy comparison function function
397 outcome = fcmp(x[i], y[i])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_support.py 33 "fcmp", "have_unicode", "is_jython", "TESTFN", "HOST", "FUZZ",
387 def fcmp(x, y): # fuzzy comparison function function
397 outcome = fcmp(x[i], y[i])
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
object.c 955 cmpfunc fcmp; local
968 fcmp = v->ob_type->tp_compare;
969 if (fcmp != NULL) {
970 int c = (*fcmp)(v, w);
    [all...]
  /external/python/cpython2/Objects/
object.c 955 cmpfunc fcmp; local
968 fcmp = v->ob_type->tp_compare;
969 if (fcmp != NULL) {
970 int c = (*fcmp)(v, w);
    [all...]
  /external/v8/src/arm64/
assembler-arm64.cc 2001 void Assembler::fcmp(const FPRegister& fn, function in class:v8::internal::Assembler
2008 void Assembler::fcmp(const FPRegister& fn, function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 2936 void Assembler::fcmp(FPURegister src1, const double src2, function in class:v8::Assembler
    [all...]
  /external/v8/src/mips64/
assembler-mips64.cc 3185 void Assembler::fcmp(FPURegister src1, const double src2, function in class:v8::internal::Assembler
    [all...]
  /external/vixl/src/aarch64/
logic-aarch64.cc 4038 LogicVRegister Simulator::fcmp(VectorFormat vform, function in class:vixl::aarch64::Simulator
4077 LogicVRegister Simulator::fcmp(VectorFormat vform, function in class:vixl::aarch64::Simulator
    [all...]

Completed in 660 milliseconds