HomeSort by relevance Sort by last modified time
    Searched defs:caps (Results 26 - 50 of 308) sorted by null

12 3 4 5 6 7 8 91011>>

  /art/test/ti-agent/
frame_pop_helper.cc 87 jvmtiCapabilities caps; local
88 memset(&caps, 0, sizeof(caps));
89 caps.can_generate_frame_pop_events = 1;
90 if (JvmtiErrorToException(env, jvmti_env, jvmti_env->AddCapabilities(&caps))) {
locals_helper.cc 38 jvmtiCapabilities caps; local
39 if (JvmtiErrorToException(env, jvmti_env, jvmti_env->GetCapabilities(&caps))) {
42 caps.can_access_local_variables = 1;
43 JvmtiErrorToException(env, jvmti_env, jvmti_env->AddCapabilities(&caps));
monitors_helper.cc 157 jvmtiCapabilities caps; local
158 memset(&caps, 0, sizeof(caps));
159 caps.can_generate_monitor_events = 1;
160 if (JvmtiErrorToException(env, jvmti_env, jvmti_env->AddCapabilities(&caps))) {
  /external/ltp/testcases/kernel/containers/userns/
userns01.c 55 cap_t caps; local
71 caps = cap_get_proc();
74 cap_get_flag(caps, i, CAP_EFFECTIVE, &flag_val);
77 cap_get_flag(caps, i, CAP_PERMITTED, &flag_val);
83 printf("unexpected effective/permitted caps at %d\n", i);
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_surface_format.c 47 } caps[] = { local
184 return (format < ARRAY_SIZE(caps) && caps[format].sampling &&
185 ilo_dev_gen(dev) >= caps[format].sampling);
205 } caps[] = { local
272 if (format >= ARRAY_SIZE(caps))
277 return (caps[format].rt_write &&
278 ilo_dev_gen(dev) >= caps[format].rt_write);
280 return (caps[format].typed_write &&
281 ilo_dev_gen(dev) >= caps[format].typed_write)
    [all...]
  /external/skia/src/gpu/
GrRenderTargetOpList.h 39 void makeClosed(const GrCaps& caps) override {
44 this->forwardCombine(caps);
46 INHERITED::makeClosed(caps);
63 uint32_t addOp(std::unique_ptr<GrOp> op, const GrCaps& caps) {
64 auto addDependency = [ &caps, this ] (GrSurfaceProxy* p) {
65 this->addDependency(p, caps);
70 this->recordOp(std::move(op), caps); local
75 uint32_t addOp(std::unique_ptr<GrOp> op, const GrCaps& caps,
77 auto addDependency = [ &caps, this ] (GrSurfaceProxy* p) {
78 this->addDependency(p, caps);
84 this->recordOp(std::move(op), caps, clip.doesClip() ? &clip : nullptr, &dstProxy); local
    [all...]
GrOpFlushState.cpp 28 const GrCaps& GrOpFlushState::caps() const { function in class:GrOpFlushState
29 return *fGpu->caps();
GrProxyProvider.h 209 const GrCaps* caps() const { return fCaps.get(); } function in class:GrProxyProvider::Textureable::Renderable
GrRenderTargetContext.h 336 const GrCaps* caps() const { return fContext->caps(); } function in class:GrRenderTargetContext::CanClearFullscreen
390 return GrChooseAAType(aa, this->fsaaType(), allowMixedSamples, *this->caps());
GrResourceProvider.h 187 /** Normally the caps may indicate a preference for client-side buffers. Set this flag when
257 const GrCaps* caps() const { return fCaps.get(); } function in class:GrResourceProvider
  /external/skqp/src/gpu/
GrProxyProvider.h 193 const GrCaps* caps() const { return fCaps.get(); } function in class:GrProxyProvider::Renderable
GrRenderTargetOpList.h 39 void makeClosed(const GrCaps& caps) override {
44 this->forwardCombine(caps);
46 INHERITED::makeClosed(caps);
63 uint32_t addOp(std::unique_ptr<GrOp> op, const GrCaps& caps) {
64 auto addDependency = [ &caps, this ] (GrSurfaceProxy* p) {
65 this->addDependency(p, caps);
70 this->recordOp(std::move(op), caps); local
75 uint32_t addOp(std::unique_ptr<GrOp> op, const GrCaps& caps,
77 auto addDependency = [ &caps, this ] (GrSurfaceProxy* p) {
78 this->addDependency(p, caps);
84 this->recordOp(std::move(op), caps, clip.doesClip() ? &clip : nullptr, &dstProxy); local
    [all...]
  /external/skqp/tests/
ProxyTest.cpp 40 const GrCaps& caps,
47 REPORTER_ASSERT(reporter, rtProxy->maxWindowRectangles(caps) == expectedMaxWindowRects);
111 const GrCaps& caps = *ctxInfo.grContext()->caps(); local
152 int supportedSamples = caps.getSampleCount(numSamples, config);
153 check_rendertarget(reporter, caps, resourceProvider,
156 fit, caps.maxWindowRectangles(), false);
200 const GrCaps& caps = *ctxInfo.grContext()->caps(); local
208 int supportedNumSamples = caps.getSampleCount(numSamples, config)
    [all...]
  /hardware/interfaces/wifi/1.2/vts/functional/
wifi_chip_hidl_test.cpp 121 uint32_t caps = configureChipForStaIfaceAndGetCapabilities(); local
124 if (caps & (IWifiChip::ChipCapabilityMask::SET_TX_POWER_LIMIT |
138 uint32_t caps = configureChipForStaIfaceAndGetCapabilities(); local
141 if (caps & (IWifiChip::ChipCapabilityMask::SET_TX_POWER_LIMIT)) {
  /packages/services/BuiltInPrintService/jni/ipphelper/
ippstatus_capabilities.c 90 ipp_capabilities_t *caps = (ipp_capabilities_t *) malloc(sizeof(ipp_capabilities_t)); local
91 if (caps == NULL) {
95 memset(caps, 0, sizeof(ipp_capabilities_t));
96 caps->http = NULL;
98 memcpy(&caps->ifc, &_capabilities_ifc, sizeof(ifc_printer_capabilities_t));
99 return &caps->ifc;
105 ipp_capabilities_t *caps; local
110 caps = IMPL(ipp_capabilities_t, ifc, this_p);
112 if (caps->http != NULL) {
114 httpClose(caps->http)
130 ipp_capabilities_t *caps = NULL; local
211 ipp_capabilities_t *caps; local
    [all...]
  /system/core/libcutils/tests/
sched_policy_test.cpp 33 __user_cap_data_struct caps[_LINUX_CAPABILITY_U32S_3]; local
34 if (capget(&header, &caps[0])) {
41 return caps[nice_idx].effective & nice_mask;
  /device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_reprocess.c 195 cam_capability_t *caps = ( cam_capability_t * ) ( test_obj->cap_buf.buf.buffer ); local
196 if (caps->qcom_supported_feature_mask & CAM_QCOM_FEATURE_SHARPNESS) {
  /external/ImageMagick/scripts/
txt2html 89 # * swapped order of caps & heading in main loop
114 # * Fixed minor bug in CAPS handling (paragraph breaks broke)
189 # [-c <n> ] | [--caps <n> ]
190 $min_caps_length = 3; # min sequential CAPS for an all-caps line
193 $caps_tag = "STRONG"; # Tag to put around all-caps lines
253 $CAPS = 512;
275 $s [-c <n> ] | [--caps <n> ]
352 if (($ARGV[0] eq "-c" || $ARGV[0] eq "--caps") &&
790 sub caps subroutine
    [all...]
  /external/dexmaker/dexmaker-mockito-inline-tests/src/main/jni/multiplejvmtiagentsinterferenceagent/
agent.cc 99 jvmtiCapabilities caps; local
100 memset(&caps, 0, sizeof(caps));
101 caps.can_retransform_classes = 1;
103 jvmtiError error = localJvmtiEnv->AddCapabilities(&caps);
  /external/libcap-ng/libcap-ng-0.7/utils/
pscap.c 47 int header = 0, show_all = 0, caps; local
118 caps = capng_have_capabilities(CAPNG_SELECT_CAPS);
119 if (caps > CAPNG_NONE) {
171 if (caps == CAPNG_PARTIAL) {
  /external/libopus/celt/
modes.h 46 const unsigned char *caps; member in struct:__anon25591
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv98_video_bsp.c 46 uint32_t caps, i; local
106 caps = nouveau_vp3_bsp_end(dec, desc);
124 PUSH_DATA (push, caps); // 700 cmd
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_video_bsp.c 143 uint32_t caps; local
159 caps = nouveau_vp3_bsp_end(dec, desc);
177 PUSH_DATA (push, caps); // 700 cmd
  /external/mesa3d/src/gallium/drivers/virgl/
virgl_winsys.h 37 union virgl_caps caps; member in struct:virgl_drm_caps
92 int (*get_caps)(struct virgl_winsys *vws, struct virgl_drm_caps *caps);
  /external/skia/gm/
bigrrectaaeffect.cpp 80 const auto& caps = *renderTargetContext->caps()->shaderCaps(); variable
81 auto fp = GrRRectEffect::Make(edgeType, rrect, caps);

Completed in 868 milliseconds

12 3 4 5 6 7 8 91011>>