/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | imghdr.py | 37 def test_jpeg(h, f): argument 44 def test_exif(h, f): argument 51 def test_png(h, f): argument 57 def test_gif(h, f): argument 64 def test_tiff(h, f): argument 71 def test_rgb(h, f): argument 78 def test_pbm(h, f): argument 86 def test_pgm(h, f): argument 94 def test_ppm(h, f): argument 102 def test_rast(h, f): argument [all …]
|
D | sndhdr.py | 58 def test_aifc(h, f): argument 79 def test_au(h, f): argument 108 def test_hcom(h, f): argument 117 def test_voc(h, f): argument 130 def test_wav(h, f): argument 143 def test_8svx(h, f): argument 152 def test_sndt(h, f): argument 161 def test_sndr(h, f): argument
|
D | pickletools.py | 201 def read_uint1(f): argument 220 def read_uint2(f): argument 241 def read_int4(f): argument 262 def read_stringnl(f, decode=True, stripquotes=True): argument 321 def read_stringnl_noescape(f): argument 335 def read_stringnl_noescape_pair(f): argument 357 def read_string4(f): argument 391 def read_string1(f): argument 420 def read_unicodestringnl(f): argument 445 def read_unicodestring4(f): argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/iobench/ |
D | iobench.py | 44 def decorate(f): argument 50 def decorate(f): argument 60 def read_bytewise(f): argument 68 def read_small_chunks(f): argument 76 def read_big_chunks(f): argument 84 def read_whole_file(f): argument 92 def read_lines(f): argument 100 def seek_forward_bytewise(f): argument 110 def seek_forward_blockwise(f): argument 120 def read_seek_bytewise(f): argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | fileobject.c | 30 #define GETC(f) getc_unlocked(f) argument 31 #define FLOCKFILE(f) flockfile(f) argument 32 #define FUNLOCKFILE(f) funlockfile(f) argument 34 #define GETC(f) getc(f) argument 35 #define FLOCKFILE(f) argument 36 #define FUNLOCKFILE(f) argument 74 PyFile_AsFile(PyObject *f) in PyFile_AsFile() 94 PyFile_Name(PyObject *f) in PyFile_Name() 106 file_PyObject_Print(PyObject *op, PyFileObject *f, int flags) in file_PyObject_Print() 120 dircheck(PyFileObject* f) in dircheck() [all …]
|
D | frameobject.c | 64 PyFrame_GetLineNumber(PyFrameObject *f) in PyFrame_GetLineNumber() 73 frame_getlineno(PyFrameObject *f, void *closure) in frame_getlineno() 94 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno) in frame_setlineno() 350 frame_gettrace(PyFrameObject *f, void *closure) in frame_gettrace() 363 frame_settrace(PyFrameObject *f, PyObject* v, void *closure) in frame_settrace() 379 frame_getrestricted(PyFrameObject *f, void *closure) in frame_getrestricted() 448 frame_dealloc(PyFrameObject *f) in frame_dealloc() 491 frame_traverse(PyFrameObject *f, visitproc visit, void *arg) in frame_traverse() 521 frame_clear(PyFrameObject *f) in frame_clear() 553 frame_sizeof(PyFrameObject *f) in frame_sizeof() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | fileobject.c | 30 #define GETC(f) getc_unlocked(f) argument 31 #define FLOCKFILE(f) flockfile(f) argument 32 #define FUNLOCKFILE(f) funlockfile(f) argument 34 #define GETC(f) getc(f) argument 35 #define FLOCKFILE(f) argument 36 #define FUNLOCKFILE(f) argument 74 PyFile_AsFile(PyObject *f) in PyFile_AsFile() 94 PyFile_Name(PyObject *f) in PyFile_Name() 106 file_PyObject_Print(PyObject *op, PyFileObject *f, int flags) in file_PyObject_Print() 120 dircheck(PyFileObject* f) in dircheck() [all …]
|
D | frameobject.c | 64 PyFrame_GetLineNumber(PyFrameObject *f) in PyFrame_GetLineNumber() 73 frame_getlineno(PyFrameObject *f, void *closure) in frame_getlineno() 94 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno) in frame_setlineno() 352 frame_gettrace(PyFrameObject *f, void *closure) in frame_gettrace() 365 frame_settrace(PyFrameObject *f, PyObject* v, void *closure) in frame_settrace() 381 frame_getrestricted(PyFrameObject *f, void *closure) in frame_getrestricted() 450 frame_dealloc(PyFrameObject *f) in frame_dealloc() 493 frame_traverse(PyFrameObject *f, visitproc visit, void *arg) in frame_traverse() 523 frame_clear(PyFrameObject *f) in frame_clear() 555 frame_sizeof(PyFrameObject *f) in frame_sizeof() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | lock_tests.py | 22 def __init__(self, f, n, wait_before_exit=False): argument 95 def f(): function 105 def f(): function 119 def f(): function 137 def f(): function 156 def f(): function 175 def f(): function 211 def f(): function 227 def f(): function 259 def f(): function [all …]
|
D | test_fileio.py | 170 def testErrnoOnClose(self, f): argument 174 def testErrnoOnClosedWrite(self, f): argument 178 def testErrnoOnClosedSeek(self, f): argument 182 def testErrnoOnClosedTell(self, f): argument 186 def testErrnoOnClosedTruncate(self, f): argument 190 def testErrnoOnClosedSeekable(self, f): argument 194 def testErrnoOnClosedReadable(self, f): argument 198 def testErrnoOnClosedWritable(self, f): argument 202 def testErrnoOnClosedFileno(self, f): argument 206 def testErrnoOnClosedIsatty(self, f): argument [all …]
|
D | test_sys_setprofile.py | 105 def f(p): function 113 def f(p): function 121 def f(p): function 130 def f(p): function 139 def f(p): function 150 def f(p): function 169 def f(p): function 184 def f(p): function 193 def f(p): function 202 def f(p): function [all …]
|
D | test_peepholer.py | 43 def f(x): function 51 def f(): function 59 def f(): function 179 def f(x): function 188 def f(cond, true_value, false_value): function 197 def f(cond1, cond2): function 213 def f(cond1, cond2): function
|
D | test_zipfile.py | 43 def make_test_archive(self, f, compression): argument 50 def zip_test(self, f, compression): argument 112 def zip_open_test(self, f, compression): argument 158 def zip_random_open_test(self, f, compression): argument 192 def zip_readline_read_test(self, f, compression): argument 212 def zip_readline_test(self, f, compression): argument 222 def zip_readlines_test(self, f, compression): argument 232 def zip_iterlines_test(self, f, compression): argument 424 def zip_test_writestr_permissions(self, f, compression): argument 483 def large_file_exception_test(self, f, compression): argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | _struct.c | 300 _range_error(const formatdef *f, int is_unsigned) in _range_error() 350 nu_char(const char *p, const formatdef *f) in nu_char() 356 nu_byte(const char *p, const formatdef *f) in nu_byte() 362 nu_ubyte(const char *p, const formatdef *f) in nu_ubyte() 368 nu_short(const char *p, const formatdef *f) in nu_short() 376 nu_ushort(const char *p, const formatdef *f) in nu_ushort() 384 nu_int(const char *p, const formatdef *f) in nu_int() 392 nu_uint(const char *p, const formatdef *f) in nu_uint() 406 nu_long(const char *p, const formatdef *f) in nu_long() 414 nu_ulong(const char *p, const formatdef *f) in nu_ulong() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | _struct.c | 300 _range_error(const formatdef *f, int is_unsigned) in _range_error() 350 nu_char(const char *p, const formatdef *f) in nu_char() 356 nu_byte(const char *p, const formatdef *f) in nu_byte() 362 nu_ubyte(const char *p, const formatdef *f) in nu_ubyte() 368 nu_short(const char *p, const formatdef *f) in nu_short() 376 nu_ushort(const char *p, const formatdef *f) in nu_ushort() 384 nu_int(const char *p, const formatdef *f) in nu_int() 392 nu_uint(const char *p, const formatdef *f) in nu_uint() 406 nu_long(const char *p, const formatdef *f) in nu_long() 414 nu_ulong(const char *p, const formatdef *f) in nu_ulong() [all …]
|
D | flmodule.c | 561 float f; in call_forms_OUTf() local 1196 form_show_form(formobject *f, PyObject *args) in form_show_form() 1208 form_call(void (*func)(FL_FORM *), FL_FORM *f) in form_call() argument 1217 form_call_INiINi(void (*func)(FL_FORM *, int, int), FL_FORM *f, PyObject *args) in form_call_INiINi() argument 1230 form_call_INfINf(void (*func)(FL_FORM *, float, float), FL_FORM *f, PyObject *args) in form_call_INfINf() argument 1243 form_hide_form(formobject *f) in form_hide_form() 1249 form_redraw_form(formobject *f) in form_redraw_form() 1255 form_set_form_position(formobject *f, PyObject *args) in form_set_form_position() 1261 form_set_form_size(formobject *f, PyObject *args) in form_set_form_size() 1267 form_scale_form(formobject *f, PyObject *args) in form_scale_form() [all …]
|
/device/generic/goldfish/camera/ |
D | JpegCompressor.cpp | 55 InitFunc f = (InitFunc)getSymbol(mDl, "JpegStub_init"); in NV21JpegCompressor() local 61 CleanupFunc f = (CleanupFunc)getSymbol(mDl, "JpegStub_cleanup"); in ~NV21JpegCompressor() local 75 CompressFunc f = (CompressFunc)getSymbol(mDl, "JpegStub_compress"); in compressRawImage() local 82 GetCompressedSizeFunc f = (GetCompressedSizeFunc)getSymbol(mDl, in getCompressedSize() local 89 GetCompressedImageFunc f = (GetCompressedImageFunc)getSymbol(mDl, in getCompressedImage() local
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
D | Calls.py | 14 def f(): function 23 def h(a,b,c,d=1,e=2,f=3): argument 94 def f(): function 103 def h(a,b,c,d=1,e=2,f=3): argument 121 def f(a,b,c,d=1,e=2,f=3): argument 158 def f(a,b,c,d=1,e=2,f=3): function 304 def f(self): member in PythonMethodCalls.test.c 411 def f(self): member in PythonMethodCalls.calibrate.c 443 def f(x): function 460 def f(x): function
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/ |
D | recursive_call.py | 12 f = lambda f:f(f) argument
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
D | lex.c | 357 FILE *f; in GenRemapFile() local 388 GenRuleFuncRedefs( FILE *f, Junction *p ) in GenRuleFuncRedefs() 409 GenPredefinedSymbolRedefs( FILE *f ) in GenPredefinedSymbolRedefs() 430 GenASTSymbolRedefs( FILE *f ) in GenASTSymbolRedefs() 450 GenSetRedefs( FILE *f ) in GenSetRedefs() 475 GenRulePrototypes( FILE *f, Junction *p ) in GenRulePrototypes() 550 GenRuleMemberDeclarationsForCC( FILE *f, Junction *q ) in GenRuleMemberDeclarationsForCC() 750 DumpType( char *s, FILE *f ) in DumpType() 829 DumpRetValStruct( FILE *f, char *ret, int i ) in DumpRetValStruct()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | liolib.c | 91 #define l_fseek(f,o,w) fseeko(f,o,w) argument 92 #define l_ftell(f) ftello(f) argument 99 #define l_fseek(f,o,w) _fseeki64(f,o,w) argument 100 #define l_ftell(f) _ftelli64(f) argument 109 #define l_fseek(f,o,w) fseek(f,o,w) argument 110 #define l_ftell(f) ftell(f) argument 273 static int g_iofile (lua_State *L, const char *f, const char *mode) { in g_iofile() 350 static int read_number (lua_State *L, FILE *f) { in read_number() 363 static int test_eof (lua_State *L, FILE *f) { in test_eof() 371 static int read_line (lua_State *L, FILE *f, int chop) { in read_line() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/ |
D | bases.py | 28 def dump_methoddef(self, f, functions, vars): argument 78 def dump(self, f): argument 109 def dump(self, f): argument 186 def dump_memberdef(self, f): argument 197 def dump_slots(self, f): argument 212 def dump_init(self, f): argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/ |
D | ftp.py | 77 def newdataport(s, f): argument 90 def sendportcmd(s, f, port): argument 107 def getreply(f): argument
|
/device/google/contexthub/firmware/os/inc/ |
D | floatRt.h | 35 static inline uint64_t floatToUint64(float f) in floatToUint64() 40 static inline int64_t floatToInt64(float f) in floatToInt64()
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/ |
D | antlr.h | 394 #define zzenterANTLRf(f) \ argument 396 #define zzenterANTLR(f) \ argument 399 #define zzleaveANTLR(f) free(zzinf_text_buffer); free(zzinf_text); free(zzinf_tokens); free(zz… argument 400 #define zzleaveANTLRf(f) free(zzinf_text_buffer); free(zzinf_text); free(zzinf_tokens); free(… argument 401 #define zzleaveANTLRs(f) free(zzinf_text_buffer); free(zzinf_text); free(zzinf_tokens); free(zzi… argument 403 #define zzleaveANTLR(f) argument 404 #define zzleaveANTLRf(f) argument 405 #define zzleaveANTLRs(f) argument 413 #define zzenterANTLRf(f) \ argument 416 #define zzenterANTLR(f) \ argument [all …]
|