HomeSort by relevance Sort by last modified time
    Searched defs:dp (Results 151 - 175 of 442) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/testng/src/main/java/org/testng/internal/
Parameters.java 253 IDataProvidable dp = findDataProviderInfo(clazz, m, finder); local
254 if (dp != null) {
255 String dataProviderName = dp.getDataProvider();
256 Class dataProviderClass = dp.getDataProviderClass();
324 IDataProviderAnnotation dp = finder.findAnnotation(m, IDataProviderAnnotation.class); local
325 if (null != dp && name.equals(getDataProviderName(dp, m))) {
336 result = new DataProviderHolder(dp, m, instance);
343 private static String getDataProviderName(IDataProviderAnnotation dp, Method m) {
344 return Strings.isNullOrEmpty(dp.getName()) ? m.getName() : dp.getName()
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
filter_functions.c 139 double rho=0.9, *inp, *dp, *dp2; local
150 dp=weoutbuf;
153 *dp++ = wfdata->weostate[k];
159 weo=dp;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 95 PointF dp = new PointF(topRight.x - topLeft.x, topRight.y - topLeft.y); local
96 float len = dp.length();
97 PointF np = new PointF(height * (dp.y / len), height * (dp.x / len));
  /frameworks/rs/driver/runtime/
rs_allocation.c 117 uint8_t *dp = &p[(sizeOf * x) + (y * stride) + local
119 return dp;
133 uint8_t *dp = &p[(sizeOf * x) + (y * stride) + local
135 return dp;
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/
ml_sysfs_helper.c 71 DIR *dp; local
75 dp = opendir(iio_dir);
76 if (dp == NULL) {
81 while (ent = readdir(dp), ent != NULL) {
316 DIR *dp; local
319 dp = opendir(iio_dir);
320 if (dp == NULL) {
325 while (ent = readdir(dp), ent != NULL) {
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/devnode_parser/
iio_utils.h 107 DIR *dp; local
129 dp = opendir(scan_el_dir);
130 if (dp == NULL) {
134 while (ent = readdir(dp), ent != NULL)
183 closedir(dp);
202 DIR *dp; local
218 dp = opendir(device_dir);
219 if (dp == NULL) {
223 while (ent = readdir(dp), ent != NULL)
244 closedir(dp);
282 DIR *dp; local
598 DIR *dp; local
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/mpu_iio/
iio_utils.h 107 DIR *dp; local
129 dp = opendir(scan_el_dir);
130 if (dp == NULL) {
134 while (ent = readdir(dp), ent != NULL)
183 closedir(dp);
202 DIR *dp; local
218 dp = opendir(device_dir);
219 if (dp == NULL) {
223 while (ent = readdir(dp), ent != NULL)
244 closedir(dp);
282 DIR *dp; local
598 DIR *dp; local
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/
iio_utils.h 105 DIR *dp; local
127 dp = opendir(scan_el_dir);
128 if (dp == NULL) {
132 while (ent = readdir(dp), ent != NULL)
181 closedir(dp);
200 DIR *dp; local
216 dp = opendir(device_dir);
217 if (dp == NULL) {
221 while (ent = readdir(dp), ent != NULL)
242 closedir(dp);
281 DIR *dp; local
645 DIR *dp; local
674 DIR *dp; local
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
ml_sysfs_helper.c 63 DIR *dp; local
67 dp = opendir(iio_dir);
68 if (dp == NULL) {
73 while (ent = readdir(dp), ent != NULL) {
308 DIR *dp; local
311 dp = opendir(iio_dir);
312 if (dp == NULL) {
317 while (ent = readdir(dp), ent != NULL) {
  /hardware/qcom/audio/msm8909/audiod/
AudioDaemon.cpp 124 DIR *dp; local
130 if ((dp = opendir(events_dir)) == NULL) {
138 while ((in_file = readdir(dp)) != NULL) {
164 closedir(dp);
  /libcore/ojluni/src/main/java/sun/net/www/protocol/gopher/
GopherClient.java 185 int dp = 0; local
212 d[dp++] = (char) c;
214 return new String(d, 0, dp);
223 int dp = 0; local
229 if (dp + 3 >= d.length) {
230 char nd[] = new char[dp + 10];
231 System.arraycopy(d, 0, nd, 0, dp);
234 d[dp] = '%';
236 d[dp + 1] = (char) (dig < 10 ? '0' + dig : 'A' - 10 + dig);
238 d[dp + 2] = (char) (dig < 10 ? '0' + dig : 'A' - 10 + dig)
    [all...]
  /system/core/libutils/
ProcessCallStack.cpp 133 DIR *dp; local
137 dp = opendir(PATH_SELF_TASK);
138 if (dp == NULL) {
162 while ((code = readdir_r(dp, &entry, &ep)) == 0 && ep != NULL) {
202 closedir(dp);
  /bionic/libc/bionic/
fts.c 548 struct dirent *dp; local
651 for (head = tail = NULL, nitems = 0; dirp && (dp = readdir(dirp));) {
652 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
655 if (!(p = fts_alloc(sp, dp->d_name, strlen(dp->d_name))))
657 if (strlen(dp->d_name) >= maxlen) { /* include space for NUL */
659 if (fts_palloc(sp, strlen(dp->d_name) +len + 1)) {
686 p->fts_pathlen = len + strlen(dp->d_name);
712 dp->d_type != DT_DIR && dp->d_type != DT_UNKNOWN
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 187 const char *dp; local
214 for (dp = start; dp < stop; dp++)
215 if (*dp == g->must[0] && (size_t)(stop - dp) >= g->mlen &&
216 memcmp(dp, g->must, g->mlen) == 0)
218 if (dp == stop) /* we didn't find g->must */
272 dp = dissect(m, m->coldp, endp, gf, gl);
282 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0)
373 const char *dp; local
576 const char *dp; local
    [all...]
  /external/dbus/dbus/
dbus-sysdeps-util-win.c 493 DIR *dp; local
505 dp = (DIR *)malloc(sizeof(DIR));
506 dp->offset = 0;
507 dp->finished = 0;
508 dp->dir = strdup(dir);
510 handle = FindFirstFileA(filespec, &(dp->fileinfo));
514 dp->finished = 1;
519 dp->handle = handle;
522 return dp;
525 static struct dirent * _dbus_readdir(DIR *dp)
    [all...]
  /external/e2fsprogs/contrib/
spd_readdir.c 74 struct dirent_s *dp; member in struct:dir_s
153 if (!dirstruct->dp)
157 free(dirstruct->dp[i].d_name);
159 free(dirstruct->dp);
160 dirstruct->dp = 0;
213 dnew = realloc(dirstruct->dp,
217 dirstruct->dp = dnew;
219 ds = &dirstruct->dp[dirstruct->num++];
232 qsort(dirstruct->dp, dirstruct->num, sizeof(struct dirent_s), ino_cmp);
331 ds = &dirstruct->dp[dirstruct->pos++]
    [all...]
  /external/libpcap/
pcap-win32.c 305 u_char *dp = NULL; local
350 dp = ((u_char *)header) + dag_record_size;
358 dp += 4;
370 dp += 2;
430 if (bpf_filter(p->fcode.bf_insns, dp, packet_len, caplen) == 0)
443 (*callback)(user, &pcap_header, dp);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_clip.c 280 float dp; local
286 dp = vert->data[draw_current_shader_clipdistance_output(clipper->stage.draw, cdi)][vidx];
289 dp = dot4(vert->clip, plane);
291 return dp;
351 float dp = getclipdist(clipper, vert, plane_idx); local
361 if (DIFFERENT_SIGNS(dp, dp_prev)) {
377 if (IS_NEGATIVE(dp)) {
379 * know dp != dp_prev from DIFFERENT_SIGNS, above.
381 float t = dp / (dp - dp_prev)
    [all...]
  /external/opencv3/modules/photo/src/
contrast_preserve.hpp 126 double dp; local
129 dp = 0.0;
131 dp = dp + (comb[i][j] * initRGB[j]);
132 res.push_back(dp);
  /external/tcpdump/
print-aodv.c 270 const struct rerr_unreach *dp; local
278 dp = (struct rerr_unreach *)(dat + sizeof(*ap));
281 ND_TCHECK(*dp);
282 if (i < sizeof(*dp))
284 ND_PRINT((ndo, " {%s}(%ld)", ipaddr_string(ndo, &dp->u_da),
285 (unsigned long)EXTRACT_32BITS(&dp->u_ds)));
286 dp++;
287 i -= sizeof(*dp);
  /ndk/sources/host-tools/make-3.81/
file.c 437 struct dep *dp;
438 for (dp = new; dp->next != NULL; dp = dp->next)
440 dp->next = ood;
533 struct dep *dp = new, *dl = 0;
535 while (dp != 0)
537 char *percent = find_percent (dp->name);
541 would be equivalent to $(patsubst %,dp->name,) whic
434 struct dep *dp; local
530 struct dep *dp = new, *dl = 0; local
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 135 char *dp; local
156 for (dp = start; dp < stop; dp++)
157 if (*dp == g->must[0] && stop - dp >= g->mlen &&
158 memcmp(dp, g->must, (size_t)g->mlen) == 0)
160 if (dp == stop) /* we didn't find g->must */
216 dp = dissect(m, m->coldp, endp, gf, gl);
227 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0)
483 char *dp; local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/testing/
WeightWatcher.java 144 final float dp = getResources().getDisplayMetrics().density; local
148 mText.setTextSize(TypedValue.COMPLEX_UNIT_PX, 10 * dp);
151 final int p = (int)(2*dp);
158 (int)(14 * dp),
163 params.leftMargin = (int)(4*dp);
165 params.width = (int)(200 * dp);
  /device/htc/flounder/sensor_hub/libsensors/
CwMcuSensor.cpp 112 DIR *dp; local
123 dp = opendir(iio_dir);
124 if (dp == NULL) {
128 while (ent = readdir(dp), ent != NULL) {
    [all...]
  /external/avahi/avahi-daemon/
glob.c 613 struct dirent *dp; local
650 while ((dp = (*readdirfunc)(dirp))) {
658 if (dp->d_name[0] == DOT && *pattern != DOT)
662 sc = dp->d_name;

Completed in 570 milliseconds

1 2 3 4 5 67 8 91011>>