HomeSort by relevance Sort by last modified time
    Searched defs:unit (Results 101 - 125 of 1069) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/linux/
uvcvideo.h 65 __u8 unit; member in struct:uvc_xu_control_query
  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/linux/
uvcvideo.h 65 __u8 unit; member in struct:uvc_xu_control_query
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/linux/
uvcvideo.h 65 __u8 unit; member in struct:uvc_xu_control_query
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/linux/
uvcvideo.h 65 __u8 unit; member in struct:uvc_xu_control_query
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/linux/
uvcvideo.h 65 __u8 unit; member in struct:uvc_xu_control_query
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/linux/
uvcvideo.h 65 __u8 unit; member in struct:uvc_xu_control_query
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/
uvcvideo.h 65 __u8 unit; member in struct:uvc_xu_control_query
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/
uvcvideo.h 65 __u8 unit; member in struct:uvc_xu_control_query
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/
uvcvideo.h 65 __u8 unit; member in struct:uvc_xu_control_query
  /toolchain/binutils/binutils-2.25/include/
xtensa-isa.h 429 /* Get functional unit usage requirements for an opcode. Each "use"
430 is identified by a <functional unit, pipeline stage> pair. The
437 xtensa_funcUnit unit;
803 /* Find a functional unit by name. The return value is XTENSA_UNDEFINED if
804 the specified unit is not found. */
810 /* Get the name of a functional unit. Returns null on error. */
817 particular function unit exist. Returns XTENSA_UNDEFINED on error. */
432 xtensa_funcUnit unit; member in struct:xtensa_funcUnit_use_struct
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
WrappingExecutorServiceTest.java 106 TimeUnit unit = TimeUnit.SECONDS; local
109 List<Future<String>> futures = testExecutor.invokeAll(tasks, timeout, unit);
110 mock.assertMethodWithTimeout("invokeAll", timeout, unit);
126 TimeUnit unit = TimeUnit.SECONDS; local
129 String s = testExecutor.invokeAny(tasks, timeout, unit);
131 mock.assertMethodWithTimeout("invokeAny", timeout, unit);
201 public void assertMethodWithTimeout(String method, long timeout, TimeUnit unit) {
203 assertEquals(unit.toMillis(timeout), lastTimeoutInMillis);
207 public boolean awaitTermination(long timeout, TimeUnit unit) {
222 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
Wap230WspContentTypeTest.java 225 WspTypeDecoder unit = new WspTypeDecoder( local
227 assertTrue(unit.decodeContentType(0));
228 String mimeType = unit.getValueString();
229 int wellKnownValue = (int) unit.getValue32();
232 assertEquals(1, unit.getDecodedDataLength());
245 WspTypeDecoder unit = new WspTypeDecoder(data); local
246 assertTrue(unit.decodeContentType(0));
247 String mimeType = unit.getValueString();
248 int wellKnownValue = (int) unit.getValue32();
251 assertEquals(4, unit.getDecodedDataLength())
259 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
270 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
286 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
301 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
317 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
336 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
355 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
374 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
392 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
411 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
432 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
454 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
479 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
497 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
516 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
540 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
565 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
590 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
612 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
633 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
658 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
680 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
703 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
724 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
746 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
768 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
788 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
800 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
822 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
847 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
870 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray()); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ColorPickerDialog.java 116 private int interpColor(int colors[], float unit) {
117 if (unit <= 0) {
120 if (unit >= 1) {
124 float p = unit * (colors.length - 1);
188 // need to turn angle [-PI ... PI] into unit [0....1]
189 float unit = angle/(2*PI); local
190 if (unit < 0) {
191 unit += 1;
193 mCenterPaint.setColor(interpColor(mColors, unit));
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
GLClientState.cpp 63 memset(m_tex.unit, 0, sizeof(m_tex.unit));
64 m_tex.activeUnit = &m_tex.unit[0];
250 GLuint unit = texture - GL_TEXTURE0; local
251 if (unit >= MAX_TEXTURE_UNITS) {
254 m_tex.activeUnit = &m_tex.unit[unit];
260 return GL_TEXTURE0 + (m_tex.activeUnit - &m_tex.unit[0]);
410 for (TextureUnit* unit = m_tex.unit;
    [all...]
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorWheel.java 133 private int interpColor(int colors[], float unit) {
134 if (unit <= 0) {
137 if (unit >= 1) {
141 float p = unit * (colors.length - 1);
205 // need to turn angle [-PI ... PI] into unit [0....1]
206 float unit = angle/(2*PI); local
207 if (unit < 0) {
208 unit += 1;
210 mCenterPaint.setColor(interpColor(mColors, unit));
  /device/huawei/angler/time-services/
time_genoff.h 59 /* Time unit -- Unit in which time is set/get */
88 time_unit_type unit; /* Time unit */ member in struct:time_genoff_info
  /device/lge/bullhead/time-services/
time_genoff.h 59 /* Time unit -- Unit in which time is set/get */
88 time_unit_type unit; /* Time unit */ member in struct:time_genoff_info
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/
DirectSearchOptimizer.java 62 * configuration from a unit hypercube. Each call to {@link
265 // build a default one from a unit hypercube
266 final double[] unit = new double[startPoint.length]; local
267 Arrays.fill(unit, 1.0);
268 setStartConfiguration(unit);
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
ShortDuration.java 47 public static ShortDuration of(long duration, TimeUnit unit) {
52 checkArgument(duration <= MAXES.get(unit),
53 "ShortDuration cannot exceed 100 days: %s %s", duration, unit);
54 long nanos = TimeUnit.NANOSECONDS.convert(duration, unit);
58 public static ShortDuration of(BigDecimal duration, TimeUnit unit) {
60 BigDecimal picos = duration.multiply(ONE_IN_PICOS.get(unit));
73 TimeUnit unit = ABBREV_TO_UNIT.get(abbrev); local
74 checkArgument(unit != null, "Unrecognized time unit: %s", abbrev);
76 return of(value, unit);
    [all...]
  /external/icu/icu4c/source/common/
stringtriebuilder.cpp 138 // Branch on the middle unit.
139 // First, find the middle unit.
142 middleUnits[ltLength]=getElementUnit(i, unitIndex); // middle unit
149 // For each unit, find its elements array start and whether it has a final value.
155 UChar unit=getElementUnit(i++, unitIndex); local
156 i=indexOfElementWithNextUnit(i, unitIndex, unit);
179 // Write the rest of this node's unit-value pairs.
184 // Write the final value for the one string ending with this unit.
267 // Branch on the middle unit.
268 // First, find the middle unit
290 UChar unit=getElementUnit(i++, unitIndex); local
300 UChar unit=getElementUnit(start, unitIndex); local
    [all...]
ucharstriebuilder.cpp 30 * of the 16-bit-unit sequences, until the UCharsTrie is built.
57 // The first strings unit contains the string length.
71 // Too long: We store the length in 1 unit.
258 UChar unit=elements[i++].charAt(unitIndex, strings); local
259 while(i<limit && unit==elements[i].charAt(unitIndex, strings)) {
270 UChar unit=elements[i++].charAt(unitIndex, strings); local
271 while(unit==elements[i].charAt(unitIndex, strings)) {
279 UCharsTrieBuilder::indexOfElementWithNextUnit(int32_t i, int32_t unitIndex, UChar unit) const {
280 while(unit==elements[i].charAt(unitIndex, strings)) {
348 UCharsTrieBuilder::write(int32_t unit) {
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ucmstate.c 623 uint16_t unit; local
799 unit=(*pUnicodeCodeUnits)[offset]=oldUnicodeCodeUnits[oldOffset];
800 if(unit==0xfffe && (fallback=ucm_findFallback(toUFallbacks, countToUFallbacks, oldOffset))>=0) {
    [all...]
  /external/libnl/lib/route/
tc.c 216 char *unit, fmt[64]; local
224 res = nl_cancel_down_bytes(g->tc_stats[RTNL_TC_BYTES], &unit);
225 if (*unit == 'B')
228 nl_dump_line(p, fmt, res, unit,
235 res = nl_cancel_down_bytes(g->tc_stats[RTNL_TC_RATE_BPS], &unit);
239 if (*unit == 'B')
242 nl_dump_line(p, fmt, res, unit, g->tc_stats[RTNL_TC_RATE_PPS]);
  /external/ltrace/sysdeps/linux-gnu/metag/
trace.c 38 /* unit codes */
109 /* 2-bit base unit (BU) mapping. */
118 get_regval_from_unit(enum metag_unitnum unit, unsigned int reg,
126 if ((unit == METAG_UNIT_A0) || (unit == METAG_UNIT_A1)) {
129 } else if ((unit == METAG_UNIT_D0) || (unit == METAG_UNIT_D1)) {
134 switch(unit) {
145 assert(unit != unit);
163 unsigned int unit = 0, reg; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_aos.c 363 unsigned unit; local
381 unit = inst->Src[3].Register.Index;
391 unit = inst->Src[1].Register.Index;
396 target, unit,

Completed in 2500 milliseconds

1 2 3 45 6 7 8 91011>>