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

1 2 34 5 6 7 8 91011>>

  /device/google/contexthub/sensorhal/
directchannel.cpp 149 int32_t caps[GRALLOC1_LAST_CAPABILITY]; local
151 mGralloc1Device->getCapabilities(mGralloc1Device, &n_cap, caps);
153 if (caps[i] == GRALLOC1_CAPABILITY_RELEASE_IMPLY_DELETE) {
  /external/adhd/cras/src/tests/
alsa_helpers_unittest.cc 41 snd_pcm_chmap_query_t **caps; local
45 caps = (snd_pcm_chmap_query_t **)calloc(4, sizeof(*caps));
61 caps[0] = c;
66 caps[1] = c;
71 caps[2] = c;
73 caps[3] = NULL;
76 c = cras_chmap_caps_match(caps, fmt);
79 caps[1]->map.pos[0] = 5;
80 caps[1]->map.pos[1] = 7
94 snd_pcm_chmap_query_t **caps = NULL; local
    [all...]
  /external/autotest/client/site_tests/camera_V4L2/src/
media_v4l2_unittest.cc 174 v4l2_capability caps; local
175 if (!v4l2_dev.ProbeCaps(&caps, true)) {
176 printf("[Error] Can not probe caps on device '%s'\n", dev_name);
179 if (!(caps.capabilities & V4L2_CAP_VIDEO_CAPTURE)) {
  /external/iproute2/rdma/
dev.c 71 uint64_t caps; local
77 caps = mnl_attr_get_u64(tb[RDMA_NLDEV_ATTR_CAP_FLAGS]);
80 jsonw_name(rd->jw, "caps");
83 pr_out("\n caps: <");
85 for (idx = 0; caps; idx++) {
86 if (caps & 0x1) {
91 if (caps >> 0x1)
95 caps >>= 0x1;
link.c 61 uint64_t caps; local
67 caps = mnl_attr_get_u64(tb[RDMA_NLDEV_ATTR_CAP_FLAGS]);
70 jsonw_name(rd->jw, "caps");
73 pr_out("\n caps: <");
75 for (idx = 0; caps; idx++) {
76 if (caps & 0x1) {
81 if (caps >> 0x1)
85 caps >>= 0x1;
  /external/libvncserver/libvncserver/tightvnc-filetransfer/
rfbtightserver.c 183 rfbAuthenticationCapsMsg caps; local
200 caps.nAuthTypes = Swap32IfLE((uint32_t)count);
201 if (rfbWriteExact(cl, (char *)&caps, sz_rfbAuthenticationCapsMsg) < 0) {
234 rfbTunnelingCapsMsg caps; local
239 caps.nTunnelTypes = Swap32IfLE(nTypes);
240 if (rfbWriteExact(cl, (char *)&caps, sz_rfbTunnelingCapsMsg) < 0) {
  /external/mesa3d/src/gallium/drivers/r300/
r300_screen.h 42 struct r300_capabilities caps; member in struct:r300_screen
  /external/mesa3d/src/gallium/state_trackers/nine/
adapter9.c 546 pCaps->Caps = 0;
668 /* FLAT caps not legal for D3D9. */
986 D3DCAPS9 caps; local
1047 D3DCAPS9 caps; local
    [all...]
vertexdeclaration9.c 176 const D3DCAPS9 *caps; local
188 caps = NineDevice9_GetCaps(pParams->device);
189 user_assert(nelems <= caps->MaxStreams, D3DERR_INVALIDCALL);
  /external/oj-libjdwp/src/share/back/
classTrack.c 245 jvmtiCapabilities caps; local
246 memset(&caps, 0, sizeof(caps));
247 caps.can_generate_object_free_events = 1;
248 jvmtiError error = JVMTI_FUNC_PTR(trackingEnv,AddCapabilities)(trackingEnv, &caps);
  /external/skia/gm/
rrects.cpp 109 const auto& caps = *renderTargetContext->caps()->shaderCaps(); variable
110 auto fp = GrRRectEffect::Make(edgeType, rrect, caps);
  /external/skia/include/gpu/
GrContext.h 235 const GrCaps* caps() const { return fCaps.get(); } function in class:GrContext
497 GrContextThreadSafeProxy(sk_sp<const GrCaps> caps,
501 : fCaps(std::move(caps))
  /external/skia/src/atlastext/
SkAtlasTextTarget.cpp 151 const GrCaps& caps = *this->context()->internal().grContext()->caps(); local
152 op->finalizeForTextTarget(fColor, caps);
156 if (other->combineIfPossible(op.get(), caps)) {
175 void GrAtlasTextOp::finalizeForTextTarget(uint32_t color, const GrCaps& caps) {
179 this->finalize(caps, nullptr /* applied clip */, GrPixelConfigIsClamped::kNo);
  /external/skia/src/gpu/
GrGpu.cpp 51 const GrCaps& caps = *this->caps(); local
52 if (textureParams.isRepeated() && !caps.npotTextureTileSupport() &&
81 if (!this->caps()->validateSurfaceDesc(desc, mipMapped)) {
87 desc.fSampleCnt = this->caps()->getRenderTargetSampleCount(desc.fSampleCnt, desc.fConfig);
99 if (!this->caps()->reuseScratchTextures() && !isRT) {
119 if (!this->caps()->isConfigTexturable(backendTex.config())) {
122 if (backendTex.width() > this->caps()->maxTextureSize() ||
123 backendTex.height() > this->caps()->maxTextureSize()) {
139 if (!this->caps()->isConfigTexturable(backendTex.config()) |
    [all...]
GrProcessor.cpp 28 const GrCaps* GrProcessorTestData::caps() { function in class:GrProcessorTestData
29 return fContext->caps();
GrRenderTargetOpList.cpp 199 void GrRenderTargetOpList::fullClear(const GrCaps& caps, GrColor color) {
219 this->recordOp(std::move(op), caps); local
226 bool GrRenderTargetOpList::copySurface(const GrCaps& caps,
237 this->addOp(std::move(op), caps); local
299 const GrCaps& caps) {
317 return a.fOp->combineIfPossible(b, caps);
321 const GrCaps& caps,
350 if (this->combineIfPossible(candidate, op.get(), clip, dstProxy, caps)) {
382 void GrRenderTargetOpList::forwardCombine(const GrCaps& caps) {
396 candidate.fAppliedClip, &candidate.fDstProxy, caps)) {
    [all...]
  /external/skia/src/gpu/gl/
GrGLContext.h 45 const GrGLCaps* caps() const { return fGLCaps.get(); } function in class:GrGLContextInfo
46 GrGLCaps* caps() { return fGLCaps.get(); } function in class:GrGLContextInfo
  /external/skqp/gm/
rrects.cpp 109 const auto& caps = *renderTargetContext->caps()->shaderCaps(); variable
110 auto fp = GrRRectEffect::Make(edgeType, rrect, caps);
  /external/skqp/include/gpu/
GrContext.h 217 const GrCaps* caps() const { return fCaps.get(); } function in class:GrContext
420 GrContextThreadSafeProxy(sk_sp<const GrCaps> caps,
424 : fCaps(std::move(caps))
  /external/skqp/src/atlastext/
SkAtlasTextTarget.cpp 151 const GrCaps& caps = *this->context()->internal().grContext()->caps(); local
152 op->finalizeForTextTarget(fColor, caps);
156 if (other->combineIfPossible(op.get(), caps)) {
175 void GrAtlasTextOp::finalizeForTextTarget(uint32_t color, const GrCaps& caps) {
179 this->finalize(caps, nullptr /* applied clip */, GrPixelConfigIsClamped::kNo);
  /external/skqp/src/gpu/
GrProcessor.cpp 28 const GrCaps* GrProcessorTestData::caps() { function in class:GrProcessorTestData
29 return fContext->caps();
GrProxyProvider.cpp 30 sk_sp<const GrCaps> caps,
35 , fCaps(caps)
214 desc.fConfig = SkImageInfo2GrPixelConfig(as_IB(srcImage)->onImageInfo(), *this->caps());
316 const GrCaps* caps = this->caps(); local
320 if (!caps->isConfigTexturable(desc.fConfig)) {
325 if (willBeRT && !caps->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 1)) {
334 if (willBeRT && !caps->getSampleCount(desc.fSampleCnt, desc.fConfig)) {
340 maxSize = caps->maxRenderTargetSize();
342 maxSize = caps->maxTextureSize()
    [all...]
GrRenderTargetOpList.cpp 199 void GrRenderTargetOpList::fullClear(const GrCaps& caps, GrColor color) {
219 this->recordOp(std::move(op), caps); local
226 bool GrRenderTargetOpList::copySurface(const GrCaps& caps,
237 this->addOp(std::move(op), caps); local
299 const GrCaps& caps) {
317 return a.fOp->combineIfPossible(b, caps);
321 const GrCaps& caps,
350 if (this->combineIfPossible(candidate, op.get(), clip, dstProxy, caps)) {
382 void GrRenderTargetOpList::forwardCombine(const GrCaps& caps) {
396 candidate.fAppliedClip, &candidate.fDstProxy, caps)) {
    [all...]
  /external/skqp/src/gpu/gl/
GrGLContext.h 45 const GrGLCaps* caps() const { return fGLCaps.get(); } function in class:GrGLContextInfo
46 GrGLCaps* caps() { return fGLCaps.get(); } function in class:GrGLContextInfo
  /external/skqp/src/gpu/glsl/
GrGLSLFragmentShaderBuilder.cpp 209 const GrShaderCaps& caps = *fProgramBuilder->shaderCaps(); local
210 if (!caps.mustEnableAdvBlendEqs()) {
216 if (caps.mustEnableSpecificAdvBlendEqs()) {
236 const GrShaderCaps& caps = *fProgramBuilder->shaderCaps(); local
237 if (const char* extension = caps.secondaryOutputExtensionString()) {
245 if (caps.mustDeclareFragmentShaderOutput()) {
269 const GrShaderCaps& caps = *fProgramBuilder->shaderCaps(); local
270 return caps.mustDeclareFragmentShaderOutput() ? DeclaredSecondaryColorOutputName()
299 SkASSERT(fProgramBuilder->caps()->sampleLocationsSupport());

Completed in 949 milliseconds

1 2 34 5 6 7 8 91011>>