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

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/mesa/main/
texobj.c 1040 for (u = 0; u < Elements(ctx->Texture.Unit); u++) {
1041 struct gl_texture_unit *unit = &ctx->Texture.Unit[u]; local
1043 if (texObj == unit->CurrentTex[tex]) {
1044 _mesa_reference_texobj(&unit->CurrentTex[tex],
1046 ASSERT(unit->CurrentTex[tex]);
1063 * texture unit, unbind the texture first. Decrement the reference
    [all...]
varray.c 390 const GLuint unit = ctx->Array.ActiveTexture; local
393 update_array(ctx, "glTexCoordPointer", VERT_ATTRIB_TEX(unit),
    [all...]
  /external/mesa3d/src/mesa/program/
nvfragparse.c 574 GLint unit; local
584 unit = atoi((const char *) imageSrc + 3);
585 if ((unit < 0 || unit >= MAX_TEXTURE_IMAGE_UNITS) ||
586 (unit == 0 && (imageSrc[3] != '0' || imageSrc[4] != 0))) {
589 *texUnit = unit;
616 RETURN_ERROR1("Only one texture target can be used per texture unit.");
1418 GLubyte unit, idx; local
1429 GLubyte unit, idx; local
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_graph_state.cpp 327 FX_FLOAT unit = FXSYS_sqrt2(pMatrix[1], pMatrix[3]); local
328 FX_FLOAT size = FXSYS_Mul(unit, GetFontSize());
334 FX_FLOAT unit = FXSYS_sqrt2(pMatrix[0], pMatrix[2]); local
335 FX_FLOAT size = FXSYS_Mul(unit, GetFontSize());
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.cpp 197 FX_FIXFLOAT unit = fix32_to_8(fixdiv_8_8_to_32(FIX8_ONE, (pObject2Device->GetXUnit() + pObject2Device->GetYUnit()) / 2)); local
198 if (width <= unit) width = unit;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
hiddev.h 104 __u32 unit; member in struct:hiddev_field_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
hiddev.h 104 __u32 unit; member in struct:hiddev_field_info
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
hiddev.h 90 __u32 unit; member in struct:hiddev_field_info
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
hiddev.h 90 __u32 unit; member in struct:hiddev_field_info
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
hiddev.h 90 __u32 unit; member in struct:hiddev_field_info
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
hiddev.h 90 __u32 unit; member in struct:hiddev_field_info
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
hiddev.h 90 __u32 unit; member in struct:hiddev_field_info
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
hiddev.h 90 __u32 unit; member in struct:hiddev_field_info
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.tycho.p2.tools.impl/0.20.0/
org.eclipse.tycho.p2.tools.impl-0.20.0.jar 
  /development/ndk/platforms/android-3/include/linux/raid/
md_k.h 73 dev_t unit; member in struct:mddev_s
  /external/clang/tools/libclang/
CXCursor.cpp 1284 ASTUnit *unit = getCursorASTUnit(cursor); local
1298 ASTUnit *unit = getCursorASTUnit(cursor); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractScheduledServiceTest.java 37 * Unit test for {@link AbstractScheduledService}.
54 long delay, TimeUnit unit) {
55 return future = super.scheduleWithFixedDelay(command, initialDelay, delay, unit);
302 private static final TimeUnit unit = TimeUnit.MILLISECONDS; field in class:AbstractScheduledServiceTest.SchedulerTest
309 long delay, TimeUnit unit) {
314 assertEquals(SchedulerTest.unit, unit);
319 Scheduler schedule = Scheduler.newFixedRateSchedule(initialDelay, delay, unit);
323 long period, TimeUnit unit) {
324 assertSingleCallWithCorrectParameters(command, initialDelay, delay, unit);
    [all...]
  /external/icu/icu4c/source/i18n/
compactdecimalformat.cpp 263 const CDFUnit* unit = getCDFUnitFallback(_unitsByVariant, variant, baseIdx); local
264 appendTo += unit->prefix;
266 appendTo += unit->suffix;
776 CDFUnit* unit = createCDFUnit(variant, log10Value, result, status); local
781 unit->prefix = formatStr.tempSubString(0, firstIdx);
782 fixQuotes(unit->prefix);
784 unit->suffix = formatStr.tempSubString(lastIdx + 1);
785 fixQuotes(unit->suffix);
789 if (onlySpaces(unit->prefix) && onlySpaces(unit->suffix))
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
StringTrieBuilder.java 549 // Branch on the middle unit.
670 // Write the rest of this node's unit-value pairs.
675 // Write the final value for the one string ending with this unit.
688 // Adds a unit with a final value.
696 // Adds a unit which leads to another match node.
719 unit=middleUnit;
732 return unit==o.unit && lessThan==o.lessThan && greaterOrEqual==o.greaterOrEqual;
756 offset=builder.write(unit);
759 private char unit; field in class:StringTrieBuilder.SplitBranchNode
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java 299 float unit = sqx + sqy + sqz + sqw; // if normalized is one, otherwise local
302 if (test > 0.499 * unit) { // singularity at north pole
306 } else if (test < -0.499 * unit) { // singularity at south pole
312 angles[2] = FastMath.asin(2 * test / unit); // pitch or attitude
    [all...]
  /external/libnl/lib/netfilter/
ct_obj.c 258 char *unit; local
264 res = nl_cancel_down_bytes(nfnl_ct_get_bytes(ct, 1), &unit);
266 nfnl_ct_get_packets(ct, 1), res, unit);
268 res = nl_cancel_down_bytes(nfnl_ct_get_bytes(ct, 0), &unit);
270 nfnl_ct_get_packets(ct, 0), res, unit);
  /external/libnl/lib/route/
link.c 74 * @note The unit of the transmission queue length depends on the
75 * link type, a common unit is \a packets.
509 char *unit, fmt[64]; local
517 res = nl_cancel_down_bytes(link->l_stats[RTNL_LINK_RX_BYTES], &unit);
520 fmt[9] = *unit == 'B' ? '9' : '7';
522 nl_dump_line(p, fmt, res, unit,
529 res = nl_cancel_down_bytes(link->l_stats[RTNL_LINK_TX_BYTES], &unit);
532 fmt[9] = *unit == 'B' ? '9' : '7';
534 nl_dump_line(p, fmt, res, unit,
    [all...]
  /external/libpcap/
pcap-sita.c 64 typedef struct unit { struct
65 char *ip; /* this unit's IP address (as extracted from /etc/hosts) */
66 int fd; /* the connection to this unit (if it exists) */
67 int find_fd; /* a big kludge to avoid my programming limitations since I could have this unit open for findalldevs purposes */
69 struct sockaddr_in *serv_addr; /* the address control block for comms to this unit */
    [all...]
  /external/linux-tools-perf/src/tools/perf/
builtin-stat.c 266 * Does the counter have nsecs as a unit?
928 char unit = 'M'; local
936 unit = 'K';
939 fprintf(output, " # %8.3f %c/sec ", ratio, unit);
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_code.h 184 } unit[16]; member in struct:r300_fragment_program_external_state

Completed in 784 milliseconds

1 2 3 4 5 67 8 91011>>