Home
last modified time | relevance | path

Searched refs:target (Results 3126 - 3150 of 7861) sorted by relevance

1...<<121122123124125126127128129130>>...315

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DCollator.java1145 * @param target the target string to be compared.
1151 public boolean equals(String source, String target) in equals() argument
1153 return (compare(source, target) == 0); in equals()
1169 * Compares the source text String to the target text String according to
1173 * less than, equal to or greater than the target String. See the Collator
1177 * @param target the target String.
1179 * less than target, value is zero if source and target ar
1185 compare(String source, String target) compare() argument
1198 compare(Object source, Object target) compare() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/duration/
H A DICUDurationTest.java430 long target = System.currentTimeMillis() + test.diffInSeconds * 1000; in TestFromNowTo()
433 target = test.diffInSeconds > 0 ? target + delayMS : target - delayMS; in TestFromNowTo()
434 Date d = new Date(target); in TestFromNowTo()
/third_party/mbedtls/scripts/
H A Dassemble_changelog.py13 the target branch).
279 the target branch).
285 the target branch checked out.
312 def list_merges(some_hash, target, *options):
313 """List merge commits from some_hash to target.
319 '..'.join([some_hash, target])])
328 target = 'HEAD'
329 # List the merges from some_hash to the target in two ways.
331 # some_hash and ancestors of the target.
332 ancestry = frozenset(cls.list_merges(some_hash, target,
[all...]
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_cs.h179 tu_cs_add_entries(struct tu_cs *cs, struct tu_cs *target);
366 * Emit a CP_INDIRECT_BUFFER command packet for each entry in the target
370 tu_cs_emit_call(struct tu_cs *cs, const struct tu_cs *target) in tu_cs_emit_call() argument
372 assert(target->mode == TU_CS_MODE_GROW); in tu_cs_emit_call()
373 for (uint32_t i = 0; i < target->entry_count; i++) in tu_cs_emit_call()
374 tu_cs_emit_ib(cs, target->entries + i); in tu_cs_emit_call()
/third_party/mesa3d/src/gallium/winsys/virgl/vtest/
H A Dvirgl_vtest_socket.c277 enum pipe_texture_target target, in virgl_vtest_send_resource_create2()
295 res_create_buf[VCMD_RES_CREATE2_TARGET] = target; in virgl_vtest_send_resource_create2()
324 enum pipe_texture_target target, in virgl_vtest_send_resource_create()
339 return virgl_vtest_send_resource_create2(vws, handle, target, format, in virgl_vtest_send_resource_create()
348 res_create_buf[VCMD_RES_CREATE_TARGET] = target; in virgl_vtest_send_resource_create()
275 virgl_vtest_send_resource_create2(struct virgl_vtest_winsys *vws, uint32_t handle, enum pipe_texture_target target, uint32_t format, uint32_t bind, uint32_t width, uint32_t height, uint32_t depth, uint32_t array_size, uint32_t last_level, uint32_t nr_samples, uint32_t size, int *out_fd) virgl_vtest_send_resource_create2() argument
322 virgl_vtest_send_resource_create(struct virgl_vtest_winsys *vws, uint32_t handle, enum pipe_texture_target target, uint32_t format, uint32_t bind, uint32_t width, uint32_t height, uint32_t depth, uint32_t array_size, uint32_t last_level, uint32_t nr_samples, uint32_t size, int *out_fd) virgl_vtest_send_resource_create() argument
/third_party/mesa3d/src/gallium/frontends/lavapipe/
H A Dlvp_image.c53 template.target = pCreateInfo->arrayLayers > 1 ? PIPE_TEXTURE_1D_ARRAY : PIPE_TEXTURE_1D; in lvp_image_create()
57 template.target = pCreateInfo->arrayLayers > 1 ? PIPE_TEXTURE_2D_ARRAY : PIPE_TEXTURE_2D; in lvp_image_create()
60 template.target = PIPE_TEXTURE_3D; in lvp_image_create()
249 if (image->bo->target == PIPE_TEXTURE_3D) { in lvp_GetImageSubresourceLayout()
303 template.target = PIPE_BUFFER; in lvp_CreateBuffer()
/third_party/node/src/crypto/
H A Dcrypto_hash.cc55 void Hash::Initialize(Environment* env, Local<Object> target) { in Initialize() argument
67 SetConstructorFunction(context, target, "Hash", t); in Initialize()
69 SetMethodNoSideEffect(context, target, "getHashes", GetHashes); in Initialize()
71 HashJob::Initialize(env, target); in Initialize()
74 context, target, "internalVerifyIntegrity", InternalVerifyIntegrity); in Initialize()
/third_party/node/deps/v8/tools/
H A Dlocs.py195 def __init__(self, file, target, loc, in_bytes, expanded, expanded_bytes):
198 self.target = target
201 return "{} {} {}".format(super().to_string(), self.file, self.target)
300 return {"file": o.file, "target": o.target, "loc": o.loc, "in_bytes": o.in_bytes,
356 # New target
361 sys.exit('Missing empty line before new target')
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_cb_readpixels.c167 switch (texture->target) { in try_pbo_readpixels()
173 view_target = texture->target; in try_pbo_readpixels()
177 templ.target = view_target; in try_pbo_readpixels()
296 dst_templ.target = PIPE_TEXTURE_2D; in blit_to_staging()
467 !screen->is_format_supported(screen, src_format, src->target, in st_ReadPixels()
H A Dst_draw_feedback.c335 if (res->target != PIPE_BUFFER) { in st_feedback_draw_vbo()
342 unsigned map_layers = res->target == PIPE_TEXTURE_3D ? in st_feedback_draw_vbo()
408 if (res->target != PIPE_BUFFER) { in st_feedback_draw_vbo()
467 if (img_transfer[i]->resource->target == PIPE_BUFFER) in st_feedback_draw_vbo()
479 if (view->texture->target != PIPE_BUFFER) { in st_feedback_draw_vbo()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_miptree.c188 if (pt->target == PIPE_BUFFER) in nv50_miptree_get_handle()
270 mt->layout_3d = pt->target == PIPE_TEXTURE_3D; in nv50_miptree_init_layout_video()
289 mt->layout_3d = pt->target == PIPE_TEXTURE_3D; in nv50_miptree_init_layout_tiled()
412 if ((templ->target != PIPE_TEXTURE_2D && in nv50_miptree_from_handle()
413 templ->target != PIPE_TEXTURE_RECT) || in nv50_miptree_from_handle()
H A Dnv98_video.c39 struct nouveau_vp3_video_buffer *target = (struct nouveau_vp3_video_buffer *)video_target; in nv98_decoder_decode_bitstream() local
49 assert(target->base.buffer_format == PIPE_FORMAT_NV12); in nv98_decoder_decode_bitstream()
51 ret = nv98_decoder_bsp(dec, desc, target, comm_seq, in nv98_decoder_decode_bitstream()
58 nv98_decoder_vp(dec, desc, target, comm_seq, vp_caps, is_ref, refs); in nv98_decoder_decode_bitstream()
59 nv98_decoder_ppp(dec, desc, target, comm_seq); in nv98_decoder_decode_bitstream()
/third_party/icu/icu4c/source/test/intltest/
H A Ditercoll.cpp639 UnicodeString &CollationIteratorTest::orderString(CollationElementIterator &iter, UnicodeString &target) in orderString() argument
646 target += "0x"; in orderString()
647 appendHex(order, 8, target); in orderString()
648 target += " "; in orderString()
651 return target; in orderString()
/third_party/node/deps/v8/src/bigint/
H A Ddiv-barrett.cc330 RWDigits target = Q + n * i; in DivideBarrett()
332 int to_copy = std::min(qi_len, target.len()); in DivideBarrett()
333 for (int j = 0; j < to_copy; j++) target[j] = Qi[j]; in DivideBarrett()
334 for (int j = to_copy; j < target.len(); j++) target[j] = 0; in DivideBarrett()
/third_party/musl/libc-test/src/functionalext/supplement/network/
H A Dnameservercheck_client.c416 unsigned char target[4800] = "test.check.platform.com A 111.111.11.11"; in main() local
423 if (strcmp((char*)&abuf[0], (char*)&target)) { in main()
424 t_error("%s invalid answer %s, target: %s\n", __func__, abuf[0], target); in main()
432 if (!strcmp((char*)&abuf[0], (char*)&target)) { in main()
433 t_error("%s invalid answer %s, target: %s\n", __func__, abuf[0], target); in main()
/third_party/pulseaudio/src/pulsecore/
H A Dlog.c87 static pa_log_target target = { PA_LOG_STDERR, NULL }; variable
165 pa_log(_("Failed to open target file '%s'."), t->file); in pa_log_set_target()
188 pa_log(_("Tried to open target file '%s', '%s.1', '%s.2' ... '%s.%d', but all failed."), in pa_log_set_target()
193 pa_log_debug("Opened target file %s\n", file_path); in pa_log_set_target()
200 target.type = t->type; in pa_log_set_target()
201 pa_xfree(target.file); in pa_log_set_target()
202 target.file = pa_xstrdup(t->file); in pa_log_set_target()
396 _target = target_override_set ? target_override : target.type; in pa_log_levelv_meta()
692 pa_log(_("Invalid log target.")); in pa_log_parse_target()
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cTextureStorageMultisampleGLCoverageTests.cpp369 glw::GLenum target = texture_targets[n_texture_target]; in iterate() local
394 /* Query implementation for the parameter values for texture target considered */ in iterate()
399 gl.getTexParameterfv(target, texture_parameter, &float_value); in iterate()
400 gl.getTexParameteriv(target, texture_parameter, &int_value); in iterate()
467 << " for property " << texture_parameter << " of texture target " << target in iterate()
479 << texture_parameter << " of texture target " << target << tcu::TestLog::EndMessage; in iterate()
691 GLU_EXPECT_NO_ERROR(gl.getError(), "Could not bind texture object(s) to corresponding texture target(s)."); in initInternals()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationGL3.cpp32 GLenum target, in ValidateClampColor()
45 GLenum target, in ValidateFramebufferTexture1D()
56 GLenum target, in ValidateFramebufferTexture3D()
239 GLenum target, in ValidateTexImage2DMultisample()
251 GLenum target, in ValidateTexImage3DMultisample()
30 ValidateClampColor(const Context *context, angle::EntryPoint entryPoint, GLenum target, GLenum clamp) ValidateClampColor() argument
43 ValidateFramebufferTexture1D(const Context *context, angle::EntryPoint entryPoint, GLenum target, GLenum attachment, TextureTarget textargetPacked, TextureID texture, GLint level) ValidateFramebufferTexture1D() argument
54 ValidateFramebufferTexture3D(const Context *context, angle::EntryPoint entryPoint, GLenum target, GLenum attachment, TextureTarget textargetPacked, TextureID texture, GLint level, GLint zoffset) ValidateFramebufferTexture3D() argument
237 ValidateTexImage2DMultisample(const Context *context, angle::EntryPoint entryPoint, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations) ValidateTexImage2DMultisample() argument
249 ValidateTexImage3DMultisample(const Context *context, angle::EntryPoint entryPoint, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations) ValidateTexImage3DMultisample() argument
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);

Completed in 26 milliseconds

1...<<121122123124125126127128129130>>...315