HomeSort by relevance Sort by last modified time
    Searched refs:indirect (Results 76 - 100 of 163) sorted by null

1 2 34 5 6 7

  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/include/
bfdlink.h 68 bfd_link_hash_indirect, /* Symbol is an indirect link. */
69 bfd_link_hash_warning /* Like indirect, but warn if referenced. */
616 BSF_* flags. STRING is the name of the symbol to indirect to if
617 the sym is indirect, or the warning string if a warning sym. */
680 } indirect;
677 } indirect; member in union:bfd_link_order::__anon44208
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.8/include/
bfdlink.h 68 bfd_link_hash_indirect, /* Symbol is an indirect link. */
69 bfd_link_hash_warning /* Like indirect, but warn if referenced. */
616 BSF_* flags. STRING is the name of the symbol to indirect to if
617 the sym is indirect, or the warning string if a warning sym. */
680 } indirect;
677 } indirect; member in union:bfd_link_order::__anon44545
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.8/include/
bfdlink.h 68 bfd_link_hash_indirect, /* Symbol is an indirect link. */
69 bfd_link_hash_warning /* Like indirect, but warn if referenced. */
616 BSF_* flags. STRING is the name of the symbol to indirect to if
617 the sym is indirect, or the warning string if a warning sym. */
680 } indirect;
677 } indirect; member in union:bfd_link_order::__anon51083
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.h 836 const int32_t *table, *indirect;
846 indirect = (const int32_t *) _NL_CURRENT (LC_COLLATE,
835 const int32_t *table, *indirect; local
  /external/deqp/framework/opengl/simplereference/
sglrGLContext.cpp 825 void GLContext::drawArraysIndirect (deUint32 mode, const void *indirect)
827 m_wrapper->glDrawArraysIndirect(mode, indirect);
830 void GLContext::drawElementsIndirect (deUint32 mode, deUint32 type, const void *indirect)
832 m_wrapper->glDrawElementsIndirect(mode, type, indirect);
  /external/chromium_org/tools/valgrind/
valgrind_test.py 263 parser.add_option("", "--indirect", action="store_true",
412 if self._options.indirect:
818 parser.add_option("", "--indirect", action="store_true",
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
loopfilter_sse2.asm 308 lea rdi, [rsi+rax] ; rdi points to row +1 for indirect addressing
582 lea rdi, [rsi+rax] ; rdi points to row +1 for indirect addressing
683 lea rdi, [rsi + rax - 4] ; rdi points to row +1 for indirect addressing
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
loopfilter_sse2.asm 308 lea rdi, [rsi+rax] ; rdi points to row +1 for indirect addressing
582 lea rdi, [rsi+rax] ; rdi points to row +1 for indirect addressing
683 lea rdi, [rsi + rax - 4] ; rdi points to row +1 for indirect addressing
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
loopfilter_sse2.asm 308 lea rdi, [rsi+rax] ; rdi points to row +1 for indirect addressing
582 lea rdi, [rsi+rax] ; rdi points to row +1 for indirect addressing
683 lea rdi, [rsi + rax - 4] ; rdi points to row +1 for indirect addressing
    [all...]
  /build/tools/droiddoc/templates-ds/
class.cs 36 (subcount(class.subclasses.direct) || subcount(class.subclasses.indirect))) ?>
159 <?cs if:subcount(class.subclasses.indirect) && !class.subclasses.hidden ?>
161 <?cs call:expando_trigger("subclasses-indirect", "closed") ?>Known Indirect Subclasses
162 <?cs call:expandable_class_list("subclasses-indirect", class.subclasses.indirect, "list") ?>
  /build/tools/droiddoc/templates-sac/
class.cs 36 (subcount(class.subclasses.direct) || subcount(class.subclasses.indirect))) ?>
159 <?cs if:subcount(class.subclasses.indirect) && !class.subclasses.hidden ?>
161 <?cs call:expando_trigger("subclasses-indirect", "closed") ?>Known Indirect Subclasses
162 <?cs call:expandable_class_list("subclasses-indirect", class.subclasses.indirect, "list") ?>
  /build/tools/droiddoc/templates-sdk/
class.cs 39 (subcount(class.subclasses.direct) || subcount(class.subclasses.indirect))) ?>
163 <?cs if:subcount(class.subclasses.indirect) && !class.subclasses.hidden ?>
165 <?cs call:expando_trigger("subclasses-indirect", "closed") ?>Known Indirect Subclasses
166 <?cs call:expandable_class_list("subclasses-indirect", class.subclasses.indirect, "list") ?>
  /build/tools/droiddoc/templates-sdk-dyn/
