Home
last modified time | relevance | path

Searched refs:target (Results 1851 - 1875 of 4141) sorted by relevance

1...<<71727374757677787980>>...166

/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationGL3_autogen.h33 GLenum target,
38 GLenum target,
45 GLenum target,
148 GLenum target,
156 GLenum target,
/third_party/skia/src/gpu/
H A DGrAHardwareBufferUtils.cpp239 GrGLuint target = isRenderable ? GR_GL_TEXTURE_2D : GR_GL_TEXTURE_EXTERNAL; in make_gl_backend_texture() local
241 glBindTexture(target, texID); in make_gl_backend_texture()
249 glEGLImageTargetTexture2DOES(target, image); in make_gl_backend_texture()
261 textureInfo.fTarget = target; in make_gl_backend_texture()
266 *imageCtx = new GLTextureHelper(texID, image, display, target); in make_gl_backend_texture()
/third_party/skia/src/core/
H A DSkTBlockList.h325 auto target = dst->template allocate<alignof(T)>(n * sizeof(T)); in concat()
326 memcpy(target.fBlock->ptr(target.fAlignedOffset), src->ptr(start), n * sizeof(T)); in concat()
327 target.fBlock->setMetadata(target.fAlignedOffset + (n - 1) * sizeof(T)); in concat()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dloop_dependence.h185 #define DeclareCastMethod(target) \
186 virtual target* As##target() { return nullptr; } \
187 virtual const target* As##target() const { return nullptr; }
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dloop_dependence.h185 #define DeclareCastMethod(target) \
186 virtual target* As##target() { return nullptr; } \
187 virtual const target* As##target() const { return nullptr; }
/third_party/python/Lib/lib2to3/
H A Dfixer_util.py25 def Assign(target, source):
27 if not isinstance(target, list):
28 target = [target]
34 target + [Leaf(token.EQUAL, "=", prefix=" ")] + source)
/third_party/skia/tools/calmbench/
H A Dab.py131 def __init__(self, target):
132 super(ThreadWithException, self).__init__(target = target)
154 t = ThreadWithException(target = fn)
175 ts = Thread(target = spin);
/third_party/python/Objects/stringlib/
H A Dtransmogrify.h253 #define findchar(target, target_len, c) \
254 ((char *)memchr((const void *)(target), c, target_len))
258 countchar(const char *target, Py_ssize_t target_len, char c, in countchar() argument
262 const char *start = target; in countchar()
263 const char *end = target + target_len; in countchar()
/third_party/spirv-tools/source/opt/
H A Dloop_dependence.h185 #define DeclareCastMethod(target) \
186 virtual target* As##target() { return nullptr; } \
187 virtual const target* As##target() const { return nullptr; }
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fInternalFormatQueryTests.cpp61 FormatSamplesCase::FormatSamplesCase (Context& ctx, const char* name, const char* desc, glw::GLenum target, glw::GLenum internalFormat, FormatType type) in FormatSamplesCase() argument
63 , m_target (target) in FormatSamplesCase()
438 deUint32 target; in init() member
448 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, textureTargets[groupNdx].name, glu::getInternalFormatTargetName(textureTargets[groupNdx].target)); in init()
449 const glw::GLenum texTarget = textureTargets[groupNdx].target; in init()
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_resource.c128 if (pres->target == PIPE_BUFFER) { in zink_resource_destroy()
428 switch (templ->target) { in create_ici()
457 unreachable("Unknown target"); in create_ici()
484 (templ->target == PIPE_TEXTURE_CUBE || in create_ici()
485 templ->target == PIPE_TEXTURE_CUBE_ARRAY || in create_ici()
486 (templ->target == PIPE_TEXTURE_2D_ARRAY && ici->extent.width == ici->extent.height && ici->arrayLayers >= 6)); in create_ici()
488 if (templ->target == PIPE_TEXTURE_CUBE) in create_ici()
615 } else if (templ->target == PIPE_BUFFER) { in resource_object_create()
660 /* We use modifiers as a proxy for "this surface is used as a window system render target". in resource_object_create()
1032 if (templ->target in resource_object_create()
[all...]
/third_party/skia/src/gpu/ops/
H A DGrOvalOpFactory.cpp1301 void onPrepareDraws(GrMeshDrawTarget* target) override {
1303 this->createProgramInfo(target);
1311 VertexWriter vertices{target->makeVertexSpace(fProgramInfo->geomProc().vertexStride(),
1320 uint16_t* indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex);
1425 fMesh = target->allocMesh();
1673 void onPrepareDraws(GrMeshDrawTarget* target) override {
1675 this->createProgramInfo(target);
1683 VertexWriter vertices{target->makeVertexSpace(fProgramInfo->geomProc().vertexStride(),
1692 uint16_t* indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex);
1756 fMesh = target
[all...]
/third_party/typescript/lib/
H A Dtsserverlibrary.js1520 elements.copyWithin(/*target*/ 0, /*start*/ headIndex);
2074 * * Whose length differs from the target name by more than 0.34 of the length of the name.
3180 case 0 /* TypeMapKind.Simple */: return "".concat(this.source.__debugTypeToString(), " -> ").concat(this.target.__debugTypeToString());
4072 instantiatedType: (_e = referenceType.target) === null || _e === void 0 ? void 0 : _e.id,
5504 // In turn, we offer both a `NodeNext` moving resolution target, and a `Node16` version-anchored resolution target
8363 Jump_target_cannot_cross_function_boundary: diag(1107, ts.DiagnosticCategory.Error, "Jump_target_cannot_cross_function_boundary_1107", "Jump target cannot cross function boundary."),
8580 Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher: diag(1378, ts.DiagnosticCategory.Error, "Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378", "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher."),
8625 Default_library_for_target_0: diag(1425, ts.DiagnosticCategory.Message, "Default_library_for_target_0_1425", "Default library for target '{0}'"),
8626 File_is_default_library_for_target_specified_here: diag(1426, ts.DiagnosticCategory.Message, "File_is_default_library_for_target_specified_here_1426", "File is default library for target specifie
[all...]
H A Dtsserver.js1521 elements.copyWithin(/*target*/ 0, /*start*/ headIndex);
2075 * * Whose length differs from the target name by more than 0.34 of the length of the name.
3181 case 0 /* TypeMapKind.Simple */: return "".concat(this.source.__debugTypeToString(), " -> ").concat(this.target.__debugTypeToString());
4073 instantiatedType: (_e = referenceType.target) === null || _e === void 0 ? void 0 : _e.id,
5505 // In turn, we offer both a `NodeNext` moving resolution target, and a `Node16` version-anchored resolution target
8364 Jump_target_cannot_cross_function_boundary: diag(1107, ts.DiagnosticCategory.Error, "Jump_target_cannot_cross_function_boundary_1107", "Jump target cannot cross function boundary."),
8581 Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher: diag(1378, ts.DiagnosticCategory.Error, "Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378", "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher."),
8626 Default_library_for_target_0: diag(1425, ts.DiagnosticCategory.Message, "Default_library_for_target_0_1425", "Default library for target '{0}'"),
8627 File_is_default_library_for_target_specified_here: diag(1426, ts.DiagnosticCategory.Message, "File_is_default_library_for_target_specified_here_1426", "File is default library for target specifie
[all...]
H A Dtypescript.js1511 elements.copyWithin(/*target*/ 0, /*start*/ headIndex);
2065 * * Whose length differs from the target name by more than 0.34 of the length of the name.
3171 case 0 /* TypeMapKind.Simple */: return "".concat(this.source.__debugTypeToString(), " -> ").concat(this.target.__debugTypeToString());
4063 instantiatedType: (_e = referenceType.target) === null || _e === void 0 ? void 0 : _e.id,
5495 // In turn, we offer both a `NodeNext` moving resolution target, and a `Node16` version-anchored resolution target
8354 Jump_target_cannot_cross_function_boundary: diag(1107, ts.DiagnosticCategory.Error, "Jump_target_cannot_cross_function_boundary_1107", "Jump target cannot cross function boundary."),
8571 Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher: diag(1378, ts.DiagnosticCategory.Error, "Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378", "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher."),
8616 Default_library_for_target_0: diag(1425, ts.DiagnosticCategory.Message, "Default_library_for_target_0_1425", "Default library for target '{0}'"),
8617 File_is_default_library_for_target_specified_here: diag(1426, ts.DiagnosticCategory.Message, "File_is_default_library_for_target_specified_here_1426", "File is default library for target specifie
[all...]
H A DtypescriptServices.js1511 elements.copyWithin(/*target*/ 0, /*start*/ headIndex);
2065 * * Whose length differs from the target name by more than 0.34 of the length of the name.
3171 case 0 /* TypeMapKind.Simple */: return "".concat(this.source.__debugTypeToString(), " -> ").concat(this.target.__debugTypeToString());
4063 instantiatedType: (_e = referenceType.target) === null || _e === void 0 ? void 0 : _e.id,
5495 // In turn, we offer both a `NodeNext` moving resolution target, and a `Node16` version-anchored resolution target
8354 Jump_target_cannot_cross_function_boundary: diag(1107, ts.DiagnosticCategory.Error, "Jump_target_cannot_cross_function_boundary_1107", "Jump target cannot cross function boundary."),
8571 Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher: diag(1378, ts.DiagnosticCategory.Error, "Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378", "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher."),
8616 Default_library_for_target_0: diag(1425, ts.DiagnosticCategory.Message, "Default_library_for_target_0_1425", "Default library for target '{0}'"),
8617 File_is_default_library_for_target_specified_here: diag(1426, ts.DiagnosticCategory.Message, "File_is_default_library_for_target_specified_here_1426", "File is default library for target specifie
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/
H A DCollectionUtilities.java75 * @param target
80 public static <T> Map<T,T> asMap(T[][] source, Map<T,T> target, boolean reverse) { in asMap() argument
86 target.put(source[i][from], source[i][to]); in asMap()
88 return target; in asMap()
92 * Add all items in iterator to target collection
96 * @param target
99 public static <T, U extends Collection<T>> U addAll(Iterator<T> source, U target) { in addAll() argument
101 target.add(source.next()); in addAll()
103 return target; // for chaining in addAll()
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DCollectionUtilities.java72 * @param target
77 public static <T> Map<T,T> asMap(T[][] source, Map<T,T> target, boolean reverse) { in asMap() argument
83 target.put(source[i][from], source[i][to]); in asMap()
85 return target; in asMap()
89 * Add all items in iterator to target collection
93 * @param target
96 public static <T, U extends Collection<T>> U addAll(Iterator<T> source, U target) { in addAll() argument
98 target.add(source.next()); in addAll()
100 return target; // for chaining in addAll()
/third_party/libdrm/freedreno/msm/
H A Dmsm_ringbuffer.c103 * target rb (for example, or same stateobj emit multiple times), and
105 * reference to a given target, we need a hashtable to track this per
253 * target cmdstream buffer:
271 * - target cmd has never been added to submit.cmds in get_cmd()
272 * - target cmd is not a streaming stateobj (which unlike longer in get_cmd()
614 struct fd_ringbuffer *target, uint32_t cmd_idx) in msm_ringbuffer_emit_reloc_ring()
617 struct msm_ringbuffer *msm_target = to_msm_ringbuffer(target); in msm_ringbuffer_emit_reloc_ring()
640 size = offset_bytes(target->cur, target->start); in msm_ringbuffer_emit_reloc_ring()
655 if (added_cmd && (target in msm_ringbuffer_emit_reloc_ring()
613 msm_ringbuffer_emit_reloc_ring(struct fd_ringbuffer *ring, struct fd_ringbuffer *target, uint32_t cmd_idx) msm_ringbuffer_emit_reloc_ring() argument
[all...]
/third_party/mesa3d/src/egl/drivers/dri2/
H A Dplatform_x11_dri3.c396 dri3_create_image_khr(_EGLDisplay *disp, _EGLContext *ctx, EGLenum target, in dri3_create_image_khr() argument
403 switch (target) { in dri3_create_image_khr()
412 return dri2_create_image_khr(disp, ctx, target, buffer, attr_list); in dri3_create_image_khr()
463 xcb_pixmap_t target; in dri3_copy_buffers() local
466 target = (uintptr_t) native_pixmap_target; in dri3_copy_buffers()
468 loader_dri3_copy_drawable(&dri3_surf->loader_drawable, target, in dri3_copy_buffers()
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_cc.c311 uint64_t target; in ngtcp2_cc_cubic_cc_on_pkt_acked() local
402 target = cc->origin_point + delta; in ngtcp2_cc_cubic_cc_on_pkt_acked()
404 target = cc->origin_point - delta; in ngtcp2_cc_cubic_cc_on_pkt_acked()
407 if (target > cstat->cwnd) { in ngtcp2_cc_cubic_cc_on_pkt_acked()
408 m = cc->pending_add + cstat->max_udp_payload_size * (target - cstat->cwnd); in ngtcp2_cc_cubic_cc_on_pkt_acked()
435 " target=%" PRIu64 " w_tcp=%" PRIu64, in ngtcp2_cc_cubic_cc_on_pkt_acked()
437 target, cc->w_tcp); in ngtcp2_cc_cubic_cc_on_pkt_acked()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_tex.c53 if (templ->target == PIPE_TEXTURE_RECT || templ->target == PIPE_BUFFER) in nv50_create_sampler_view()
132 if (templ->target == PIPE_BUFFER) { in nv50_create_texture_view()
159 switch (templ->target) { in nv50_create_texture_view()
194 unreachable("unexpected/invalid texture target"); in nv50_create_texture_view()
227 if (res->base.target != PIPE_BUFFER) in nv50_update_tic()
340 if (!tic || tic->pipe.target == PIPE_BUFFER) { in nv50_validate_tic()
/third_party/libexif/libexif/canon/
H A Dmnote-canon-entry.c34 #define CF(format,target,v,maxlen) \
36 if (format != target) { \
41 exif_format_get_name (target)); \
46 #define CC(number,target,v,maxlen) \
48 if (number != target) { \
51 "expected %i)."), (int) number, (int) target); \
/third_party/node/deps/v8/src/inspector/
H A Dv8-stack-trace-impl.cc356 StackFrameIterator target(stackTrace); in isEqualIgnoringTopFrame()
359 target.next(); in isEqualIgnoringTopFrame()
360 while (!current.done() && !target.done()) { in isEqualIgnoringTopFrame()
361 if (!current.frame()->isEqual(target.frame())) { in isEqualIgnoringTopFrame()
365 target.next(); in isEqualIgnoringTopFrame()
367 return current.done() == target.done(); in isEqualIgnoringTopFrame()
/third_party/node/deps/v8/src/objects/
H A Dswiss-name-dictionary-inl.h544 int target = FindFirstEmpty(hash); in AddInternal() local
546 SetCtrl(target, swiss_table::H2(hash)); in AddInternal()
547 SetKey(target, key); in AddInternal()
548 ValueAtPut(target, value); in AddInternal()
549 DetailsAtPut(target, details); in AddInternal()
554 return target; in AddInternal()

Completed in 81 milliseconds

1...<<71727374757677787980>>...166