HomeSort by relevance Sort by last modified time
    Searched refs:type (Results 26 - 50 of 34667) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/state_tracker/
st_glsl_types.cpp 30 * Returns type size in units of vec4 slots.
33 st_glsl_attrib_type_size(const struct glsl_type *type, bool is_vs_input)
38 switch (type->base_type) {
43 if (type->is_matrix()) {
44 return type->matrix_columns;
55 if (type->is_matrix()) {
56 if (type->vector_elements <= 2 || is_vs_input)
57 return type->matrix_columns;
59 return type->matrix_columns * 2;
64 if (type->vector_elements <= 2 || is_vs_input
    [all...]
  /bionic/tools/versioner/src/
CompilationType.cpp 22 std::string to_string(const CompilationType& type) {
24 ss << to_string(type.arch) << "-" << type.api_level << " [fob = " << type.file_offset_bits << "]";
  /external/clang/test/CodeGen/
PR4611-bitfield-layout.c 3 // CHECK: struct.object_entry = type { i32 }
6 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry
  /external/clang/test/Modules/Inputs/merge-anon-in-template/
a.h 3 typedef int type; typedef in struct:is_floating
  /external/clang/test/SemaTemplate/
instantiate-typedef.cpp 5 typedef T* type; // expected-error{{'type' declared as a pointer to a reference}} typedef in struct:add_pointer
8 add_pointer<int>::type test1(int * ptr) { return ptr; }
10 add_pointer<float>::type test2(int * ptr) {
11 return ptr; // expected-error{{cannot initialize return object of type 'add_pointer<float>::type' (aka 'float *') with an lvalue of type 'int *'}}
14 add_pointer<int&>::type // expected-note{{in instantiation of template class 'add_pointer<int &>' requested here}}
metafun-apply.cpp 6 typedef T* type; typedef in struct:add_pointer::apply
13 typedef T& type; // expected-error{{cannot form a reference to 'void'}} typedef in struct:add_reference::apply
19 typedef int type; typedef in struct:bogus::apply
25 typedef typename MetaFun::template apply<T>::type type; // expected-note{{in instantiation of template class 'add_reference::apply<void>' requested here}} \ typedef in struct:apply1
30 apply1<add_pointer, int>::type ip = &i;
31 apply1<add_reference, int>::type ir = i;
32 apply1<add_reference, float>::type fr = i; // expected-error{{non-const lvalue reference to type 'float' cannot bind to a value of unrelated type 'int'}
    [all...]
  /external/fio/crc/
test.h 4 int fio_crctest(const char *type);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/lib/
librpc-tirpc.h 25 * type - SOCK_DGRAM, SOCK_STREAM
28 int bound_socket(int domain, int type);
  /external/r8/src/test/examples/shaking3/
RandomTag.java 8 Class type() default void.class;
  /external/webrtc/webrtc/base/
socketfactory.h 23 // Returns a new socket for blocking communication. The type can be
28 virtual Socket* CreateSocket(int type) = 0;
29 virtual Socket* CreateSocket(int family, int type) = 0;
30 // Returns a new socket for nonblocking communication. The type can be
32 virtual AsyncSocket* CreateAsyncSocket(int type) = 0;
33 virtual AsyncSocket* CreateAsyncSocket(int family, int type) = 0;
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glCreateShaderProgramv.java 1 // C function GLuint glCreateShaderProgramv ( GLenum type, GLsizei count, const GLchar *const *strings )
4 int type,
glDrawElementsIndirect.java 1 // C function glDrawElementsIndirect ( GLenum mode, GLenum type, const void *indirect );
3 public static native void glDrawElementsIndirect(int mode, int type, long indirect);
  /libcore/ojluni/src/main/java/sun/security/jca/
ServiceId.java 29 * Simple class encapsulating a service type and algorithm for lookup.
37 public final String type; field in class:ServiceId
40 public ServiceId(String type, String algorithm) {
41 this.type = type;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DebugUtilities.java 28 * Fetch the name of a particular type of enum
29 * @param type the enum type
32 public static String typeString(int type) {
33 return enumString(DebugUtilitiesData.UDebugEnumType, type);
38 * @param type which enum to look up, such as DebugUtilitiesData.UCalendarDateFields
41 public static int enumCount(int type) {
42 return DebugUtilitiesData.NAMES[type].length;
47 * @param type which enum to look up, such as DebugUtilitiesData.UCalendarDateFields
51 public static String enumString(int type, int field)
    [all...]
  /art/test/964-default-iface-init-gen/src/
Displayer.java 18 public Displayer(String type) {
19 System.out.println("initialization of " + type);
  /external/clang/test/Analysis/
elementtype.c 4 int type; member in struct:added_obj_st
7 // Test if we are using the canonical type for ElementRegion.
11 ao[0]->type=0;
  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/testdata/
pointer.go 3 type Int8Ptr *int8
  /prebuilts/go/darwin-x86/test/fixedbugs/issue16133.dir/
b.go 5 type T struct {
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/testdata/
pointer.go 3 type Int8Ptr *int8