Searched defs:elist (Results 1 - 2 of 2) sorted by relevance

/external/javassist/src/main/javassist/bytecode/
H A DExceptionsAttribute.java107 int[] elist = new int[n / 2 - 1];
110 elist[k++] = ((blist[j] & 0xff) << 8) | (blist[j + 1] & 0xff);
112 return elist;
124 String[] elist = new String[n / 2 - 1];
128 elist[k++] = constPool.getClassInfo(index);
131 return elist;
137 public void setExceptionIndexes(int[] elist) { argument
138 int n = elist.length;
142 ByteArray.write16bit(elist[i], blist, i * 2 + 2);
150 public void setExceptions(String[] elist) { argument
[all...]
/external/tinyalsa/
H A Dmixer.c90 struct snd_ctl_elem_list elist; local
103 memset(&elist, 0, sizeof(elist));
104 if (ioctl(fd, SNDRV_CTL_IOCTL_ELEM_LIST, &elist) < 0)
111 mixer->ctl = calloc(elist.count, sizeof(struct mixer_ctl));
112 mixer->info = calloc(elist.count, sizeof(struct snd_ctl_elem_info));
116 eid = calloc(elist.count, sizeof(struct snd_ctl_elem_id));
120 mixer->count = elist.count;
122 elist.space = mixer->count;
123 elist
[all...]

Completed in 55 milliseconds