/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
|
/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...] |
/frameworks/native/cmds/installd/ |
otapreopt_slot.sh | 25 OLD_SIZE=$(du -h -s /data/dalvik-cache) 27 NEW_SIZE=$(du -h -s /data/ota/$SLOT_SUFFIX/dalvik-cache)
|
/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/ltp/testcases/commands/du/ |
du01.sh | 20 # Test du command with some basic options. 29 tst_check_cmds dd du stat 83 # The output could be different in some systems, if we use du to 98 du_test "du" ${check1} 99 du_test "du testfile" ${check2} 100 du_test "du -a" ${check3} 101 du_test "du --all" ${check3} 102 du_test "du -B ${block_size}" ${check5} 103 du_test "du --block-size=${block_size}" ${check5} 104 du_test "du -b" ${check7 [all...] |
/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/swiftshader/third_party/LLVM/ |
Makefile | 229 $(Verb) du -sk $(LibDir)
230 $(Verb) du -sk $(ToolDir)
231 $(Verb) du -sk $(ExmplDir)
232 $(Verb) du -sk $(ObjDir)
|
/build/soong/android/ |
variable_test.go | 67 in: "-DA=%du",
|
/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...] |
/external/openssh/contrib/aix/ |
buildbff.sh | 183 du $dir 345 size=`du $FAKE_ROOT/$i | awk '{print $1}'`
|
/frameworks/base/tools/obbtool/ |
mkobb.sh | 214 block_count=`du -s --apparent-size --block-size=512 ${directory} | awk '{ print $1; }'`
|
/external/swiftshader/src/Shader/ |
PixelPipeline.cpp | 750 du = Float4(texture.x) * Float4(1.0f / 0x0FE0); 756 du2 = du; 758 du *= *Pointer<Float4>(data + OFFSET(DrawData, textureStage[stage].bumpmapMatrix4F[0][0])); 760 du += dv2; 775 du = Float4(texture.x) * Float4(1.0f / 0x0FE0); 781 du2 = du; 784 du *= *Pointer<Float4>(data + OFFSET(DrawData, textureStage[stage].bumpmapMatrix4F[0][0])); 786 du += dv2; [all...] |