Home
last modified time | relevance | path

Searched refs:target (Results 2051 - 2075 of 4886) sorted by relevance

1...<<81828384858687888990>>...196

/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
H A Dmain.cpp379 EGLBoolean EGLAPIENTRY CopyBuffers(EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target);
380 EGLImageKHR EGLAPIENTRY CreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list);
381 EGLImageKHR EGLAPIENTRY CreateImage(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list);
560 EGLAPI EGLBoolean EGLAPIENTRY eglCopyBuffers(EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target) in eglCopyBuffers() argument
562 return egl::CopyBuffers(dpy, surface, target); in eglCopyBuffers()
565 EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list) in eglCreateImageKHR() argument
567 return egl::CreateImageKHR(dpy, ctx, target, buffer, attrib_list); in eglCreateImageKHR()
570 EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImage(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list) in eglCreateImage() argument
572 return egl::CreateImage(dpy, ctx, target, buffer, attrib_list); in eglCreateImage()
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/chromium/
H A Dsubsetter_impl.cc387 BigGlyphMetrics::Builder* target) { in CopyBigGlyphMetrics()
388 target->SetHeight(static_cast<uint8_t>(source->Height())); in CopyBigGlyphMetrics()
389 target->SetWidth(static_cast<uint8_t>(source->Width())); in CopyBigGlyphMetrics()
390 target->SetHoriBearingX(static_cast<uint8_t>(source->HoriBearingX())); in CopyBigGlyphMetrics()
391 target->SetHoriBearingY(static_cast<uint8_t>(source->HoriBearingY())); in CopyBigGlyphMetrics()
392 target->SetHoriAdvance(static_cast<uint8_t>(source->HoriAdvance())); in CopyBigGlyphMetrics()
393 target->SetVertBearingX(static_cast<uint8_t>(source->VertBearingX())); in CopyBigGlyphMetrics()
394 target->SetVertBearingY(static_cast<uint8_t>(source->VertBearingY())); in CopyBigGlyphMetrics()
395 target->SetVertAdvance(static_cast<uint8_t>(source->VertAdvance())); in CopyBigGlyphMetrics()
386 CopyBigGlyphMetrics(BigGlyphMetrics::Builder* source, BigGlyphMetrics::Builder* target) CopyBigGlyphMetrics() argument
/third_party/vixl/src/aarch64/
H A Dinstructions-aarch64.cc938 void Instruction::SetImmPCOffsetTarget(const Instruction* target) { in SetImmPCOffsetTarget() argument
940 SetPCRelImmTarget(target); in SetImmPCOffsetTarget()
942 SetBranchImmTarget(target); in SetImmPCOffsetTarget()
947 void Instruction::SetPCRelImmTarget(const Instruction* target) { in SetPCRelImmTarget() argument
950 imm21 = target - this; in SetPCRelImmTarget()
954 uintptr_t target_page = reinterpret_cast<uintptr_t>(target) / kPageSize; in SetPCRelImmTarget()
963 void Instruction::SetBranchImmTarget(const Instruction* target) { in SetBranchImmTarget() argument
964 VIXL_ASSERT(((target - this) & 3) == 0); in SetBranchImmTarget()
967 int offset = static_cast<int>((target - this) >> kInstructionSizeLog2); in SetBranchImmTarget()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fMultisampleShaderRenderCase.cpp66 MultisampleRenderCase::MultisampleRenderCase (Context& context, const char* name, const char* desc, int numSamples, RenderTarget target, int renderSize, int flags) in MultisampleRenderCase() argument
69 , m_renderTarget (target) in MultisampleRenderCase()
72 , m_verifyTextureSampleBuffers ((flags & FLAG_VERIFY_MSAA_TEXTURE_SAMPLE_BUFFERS) != 0 && target == TARGET_TEXTURE) in MultisampleRenderCase()
90 DE_ASSERT(target < TARGET_LAST); in MultisampleRenderCase()
114 throw tcu::NotSupportedError("Test requires render target with size " + de::toString(m_renderSize) + "x" + de::toString(m_renderSize) + " or greater");
786 glw::GLint MultisampleRenderCase::getMaxConformantSampleCount(glw::GLenum target, glw::GLenum internalFormat)
794 gl.getInternalformativ(target, internalFormat, GL_NUM_SAMPLE_COUNTS, 1, &gl_sample_counts);
801 gl.getInternalformativ(target, internalFormat, GL_SAMPLES, gl_sample_counts, gl_supported_samples);
806 gl.getInternalformatSampleivNV(target, internalFormat, gl_supported_samples[i], GL_CONFORMANT_NV, 1,
820 gl.getInternalformativ(target, internalForma
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gles2/
H A Des2cTexture3DTests.cpp124 void callTexImage3D(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth,
127 void callTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width,
130 void callCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x,
133 void callCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height,
136 void callCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
140 void callFramebufferTexture3D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level,
380 void Texture3DBase::callTexImage3D(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, in callTexImage3D() argument
385 gl.texImage3DOES(target, level, internalFormat, width, height, depth, border, format, type, pixels); in callTexImage3D()
387 gl.texImage3D(target, level, static_cast<GLint>(internalFormat), width, height, depth, border, format, type, in callTexImage3D()
393 void Texture3DBase::callTexSubImage3D(GLenum target, GLin argument
406 callCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) const callCopyTexSubImage3D() argument
418 callCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void* data) const callCompressedTexImage3D() argument
431 callCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void* data) const callCompressedTexSubImage3D() argument
446 callFramebufferTexture3D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset) const callFramebufferTexture3D() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A Dentry_points_gles_3_1_autogen.cpp310 void GL_APIENTRY GL_FramebufferParameteri(GLenum target, GLenum pname, GLint param) in GL_FramebufferParameteri() argument
313 EVENT(context, GLFramebufferParameteri, "context = %d, target = %s, pname = %s, param = %d", in GL_FramebufferParameteri()
314 CID(context), GLenumToString(GLenumGroup::FramebufferTarget, target), in GL_FramebufferParameteri()
323 target, pname, param)); in GL_FramebufferParameteri()
326 context->framebufferParameteri(target, pname, param); in GL_FramebufferParameteri()
328 ANGLE_CAPTURE(FramebufferParameteri, isCallValid, context, target, pname, param); in GL_FramebufferParameteri()
362 void GL_APIENTRY GL_GetBooleani_v(GLenum target, GLuint index, GLboolean *data) in GL_GetBooleani_v() argument
366 "context = %d, target = %s, index = %u, data = 0x%016" PRIxPTR "", CID(context), in GL_GetBooleani_v()
367 GLenumToString(GLenumGroup::BufferTargetARB, target), index, (uintptr_t)data); in GL_GetBooleani_v()
374 target, inde in GL_GetBooleani_v()
387 GL_GetFramebufferParameteriv(GLenum target, GLenum pname, GLint *params) GL_GetFramebufferParameteriv() argument
687 GL_GetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params) GL_GetTexLevelParameterfv() argument
719 GL_GetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params) GL_GetTexLevelParameteriv() argument
1892 GL_TexStorage2DMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations) GL_TexStorage2DMultisample() argument
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/functions/
H A Djs_function.cpp146 JSRef<JSObject> target = objectTemplate->NewInstance(); in CreateEventTargetObject() local
160 target->SetPropertyObject("area", area); in CreateEventTargetObject()
161 return target; in CreateEventTargetObject()
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_common_ffi.h166 CJEventTarget* target; member
186 CJEventTarget* target; member
214 CJEventTarget* target; member
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Danalog_clock_component.cpp190 jerry_value_t target = jerry_value_to_number(propValue); in GetIntegerProperty() local
191 int32_t res = (int32_t)jerry_get_number_value(target); in GetIntegerProperty()
192 jerry_release_value(target); in GetIntegerProperty()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/params/
H A Drs_display_render_params.cpp154 void RSDisplayRenderParams::OnSync(const std::unique_ptr<RSRenderParams>& target) in OnSync() argument
156 auto targetDisplayParams = static_cast<RSDisplayRenderParams*>(target.get()); in OnSync()
197 RSRenderParams::OnSync(target); in OnSync()
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/modifier/
H A Drs_extended_modifier.h239 virtual void Modify(RSNode& target) const = 0;
242 void OnAttachToNode(const std::weak_ptr<RSNode>& target) override
244 target_ = target;
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/
H A Dremote_executor.h49 std::string target; member
112 int SendRequestMessage(const std::string &target, Message *message, uint32_t sessionId);
129 int FillRequestPacket(RemoteExecutorRequestPacket *packet, uint32_t sessionId, std::string &target);
/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/src/EGL/
H A Degl_wrapper_display.h52 EGLBoolean CopyBuffers(EGLSurface surf, NativePixmapType target);
92 EGLImage CreateImage(EGLContext ctx, EGLenum target,
102 EGLImageKHR CreateImageKHR(EGLContext ctx, EGLenum target,
/test/testfwk/xdevice/src/xdevice/_core/config/
H A Dresource_manager.py83 targets = root.iter("target")
84 for target in targets:
85 curr_dic = target.attrib
87 node = target
/test/testfwk/developer_test/src/core/build/
H A Dbuild_manager.py72 for target in target_list:
73 if target:
74 gn_file.write(" \"%s\",\n" % target)
234 LOG.warning("No build target found.")
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
H A DConverterPerformanceTest.java47 ByteBuffer target = encoder.encode(source); in setup()
49 // target.array() will probably return what we want, but lets take no chances in setup()
50 encBuffer = new byte[target.limit()]; in setup()
52 encBuffer[i] = target.get(i); in setup()
/third_party/jsframework/runtime/main/reactivity/
H A Dobserver.js18 * <p>Once attached, the observer converts target object's property keys<br>
86 * Augment an target Object or Array by defining hidden properties.
87 * @param {Object|Array} target
90 function copyAugment (target, src, keys) {
93 def(target, key, src[key]);
149 if (Dep.target) {
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-perf/
H A Dminimal-secure-streams.c296 int current, int target) in app_system_state_nf()
311 switch (target) { in app_system_state_nf()
323 if (target != current) in app_system_state_nf()
295 app_system_state_nf(lws_state_manager_t *mgr, lws_state_notify_link_t *link, int current, int target) app_system_state_nf() argument
/third_party/node/lib/internal/bootstrap/
H A Drealm.js200 const getOwn = (target, property, receiver) => {
201 return ObjectPrototypeHasOwnProperty(target, property) ?
202 ReflectGet(target, property, receiver) :
/third_party/node/src/
H A Dfs_event_wrap.cc52 static void Initialize(Local<Object> target,
94 void FSEventWrap::Initialize(Local<Object> target, in Initialize() argument
120 SetConstructorFunction(context, target, "FSEvent", t); in Initialize()
H A Dspawn_sync.h143 static void Initialize(v8::Local<v8::Object> target,
190 const char** target);
192 char** target);
/third_party/node/deps/v8/src/compiler/
H A Dprocessed-feedback.h127 // A transition group is a target and a possibly empty set of sources that can
128 // transition to the target. It is represented as a non-empty vector with the
129 // target at index 0.
138 // transition group's target is kept iff it is in {inferred_maps} or if more
174 CallFeedback(base::Optional<HeapObjectRef> target, float frequency, in CallFeedback() argument
178 target_(target), in CallFeedback()
183 base::Optional<HeapObjectRef> target() const { return target_; } in target() function in v8::internal::compiler::CallFeedback
/third_party/node/deps/v8/src/heap/
H A Dmarking-barrier.cc122 HeapObject target) { in RecordRelocSlot()
124 if (!MarkCompactCollector::ShouldRecordRelocSlot(host, rinfo, target)) return; in RecordRelocSlot()
127 MarkCompactCollector::ProcessRelocInfo(host, rinfo, target); in RecordRelocSlot()
121 RecordRelocSlot(Code host, RelocInfo* rinfo, HeapObject target) RecordRelocSlot() argument
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_image.c74 img->type = fd5_tex_type(prsc->target); in translate_image()
83 if (prsc->target == PIPE_BUFFER) { in translate_image()
108 switch (prsc->target) { in translate_image()
H A Dfd5_texture.c173 if (cso->target == PIPE_BUFFER) { in fd5_sampler_view_create()
196 so->texconst2 |= A5XX_TEX_CONST_2_TYPE(fd5_tex_type(cso->target)); in fd5_sampler_view_create()
198 switch (cso->target) { in fd5_sampler_view_create()

Completed in 20 milliseconds

1...<<81828384858687888990>>...196