class.cs 36 (subcount(class.subclasses.direct) || subcount(class.subclasses.indirect))) ?>
159 <?cs if:subcount(class.subclasses.indirect) && !class.subclasses.hidden ?>
161 <?cs call:expando_trigger("subclasses-indirect", "closed") ?>Known Indirect Subclasses
162 <?cs call:expandable_class_list("subclasses-indirect", class.subclasses.indirect, "list") ?>
  /external/doclava/res/assets/templates/
class.cs 30 (subcount(class.subclasses.direct) || subcount(class.subclasses.indirect))) ?>
149 <?cs if:subcount(class.subclasses.indirect) && !class.subclasses.hidden ?>
151 <?cs call:expando_trigger("subclasses-indirect", "closed") ?>Known Indirect Subclasses
152 <?cs call:expandable_class_list("subclasses-indirect", class.subclasses.indirect, "list") ?>
  /frameworks/base/core/jni/
android_opengl_GLES31.cpp 336 /* void glDispatchComputeIndirect ( GLintptr indirect ) */
337 static void android_glDispatchComputeIndirect(JNIEnv *_env, jobject, jlong indirect) {
338 // 'indirect' is a byte offset, not a pointer. GL checks for negative and too-large values.
342 if (sizeof(GLintptr) != sizeof(jlong) && (indirect < LONG_MIN || indirect > LONG_MAX)) {
343 jniThrowException(_env, "java/lang/IllegalArgumentException", "indirect offset too large");
346 glDispatchComputeIndirect((GLintptr)indirect);
349 /* void glDrawArraysIndirect ( GLenum mode, const void *indirect ) */
350 static void android_glDrawArraysIndirect(JNIEnv *_env, jobject, int mode, jlong indirect) {
351 // In OpenGL ES, 'indirect' is a byte offset into a buffer, not a raw pointer
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_vs_emit.c 1175 struct brw_reg indirect = brw_vec4_indirect(0,0); local
1213 struct brw_reg indirect = brw_vec4_indirect(0,0); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs_emit.c 1175 struct brw_reg indirect = brw_vec4_indirect(0,0); local
1213 struct brw_reg indirect = brw_vec4_indirect(0,0); local
    [all...]
  /device/asus/grouper/keymaster/
NOTICE 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
61 "control" means (i) the power, direct or indirect, to cause the
200 liable to You for damages, including any direct, indirect, special,
  /device/asus/grouper/self-extractors/nvidia/staging/keymaster/
NOTICE 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
61 "control" means (i) the power, direct or indirect, to cause the
200 liable to You for damages, including any direct, indirect, special,
  /device/asus/tilapia/self-extractors/nvidia/staging/keymaster/
NOTICE 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
61 "control" means (i) the power, direct or indirect, to cause the
200 liable to You for damages, including any direct, indirect, special,
  /external/oprofile/events/i386/westmere/
unit_masks 30 0x04 indirect_non_call Indirect non call branches executed
32 0x08 return_near Indirect return branches executed
34 0x20 indirect_near_call Indirect call branches executed
45 0x04 indirect_non_call Mispredicted indirect non call branches executed
49 0x20 indirect_near_call Mispredicted indirect call branches executed
  /external/wpa_supplicant_8/src/utils/
http_curl.c 336 LogotypeReference *indirect; member in union:__anon37462::__anon37463
407 ASN1_IMP(LogotypeInfo, d.indirect, LogotypeReference, 1)
705 i2r_LogotypeReference(info->d.indirect, title, out, indent);
807 add_logo_indirect(ctx, hcert, info->d.indirect);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir.h 315 int8_t fileIndex; // signed, may be indirect for CONST[]
406 inline bool isIndirect(int dim) const { return indirect[dim] >= 0; }
417 int8_t indirect[2]; // >= 0 if relative to lvalue in insn->src(indirect[i]) member in class:nv50_ir::ValueRef
538 // print with indirect values
642 // save & remove / set indirect[0,1] and predicate source
  /external/llvm/lib/CodeGen/
LiveDebugVariables.cpp 114 bool IsIndirect; ///< true if this is a register-indirect+offset value.
160 bool match(const MDNode *Var, unsigned Offset, bool indirect) const {
161 return Var == variable && Offset == offset && indirect == IsIndirect;
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir.h 315 int8_t fileIndex; // signed, may be indirect for CONST[]
406 inline bool isIndirect(int dim) const { return indirect[dim] >= 0; }
417 int8_t indirect[2]; // >= 0 if relative to lvalue in insn->src(indirect[i]) member in class:nv50_ir::ValueRef
538 // print with indirect values
642 // save & remove / set indirect[0,1] and predicate source

Completed in 874 milliseconds

1 2 34 5 6 7