Searched refs:type (Results 376 - 400 of 15917) sorted by relevance

<<11121314151617181920>>

/external/dropbear/
H A Dpacket.h39 unsigned char type; /* SSH_MSG_FOO */ member in struct:PacketType
H A Dtermcodes.h40 unsigned char type; member in struct:TermCode
/external/elfutils/backends/
H A Dalpha_regs.c40 int *bits, int *type)
51 *type = DW_ATE_signed;
56 *type = DW_ATE_float;
99 *type = DW_ATE_address;
109 *type = DW_ATE_address;
113 *type = DW_ATE_address;
143 *type = DW_ATE_unsigned;
147 *type = DW_ATE_address;
151 *type = DW_ATE_address;
37 alpha_register_info(Ebl *ebl __attribute__ ((unused)), int regno, char *name, size_t namelen, const char **prefix, const char **setname, int *bits, int *type) argument
H A Di386_symbol.c40 /* Return true if the symbol type is that referencing the GOT. */
42 i386_gotpc_reloc_check (Elf *elf __attribute__ ((unused)), int type) argument
44 return type == R_386_GOTPC;
49 i386_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) argument
51 switch (type)
/external/icu4c/common/
H A Dlocbased.cpp16 Locale LocaleBased::getLocale(ULocDataLocaleType type, UErrorCode& status) const { argument
17 const char* id = getLocaleID(type, status);
21 const char* LocaleBased::getLocaleID(ULocDataLocaleType type, UErrorCode& status) const { argument
26 switch(type) {
/external/iptables/include/linux/netfilter/
H A Dxt_AUDIT.h27 __u8 type; /* XT_AUDIT_TYPE_* */ member in struct:xt_audit_info
/external/jmdns/src/javax/jmdns/impl/
H A DNameRegister.java34 public void register(InetAddress networkInterface, String name, NameType type) { argument
44 public boolean checkName(InetAddress networkInterface, String name, NameType type) { argument
54 public String incrementHostName(InetAddress networkInterface, String name, NameType type) { argument
68 public void register(InetAddress networkInterface, String name, NameType type) { argument
78 public boolean checkName(InetAddress networkInterface, String name, NameType type) { argument
88 public String incrementHostName(InetAddress networkInterface, String name, NameType type) { argument
137 * @param type
138 * name type to register
140 public abstract void register(InetAddress networkInterface, String name, NameType type); argument
149 * @param type
153 checkName(InetAddress networkInterface, String name, NameType type) argument
166 incrementHostName(InetAddress networkInterface, String name, NameType type) argument
[all...]
/external/junit/src/org/junit/runners/model/
H A DNoGenericTypeParametersValidator.java23 private void validateNoTypeParameterOnType(Type type, List<Throwable> errors) { argument
24 if (type instanceof TypeVariable<?>) {
26 + "() contains unresolved type variable " + type));
27 } else if (type instanceof ParameterizedType)
28 validateNoTypeParameterOnParameterizedType((ParameterizedType) type, errors);
29 else if (type instanceof WildcardType)
30 validateNoTypeParameterOnWildcardType((WildcardType) type, errors);
31 else if (type instanceof GenericArrayType)
32 validateNoTypeParameterOnGenericArrayType((GenericArrayType) type, error
[all...]
/external/linux-tools-perf/util/include/asm/
H A Duaccess.h12 #define access_ok(type, addr, size) 1
/external/llvm/test/MC/ELF/
H A Dgen-dwarf.s11 .type foo, @function
H A Dundef.s11 .type .Lsym5,@object
12 .type sym6,@object
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dmemory_pool.h54 * type * Array;
58 * memory_pool_array_reserve(pool, type, Array, Size, Reserved, k);
66 #define memory_pool_array_reserve(pool, type, array, size, reserved, num) do { \
70 type * newarray; \
73 newarray = memory_pool_malloc((pool), newreserve * sizeof(type)); \
74 memcpy(newarray, (array), (size) * sizeof(type)); \
/external/mesa3d/src/gbm/main/
H A Dcommon_drm.h40 enum gbm_drm_driver_type type; member in struct:gbm_drm_device
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DMediaRange.java47 * | ( type "/" STAR )
48 * | ( type "/" subtype )
61 /** type field
63 protected String type; field in class:MediaRange
74 /** get type field
78 return type;
89 * Set the type member
93 type = t;
113 return buffer.append(type)
/external/objenesis/main/src/org/objenesis/instantiator/sun/
H A DSun13InstantiatorBase.java49 protected final Class type; field in class:Sun13InstantiatorBase
51 public Sun13InstantiatorBase(Class type) { argument
52 this.type = type;
/external/objenesis/main/src/org/objenesis/strategy/
H A DInstantiatorStrategy.java30 * @param type Class that will be instantiate
33 ObjectInstantiator newInstantiatorOf(Class type); argument
/external/openssl/crypto/
H A Dcryptlib.h98 #define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1)
99 #define HEX_SIZE(type) (sizeof(type)*2)
/external/qemu/target-i386/
H A Dkvm-gs-restore.h5 int no_gs_ioctl(int fd, int type, void *arg);
/external/replicaisland/src/com/replica/replicaisland/
H A DGameComponentPool.java22 public GameComponentPool(Class<?> type) { argument
24 objectClass = type;
28 public GameComponentPool(Class<?> type, int size) { argument
30 objectClass = type;
/external/skia/src/utils/
H A DSkTLogic.h9 * type transformations (std::conditional) which will become available with
27 typedef SkTIntegralConstant<T, v> type; typedef in struct:SkTIntegralConstant
39 /** SkTIf_c::type = (condition) ? T : F;
43 typedef F type; typedef in struct:SkTIf_c
46 typedef T type; typedef in struct:SkTIf_c
49 /** SkTIf::type = (Condition::value) ? T : F; */
51 typedef typename SkTIf_c<static_cast<bool>(Condition::value), T, F>::type type; typedef in struct:SkTIf
54 /** SkTMux::type = (a && b) ? Both : (a) ? A : (b) ? B : Neither; */
57 typedef typename SkTIf<a, typename SkTIf<b, Both, A>::type,
58 typename SkTIf<b, B, Neither>::type>::type type; typedef in struct:SkTMux
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_soa.c95 * \param type the desired type for rgba_out (type.length = n, above)
102 struct lp_type type,
115 assert(format_desc->block.bits <= type.width);
117 assert(type.floating);
118 assert(type.width == 32);
120 lp_build_context_init(&bld, gallivm, type);
131 switch(format_desc->channel[chan].type) {
133 input = lp_build_undef(gallivm, type);
100 lp_build_unpack_rgba_soa(struct gallivm_state *gallivm, const struct util_format_description *format_desc, struct lp_type type, LLVMValueRef packed, LLVMValueRef rgba_out[4]) argument
309 lp_build_fetch_rgba_soa(struct gallivm_state *gallivm, const struct util_format_description *format_desc, struct lp_type type, LLVMValueRef base_ptr, LLVMValueRef offset, LLVMValueRef i, LLVMValueRef j, LLVMValueRef rgba_out[4]) argument
[all...]
H A Dlp_bld_format_yuv.c64 struct lp_type type; local
67 memset(&type, 0, sizeof type);
68 type.width = 32;
69 type.length = n;
71 assert(lp_check_value(type, packed));
72 assert(lp_check_value(type, i));
91 lp_build_context_init(&bld32, gallivm, type);
93 tmp = LLVMBuildLShr(builder, packed, lp_build_const_int_vec(gallivm, type, 8), "");
94 tmp2 = LLVMBuildLShr(builder, tmp, lp_build_const_int_vec(gallivm, type, 1
132 struct lp_type type; local
190 struct lp_type type; local
288 struct lp_type type; local
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_soa.c95 * \param type the desired type for rgba_out (type.length = n, above)
102 struct lp_type type,
115 assert(format_desc->block.bits <= type.width);
117 assert(type.floating);
118 assert(type.width == 32);
120 lp_build_context_init(&bld, gallivm, type);
131 switch(format_desc->channel[chan].type) {
133 input = lp_build_undef(gallivm, type);
100 lp_build_unpack_rgba_soa(struct gallivm_state *gallivm, const struct util_format_description *format_desc, struct lp_type type, LLVMValueRef packed, LLVMValueRef rgba_out[4]) argument
309 lp_build_fetch_rgba_soa(struct gallivm_state *gallivm, const struct util_format_description *format_desc, struct lp_type type, LLVMValueRef base_ptr, LLVMValueRef offset, LLVMValueRef i, LLVMValueRef j, LLVMValueRef rgba_out[4]) argument
[all...]
H A Dlp_bld_format_yuv.c64 struct lp_type type; local
67 memset(&type, 0, sizeof type);
68 type.width = 32;
69 type.length = n;
71 assert(lp_check_value(type, packed));
72 assert(lp_check_value(type, i));
91 lp_build_context_init(&bld32, gallivm, type);
93 tmp = LLVMBuildLShr(builder, packed, lp_build_const_int_vec(gallivm, type, 8), "");
94 tmp2 = LLVMBuildLShr(builder, tmp, lp_build_const_int_vec(gallivm, type, 1
132 struct lp_type type; local
190 struct lp_type type; local
288 struct lp_type type; local
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DDynamicMessage.java47 private final Descriptor type; field in class:DynamicMessage
55 private DynamicMessage(Descriptor type, FieldSet<FieldDescriptor> fields, argument
57 this.type = type;
64 * given type.
66 public static DynamicMessage getDefaultInstance(Descriptor type) { argument
67 return new DynamicMessage(type, FieldSet.<FieldDescriptor>emptySet(),
71 /** Parse a message of the given type from the given input stream. */
72 public static DynamicMessage parseFrom(Descriptor type, argument
75 return newBuilder(type)
79 parseFrom( Descriptor type, CodedInputStream input, ExtensionRegistry extensionRegistry) argument
88 parseFrom(Descriptor type, ByteString data) argument
94 parseFrom(Descriptor type, ByteString data, ExtensionRegistry extensionRegistry) argument
101 parseFrom(Descriptor type, byte[] data) argument
107 parseFrom(Descriptor type, byte[] data, ExtensionRegistry extensionRegistry) argument
114 parseFrom(Descriptor type, InputStream input) argument
120 parseFrom(Descriptor type, InputStream input, ExtensionRegistry extensionRegistry) argument
127 newBuilder(Descriptor type) argument
186 isInitialized(Descriptor type, FieldSet<FieldDescriptor> fields) argument
253 private final Descriptor type; field in class:DynamicMessage.Builder
258 Builder(Descriptor type) argument
[all...]

Completed in 927 milliseconds

<<11121314151617181920>>