/external/curl/lib/ |
D | cookie.c | 106 static void freecookie(struct Cookie *co) in freecookie() argument 108 free(co->expirestr); in freecookie() 109 free(co->domain); in freecookie() 110 free(co->path); in freecookie() 111 free(co->spath); in freecookie() 112 free(co->name); in freecookie() 113 free(co->value); in freecookie() 114 free(co->maxage); in freecookie() 115 free(co->version); in freecookie() 116 free(co); in freecookie() [all …]
|
/external/python/cpython2/Demo/threads/ |
D | squasher.py | 47 co.tran(codisassembler, line) 51 card = co.tran(cogetline) 53 co.tran(cosquasher, card[i]) 54 co.tran(cosquasher, ';') 58 ch = co.tran(codisassembler) 60 ch2 = co.tran(codisassembler) 64 co.tran(coassembler, ch) 68 ch2 = co.tran(codisassembler) 71 co.tran(coassembler, ' ') 73 co.tran(coassembler, ch) [all …]
|
D | fcmp.py | 7 def fringe(co, list): argument 10 fringe(co, x) 12 co.back(x) 15 co = Coroutine() 16 f = co.create(fringe, co, list) 19 print co.tran(f),
|
/external/python/cpython2/Objects/ |
D | codeobject.c | 99 PyCodeObject *co; in PyCode_New() local 120 co = PyObject_NEW(PyCodeObject, &PyCode_Type); in PyCode_New() 121 if (co != NULL) { in PyCode_New() 122 co->co_argcount = argcount; in PyCode_New() 123 co->co_nlocals = nlocals; in PyCode_New() 124 co->co_stacksize = stacksize; in PyCode_New() 125 co->co_flags = flags; in PyCode_New() 127 co->co_code = code; in PyCode_New() 129 co->co_consts = consts; in PyCode_New() 131 co->co_names = names; in PyCode_New() [all …]
|
D | frameobject.c | 451 PyCodeObject *co; in frame_dealloc() local 475 co = f->f_code; in frame_dealloc() 476 if (co->co_zombieframe == NULL) in frame_dealloc() 477 co->co_zombieframe = f; in frame_dealloc() 486 Py_DECREF(co); in frame_dealloc() 873 PyCodeObject *co; in PyFrame_FastToLocals() local 886 co = f->f_code; in PyFrame_FastToLocals() 887 map = co->co_varnames; in PyFrame_FastToLocals() 893 if (j > co->co_nlocals) in PyFrame_FastToLocals() 894 j = co->co_nlocals; in PyFrame_FastToLocals() [all …]
|
/external/syslinux/com32/lua/src/ |
D | lcorolib.c | 20 static int auxresume (lua_State *L, lua_State *co, int narg) { in auxresume() argument 22 if (!lua_checkstack(co, narg)) { in auxresume() 26 if (lua_status(co) == LUA_OK && lua_gettop(co) == 0) { in auxresume() 30 lua_xmove(L, co, narg); in auxresume() 31 status = lua_resume(co, L, narg); in auxresume() 33 int nres = lua_gettop(co); in auxresume() 35 lua_pop(co, nres); /* remove results anyway */ in auxresume() 39 lua_xmove(co, L, nres); /* move yielded values */ in auxresume() 43 lua_xmove(co, L, 1); /* move error message */ in auxresume() 50 lua_State *co = lua_tothread(L, 1); in luaB_coresume() local [all …]
|
/external/skia/third_party/lua/src/ |
D | lcorolib.c | 20 static int auxresume (lua_State *L, lua_State *co, int narg) { in auxresume() argument 22 if (!lua_checkstack(co, narg)) { in auxresume() 26 if (lua_status(co) == LUA_OK && lua_gettop(co) == 0) { in auxresume() 30 lua_xmove(L, co, narg); in auxresume() 31 status = lua_resume(co, L, narg); in auxresume() 33 int nres = lua_gettop(co); in auxresume() 35 lua_pop(co, nres); /* remove results anyway */ in auxresume() 39 lua_xmove(co, L, nres); /* move yielded values */ in auxresume() 43 lua_xmove(co, L, 1); /* move error message */ in auxresume() 50 lua_State *co = lua_tothread(L, 1); in luaB_coresume() local [all …]
|
/external/libunwind_llvm/src/ |
D | libunwind.cpp | 70 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in unw_init_local() local 71 co->setInfoBasedOnIPRegister(); in unw_init_local() 164 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in unw_get_reg() local 165 if (co->validReg(regNum)) { in unw_get_reg() 166 *value = co->getReg(regNum); in unw_get_reg() 179 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in unw_set_reg() local 180 if (co->validReg(regNum)) { in unw_set_reg() 181 co->setReg(regNum, (pint_t)value); in unw_set_reg() 185 co->setInfoBasedOnIPRegister(false); in unw_set_reg() 198 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in unw_get_fpreg() local [all …]
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_blend.c | 39 struct etna_blend_state *co = CALLOC_STRUCT(etna_blend_state); in etna_blend_state_create() local 41 if (!co) in etna_blend_state_create() 44 co->base = *so; in etna_blend_state_create() 73 co->PE_ALPHA_CONFIG = in etna_blend_state_create() 83 co->PE_ALPHA_CONFIG = 0; in etna_blend_state_create() 86 co->PE_COLOR_FORMAT = in etna_blend_state_create() 90 co->PE_LOGIC_OP = in etna_blend_state_create() 101 co->PE_DITHER[0] = 0x6e4ca280; in etna_blend_state_create() 102 co->PE_DITHER[1] = 0x5d7f91b3; in etna_blend_state_create() 104 co->PE_DITHER[0] = 0xffffffff; in etna_blend_state_create() [all …]
|
/external/python/cpython2/Tools/compiler/ |
D | dumppyc.py | 17 co = marshal.load(f) 19 return co 21 def walk(co, match=None): argument 22 if match is None or co.co_name == match: 23 dump(co) 25 dis.dis(co) 26 for obj in co.co_consts: 31 co = loadCode(filename) 32 walk(co, codename) 43 co = compile(buf, filename, "exec") variable [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_code.py | 97 def dump(co): argument 101 print "%s: %s" % (attr, getattr(co, "co_" + attr)) 102 print "consts:", tuple(consts(co.co_consts)) 110 co = _testcapi.code_newempty("filename", "funcname", 15) 111 self.assertEqual(co.co_filename, "filename") 112 self.assertEqual(co.co_name, "funcname") 113 self.assertEqual(co.co_firstlineno, 15) 138 co = compile('res = "str_value"', '?', 'exec') 139 v = self.find_const(co.co_consts, 'str_value') 144 co = compile('res = ("str_value",)', '?', 'exec') [all …]
|
D | test_zlib.py | 218 co = zlib.compressobj() 219 x1 = co.compress(data) 220 x2 = co.flush() 221 self.assertRaises(zlib.error, co.flush) # second flush should not work 234 co = zlib.compressobj(level, method, wbits, memlevel, strategy) 235 x1 = co.compress(HAMLET_SCENE) 236 x2 = co.flush() 245 co = zlib.compressobj() 248 bufs.append(co.compress(data[i:i+256])) 249 bufs.append(co.flush()) [all …]
|
/external/fio/engines/ |
D | cpu.c | 58 struct cpu_options *co = td->eo; in fio_cpuio_queue() local 60 if (co->exit_io_done && !fio_running_or_pending_io_threads()) { in fio_cpuio_queue() 65 usec_spin(co->cpucycle); in fio_cpuio_queue() 72 struct cpu_options *co = td->eo; in fio_cpuio_init() local 74 if (!co->cpuload) { in fio_cpuio_init() 79 if (co->cpuload > 100) in fio_cpuio_init() 80 co->cpuload = 100; in fio_cpuio_init() 87 o->thinktime = (co->cpucycle * (100 - co->cpuload)) / co->cpuload; in fio_cpuio_init() 92 td->o.name, td->io_ops->name, co->cpuload, co->cpucycle); in fio_cpuio_init()
|
/external/libpng/contrib/libtests/ |
D | tarith.c | 323 static int check_all_characters(checkfp_command *co, checkfp_control c); 325 static int check_some_characters(checkfp_command *co, checkfp_control c, 328 static int check_one_character(checkfp_command *co, checkfp_control c, int ch) in check_one_character() argument 344 co->number[c.cnumber++] = (char)ch; in check_one_character() 347 co->number[c.cnumber++] = '<'; in check_one_character() 348 co->number[c.cnumber++] = hexdigits[(ch >> 4) & 0xf]; in check_one_character() 349 co->number[c.cnumber++] = hexdigits[ch & 0xf]; in check_one_character() 350 co->number[c.cnumber++] = '>'; in check_one_character() 352 co->number[c.cnumber] = 0; in check_one_character() 354 if (co->verbose > 1) in check_one_character() [all …]
|
/external/python/cpython2/Lib/ |
D | modulefinder.py | 309 co = compile(fp.read()+'\n', pathname, 'exec') 315 co = marshal.load(fp) 317 co = None 320 if co: 322 co = self.replace_paths_in_code(co) 323 m.__code__ = co 324 self.scan_code(co, m) 359 def scan_opcodes(self, co, argument 363 code = co.co_code 364 names = co.co_names [all …]
|
D | dis.py | 61 def disassemble(co, lasti=-1): argument 63 code = co.co_code 65 linestarts = dict(findlinestarts(co)) 95 print '(' + repr(co.co_consts[oparg]) + ')', 97 print '(' + co.co_names[oparg] + ')', 101 print '(' + co.co_varnames[oparg] + ')', 106 free = co.co_cellvars + co.co_freevars
|
D | traceback.py | 63 co = f.f_code 64 filename = co.co_filename 65 name = co.co_name 97 co = f.f_code 98 filename = co.co_filename 99 name = co.co_name 302 co = f.f_code 303 filename = co.co_filename 304 name = co.co_name
|
/external/aac/libAACenc/src/ |
D | channel_map.cpp | 178 const INT* FDKaacEnc_getChannelAssignment(CHANNEL_MODE encMode, CHANNEL_ORDER co) in FDKaacEnc_getChannelAssignment() argument 183 if (co == CH_ORDER_MPEG) in FDKaacEnc_getChannelAssignment() 224 … elInfo, MP4_ELEMENT_ID elType, INT* cnt, CHANNEL_MODE mode, CHANNEL_ORDER co, INT* it_cnt, const … in FDKaacEnc_initElement() argument 229 const INT *assign = FDKaacEnc_getChannelAssignment(mode, co); in FDKaacEnc_initElement() 260 AAC_ENCODER_ERROR FDKaacEnc_InitChannelMapping(CHANNEL_MODE mode, CHANNEL_ORDER co, CHANNEL_MAPPING… in FDKaacEnc_InitChannelMapping() argument 288 FDKaacEnc_initElement(&cm->elInfo[0], ID_SCE, &count, mode, co, it_cnt, (FIXP_DBL)MAXVAL_DBL); in FDKaacEnc_InitChannelMapping() 292 FDKaacEnc_initElement(&cm->elInfo[0], ID_CPE, &count, mode, co, it_cnt, (FIXP_DBL)MAXVAL_DBL); in FDKaacEnc_InitChannelMapping() 297 FDKaacEnc_initElement(&cm->elInfo[0], ID_SCE, &count, mode, co, it_cnt, FL2FXCONST_DBL(0.4f)); in FDKaacEnc_InitChannelMapping() 298 FDKaacEnc_initElement(&cm->elInfo[1], ID_CPE, &count, mode, co, it_cnt, FL2FXCONST_DBL(0.6f)); in FDKaacEnc_InitChannelMapping() 303 FDKaacEnc_initElement(&cm->elInfo[0], ID_SCE, &count, mode, co, it_cnt, FL2FXCONST_DBL(0.3f)); in FDKaacEnc_InitChannelMapping() [all …]
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
D | compat.py | 125 co = fn.__code__ 127 co = fn.func_code 129 nargs = co.co_argcount 130 names = co.co_varnames 134 if co.co_flags & CO_VARARGS: 135 varargs = co.co_varnames[nargs] 138 if co.co_flags & CO_VARKEYWORDS: 139 varkw = co.co_varnames[nargs]
|
/external/python/cpython2/Modules/ |
D | itertoolsmodule.c | 2079 combinationsobject *co; in combinations_new() local 2111 co = (combinationsobject *)type->tp_alloc(type, 0); in combinations_new() 2112 if (co == NULL) in combinations_new() 2115 co->pool = pool; in combinations_new() 2116 co->indices = indices; in combinations_new() 2117 co->result = NULL; in combinations_new() 2118 co->r = r; in combinations_new() 2119 co->stopped = r > n ? 1 : 0; in combinations_new() 2121 return (PyObject *)co; in combinations_new() 2131 combinations_dealloc(combinationsobject *co) in combinations_dealloc() argument [all …]
|
/external/python/cpython2/Include/ |
D | code.h | 86 #define _PyCode_GETCODEPTR(co, pp) \ argument 87 ((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \ 88 ((co)->co_code, 0, (void **)(pp))) 98 PyAPI_FUNC(int) _PyCode_CheckLineNumber(PyCodeObject* co,
|
/external/python/cpython2/Python/ |
D | import.c | 694 PyImport_ExecCodeModule(char *name, PyObject *co) in PyImport_ExecCodeModule() argument 696 return PyImport_ExecCodeModuleEx(name, co, (char *)NULL); in PyImport_ExecCodeModule() 700 PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname) in PyImport_ExecCodeModuleEx() argument 724 v = ((PyCodeObject *)co)->co_filename; in PyImport_ExecCodeModuleEx() 731 v = PyEval_EvalCode((PyCodeObject *)co, d, d); in PyImport_ExecCodeModuleEx() 821 PyObject *co; in read_compiled_module() local 823 co = PyMarshal_ReadLastObjectFromFile(fp); in read_compiled_module() 824 if (co == NULL) in read_compiled_module() 826 if (!PyCode_Check(co)) { in read_compiled_module() 829 Py_DECREF(co); in read_compiled_module() [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | IncrementalSAXSource_Filter.java | 106 public IncrementalSAXSource_Filter(CoroutineManager co, int controllerCoroutineID) in IncrementalSAXSource_Filter() argument 108 this.init( co, controllerCoroutineID, -1 ); in IncrementalSAXSource_Filter() 114 …static public IncrementalSAXSource createIncrementalSAXSource(CoroutineManager co, int controllerC… in createIncrementalSAXSource() argument 115 return new IncrementalSAXSource_Filter(co, controllerCoroutineID); in createIncrementalSAXSource() 122 public void init( CoroutineManager co, int controllerCoroutineID, in init() argument 125 if(co==null) in init() 126 co = new CoroutineManager(); in init() 127 fCoroutineManager = co; in init() 128 fControllerCoroutineID = co.co_joinCoroutineSet(controllerCoroutineID); in init() 129 fSourceCoroutineID = co.co_joinCoroutineSet(sourceCoroutineID); in init()
|
/external/libedit/examples/ |
D | tc1.c | 181 int ac, cc, co; in main() local 205 ac = cc = co = 0; in main() 206 ncontinuation = tok_line(tok, li, &ac, &av, &cc, &co); in main() 214 ncontinuation, ac, cc, co); in main() 245 co, av[i], av[i] + co); in main()
|
/external/curl/scripts/ |
D | log2changes.pl | 33 $co = $1; 63 if($co ne $oldco) { 73 $oldco = $co;
|