HomeSort by relevance Sort by last modified time
    Searched refs:cap (Results 1 - 25 of 327) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
enable.h 41 _mesa_set_enable( struct gl_context* ctx, GLenum cap, GLboolean state );
44 _mesa_Disable( GLenum cap );
47 _mesa_Enable( GLenum cap );
50 _mesa_IsEnabled( GLenum cap );
53 _mesa_set_enablei(struct gl_context *ctx, GLenum cap, GLuint index, GLboolean state);
56 _mesa_DisableIndexed( GLenum cap, GLuint index );
59 _mesa_EnableIndexed( GLenum cap, GLuint index );
62 _mesa_IsEnabledIndexed( GLenum cap, GLuint index );
65 _mesa_EnableClientState( GLenum cap );
68 _mesa_DisableClientState( GLenum cap );
    [all...]
  /external/mesa3d/src/mesa/main/
enable.h 41 _mesa_set_enable( struct gl_context* ctx, GLenum cap, GLboolean state );
44 _mesa_Disable( GLenum cap );
47 _mesa_Enable( GLenum cap );
50 _mesa_IsEnabled( GLenum cap );
53 _mesa_set_enablei(struct gl_context *ctx, GLenum cap, GLuint index, GLboolean state);
56 _mesa_DisableIndexed( GLenum cap, GLuint index );
59 _mesa_EnableIndexed( GLenum cap, GLuint index );
62 _mesa_IsEnabledIndexed( GLenum cap, GLuint index );
65 _mesa_EnableClientState( GLenum cap );
68 _mesa_DisableClientState( GLenum cap );
    [all...]
  /cts/apps/CameraITS/tests/inprog/
