/external/javassist/src/main/javassist/bytecode/ |
D | ExceptionsAttribute.java | 109 int[] elist = new int[n / 2 - 1]; in getExceptionIndexes() local 112 elist[k++] = ((blist[j] & 0xff) << 8) | (blist[j + 1] & 0xff); in getExceptionIndexes() 114 return elist; in getExceptionIndexes() 126 String[] elist = new String[n / 2 - 1]; in getExceptions() 130 elist[k++] = constPool.getClassInfo(index); in getExceptions() 133 return elist; in getExceptions() 139 public void setExceptionIndexes(int[] elist) { in setExceptionIndexes() argument 140 int n = elist.length; in setExceptionIndexes() 144 ByteArray.write16bit(elist[i], blist, i * 2 + 2); in setExceptionIndexes() 152 public void setExceptions(String[] elist) { in setExceptions() argument [all …]
|
/external/python/cpython2/Tools/scripts/ |
D | objgraph.py | 93 elist = file2undef[filename] 94 elist.sort() 95 for ext in elist: 134 elist = undefs.keys() 135 elist.sort() 136 for ext in elist:
|
/external/python/cpython3/Tools/scripts/ |
D | objgraph.py | 92 elist = file2undef[filename] 93 elist.sort() 94 for ext in elist: 132 elist = sorted(undefs.keys()) 133 for ext in elist:
|
/external/tinyalsa_new/src/ |
D | mixer_plugin.c | 303 struct snd_ctl_elem_list *elist) in mixer_plug_get_elem_list() argument 310 elist->count = plugin->num_controls; in mixer_plug_get_elem_list() 311 elist->used = 0; in mixer_plug_get_elem_list() 312 avail = elist->space; in mixer_plug_get_elem_list() 315 id = elist->pids + elist->used; in mixer_plug_get_elem_list() 316 ret = mixer_plug_get_elem_id(plug_data, id, elist->used); in mixer_plug_get_elem_list() 321 elist->used++; in mixer_plug_get_elem_list()
|
D | mixer.c | 179 struct snd_ctl_elem_list elist; in add_controls() local 186 memset(&elist, 0, sizeof(elist)); in add_controls() 187 if (grp->ops->ioctl(grp->data, SNDRV_CTL_IOCTL_ELEM_LIST, &elist) < 0) in add_controls() 190 if (old_count == elist.count) in add_controls() 193 if (old_count > elist.count) in add_controls() 196 ctl = mixer_realloc_z(grp->ctl, old_count, elist.count, in add_controls() 207 new_count = elist.count; in add_controls() 208 elist.space = new_count - old_count; /* controls we haven't seen before */ in add_controls() 209 elist.offset = old_count; /* first control we haven't seen */ in add_controls() 211 eid = calloc(elist.space, sizeof(struct snd_ctl_elem_id)); in add_controls() [all …]
|
/external/tinyalsa/ |
D | mixer_plugin.c | 299 struct snd_ctl_elem_list *elist) in mixer_plug_get_elem_list() argument 306 elist->count = plugin->num_controls; in mixer_plug_get_elem_list() 307 elist->used = 0; in mixer_plug_get_elem_list() 308 avail = elist->space; in mixer_plug_get_elem_list() 311 id = elist->pids + elist->used; in mixer_plug_get_elem_list() 312 ret = mixer_plug_get_elem_id(plug_data, id, elist->used); in mixer_plug_get_elem_list() 317 elist->used++; in mixer_plug_get_elem_list()
|
D | mixer.c | 138 struct snd_ctl_elem_list elist; in mixer_grp_open() local 147 memset(&elist, 0, sizeof(elist)); in mixer_grp_open() 148 ret = ops->ioctl(data, SNDRV_CTL_IOCTL_ELEM_LIST, &elist); in mixer_grp_open() 152 grp->ctl = calloc(elist.count, sizeof(struct mixer_ctl)); in mixer_grp_open() 153 grp->elem_info = calloc(elist.count, sizeof(struct snd_ctl_elem_info)); in mixer_grp_open() 159 eid = calloc(elist.count, sizeof(*eid)); in mixer_grp_open() 165 grp->count = elist.count; in mixer_grp_open() 166 elist.space = grp->count; in mixer_grp_open() 167 elist.pids = eid; in mixer_grp_open() 168 ret = ops->ioctl(data, SNDRV_CTL_IOCTL_ELEM_LIST, &elist); in mixer_grp_open()
|
/external/python/cpython2/Modules/ |
D | selectmodule.c | 1003 PyObject *elist = NULL, *etuple = NULL; in pyepoll_poll() local 1052 elist = PyList_New(nfds); in pyepoll_poll() 1053 if (elist == NULL) { in pyepoll_poll() 1060 Py_CLEAR(elist); in pyepoll_poll() 1063 PyList_SET_ITEM(elist, i, etuple); in pyepoll_poll() 1068 return elist; in pyepoll_poll()
|
/external/python/cpython3/Modules/ |
D | selectmodule.c | 1550 PyObject *elist = NULL, *etuple = NULL; in select_epoll_poll_impl() local 1635 elist = PyList_New(nfds); in select_epoll_poll_impl() 1636 if (elist == NULL) { in select_epoll_poll_impl() 1643 Py_CLEAR(elist); in select_epoll_poll_impl() 1646 PyList_SET_ITEM(elist, i, etuple); in select_epoll_poll_impl() 1651 return elist; in select_epoll_poll_impl()
|
/external/selinux/sandbox/ |
D | sandbox | 104 except shutil.Error as elist: 105 for e in elist.message:
|
/external/python/cpython2/Lib/plat-mac/ |
D | gensuitemodule.py | 1028 elist = [] 1061 elist.append((name, ename)) 1064 elist.sort() 1072 for n, fulln in elist:
|
/external/guice/extensions/persist/lib/ |
D | javassist.jar | META-INF/
META-INF/MANIFEST.MF
javassist/
javassist/ByteArrayClassPath.class
ByteArrayClassPath ... |
/external/guice/extensions/struts2/lib/ |
D | javassist.jar | META-INF/
META-INF/MANIFEST.MF
javassist/
javassist/ByteArrayClassPath.class
ByteArrayClassPath ... |
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/lib/ |
D | javassist-3.19.0-GA.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/maven/
META- ... |
/external/libabigail/tests/data/test-diff-dwarf-abixml/ |
D | PR25409-librte_bus_dpaa.so.20.0.abi | 4921 …<var-decl name='elist' type-id='type-id-364' visibility='default' filepath='../../dpdk/lib/librte_…
|