/external/python/cpython2/Python/ |
D | dynload_next.c | 38 char funcname[258]; in _PyImport_GetDynLoadFunc() local 46 PyOS_snprintf(funcname, sizeof(funcname), "_init%.200s", shortname); in _PyImport_GetDynLoadFunc() 49 if (NSIsSymbolNameDefined(funcname)) { in _PyImport_GetDynLoadFunc() 50 theSym = NSLookupAndBindSymbol(funcname); in _PyImport_GetDynLoadFunc() 93 if (!NSIsSymbolNameDefined(funcname)) { in _PyImport_GetDynLoadFunc() 98 funcname); in _PyImport_GetDynLoadFunc() 101 theSym = NSLookupAndBindSymbol(funcname); in _PyImport_GetDynLoadFunc() 103 theSym = NSLookupSymbolInModule(newModule, funcname); in _PyImport_GetDynLoadFunc() 108 funcname); in _PyImport_GetDynLoadFunc()
|
D | dynload_atheos.c | 22 char funcname[258]; in _PyImport_GetDynLoadFunc() local 37 PyOS_snprintf(funcname, sizeof(funcname), "init%.200s", shortname); in _PyImport_GetDynLoadFunc() 39 printf("get_symbol_address %s\n", funcname); in _PyImport_GetDynLoadFunc() 40 if (get_symbol_address(lib, funcname, -1, &p) < 0) { in _PyImport_GetDynLoadFunc() 43 perror(funcname); in _PyImport_GetDynLoadFunc()
|
D | dynload_hpux.c | 28 char funcname[258]; in _PyImport_GetDynLoadFunc() local 47 PyOS_snprintf(funcname, sizeof(funcname), FUNCNAME_PATTERN, shortname); in _PyImport_GetDynLoadFunc() 49 printf("shl_findsym %s\n", funcname); in _PyImport_GetDynLoadFunc() 50 if (shl_findsym(&lib, funcname, TYPE_UNDEFINED, (void *) &p) == -1) { in _PyImport_GetDynLoadFunc() 55 perror(funcname); in _PyImport_GetDynLoadFunc()
|
D | dynload_beos.c | 164 char funcname[258]; in _PyImport_GetDynLoadFunc() local 209 PyOS_snprintf(funcname, sizeof(funcname), "init%.200s", shortname); in _PyImport_GetDynLoadFunc() 211 printf( "get_image_symbol( %s )\n", funcname ); in _PyImport_GetDynLoadFunc() 214 retval = get_image_symbol( the_id, funcname, B_SYMBOL_TYPE_TEXT, &p ); in _PyImport_GetDynLoadFunc() 221 printf( "get_image_symbol( %s ) failed", funcname ); in _PyImport_GetDynLoadFunc() 233 "Bad index for %.180s", funcname ); in _PyImport_GetDynLoadFunc() 238 "Unknown error looking up %.180s", funcname ); in _PyImport_GetDynLoadFunc()
|
D | dynload_dl.c | 22 char funcname[258]; in _PyImport_GetDynLoadFunc() local 24 PyOS_snprintf(funcname, sizeof(funcname), "init%.200s", shortname); in _PyImport_GetDynLoadFunc() 25 return dl_loadmod(Py_GetProgramName(), pathname, funcname); in _PyImport_GetDynLoadFunc()
|
D | dynload_os2.c | 25 char funcname[258]; in _PyImport_GetDynLoadFunc() local 41 PyOS_snprintf(funcname, sizeof(funcname), "init%.200s", shortname); in _PyImport_GetDynLoadFunc() 42 rc = DosQueryProcAddr(hDLL, 0L, funcname, &p); in _PyImport_GetDynLoadFunc()
|
D | dynload_shlib.c | 74 char funcname[258]; in _PyImport_GetDynLoadFunc() local 84 PyOS_snprintf(funcname, sizeof(funcname), in _PyImport_GetDynLoadFunc() 95 funcname); in _PyImport_GetDynLoadFunc() 141 p = (dl_funcptr) dlsym(handle, funcname); in _PyImport_GetDynLoadFunc()
|
D | dynload_win.c | 170 char funcname[258], *import_python; local 172 PyOS_snprintf(funcname, sizeof(funcname), "init%.200s", shortname); 270 p = GetProcAddress(hDLL, funcname);
|
/external/python/cpython2/Lib/hotshot/ |
D | log.py | 103 filename, funcname = self._decode_location(fileno, lineno) 104 t = (filename, lineno, funcname) 115 filename, firstlineno, funcname = self._stack[-1] 116 return what, (filename, lineno, funcname), tdelta 151 filename = funcname = None 153 filename, funcname = self._funcmap[(fileno, lineno)] 156 funcname = None 157 self._funcmap[(fileno, lineno)] = (filename, funcname) 158 return filename, funcname
|
D | stats.py | 30 what, (filename, lineno, funcname), tdelta = event 40 frame = self.new_frame(filename, lineno, funcname) 80 def __init__(self, filename, firstlineno, funcname): argument 83 self.co_name = self.__name__ = funcname
|
/external/deqp/modules/gles3/scripts/ |
D | gen-invalid-texture-funcs.py | 57 def __init__(self, funcname, args): argument 58 self.name = string.join([s.lower() for s in [funcname] + args], "_") 59 self.funcname = funcname 65 lookup = self.funcname + "(s"
|
/external/python/cpython2/Lib/test/ |
D | test_stat.py | 74 for funcname in self.format_funcs: 75 func = getattr(stat, funcname, None) 77 if funcname == testname: 78 raise ValueError(funcname) 80 if funcname == testname:
|
/external/v8/tools/gcmole/ |
D | gcmole.lua | 390 for funcname in lines do 391 if funcname:sub(1, 1) ~= '\t' then 392 resolve(funcname) 393 scope = funcname 395 local name = funcname:sub(2) 414 for funcname, callers in pairs(funcs) do 415 if gc[funcname] then mark(funcname, callers) end
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
D | codegen.py | 108 name = "render_%s" % node.funcname 374 export.append(node.funcname) 450 comp_idents = dict([(c.funcname, c) for c in identifiers.defs]) 460 [c.funcname for c in identifiers.closuredefs.values()]) 558 funcname = node.funcname 568 self.printer.writeline("def %s(%s):" % (funcname, ",".join(namedecls))) 570 "return render_%s(%s)" % (funcname, ",".join(nameargs))) 583 "def %s(%s):" % (node.funcname, ",".join(namedecls))) 609 self.write_cache_decorator(node, node.funcname, 879 self.printer.writeline("%s()" % node.funcname) [all …]
|
/external/ltp/testcases/kernel/fs/dmapi/ |
D | dm_test.c | 389 void dm_EndVariation_SuccessExpected(char *funcname, int expectedRC, in dm_EndVariation_SuccessExpected() argument 395 funcname, expectedRC); in dm_EndVariation_SuccessExpected() 400 funcname, actualRC, errno); in dm_EndVariation_SuccessExpected() 406 void dm_EndVariation_FailureExpected(char *funcname, int expectedRC, in dm_EndVariation_FailureExpected() argument 414 funcname, expectedRC, expectedErrno); in dm_EndVariation_FailureExpected() 419 funcname, expectedRC, errno, expectedErrno); in dm_EndVariation_FailureExpected() 424 funcname, actualRC); in dm_EndVariation_FailureExpected()
|
/external/llvm/test/CodeGen/WebAssembly/ |
D | inline-asm.ll | 76 ; CHECK-LABEL: funcname: 77 ; CHECK: foo funcname{{$}} 78 define void @funcname() { 79 tail call void asm sideeffect "foo $0", "i"(void ()* nonnull @funcname) #0, !srcloc !0
|
/external/libevent/ |
D | event_rpcgen.py | 431 def GetDeclaration(self, funcname): argument 433 funcname, self._struct.Name(), self._ctype ) ] 457 def AssignDeclaration(self, funcname): argument 459 funcname, self._struct.Name(), self._ctype ) ] 516 def GetDeclaration(self, funcname): argument 518 funcname, self._struct.Name(), self._ctype ) ] 521 def AssignDeclaration(self, funcname): argument 523 funcname, self._struct.Name(), self._ctype ) ] 952 def GetDeclaration(self, funcname): argument 954 funcname, self._struct.Name(), self._ctype ) ] [all …]
|
/external/llvm/utils/abtest/ |
D | abtest.py | 76 funcname = line[12:-1] 77 in_function = funcname 100 funcname = line[12:-1] 101 in_function = funcname
|
D | mark_armfns.py | 29 funcname = m.group(1) variable 36 triple = (funcname, begin, end)
|
D | mark_aarch64fns.py | 44 funcname = labelname variable 47 triple = (funcname, begin, end)
|
/external/python/cpython2/Modules/ |
D | mathmodule.c | 758 math_2(PyObject *args, double (*func) (double, double), char *funcname) in math_2() argument 762 if (! PyArg_UnpackTuple(args, funcname, 2, 2, &ox, &oy)) in math_2() 790 #define FUNC1(funcname, func, can_overflow, docstring) \ argument 791 static PyObject * math_##funcname(PyObject *self, PyObject *args) { \ 794 PyDoc_STRVAR(math_##funcname##_doc, docstring); 796 #define FUNC1A(funcname, func, docstring) \ argument 797 static PyObject * math_##funcname(PyObject *self, PyObject *args) { \ 800 PyDoc_STRVAR(math_##funcname##_doc, docstring); 802 #define FUNC2(funcname, func, docstring) \ argument 803 static PyObject * math_##funcname(PyObject *self, PyObject *args) { \ [all …]
|
/external/skia/third_party/lua/src/ |
D | loadlib.c | 420 const char *funcname; in loadfunc() local 426 funcname = lua_pushlstring(L, modname, mark - modname); in loadfunc() 427 funcname = lua_pushfstring(L, LUA_POF"%s", funcname); in loadfunc() 428 stat = ll_loadfunc(L, filename, funcname); in loadfunc() 432 funcname = lua_pushfstring(L, LUA_POF"%s", modname); in loadfunc() 433 return ll_loadfunc(L, filename, funcname); in loadfunc()
|
/external/python/cpython2/Lib/ |
D | bdb.py | 252 funcname=None): argument 264 bp = Breakpoint(filename, lineno, temporary, cond, funcname) 473 def __init__(self, file, line, temporary=0, cond=None, funcname=None): argument 474 self.funcname = funcname 535 if not b.funcname: 545 if frame.f_code.co_name != b.funcname:
|
/external/syslinux/com32/lua/src/ |
D | loadlib.c | 469 const char *funcname; in loadfunc() local 475 funcname = lua_pushlstring(L, modname, mark - modname); in loadfunc() 476 funcname = lua_pushfstring(L, LUA_POF"%s", funcname); in loadfunc() 477 stat = ll_loadfunc(L, filename, funcname); in loadfunc() 481 funcname = lua_pushfstring(L, LUA_POF"%s", modname); in loadfunc() 482 return ll_loadfunc(L, filename, funcname); in loadfunc()
|
/external/icu/icu4c/source/tools/genren/ |
D | genren.pl | 213 @funcname = split(/[\(\s+]/); 214 $CFuncs{$funcname[0]}++;
|