HomeSort by relevance Sort by last modified time
    Searched refs:cap (Results 1 - 25 of 832) 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...]
  /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/wpa_supplicant_8/src/ap/
ieee802_11_vht.c 24 struct ieee80211_vht_capabilities *cap; local
32 *pos++ = sizeof(*cap);
34 cap = (struct ieee80211_vht_capabilities *) pos;
35 os_memset(cap, 0, sizeof(*cap));
36 cap->vht_capabilities_info = host_to_le32(
40 os_memcpy(&cap->vht_supported_mcs_set,
43 pos += sizeof(*cap);
130 u32 cap, own_cap, sym_caps; local
136 cap = le_to_host32(neg_vht_cap->vht_capabilities_info)
    [all...]
  /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');
  /ndk/sources/cxx-stl/llvm-libc++/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');
  /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']
  /external/qemu/audio/
audio_pt_int.c 24 void *opaque, const char *drv, const char *cap)
34 logerr (p, errno, "%s(%s): sigfillset failed", cap, AUDIO_FUNC);
61 cap, AUDIO_FUNC);
77 logerr (p, err2, "%s(%s): pthread_cond_destroy failed", cap, AUDIO_FUNC);
83 logerr (p, err2, "%s(%s): pthread_mutex_destroy failed", cap, AUDIO_FUNC);
87 logerr (p, err, "%s(%s): %s failed", cap, AUDIO_FUNC, efunc);
91 int audio_pt_fini (struct audio_pt *p, const char *cap)
97 logerr (p, err, "%s(%s): pthread_cond_destroy failed", cap, AUDIO_FUNC);
103 logerr (p, err, "%s(%s): pthread_mutex_destroy failed", cap, AUDIO_FUNC);
109 int audio_pt_lock (struct audio_pt *p, const char *cap)
    [all...]
  /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;
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusLineCaps.h 168 GpAdjustableArrowCap* cap = NULL; local
171 height, width, isFilled, &cap);
172 SetNativeCap(cap);
177 GpAdjustableArrowCap* cap = (GpAdjustableArrowCap*) nativeCap; local
179 cap, height));
184 GpAdjustableArrowCap* cap = (GpAdjustableArrowCap*) nativeCap; local
187 cap, &height));
194 GpAdjustableArrowCap* cap = (GpAdjustableArrowCap*) nativeCap; local
196 cap, width));
201 GpAdjustableArrowCap* cap = (GpAdjustableArrowCap*) nativeCap; local
211 GpAdjustableArrowCap* cap = (GpAdjustableArrowCap*) nativeCap; local
218 GpAdjustableArrowCap* cap = (GpAdjustableArrowCap*) nativeCap; local
228 GpAdjustableArrowCap* cap = (GpAdjustableArrowCap*) nativeCap; local
235 GpAdjustableArrowCap* cap = (GpAdjustableArrowCap*) nativeCap; local
    [all...]
  /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))
  /external/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))
  /external/tinyxml/
tinystr.cpp 41 void TiXmlString::reserve (size_type cap)
43 if (cap > capacity())
46 tmp.init(length(), cap); local
55 size_type cap = capacity(); local
56 if (len > cap || cap > 3*(len + 8))

Completed in 2766 milliseconds

1 2 3 4 5 6 7 8 91011>>