HomeSort by relevance Sort by last modified time
    Searched refs:du (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/fio/
diskutil.h 73 static inline void disk_util_mod(struct disk_util *du, int val)
75 if (du) {
78 fio_mutex_down(du->lock);
79 du->users += val;
81 flist_for_each(n, &du->slavelist) {
87 fio_mutex_up(du->lock);
90 static inline void disk_util_inc(struct disk_util *du)
92 disk_util_mod(du, 1);
95 static inline void disk_util_dec(struct disk_util *du)
97 disk_util_mod(du, -1)
    [all...]
diskutil.c 25 static void disk_util_free(struct disk_util *du)
27 if (du == last_du)
30 while (!flist_empty(&du->slaves)) {
33 slave = flist_first_entry(&du->slaves, struct disk_util, slavelist);
38 fio_mutex_remove(du->lock);
39 sfree(du);
42 static int get_io_ticks(struct disk_util *du, struct disk_util_stat *dus)
51 dprint(FD_DISKUTIL, "open stat file: %s\n", du->path);
53 f = fopen(du->path, "r");
63 dprint(FD_DISKUTIL, "%s: %s", du->path, p)
117 struct disk_util *du; local
139 struct disk_util *du; local
286 struct disk_util *du, *__du; local
443 struct disk_util *du; local
568 struct disk_util *du; local
680 struct disk_util *du; local
695 struct disk_util *du; local
    [all...]
file.h 127 struct disk_util *du; member in struct:fio_file
gfio.h 165 struct cmd_du_pdu *du; member in struct:gfio_client
  /external/opencv3/modules/stitching/src/opencl/
warpers.cl 51 int du = get_global_id(0);
54 if (du < cols)
56 int xmap_index = mad24(dv0, xmap_step, mad24(du, (int)sizeof(float), xmap_offset));
57 int ymap_index = mad24(dv0, ymap_step, mad24(du, (int)sizeof(float), ymap_offset));
59 float u = tl_u + du;
91 int du = get_global_id(0);
94 if (du < cols)
96 int xmap_index = mad24(dv0, xmap_step, mad24(du, (int)sizeof(float), xmap_offset));
97 int ymap_index = mad24(dv0, ymap_step, mad24(du, (int)sizeof(float), ymap_offset));
99 float u = (tl_u + du) * scale
    [all...]
  /hardware/intel/bootstub/
bootstub.spec 31 * Wed Jun 09 2010 Alek Du <alek.du@intel.com> - 0.9
36 * Thu Jun 04 2009 Alek Du <alek.du@intel.com> - 0.7
39 * Tue May 12 2009 Alek Du <alek.du@intel.com> - 0.6
42 * Thu Mar 12 2009 Alek Du <alek.du@intel.com> - 0.5
44 * Thu Jul 10 2008 Alek Du <alek.du@intel.com> - 0.
    [all...]
  /external/dng_sdk/source/
dng_temperature.cpp 94 real64 du = 1.0; local
99 du /= len;
109 real64 dt = - uu * dv + vv * du;
149 du = du * (1.0 - f) + last_du * f;
152 len = sqrt (du * du + dv * dv);
154 du /= len;
159 fTint = (uu * du + vv * dv) * kTintScale;
169 last_du = du;
    [all...]
  /external/eigen/blas/f2c/
drotmg.c 37 doublereal du, dp1, dp2, dq1, dq2, dh11, dh12, dh21, dh22; local
127 du = one - dh12 * dh21;
129 if (! (du <= zero)) {
136 *dd1 /= du;
137 *dd2 /= du;
138 *dx1 *= du;
151 du = one + dh11 * dh22;
152 dtemp = *dd2 / du;
153 *dd2 = *dd1 / du;
155 *dx1 = *dy1 * du;
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_exec_eval.c 149 GLfloat uu = (u - map->u1) * map->du;
168 GLfloat uu = (u - map->u1) * map->du;
194 GLfloat uu = (u - map->u1) * map->du;
216 GLfloat uu = (u - map->u1) * map->du;
224 GLfloat du[4], dv[4]; local
226 _math_de_casteljau_surf(map->Points, vertex, du, dv, uu, vv,
231 du[0] = du[0]*vertex[3] - du[3]*vertex[0];
232 du[1] = du[1]*vertex[3] - du[3]*vertex[1]
    [all...]
vbo_exec_api.c 641 GLfloat du = ((ctx->Eval.MapGrid1u2 - ctx->Eval.MapGrid1u1) / local
643 GLfloat u = i * du + ctx->Eval.MapGrid1u1;
652 GLfloat du = ((ctx->Eval.MapGrid2u2 - ctx->Eval.MapGrid2u1) / local
656 GLfloat u = i * du + ctx->Eval.MapGrid2u1;
668 GLfloat u, du; local
692 du = ctx->Eval.MapGrid1du;
693 u = ctx->Eval.MapGrid1u1 + i1 * du;
696 for (i=i1;i<=i2;i++,u+=du) {
707 GLfloat u, du, v, dv, v1, u1; local
729 du = ctx->Eval.MapGrid2du
    [all...]
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
Profiler.java 189 DurationUnit du = Util.selectDurationUnitForDisplay(globalStopWatch); local
190 return buildProfilerString(du, TOP_PROFILER_FIRST_PREFIX, TOTAL_ELAPSED, "");
199 DurationUnit du = Util.selectDurationUnitForDisplay(globalStopWatch); local
200 String r = buildProfilerString(du, TOP_PROFILER_FIRST_PREFIX, TOTAL_ELAPSED, "");
227 private String buildProfilerString(DurationUnit du, String firstPrefix, String label, String indentation) {
237 buildStopWatchString(buf, du, ELAPSED_TIME, indentation, (StopWatch) child);
240 String subString = profiler.buildProfilerString(du, NESTED_PROFILER_FIRST_PREFIX, SUBTOTAL_ELAPSED, indentation + " ");
242 buildStopWatchString(buf, du, ELAPSED_TIME, indentation, profiler.globalStopWatch);
245 buildStopWatchString(buf, du, label, indentation, globalStopWatch);
249 private static void buildStopWatchString(StringBuilder buf, DurationUnit du, String prefix, String indentation, StopWatch sw)
    [all...]
Util.java 72 DurationUnit du = selectDurationUnitForDisplay(sw); local
73 return durationInDurationUnitsAsStr(sw.elapsedTime(), du);
  /external/mesa3d/src/mesa/math/
m_eval.h 89 * at the same time. To get the correct tangent length du and dv
98 _math_de_casteljau_surf(GLfloat *cn, GLfloat *out, GLfloat *du, GLfloat *dv,
m_eval.c 186 * at the same time. To get the correct tangent length du and dv
195 _math_de_casteljau_surf(GLfloat * cn, GLfloat * out, GLfloat * du,
218 du[k] = vs * (CN(1, 0, k) - CN(0, 0, k)) +
260 du[k] = vs * DCN(1, 0) + v * DCN(1, 1);
293 du[k] = DCN(1, 0) - DCN(0, 0);
325 du[k] = vs * (DCN(1, 0) - DCN(0, 0)) + v * (DCN(1, 1) - DCN(0, 1));
383 du[k] = vs * DCN(2, 0) + v * DCN(2, 1);
435 du[k] = DCN(1, 0) - DCN(0, 0);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
compressed-plt-1b.s 1 # Define a function with all "uncompressed" (du and iu) references.
9 .if (\types) & DU
  /external/opencv3/modules/stitching/src/cuda/
build_warp_maps.cu 141 int du = blockIdx.x * blockDim.x + threadIdx.x;
143 if (du < cols && dv < rows)
145 float u = tl_u + du;
149 map_x.ptr(dv)[du] = x;
150 map_y.ptr(dv)[du] = y;
  /external/opencv3/modules/cudalegacy/src/cuda/
NCVBroxOpticalFlow.cu 215 ///\param du (in) shared memory array containing \b du
218 __forceinline__ __device__ void diffusivity_along_x(float *s, int pos, const float *u, const float *v, const float *du, const float *dv)
222 float u_x = u[pos] + du[pos] - u[left] - du[left];
229 float u_y = 0.25f*(u[up] + du[up] + u[up_left] + du[up_left] - u[down] - du[down] - u[down_left] - du[down_left]);
240 ///\param du (in) shared memory array containing \b d
    [all...]
  /external/strace/qemu_multiarch_testing/
make-hdc-img.sh 20 size=$(du -ks hdc.dir | sed -rn 's/^([0-9]+).*/\1/p')
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/ref/
ref.css 228 .du-command { font-family: monospace; }
229 .du-option { font-family: avantgarde, sans-serif; }
230 .du-filevar { font-family: avantgarde, sans-serif;
232 .du-xxx:before { content: "** ";
234 .du-xxx:after { content: " **";
  /toolchain/binutils/binutils-2.25/binutils/
srconv.c 1211 struct IT_du du; local
1218 du.format = bfd_get_file_flags (abfd) & EXEC_P ? 0 : 1;
1219 du.optimized = 0;
1220 du.stackfrmt = 0;
1221 du.spare = 0;
1222 du.unit = n;
1223 du.sections = p->nsections - 1;
1224 du.san = (int *) xcalloc (sizeof (int), du.sections);
1225 du.address = nints (du.sections)
    [all...]
  /external/llvm/
Makefile 246 $(Verb) du -sk $(LibDir)
247 $(Verb) du -sk $(ToolDir)
248 $(Verb) du -sk $(ExmplDir)
249 $(Verb) du -sk $(ObjDir)
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixVector.h 182 _EIGEN_ACCUMULATE_PACKETS(d,du,d);
221 _EIGEN_ACCUMULATE_PACKETS(d,du,du);
226 _EIGEN_ACCUMULATE_PACKETS(du,du,du);
446 _EIGEN_ACCUMULATE_PACKETS(d,du,d);
487 _EIGEN_ACCUMULATE_PACKETS(d,du,du);
492 _EIGEN_ACCUMULATE_PACKETS(du,du,du)
    [all...]
  /external/libjpeg-turbo/release/
makedpkg.in 53 SIZE=`du -s $TMPDIR | cut -f1`
  /external/testng/src/main/java/org/testng/internal/
DynamicGraph.java 65 List<T> du = m_dependedUpon.get(m); local
69 } else if (getUnfinishedNodes(du).size() == 0) {
  /frameworks/base/core/java/android/content/
IntentFilter.java     [all...]

Completed in 262 milliseconds

1 2 3 4