Searched refs:unit (Results 1 - 25 of 870) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/delphi/
H A DZLib.pas12 unit ZLib;
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas8 unit zlibpas;
/external/webrtc/src/modules/audio_processing/
H A DAndroid.mk126 # apm unit test app
/external/valgrind/main/drd/tests/
H A Dunit_bitmap.stderr.exp1 Start of DRD BM unit test.
2 End of DRD BM unit test.
/external/valgrind/main/helgrind/
H A Dlibhb_core.c2388 HChar unit[64]; local
2399 VG_(memset)(unit, 0, sizeof(unit));
2400 VG_(sprintf)(unit, i < n-1 ? "%u:%llu " : "%u:%llu",
2402 if (avail < VG_(strlen)(unit) + 40/*let's say*/) {
2407 VG_(strcat)(buf, unit);
2408 avail -= VG_(strlen)(unit);
/external/valgrind/main/massif/
H A Dms_print40 # Time unit used in profile.
285 my $unit = "i";
287 if ($nI_scaled >= 1000) { $unit = "ki"; $nI_scaled /= 1024; }
288 if ($nI_scaled >= 1000) { $unit = "Mi"; $nI_scaled /= 1024; }
289 if ($nI_scaled >= 1000) { $unit = "Gi"; $nI_scaled /= 1024; }
290 if ($nI_scaled >= 1000) { $unit = "Ti"; $nI_scaled /= 1024; }
291 if ($nI_scaled >= 1000) { $unit = "Pi"; $nI_scaled /= 1024; }
292 if ($nI_scaled >= 1000) { $unit = "Ei"; $nI_scaled /= 1024; }
293 if ($nI_scaled >= 1000) { $unit = "Zi"; $nI_scaled /= 1024; }
294 if ($nI_scaled >= 1000) { $unit
[all...]
H A Dms_print.in40 # Time unit used in profile.
285 my $unit = "i";
287 if ($nI_scaled >= 1000) { $unit = "ki"; $nI_scaled /= 1024; }
288 if ($nI_scaled >= 1000) { $unit = "Mi"; $nI_scaled /= 1024; }
289 if ($nI_scaled >= 1000) { $unit = "Gi"; $nI_scaled /= 1024; }
290 if ($nI_scaled >= 1000) { $unit = "Ti"; $nI_scaled /= 1024; }
291 if ($nI_scaled >= 1000) { $unit = "Pi"; $nI_scaled /= 1024; }
292 if ($nI_scaled >= 1000) { $unit = "Ei"; $nI_scaled /= 1024; }
293 if ($nI_scaled >= 1000) { $unit = "Zi"; $nI_scaled /= 1024; }
294 if ($nI_scaled >= 1000) { $unit
[all...]
/external/stlport/
H A DMakefile18 +$(call doinsubdirs,build/test/unit)
H A Dconfigure.bat186 echo Option specially targetting build of the unit tests project without STLport. This
253 echo !include msvc.mak > .\build\test\unit\Makefile
263 echo !include icl.mak > .\build\test\unit\Makefile
314 echo !include evc.mak > .\build\test\unit\Makefile
338 echo !include evc.mak > .\build\test\unit\Makefile
346 echo !include evc.mak > .\build\test\unit\Makefile
624 echo Go to build/test/unit folder and type nmake clean install to
625 echo build unit tests and install them in bin folder.
/external/skia/platform_tools/android/tests/expectations/
H A DAndroid.mk158 # unit-tests
/external/skia/src/core/
H A DSkStroke.cpp261 SkVector norm, unit; local
264 this->quad_to(&tmp[0], normalAB, unitNormalAB, &norm, &unit, subDivide);
265 this->quad_to(&tmp[2], norm, unit, normalBC, unitNormalBC, subDivide);
329 SkVector norm, unit, dummy, unitDummy; local
332 this->cubic_to(&tmp[0], normalAB, unitNormalAB, &norm, &unit,
336 this->cubic_to(&tmp[3], norm, unit, &dummy, &unitDummy, subDivide);
/external/skia/src/gpu/gl/
H A DGrGpuGL.cpp1044 // unbind the texture from the texture unit before binding it to the frame buffer
2703 void GrGpuGL::setTextureUnit(int unit) { argument
2704 SkASSERT(unit >= 0 && unit < fHWBoundTextures.count());
2705 if (unit != fHWActiveTextureUnitIdx) {
2706 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + unit));
2707 fHWActiveTextureUnitIdx = unit;
2712 // Bind the last texture unit since it is the least likely to be used by GrGLProgram.
2718 // clear out the this field so that if a program does use this unit it will rebind the correct
/external/skia/src/ports/
H A DSkFontHost_mac.cpp944 UniChar theChar[2]; // UniChar is a UTF-16 16-bit code unit.
1923 const UniChar* src; // UniChar is a UTF-16 16-bit code unit.
2028 static int unit_weight_to_fontstyle(float unit) { argument
2030 if (unit < 0) {
2031 value = 100 + (1 + unit) * 300;
2033 value = 400 + unit * 500;
2038 static int unit_width_to_fontstyle(float unit) { argument
2040 if (unit < 0) {
2041 value = 1 + (1 + unit) * 4;
2043 value = 5 + unit *
[all...]
/external/skia/src/utils/
H A DSkCamera.cpp35 SkScalar SkPoint3D::normalize(SkUnit3D* unit) const {
39 unit->fX = fX * scale;
40 unit->fY = fY * scale;
41 unit->fZ = fZ * scale;
43 unit->fX = unit->fY = unit->fZ = 0;
/external/skia/src/views/
H A DSkTouchGesture.cpp40 static void unit_axis_align(SkVector* unit) { argument
42 if (SkScalarAbs(unit->fX) < TOLERANCE) {
43 unit->fX = 0;
44 unit->fY = SkScalarSignNonZero(unit->fY);
45 } else if (SkScalarAbs(unit->fY) < TOLERANCE) {
46 unit->fX = SkScalarSignNonZero(unit->fX);
47 unit->fY = 0;
/external/skia/tests/
H A DMathTest.cpp98 static float float_blend(int src, int dst, float unit) { argument
99 return dst + (src - dst) * unit;
H A DPictureTest.cpp695 SkScalar unit = rand.nextUScalar1(); local
696 if (unit <= 0.3) {
699 } else if (unit <= 0.6) {
702 } else if (unit <= 0.9) {
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/scrypt/tests/
H A DAndroid.mk1 # Build the scrypt unit tests
/external/skia/
H A DAndroid.mk696 # unit-tests
/external/skia/experimental/Intersection/
H A DthingsToDo.txt7 add unit test for quadratic horizontal intersection
8 add unit test for cubic horizontal intersection with left/right
9 add unit test for ActiveEdge::calcLeft (can currently loop forever)
/external/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js3734 // right), unit can be "char", "column" (like char, but doesn't
3742 function findPosH(doc, pos, dir, unit, visually) {
3763 if (unit == "char") moveOnce();
3764 else if (unit == "column") moveOnce(true);
3765 else if (unit == "word" || unit == "group") {
3766 var sawType = null, group = unit == "group";
3792 function findPosV(cm, pos, dir, unit) {
3794 if (unit == "page") {
3797 } else if (unit
[all...]
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...

Completed in 5040 milliseconds

1234567891011>>