test_3a_remote.py 45 cap = cam.do_capture(req)
47 ae_state = cap["metadata"]["android.control.aeState"]
48 awb_state = cap["metadata"]["android.control.awbState"]
49 af_state = cap["metadata"]["android.control.afState"]
50 gains = cap["metadata"]["android.colorCorrection.gains"]
51 transform = cap["metadata"]["android.colorCorrection.transform"]
52 exp_time = cap["metadata"]['android.sensor.exposureTime']
53 lsc_map = cap["metadata"]["android.statistics.lensShadingMap"]
54 foc_dist = cap["metadata"]['android.lens.focusDistance']
55 foc_range = cap["metadata"]['android.lens.focusRange'
    [all...]
test_faces.py 30 for i,cap in enumerate(caps):
31 md = cap['metadata']
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_caps.h 45 #define UTIL_CHECK_CAP(cap) \
46 UTIL_CAPS_CHECK_CAP, PIPE_CAP_##cap
48 #define UTIL_CHECK_INT(cap, higher) \
49 UTIL_CAPS_CHECK_INT, PIPE_CAP_##cap, (unsigned)(higher)
52 #define UTIL_CHECK_FLOAT(cap, higher) \
53 UTIL_CAPS_CHECK_FLOAT, PIPE_CAPF_##cap, (unsigned)(int)(higher)
58 #define UTIL_CHECK_SHADER(shader, cap, higher) \
59 UTIL_CAPS_CHECK_SHADER, (PIPE_SHADER_##shader << 24) | PIPE_SHADER_CAP_##cap, (unsigned)(higher)
  /external/mesa3d/src/gallium/auxiliary/util/
u_caps.h 45 #define UTIL_CHECK_CAP(cap) \
46 UTIL_CAPS_CHECK_CAP, PIPE_CAP_##cap
48 #define UTIL_CHECK_INT(cap, higher) \
49 UTIL_CAPS_CHECK_INT, PIPE_CAP_##cap, (unsigned)(higher)
52 #define UTIL_CHECK_FLOAT(cap, higher) \
53 UTIL_CAPS_CHECK_FLOAT, PIPE_CAPF_##cap, (unsigned)(int)(higher)
58 #define UTIL_CHECK_SHADER(shader, cap, higher) \
59 UTIL_CAPS_CHECK_SHADER, (PIPE_SHADER_##shader << 24) | PIPE_SHADER_CAP_##cap, (unsigned)(higher)
  /external/libcxx/test/utilities/function.objects/func.memfn/
member_data.fail.cpp 33 const A* cap = ap; local
34 assert(f(cap) == f(ap));
35 f(cap) = 7;
member_function_const.pass.cpp 34 const A* cap = &a; local
35 assert(f(cap) == 'a');
50 const A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 const A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
member_function_const_volatile.pass.cpp 34 const volatile A* cap = &a; local
35 assert(f(cap) == 'a');
50 const volatile A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 const volatile A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
member_function_volatile.pass.cpp 34 volatile A* cap = &a; local
35 assert(f(cap) == 'a');
50 volatile A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 volatile A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
member_data.pass.cpp 33 const A* cap = ap; local
34 assert(f(cap) == f(ap));
  /external/chromium_org/gpu/command_buffer/client/
client_context_state.h 23 bool GetEnabled(GLenum cap, bool* enabled) const;
28 bool SetCapabilityState(GLenum cap, bool enabled, bool* changed);
  /cts/apps/CameraITS/tests/scene1/
test_yuv_jpeg_all.py 44 cap = cam.do_capture(req, out_surface)
45 assert(cap["format"] == "yuv")
46 assert(cap["width"] == size[0])
47 assert(cap["height"] == size[1])
48 print "Captured YUV %dx%d" % (cap["width"], cap["height"])
49 img = its.image.convert_capture_to_rgb_image(cap)
58 cap = cam.do_capture(req, out_surface)
59 assert(cap["format"] == "jpeg")
60 assert(cap["width"] == size[0]
    [all...]
test_ae_precapture_trigger.py 56 for cap in caps:
57 assert(cap['metadata']['android.control.aeState'] == INACTIVE)
62 cap = cam.do_capture(auto_req, fmt)
63 state = cap['metadata']['android.control.aeState']
69 cap = cam.do_capture(auto_req, fmt)
70 state = cap['metadata']['android.control.aeState']
test_param_flash_mode.py 46 cap = cam.do_capture(req)
47 flash_modes_reported.append(cap["metadata"]["android.flash.mode"])
48 flash_states_reported.append(cap["metadata"]["android.flash.state"])
49 img = its.image.convert_capture_to_rgb_image(cap)
test_param_noise_reduction.py 54 cap = cam.do_capture(req)
56 its.image.convert_capture_to_rgb_image(cap),
58 planes = its.image.convert_capture_to_planes(cap)
70 cap = cam.do_capture(req)
72 cap["metadata"]["android.noiseReduction.mode"])
74 its.image.convert_capture_to_rgb_image(cap),
76 planes = its.image.convert_capture_to_planes(cap)
  /external/chromium_org/third_party/webrtc/modules/video_capture/linux/
device_info_linux.cc 116 struct v4l2_capability cap; local
117 if (ioctl(fd, VIDIOC_QUERYCAP, &cap) < 0)
130 memcpy(cameraName, cap.card, sizeof(cap.card));
142 if (cap.bus_info[0] != 0) // may not available in all drivers
145 if (deviceUniqueIdUTF8Length >= strlen((const char*) cap.bus_info))
148 memcpy(deviceUniqueIdUTF8, cap.bus_info,
149 strlen((const char*) cap.bus_info));
188 struct v4l2_capability cap; local
189 if (ioctl(fd, VIDIOC_QUERYCAP, &cap) == 0
287 VideoCaptureCapability cap; local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_vector.h 107 uptr cap = cap0 * 5 / 4; // 25% growth local
108 if (cap == 0)
109 cap = 16;
110 if (cap < size)
111 cap = size;
112 T *p = (T*)internal_alloc(typ_, cap * sizeof(T));
119 last_ = begin_ + cap;
  /cts/apps/CameraITS/tests/
tutorial.py 69 cap = cam.do_capture(req)
73 print "Captured image width:", cap["width"]
74 print "Captured image height:", cap["height"]
75 pprint.pprint(cap["metadata"])
78 rgbimg = its.image.convert_capture_to_rgb_image(cap)
83 yimg,uimg,vimg = its.image.convert_capture_to_planes(cap)
120 cap = cam.do_capture(req)
121 rgbimg = its.image.convert_capture_to_rgb_image(cap)
166 yimg,_,_ = its.image.convert_capture_to_planes(cap)
178 cap = cam.do_capture(req, cam.CAP_JPEG
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinystr.cpp 37 void TiXmlString::reserve (size_type cap)
39 if (cap > capacity())
42 tmp.init(length(), cap); local
51 size_type cap = capacity(); local
52 if (len > cap || cap > 3*(len + 8))
  /cts/apps/CameraITS/tests/scene0/
test_capture_result_dump.py 33 cap = cam.do_capture(req, fmt)
34 pprint.pprint(cap["metadata"])
test_unified_timestamps.py 32 cap = cam.do_capture(req, fmt)
33 ts_image0 = cap['metadata']['android.sensor.timestamp']
51 cap = cam.do_capture(req, fmt)
52 ts_image1 = cap['metadata']['android.sensor.timestamp']
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsTypes.cpp 106 bool parseLineCap(const String& s, LineCap& cap)
109 cap = ButtCap;
113 cap = RoundCap;
117 cap = SquareCap;
123 String lineCapName(LineCap cap)
125 ASSERT(cap >= 0);
126 ASSERT(cap < 3);
128 return names[cap];
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.cap/
Android.mk 17 test_makefile := external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.cap/Android.mk
19 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.cap/operator_bool
  /external/openssl/crypto/pkcs7/
pk7_attr.c 69 int PKCS7_add_attrib_smimecap(PKCS7_SIGNER_INFO *si, STACK_OF(X509_ALGOR) *cap)
76 seq->length = ASN1_item_i2d((ASN1_VALUE *)cap,&seq->data,
84 ASN1_TYPE *cap; local
87 cap = PKCS7_get_signed_attribute(si, NID_SMIMECapabilities);
88 if (!cap || (cap->type != V_ASN1_SEQUENCE))
90 p = cap->value.sequence->data;
92 ASN1_item_d2i(NULL, &p, cap->value.sequence->length,

Completed in 1769 milliseconds

1 2 3 4 5 6 7 8 91011>>