Searched refs:f1 (Results 1 - 25 of 32) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
H A DCalls.py11 global f,f1,g,h
17 def f1(x): function in function:PythonFunctionCalls.test
30 f1(i)
31 f1(i)
32 f1(i)
33 f1(i)
42 f1(i)
43 f1(i)
44 f1(i)
45 f1(
97 def f1(x): function in function:PythonFunctionCalls.calibrate
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
H A Dndiff.py69 f1 = fopen(f1name)
71 if not f1 or not f2:
74 a = f1.readlines(); f1.close()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
H A Dtest_config_cmd.py70 f1 = os.path.join(tmp_dir, 'one')
73 self.write_file(f1, 'xxx')
76 for f in (f1, f2):
81 cmd._clean(f1, f2)
83 for f in (f1, f2):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dfilecmp.py7 cmp(f1, f2, shallow=1) -> int
21 def cmp(f1, f2, shallow=1):
26 f1 -- First file name
42 s1 = _sig(os.stat(f1))
51 result = _cache.get((f1, f2))
54 outcome = _do_cmp(f1, f2)
55 _cache[f1, f2] = s1, s2, outcome
63 def _do_cmp(f1, f2):
65 with open(f1, 'rb') as fp1, open(f2, 'rb') as fp2:
H A Dposixpath.py151 def samefile(f1, f2):
153 s1 = os.stat(f1)
H A Dprofile.py528 def f1(n): function in function:Profile._calibrate_inner
532 def f(m, f1=f1):
534 f1(100)
557 # reported_time <- "CPU seconds" the profiler charged to f and f1.
562 if funcname in ("f", "f1"):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
H A DSynch.py113 def f1(lock, f2=f2, done=done): function in function:_testLock
115 print "f1 running in thread %d\n" % thread.get_ident(),
124 f1(lock) # Adds 2 to done
129 thread.start_new_thread(f1, (lock,)) # Adds 2
130 thread.start_new_thread(f1, (lock, f1)) # Adds 3
/device/google/cuttlefish/shared/config/
H A Dinit.hardware.usb.rc57 symlink /config/usb_gadget/g1/functions/ffs.mtp /config/usb_gadget/g1/configs/b.1/f1
61 symlink /config/usb_gadget/g1/functions/ffs.mtp /config/usb_gadget/g1/configs/b.1/f1
65 symlink /config/usb_gadget/g1/functions/gsi.rndis /config/usb_gadget/g1/configs/b.1/f1
69 symlink /config/usb_gadget/g1/functions/gsi.rndis /config/usb_gadget/g1/configs/b.1/f1
73 symlink /config/usb_gadget/g1/functions/ffs.ptp /config/usb_gadget/g1/configs/b.1/f1
77 symlink /config/usb_gadget/g1/functions/ffs.ptp /config/usb_gadget/g1/configs/b.1/f1
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_scope.py254 f1 = lambda x: lambda y: x + y
255 inc = f1(1)
256 plus10 = f1(10)
427 def f1(): function in function:.testLeaks
434 f1()
H A Dtest_decorators.py106 def f1(): return 42 function in function:TestDecorators.test_argforms
107 self.assertEqual(f1(), 42)
108 self.assertEqual(f1.dbval, (args, kwds))
167 "@f1 @f2\ndef f(): pass", "test", "exec")
H A Dtest_compile.py355 f1 = lambda x=1: x
357 return f1, f2
358 f1, f2 = f()
359 self.assertNotEqual(id(f1.func_code), id(f2.func_code))
H A Dtest_pep277.py151 f1 = os.listdir(test_support.TESTFN)
156 self.assertEqual(len(f1), len(f2))
H A Dtest_threading_local.py134 def f1(): function in function:BaseLocalTest._test_one_class
152 t1 = threading.Thread(target=f1)
H A Dtest_inspect.py668 f1 = self.makeCallable('a, b')
674 # f1 takes exactly 2 arguments
675 self.assertEqualException(f1, '')
676 self.assertEqualException(f1, '1')
677 self.assertEqualException(f1, 'a=2')
678 self.assertEqualException(f1, 'b=3')
682 for f in f1, f2:
683 # f1/f2 takes exactly/at most 2 arguments
H A Dtest_grammar.py144 def f1(): pass function in function:GrammarTests.testFuncdef
145 f1()
146 f1(*())
147 f1(*(), **{})
174 f1()
/device/linaro/hikey/factory-images/
H A Dgenerate-factory-images-hikey.sh26 BUILD=`basename ${BUILDNAME} | cut -f3 -d'-' | cut -f1 -d'.'`
H A Dgenerate-factory-images-hikey960.sh26 BUILD=`basename ${BUILDNAME} | cut -f3 -d'-' | cut -f1 -d'.'`
/device/linaro/hikey/uefi-tools/
H A Dcommon-functions85 MAJVER=`echo $gcc_version | cut -d. -f1`
H A Dedk2-build.sh33 board=`echo $board | cut -d: -f1`
354 if [ "`echo $1 | cut -d: -f1`" == $board ]; then
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
H A Dpy2_test_grammar.py149 def f1(): pass function in function:GrammarTests.testFuncdef
150 f1()
151 f1(*())
152 f1(*(), **{})
177 f1()
H A Dpy3_test_grammar.py162 def f1(): pass function in function:GrammarTests.testFuncdef
163 f1()
164 f1(*())
165 f1(*(), **{})
176 f1()
/device/common/
H A Dgenerate-packages.sh36 for COMPANY in `grep "[a-z|A-Z])" $EXTRACT_LIST_FILENAME | cut -f1 -d')'`
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
H A Dedk2module.c3677 FILE *f1, *f2, *f3; local
3736 f1 = _fdopen(fd1, "w");
3737 f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose);
3747 f1 = _fdopen(fd1, "r");
3748 f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose);
3758 f1 = _fdopen(fd1, "rb");
3759 f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose);
3769 f1 = _fdopen(fd1, "wb");
3770 f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose);
3795 f1
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dposixmodule.c5267 FILE *f1, *f2, *f3; local
5326 f1 = _fdopen(fd1, "w");
5327 f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose);
5337 f1 = _fdopen(fd1, "r");
5338 f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose);
5348 f1 = _fdopen(fd1, "rb");
5349 f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose);
5359 f1 = _fdopen(fd1, "wb");
5360 f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose);
5385 f1
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dlapi.c1281 LClosure *f1; local
1282 UpVal **up1 = getupvalref(L, fidx1, n1, &f1);
1285 luaC_objbarrier(L, f1, *up2);

Completed in 142 milliseconds

12