/third_party/ffmpeg/libavcodec/ |
H A D | avuienc.c | 75 uint8_t *src; in avui_encode_frame() local 77 src = pic->data[0] + (1 - i) * pic->linesize[0]; in avui_encode_frame() 79 src = pic->data[0] + i * pic->linesize[0]; in avui_encode_frame() 84 memcpy(dst, src, avctx->width * 2); in avui_encode_frame() 85 src += (interlaced + 1) * pic->linesize[0]; in avui_encode_frame()
|
H A D | v410dec.c | 60 const uint8_t *src = td->buf + stride * slice_start; in v410_decode_slice() local 71 val = AV_RL32(src); in v410_decode_slice() 77 src += 4; in v410_decode_slice() 92 const uint8_t *src = avpkt->data; in v410_decode_frame() local 108 td.buf = src; in v410_decode_frame()
|
H A D | v210x.c | 42 const uint32_t *src = (const uint32_t *)avpkt->data; in decode_frame() local 68 uint32_t v = av_be2ne32(*src++); in decode_frame() 73 v = av_be2ne32(*src++); in decode_frame() 88 v = av_be2ne32(*src++); in decode_frame() 103 v = av_be2ne32(*src++); in decode_frame()
|
/third_party/ffmpeg/libavutil/ |
H A D | frame.h | 741 * Copy frame properties from src to dst and create a new reference for each 742 * AVBufferRef from src. 744 * If src is not reference counted, new buffers are allocated and the data is 753 int av_frame_ref(AVFrame *dst, const AVFrame *src); 756 * Create a new frame that references the same data as src. 762 AVFrame *av_frame_clone(const AVFrame *src); 770 * Move everything contained in src to dst and reset src. 776 void av_frame_move_ref(AVFrame *dst, AVFrame *src); 831 * Copy the frame data from src t [all...] |
/third_party/cJSON/tests/unity/examples/example_1/ |
H A D | makefile | 49 SRC_FILES1=$(UNITY_ROOT)/src/unity.c src/ProductionCode.c test/TestProductionCode.c test/test_runners/TestProductionCode_Runner.c 50 SRC_FILES2=$(UNITY_ROOT)/src/unity.c src/ProductionCode2.c test/TestProductionCode2.c test/test_runners/TestProductionCode2_Runner.c 51 INC_DIRS=-Isrc -I$(UNITY_ROOT)/src
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/ |
H A D | TestStringPrepProfiles.java | 32 * src string1 34 * src string2 149 String src = null; in TestProfiles() 159 src = testCases[i][j]; in TestProfiles() 162 result = sprep.prepare(src, StringPrep.ALLOW_UNASSIGNED); in TestProfiles() 163 if (src.startsWith("FAIL")) { in TestProfiles() 169 if (!src.startsWith("FAIL")) { in TestProfiles()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/ |
H A D | SupplementalMapperTest.java | 27 private final FakeDataSupplier src = new FakeDataSupplier(); field in SupplementalMapperTest 35 IcuData icuData = SupplementalMapper.process(src, transformer, "name", p -> true); in testSimple() 60 IcuData icuData = SupplementalMapper.process(src, transformer, "name", p -> true); in testFifoLabel() 79 IcuData icuData = SupplementalMapper.process(src, transformer, "name", filter); in testPathFilter() 86 src.addSupplementalData(value); in addExpectedMapping()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
H A D | TestStringPrepProfiles.java | 29 * src string1 31 * src string2 146 String src = null; in TestProfiles() 156 src = testCases[i][j]; in TestProfiles() 159 result = sprep.prepare(src, StringPrep.ALLOW_UNASSIGNED); in TestProfiles() 160 if (src.startsWith("FAIL")) { in TestProfiles() 166 if (!src.startsWith("FAIL")) { in TestProfiles()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
H A D | TestContext.java | 31 ContextCase(String pro, String src, String epi, String exp, byte lev) { in ContextCase() argument 33 source = src; in ContextCase() 73 String prologue, epilogue, src, dest; in testContext() 90 src = pseudoToU16(cc.source); in testContext() 91 bidi.setPara(src, cc.paraLevel, null); in testContext()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/ |
H A D | TestContext.java | 34 ContextCase(String pro, String src, String epi, String exp, byte lev) { in ContextCase() argument 36 source = src; in ContextCase() 76 String prologue, epilogue, src, dest; in testContext() 93 src = pseudoToU16(cc.source); in testContext() 94 bidi.setPara(src, cc.paraLevel, null); in testContext()
|
/third_party/libdrm/amdgpu/ |
H A D | amdgpu_internal.h | 155 * Increment src and decrement dst as if we were updating references 160 static inline bool update_references(atomic_t *dst, atomic_t *src) in update_references() argument 162 if (dst != src) { in update_references() 163 /* bump src first */ in update_references() 164 if (src) { in update_references() 165 assert(atomic_read(src) > 0); in update_references() 166 atomic_inc(src); in update_references()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_interpolation.c | 53 assert(intr->src[0].is_ssa); in nir_lower_interpolation_block() 54 assert(intr->src[1].is_ssa); in nir_lower_interpolation_block() 57 nir_instr_as_intrinsic(intr->src[0].ssa->parent_instr); in nir_lower_interpolation_block() 106 nir_load_fs_input_interp_deltas(b, 32, intr->src[1].ssa, in nir_lower_interpolation_block() 111 nir_ssa_def *bary = intr->src[0].ssa; in nir_lower_interpolation_block()
|
H A D | nir_lower_uniforms_to_ubo.c | 49 nir_ssa_def *old_idx = nir_ssa_for_src(b, instr->src[0], 1); in lower_instr() 51 nir_instr_rewrite_src(&instr->instr, &instr->src[0], in lower_instr() 58 nir_ssa_def *uniform_offset = nir_ssa_for_src(b, instr->src[0], 1); in lower_instr() 88 if (nir_src_is_const(instr->src[0])) { in lower_instr() 90 (nir_src_as_uint(instr->src[0]) + in lower_instr()
|
H A D | nir_opt_move_discards_to_top.c | 55 can_move_src(nir_src *src, void *worklist) in can_move_src() argument 57 if (!src->is_ssa) in can_move_src() 60 nir_instr *instr = src->ssa->parent_instr; in can_move_src() 74 nir_deref_instr *deref = nir_src_as_deref(intrin->src[0]); in can_move_src() 120 bool can_move_discard = can_move_src(&discard->src[0], work); in try_move_discard()
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_nir_move_varying_inputs.c | 62 check_precondition_src(nir_src *src, void *state) in check_precondition_src() argument 64 check_precondition_instr(state, src->ssa->parent_instr); in check_precondition_src() 125 move_src(nir_src *src, void *state) in move_src() argument 127 /* At this point we shouldn't have any non-ssa src: */ in move_src() 128 assert(src->is_ssa); in move_src() 129 move_instruction_to_start_block(state, src->ssa->parent_instr); in move_src() 140 /* first move (recursively) all src's to ensure they appear before in move_instruction_to_start_block()
|
/third_party/mesa3d/src/asahi/compiler/ |
H A D | agx_liveness.c | 45 if (I->src[s].type == AGX_INDEX_NORMAL) { in agx_liveness_ins_update() 48 I->src[s].kill = !BITSET_TEST(live, I->src[s].value); in agx_liveness_ins_update() 49 BITSET_SET(live, I->src[s].value); in agx_liveness_ins_update() 124 agx_index operand = I->src[agx_predecessor_index(blk, *pred)]; in agx_compute_liveness()
|
/third_party/mesa3d/src/broadcom/compiler/ |
H A D | v3d_nir_lower_scratch.c | 41 nir_ssa_def *offset = nir_ssa_for_src(b, instr->src[is_store ? 1 : 0], 1); in v3d_nir_scratch_offset() 71 chan_instr->src[0] = nir_src_for_ssa(chan_offset); in v3d_nir_lower_load_scratch() 91 nir_ssa_def *value = nir_ssa_for_src(b, instr->src[0], in v3d_nir_lower_store_scratch() 105 chan_instr->src[0] = nir_src_for_ssa(nir_channel(b, in v3d_nir_lower_store_scratch() 108 chan_instr->src[1] = nir_src_for_ssa(chan_offset); in v3d_nir_lower_store_scratch()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | radeon_video.c | 96 void *src = NULL, *dst = NULL; in si_vid_resize_buffer() local 101 src = ws->buffer_map(ws, old_buf.res->buf, cs, PIPE_MAP_READ | RADEON_MAP_TEMPORARY); in si_vid_resize_buffer() 102 if (!src) in si_vid_resize_buffer() 109 memcpy(dst, src, bytes); in si_vid_resize_buffer() 121 if (src) in si_vid_resize_buffer()
|
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_nir_lower_ubo_loads.c | 40 nir_ssa_def *base_addr = load->src[0].ssa; in lower_ubo_load_instr() 43 bound = load->src[2].ssa; in lower_ubo_load_instr() 50 if (nir_src_is_const(load->src[1])) { in lower_ubo_load_instr() 51 uint32_t offset = nir_src_as_uint(load->src[1]); in lower_ubo_load_instr() 81 nir_ssa_def *offset = load->src[1].ssa; in lower_ubo_load_instr()
|
/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_conn.h | 149 nghttp3_stream *stream, const uint8_t *src, 153 const uint8_t *src, size_t srclen, int fin); 157 const uint8_t *src, size_t srclen); 160 const uint8_t *src, 164 const uint8_t *src,
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_addr.c | 37 void ngtcp2_addr_copy(ngtcp2_addr *dest, const ngtcp2_addr *src) { in ngtcp2_addr_copy() argument 38 dest->addrlen = src->addrlen; in ngtcp2_addr_copy() 39 if (src->addrlen) { in ngtcp2_addr_copy() 40 memcpy(dest->addr, src->addr, (size_t)src->addrlen); in ngtcp2_addr_copy()
|
/third_party/mesa3d/src/panfrost/midgard/ |
H A D | midgard_opt_perspective.c | 68 unsigned frcp = ins->src[1]; in midgard_opt_combine_projection() 82 frcp_from = sub->src[0]; in midgard_opt_combine_projection() 91 if (frcp_from != ins->src[0]) continue; in midgard_opt_combine_projection() 121 .src = { frcp_from, ~0, ~0, ~0 }, in midgard_opt_combine_projection() 151 unsigned vary = ins->src[0]; in midgard_opt_varying_projection()
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | unicodestring.cc | 29 UnicodeString& UnicodeString::operator=(const UnicodeString& src) { in operator =() argument 30 if (&src != this) { in operator =() 32 text_ = src.text_; in operator =() 60 void UnicodeString::replace(int start, int length, const UnicodeString& src) { in replace() argument 67 unicode_text.append(src.text_); in replace()
|
/third_party/lwip/src/include/lwip/ |
H A D | ip6_zone.h | 247 * @param src source IPv6 address (const); may be equal to dest. 250 #define ip6_addr_select_zone(dest, src) do { struct netif *selected_netif; \ 251 selected_netif = ip6_route((src), (dest), get_root_net_group()); \ 256 #define ip6_addr_select_zone(dest, src) do { struct netif *selected_netif; \ 257 selected_netif = ip6_route((src), (dest)); \ 282 #define ip6_addr_select_zone(ip6addr, src)
|
/third_party/node/deps/v8/src/objects/ |
H A D | compilation-cache-table.h | 8 #include "src/objects/feedback-cell.h" 9 #include "src/objects/hash-table.h" 10 #include "src/objects/js-regexp.h" 11 #include "src/objects/shared-function-info.h" 12 #include "src/roots/roots.h" 15 #include "src/objects/object-macros.h" 91 Handle<CompilationCacheTable> table, Handle<String> src, 94 Handle<CompilationCacheTable> cache, Handle<String> src, 110 Handle<String> src, 115 Handle<CompilationCacheTable> cache, Handle<String> src, [all...] |