Home
last modified time | relevance | path

Searched refs:src (Results 1751 - 1775 of 7043) sorted by relevance

1...<<71727374757677787980>>...282

/third_party/weex-loader/src/
H A Dloader.js324 let src = resourcePath
325 if (element.src) {
326 src = element.src
327 if (!src.match(/\.hml$/)) {
328 src = src.concat('.hml')
330 const filePath = path.join(path.dirname(resourcePath), src)
331 if (!fs.existsSync(filePath) && src.match(/^(\/|\.)/)) {
333 reason: 'ERROR: The file path of custom element does not exist, src
[all...]
/third_party/ffmpeg/libavcodec/loongarch/
H A Dvc1dsp_loongarch.h39 const uint8_t *src, \
42 const uint8_t *src, \
59 const uint8_t *src, \
68 const uint8_t *src, \
76 uint8_t *src /* align 1 */,
/third_party/elfutils/libelf/
H A Dgelf_update_symshndx.c44 GElf_Sym *src, Elf32_Word srcshndx) in gelf_update_symshndx()
92 if (unlikely (src->st_value > 0xffffffffull) in gelf_update_symshndx()
93 || unlikely (src->st_size > 0xffffffffull)) in gelf_update_symshndx()
109 sym->name = src->name in gelf_update_symshndx()
129 ((Elf64_Sym *) symdata_scn->d.d_buf)[ndx] = *src; in gelf_update_symshndx()
43 gelf_update_symshndx(Elf_Data *symdata, Elf_Data *shndxdata, int ndx, GElf_Sym *src, Elf32_Word srcshndx) gelf_update_symshndx() argument
/third_party/ffmpeg/tests/checkasm/
H A Dopusdsp.c67 LOCAL_ALIGNED(16, float, src, [FFALIGN(MAX_SIZE, 4)]); in test_deemphasis()
74 randomize_float(src, MAX_SIZE); in test_deemphasis()
76 coeff0 = call_ref(dst0, src, coeff0, MAX_SIZE); in test_deemphasis()
77 coeff1 = call_new(dst1, src, coeff1, MAX_SIZE); in test_deemphasis()
82 bench_new(dst1, src, coeff1, MAX_SIZE); in test_deemphasis()
/third_party/icu/icu4c/source/test/fuzzer/
H A Ducasemap_fuzzer.cpp54 auto src = reinterpret_cast<const char*>(fuzzbuff.get()); in LLVMFuzzerTestOneInput() local
57 case 0: ucasemap_utf8ToLower(csm.get(), dst.get(), dst_size, src, size, in LLVMFuzzerTestOneInput()
60 case 1: ucasemap_utf8ToUpper(csm.get(), dst.get(), dst_size, src, size, in LLVMFuzzerTestOneInput()
63 case 2: ucasemap_utf8ToTitle(csm.get(), dst.get(), dst_size, src, size, in LLVMFuzzerTestOneInput()
66 case 3: ucasemap_utf8FoldCase(csm.get(), dst.get(), dst_size, src, size, in LLVMFuzzerTestOneInput()
/third_party/icu/icu4c/source/common/
H A Dsharedobject.h136 * Makes dest an owner of the object pointed to by src while adjusting
144 static void copyPtr(const T *src, const T *&dest) { in copyPtr() argument
145 if(src != dest) { in copyPtr()
147 dest = src; in copyPtr()
148 if(src != NULL) { src->addRef(); } in copyPtr()
/third_party/icu/icu4c/source/common/unicode/
H A Dunorm.h252 * @param src String that is to be tested if it is in a normalization format.
265 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength,
279 * @param src String that is to be tested if it is in a normalization format.
291 unorm_isNormalized(const UChar *src, int32_t srcLength,
299 * @param src String that is to be tested if it is in a normalization format.
313 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength,
370 * @param src The input text in the form of a C character iterator.
391 unorm_next(UCharIterator *src,
403 * @param src The input text in the form of a C character iterator.
424 unorm_previous(UCharIterator *src,
[all...]
H A Ducasemap.h222 * @param src The original string.
223 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
235 const UChar *src, int32_t srcLength,
253 * @param src The original string.
254 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
266 const char *src, int32_t srcLength,
282 * @param src The original string.
283 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
295 const char *src, int32_t srcLength,
332 * @param src Th
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_point_size.c44 assert(instr->src[1].is_ssa); in lower_point_size_instr()
45 assert(instr->src[1].ssa->num_components == 1); in lower_point_size_instr()
46 nir_ssa_def *psiz = instr->src[1].ssa; in lower_point_size_instr()
54 nir_instr_rewrite_src(&instr->instr, &instr->src[1], nir_src_for_ssa(psiz)); in lower_point_size_instr()
67 nir_deref_instr *deref = nir_src_as_deref(intr->src[0]); in instr_is_point_size()
H A Dnir_normalize_cubemap_coords.c52 if (tex->src[i].src_type != nir_tex_src_coord) in normalize_cubemap_coords_block()
56 nir_ssa_for_src(b, tex->src[i].src, nir_tex_instr_src_size(tex, i)); in normalize_cubemap_coords_block()
78 &tex->src[i].src, in normalize_cubemap_coords_block()
/third_party/mesa3d/src/broadcom/compiler/
H A Dvir_opt_small_immediates.c51 if (inst->src[i].file == QFILE_SMALL_IMM) in vir_opt_small_immediates()
58 if (inst->src[i].file != QFILE_TEMP) in vir_opt_small_immediates()
62 struct qinst *src_def = c->defs[inst->src[i].index]; in vir_opt_small_immediates()
95 inst->src[i].file = QFILE_SMALL_IMM; in vir_opt_small_immediates()
96 inst->src[i].index = imm; in vir_opt_small_immediates()
/third_party/mesa3d/src/compiler/glsl/
H A Dgl_nir_lower_images.c82 deref = nir_src_as_deref(intrinsic->src[0]); in lower_impl()
96 nir_ssa_def *src; in lower_impl() local
98 src = nir_load_deref(b, deref); in lower_impl()
100 src = nir_iadd_imm(b, in lower_impl()
104 nir_rewrite_image_intrinsic(intrinsic, src, bindless); in lower_impl()
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_job_transfer.c73 if (!transfer_cmd->src->vma->bo->map) { in pvr_transfer_job_submit()
75 ret_ptr = device->ws->ops->buffer_map(transfer_cmd->src->vma->bo); in pvr_transfer_job_submit()
88 transfer_cmd->src->vma->bo->map + transfer_cmd->src->vma->bo_offset; in pvr_transfer_job_submit()
101 device->ws->ops->buffer_unmap(transfer_cmd->src->vma->bo); in pvr_transfer_job_submit()
/third_party/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_shader.c38 struct vmw_svga_winsys_shader *src) in vmw_svga_winsys_shader_reference()
44 if(pdst == NULL || *pdst == src) in vmw_svga_winsys_shader_reference()
49 src_ref = src ? &src->refcnt : NULL; in vmw_svga_winsys_shader_reference()
66 *pdst = src; in vmw_svga_winsys_shader_reference()
37 vmw_svga_winsys_shader_reference(struct vmw_svga_winsys_shader **pdst, struct vmw_svga_winsys_shader *src) vmw_svga_winsys_shader_reference() argument
/third_party/node/deps/icu-small/source/common/unicode/
H A Ducasemap.h222 * @param src The original string.
223 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
235 const UChar *src, int32_t srcLength,
253 * @param src The original string.
254 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
266 const char *src, int32_t srcLength,
282 * @param src The original string.
283 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
295 const char *src, int32_t srcLength,
332 * @param src Th
[all...]
H A Dunorm.h252 * @param src String that is to be tested if it is in a normalization format.
265 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength,
279 * @param src String that is to be tested if it is in a normalization format.
291 unorm_isNormalized(const UChar *src, int32_t srcLength,
299 * @param src String that is to be tested if it is in a normalization format.
313 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength,
370 * @param src The input text in the form of a C character iterator.
391 unorm_next(UCharIterator *src,
403 * @param src The input text in the form of a C character iterator.
424 unorm_previous(UCharIterator *src,
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dsharedobject.h136 * Makes dest an owner of the object pointed to by src while adjusting
144 static void copyPtr(const T *src, const T *&dest) { in copyPtr() argument
145 if(src != dest) { in copyPtr()
147 dest = src; in copyPtr()
148 if(src != nullptr) { src->addRef(); } in copyPtr()
/third_party/icu/icu4c/source/test/perf/strsrchperf/
H A Dstrsrchperf.h19 typedef void (*StrSrchFn)(UStringSearch* srch, const UChar* src,int32_t srcLen, const UChar* pttrn, int32_t pttrnLen, UErrorCode* status);
24 const UChar* src; member in StringSearchPerfFunction
32 (*fn)(srch, src, srcLen, pttrn, pttrnLen, status); in call()
41 src = source; in StringSearchPerfFunction()
51 const UChar* src; member in StringSearchPerformanceTest
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_swizzle.h94 LLVMValueRef src,
122 const LLVMValueRef src[4],
129 const LLVMValueRef* src,
138 const LLVMValueRef src,
146 const LLVMValueRef src);
/third_party/musl/libc-test/src/functionalext/supplement/network/
H A Dproto.c141 struct protoent *src = NULL; in getprotoent_0100() local
145 src = test_getprotoent(); in getprotoent_0100()
146 if (dst && src) { in getprotoent_0100()
148 EXPECT_EQ("getprotoent_0100", dst->p_proto, src->p_proto); in getprotoent_0100()
149 EXPECT_STREQ("getprotoent_0100", dst->p_name, src->p_name); in getprotoent_0100()
/third_party/pcre2/pcre2/src/
H A Dpcre2_string_utils.c71 const unsigned char *src = (const unsigned char *)s; in memmove()
72 if (dest > src) in memmove()
75 src += n; in memmove()
76 for (i = 0; i < n; ++i) *(--dest) = *(--src); in memmove()
81 for (i = 0; i < n; ++i) *dest++ = *src++; in memmove()
/third_party/optimized-routines/string/aarch64/
H A Dstrlen-mte.S19 #define src x1 define
43 bic src, srcin, 15
45 ld1 {vdata.16b}, [src]
62 ldr data, [src, 16]!
70 sub result, src, srcin
/third_party/optimized-routines/string/test/
H A Dstrlen.c57 char *src = alignup (sbuf); in test() local
58 char *s = src + align; in test()
66 for (int i = 0; src + i < s; i++) in test()
67 src[i] = 0; in test()
81 quote ("input", src, len); in test()
/third_party/skia/third_party/externals/tint/src/
H A Dclone_context.cc15 #include "src/clone_context.h"
19 #include "src/program_builder.h"
20 #include "src/utils/map.h"
32 : dst(to), src(from) { in CloneContext()
47 if (!src) { in Clone()
54 return dst->Symbols().New(src->Symbols().NameFor(s)); in Clone()
59 dst->AST().Copy(this, &src->AST());
60 dst->SetTransformApplied(src->TransformsApplied());
/third_party/skia/third_party/externals/icu/source/common/
H A Dsharedobject.h136 * Makes dest an owner of the object pointed to by src while adjusting
144 static void copyPtr(const T *src, const T *&dest) { in copyPtr() argument
145 if(src != dest) { in copyPtr()
147 dest = src; in copyPtr()
148 if(src != NULL) { src->addRef(); } in copyPtr()

Completed in 15 milliseconds

1...<<71727374757677787980>>...282