/external/mesa3d/src/gallium/drivers/r300/ |
r300_chipset.c | 34 void r300_parse_chipset(uint32_t pci_id, struct r300_capabilities* caps) 39 caps->family = CHIP_FAMILY_##chipfamily; \ 51 caps->high_second_pipe = FALSE; 52 caps->num_vert_fpus = 0; 53 caps->hiz_ram = 0; 54 caps->zmask_ram = 0; 57 switch (caps->family) { 60 caps->high_second_pipe = TRUE; 61 caps->num_vert_fpus = 4; 62 caps->hiz_ram = R300_HIZ_LIMIT [all...] |
/external/avahi/avahi-daemon/ |
caps.c | 33 #include "caps.h" 37 cap_t caps; local 40 /* Let's reduce our caps to the minimum set and tell Linux to keep 44 caps = cap_init(); 45 assert(caps); 46 cap_clear(caps); 48 cap_set_flag(caps, CAP_EFFECTIVE, 3, cap_values, CAP_SET); 49 cap_set_flag(caps, CAP_PERMITTED, 3, cap_values, CAP_SET); 51 if (cap_set_proc(caps) < 0) { 55 cap_free(caps); 68 cap_t caps; local 99 cap_t caps; local [all...] |
/external/autotest/client/site_tests/camera_V4L2/src/ |
media_v4l2_is_capture_device.cc | 23 v4l2_capability caps; local 24 if (!v4l2_dev.ProbeCaps(&caps, false)) { 25 printf("[Error] Can not probe caps on device '%s'\n", argv[1]); 28 is_capture_device = ((caps.capabilities & V4L2_CAP_VIDEO_CAPTURE) && 29 !(caps.capabilities & V4L2_CAP_VIDEO_OUTPUT));
|
/external/autotest/client/site_tests/security_Minijail0/src/ |
test-caps | 21 caps=$(echo "$line" | awk '{print $NF}') 22 if echo "$caps" | grep -q '^0000000000000002$'; then 25 mismatch="$caps" 29 [ $matched -eq 1 ] || die "Did not drop non-CAP_DAC_OVERRIDE caps: $mismatch"
|
/external/libcap/contrib/bug400591/ |
bug.c | 13 cap_t caps, caps2; local 18 assert((caps = cap_get_pid(1))); 20 text1 = cap_to_text(caps, NULL); 23 size = cap_size (caps); 29 copy_size = cap_copy_ext (buffer, caps, size); 40 assert(cap_compare(caps, caps2) == 0);
|
/hardware/ti/omap4-aah/camera/V4LCameraAdapter/ |
V4LCapabilities.cpp | 64 /**** Utility functions to help translate V4L Caps to Parameter ****/ 66 status_t V4LCameraAdapter::insertDefaults(CameraProperties::Properties* params, V4L_TI_CAPTYPE &caps) 104 status_t V4LCameraAdapter::insertPreviewFormats(CameraProperties::Properties* params, V4L_TI_CAPTYPE &caps) { 109 for (int i = 0; i < caps.ulPreviewFormatCount; i++) { 111 if(caps.ePreviewFormats[i] == mPixelformats[j].pixelformat ) { 122 status_t V4LCameraAdapter::insertPreviewSizes(CameraProperties::Properties* params, V4L_TI_CAPTYPE &caps) { 127 for (int i = 0; i < caps.ulPreviewResCount; i++) { 131 strncat (supported, caps.tPreviewRes[i].param, MAX_PROP_VALUE_LENGTH-1 ); 139 status_t V4LCameraAdapter::insertImageSizes(CameraProperties::Properties* params, V4L_TI_CAPTYPE &caps) { 144 for (int i = 0; i < caps.ulCaptureResCount; i++) 240 V4L_TI_CAPTYPE caps; local [all...] |
/external/skia/tests/ |
GrDrawTargetTest.cpp | 18 SkString result = context->caps()->dump(); 20 SkString shaderResult = context->caps()->shaderCaps()->dump();
|
/hardware/ti/omap4-aah/camera/OMXCameraAdapter/ |
OMXCapabilities.cpp | 64 /**** look up tables to translate OMX Caps to Parameter ****/ 351 /**** Utility functions to help translate OMX Caps to Parameter ****/ 416 const OMX_TI_CAPTYPE & caps, const CapFramerate * const fixedFrameRates, 431 for ( int i = 0; i < static_cast<int>(caps.ulPrvVarFPSModesCount); ++i ) { 433 max(androidFromDucatiFrameRate(caps.tPrvVarFPSModes[i].nVarFPSMin), minFrameRate), 434 min(androidFromDucatiFrameRate(caps.tPrvVarFPSModes[i].nVarFPSMax), maxFrameRate)); 598 status_t OMXCameraAdapter::insertImageSizes(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps) 608 for ( unsigned int i = 0 ; i < caps.ulCapFrameLayoutCount; i++ ) { 609 if (caps.eCapFrameLayout[i] == OMX_TI_StereoFrameLayoutTopBottom) 613 else if (caps.eCapFrameLayout[i] == OMX_TI_StereoFrameLayoutLeftRight 2403 OMX_TI_CAPTYPE* caps; local [all...] |
/cts/apps/CameraITS/tests/inprog/ |
test_test_patterns.py | 26 caps = [] 34 caps = cam.do_capture([req]*2) 36 img = its.image.convert_capture_to_rgb_image(caps[1])
|
/cts/apps/CameraITS/tests/scene0/ |
test_capture_result_dump.py | 15 import its.caps namespace 30 its.caps.skip_unless(its.caps.manual_sensor(props))
|
test_sensor_events.py | 16 import its.caps namespace 28 # Only run test if the appropriate caps are claimed. 29 its.caps.skip_unless(its.caps.sensor_fusion(props))
|
test_metadata.py | 17 import its.caps namespace 39 print " Legacy:", its.caps.legacy(props) 40 print " Limited:", its.caps.limited(props) 41 print " Full or better:", its.caps.full_or_better(props) 43 print " Manual sensor:", its.caps.manual_sensor(props) 44 print " Manual post-proc:", its.caps.manual_post_proc(props) 45 print " Raw:", its.caps.raw(props) 46 print " Sensor fusion:", its.caps.sensor_fusion(props) 53 manual_sensor = its.caps.manual_sensor(props) 80 if not its.caps.legacy(props) [all...] |
test_param_sensitivity_burst.py | 16 import its.caps namespace 31 its.caps.skip_unless(its.caps.manual_sensor(props) and 32 its.caps.per_frame_control(props)) 41 caps = cam.do_capture(reqs, fmt) 42 for i,cap in enumerate(caps):
|
/cts/apps/CameraITS/tests/scene1/ |
test_3a.py | 16 import its.caps namespace 26 its.caps.skip_unless(its.caps.read_3a(props))
|
test_ae_precapture_trigger.py | 16 import its.caps namespace 38 its.caps.skip_unless(its.caps.compute_target_exposure(props) and 39 its.caps.per_frame_control(props)) 55 caps = cam.do_capture(manual_reqs, fmt) 56 for cap in caps: 77 caps = cam.do_capture([auto_req] * AE_FRAMES_PER_ITERATION, fmt) 78 state = caps[-1]['metadata']['android.control.aeState']
|
test_locked_burst.py | 18 import its.caps namespace 41 its.caps.skip_unless(its.caps.ae_lock(props) and 42 its.caps.awb_lock(props)) 57 caps = cam.do_capture([req]*BURST_LEN) 58 for i,cap in enumerate(caps): 73 if its.caps.manual_sensor(props) else SPREAD_THRESH
|
/external/skia/src/gpu/ |
GrXferProcessor.cpp | 39 const GrCaps& caps) const { 43 caps); 71 void GrXferProcessor::getGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const { 85 this->onGetGLSLProcessorKey(caps, b); 89 const GrCaps& caps) const { 93 SkASSERT(caps.textureBarrierSupport()); 96 return this->onXferBarrier(rt, caps); 198 const GrCaps& caps) const { 200 if (this->willReadDstColor(caps, optimizations, hasMixedSamples)) { 201 if (!caps.shaderCaps()->dstReadInShaderSupport()) [all...] |
GrCoordTransform.cpp | 30 const GrShaderCaps* caps = texture->getContext()->caps()->shaderCaps(); local 31 if (caps->floatPrecisionVaries()) { 34 info = &caps->getFloatShaderPrecisionInfo(kFragment_GrShaderType, fPrecision); 46 info = &caps->getFloatShaderPrecisionInfo(kFragment_GrShaderType, nextP);
|
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/ |
OMXCapabilities.cpp | 52 /**** look up tables to translate OMX Caps to Parameter ****/ 224 /**** Utility functions to help translate OMX Caps to Parameter ****/ 305 status_t OMXCameraAdapter::encodeVFramerateCap(OMX_TI_CAPTYPE &caps, 322 if(caps.ulPrvVarFPSModesCount < 1) { 327 minVFR = caps.tPrvVarFPSModes[caps.ulPrvVarFPSModesCount-1].nVarFPSMin >> VFR_OFFSET; 328 maxVFR = caps.tPrvVarFPSModes[caps.ulPrvVarFPSModesCount-1].nVarFPSMax >> VFR_OFFSET; 349 // if we haven't found any caps in the list to populate 458 status_t OMXCameraAdapter::insertImageSizes(CameraProperties::Properties* params, OMX_TI_CAPTYPE &caps) { 1225 OMX_TI_CAPTYPE** caps = NULL;; local [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
mailcap.py | 19 caps = {} 28 if not key in caps: 29 caps[key] = value 31 caps[key] = caps[key] + value 32 return caps 62 caps = {} 85 if key in caps: 86 caps[key].append(fields) 88 caps[key] = [fields [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
mailcap.py | 19 caps = {} 28 if not key in caps: 29 caps[key] = value 31 caps[key] = caps[key] + value 32 return caps 62 caps = {} 85 if key in caps: 86 caps[key].append(fields) 88 caps[key] = [fields [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
mailcap.py | 19 caps = {} 28 if not key in caps: 29 caps[key] = value 31 caps[key] = caps[key] + value 32 return caps 62 caps = {} 85 if key in caps: 86 caps[key].append(fields) 88 caps[key] = [fields [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
mailcap.py | 19 caps = {} 28 if not key in caps: 29 caps[key] = value 31 caps[key] = caps[key] + value 32 return caps 62 caps = {} 85 if key in caps: 86 caps[key].append(fields) 88 caps[key] = [fields [all...] |
/external/libgdx/backends/gdx-backend-lwjgl/libs/ |
lwjgl.jar | |
/external/strace/ |
ptp.c | 118 struct ptp_clock_caps caps; local 124 if (umove_or_printaddr(tcp, arg, &caps)) 128 caps.max_adj, caps.n_alarm, caps.n_ext_ts, 129 caps.n_per_out, caps.pps);
|