Home
last modified time | relevance | path

Searched refs:dst (Results 701 - 725 of 5637) sorted by relevance

1...<<21222324252627282930>>...226

/third_party/skia/src/core/
H A DSkPixmap.cpp204 dst = actualDst; in scalePixels() local
206 // Can't do anthing with empty src or dst in scalePixels()
208 dst.width() <= 0 || dst.height() <= 0) { in scalePixels()
213 if (src.width() == dst.width() && src.height() == dst.height()) { in scalePixels()
214 return src.readPixels(dst); in scalePixels()
217 // If src and dst are both unpremul, we'll fake the source out to appear as if premul, in scalePixels()
223 dst.alphaType() == kUnpremul_SkAlphaType) { in scalePixels()
225 dst in scalePixels()
584 draw_orientation(const SkPixmap& dst, const SkPixmap& src, SkEncodedOrigin origin) draw_orientation() argument
602 Orient(const SkPixmap& dst, const SkPixmap& src, SkEncodedOrigin origin) Orient() argument
[all...]
H A DSkScan.h124 static inline void XRect_round(const SkXRect& xr, SkIRect* dst) { in XRect_round() argument
125 dst->fLeft = SkFixedRoundToInt(xr.fLeft); in XRect_round()
126 dst->fTop = SkFixedRoundToInt(xr.fTop); in XRect_round()
127 dst->fRight = SkFixedRoundToInt(xr.fRight); in XRect_round()
128 dst->fBottom = SkFixedRoundToInt(xr.fBottom); in XRect_round()
134 static inline void XRect_roundOut(const SkXRect& xr, SkIRect* dst) { in XRect_roundOut() argument
135 dst->fLeft = SkFixedFloorToInt(xr.fLeft); in XRect_roundOut()
136 dst->fTop = SkFixedFloorToInt(xr.fTop); in XRect_roundOut()
137 dst->fRight = SkFixedCeilToInt(xr.fRight); in XRect_roundOut()
138 dst in XRect_roundOut()
[all...]
H A DSkPathEffect.cpp16 bool SkPathEffect::filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, in filterPath() argument
18 return this->filterPath(dst, src, rec, bounds, SkMatrix::I()); in filterPath()
21 bool SkPathEffect::filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, in filterPath() argument
23 SkPath tmp, *tmpDst = dst; in filterPath()
24 if (dst == &src) { in filterPath()
28 if (dst == &src) { in filterPath()
29 *dst = tmp; in filterPath()
101 bool onFilterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec,
109 return fPE0->filterPath(dst, *ptr, rec, cullRect, ctm);
162 bool onFilterPath(SkPath* dst, cons
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/codec/
H A Dbyte_buffer_operator.h56 bool ReadData(std::vector<int8_t>& dst) const in ReadData()
58 return ReadArray(dst); in ReadData()
60 bool ReadData(std::vector<int16_t>& dst) const in ReadData()
62 return ReadArray(dst); in ReadData()
64 bool ReadData(std::vector<int32_t>& dst) const in ReadData()
66 return ReadArray(dst); in ReadData()
69 bool ReadData(std::map<std::string, std::string>& dst) const;
70 bool ReadData(std::set<std::string>& dst) const;
86 bool ReadArray(T& dst) const in ReadArray()
95 dst in ReadArray()
[all...]
/third_party/ffmpeg/libavcodec/
H A Danm.c62 * @param dst pointer to destination image buffer
76 static inline int op(uint8_t **dst, const uint8_t *dst_end, in op() argument
87 bytestream2_get_bufferu(gb, *dst, striplen); in op()
89 memset(*dst, pixel, striplen); in op()
90 *dst += striplen; in op()
94 *dst += linesize - width; in op()
98 if (*dst >= dst_end) goto exhausted; in op()
100 if (*dst <= dst_end) goto exhausted; in op()
116 uint8_t *dst, *dst_end; in decode_frame() local
125 dst in decode_frame()
[all...]
H A Dbethsoftvideo.c75 uint8_t * dst; in bethsoftvid_decode_frame() local
95 dst = vid->frame->data[0]; in bethsoftvid_decode_frame()
111 dst += vid->frame->linesize[0] * yoffset; in bethsoftvid_decode_frame()
126 bytestream2_get_buffer(&vid->g, dst, remaining); in bethsoftvid_decode_frame()
128 memset(dst, bytestream2_peek_byte(&vid->g), remaining); in bethsoftvid_decode_frame()
130 dst += remaining + wrap_to_next_line; // skip over extra bytes at end of frame in bethsoftvid_decode_frame()
132 if(dst == frame_end) in bethsoftvid_decode_frame()
138 bytestream2_get_buffer(&vid->g, dst, length); in bethsoftvid_decode_frame()
140 memset(dst, bytestream2_get_byte(&vid->g), length); in bethsoftvid_decode_frame()
142 dst in bethsoftvid_decode_frame()
[all...]
H A Dgsmdec_template.c31 static void apcm_dequant_add(GetBitContext *gb, int16_t *dst, const int *frame_bits) in apcm_dequant_add() argument
38 dst[3 * i] += tab[ff_gsm_requant_tab[frame_bits[i]][val]]; in apcm_dequant_add()
47 static void long_term_synth(int16_t *dst, int lag, int gain_idx) in long_term_synth() argument
50 const int16_t *src = dst - lag; in long_term_synth()
53 dst[i] = gsm_mult(gain, src[i]); in long_term_synth()
83 static void short_term_synth(GSMContext *ctx, int16_t *dst, const int16_t *src) in short_term_synth() argument
92 dst[i] = filter_value(src[i], rrp, ctx->v); in short_term_synth()
97 dst[i] = filter_value(src[i], rrp, ctx->v); in short_term_synth()
102 dst[i] = filter_value(src[i], rrp, ctx->v); in short_term_synth()
107 dst[ in short_term_synth()
[all...]
H A Dadxenc.c146 uint8_t *dst; in adx_encode_frame() local
156 dst = avpkt->data; in adx_encode_frame()
157 bytestream_put_be16(&dst, 0x8001); in adx_encode_frame()
158 bytestream_put_be16(&dst, 0x000E); in adx_encode_frame()
159 bytestream_put_be64(&dst, 0x0); in adx_encode_frame()
160 bytestream_put_be32(&dst, 0x0); in adx_encode_frame()
161 bytestream_put_be16(&dst, 0x0); in adx_encode_frame()
169 dst = avpkt->data; in adx_encode_frame()
173 if ((hdrsize = adx_encode_header(avctx, dst, avpkt->size)) < 0) { in adx_encode_frame()
177 dst in adx_encode_frame()
[all...]
H A Dh264idct.h25 void ff_h264_idct8_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\
26 void ff_h264_idct_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\
27 void ff_h264_idct8_dc_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\
28 void ff_h264_idct_dc_add_ ## depth ## _c(uint8_t *dst, int16_t *block, int stride);\
29 void ff_h264_idct_add16_ ## depth ## _c(uint8_t *dst, const int *blockoffset, int16_t *block, int stride, const uint8_t nnzc[5 * 8]);\
30 void ff_h264_idct_add16intra_ ## depth ## _c(uint8_t *dst, const int *blockoffset, int16_t *block, int stride, const uint8_t nnzc[5 * 8]);\
31 void ff_h264_idct8_add4_ ## depth ## _c(uint8_t *dst, const int *blockoffset, int16_t *block, int stride, const uint8_t nnzc[5 * 8]);\
/third_party/ffmpeg/libavformat/
H A Dassdec.c52 static int read_dialogue(ASSContext *ass, AVBPrint *dst, const uint8_t *p, in read_dialogue() argument
74 av_bprint_clear(dst); in read_dialogue()
75 av_bprintf(dst, "%u,%d,%s", ass->readorder++, layer, p + pos); in read_dialogue()
78 while (dst->len > 0 && in read_dialogue()
79 dst->str[dst->len - 1] == '\r' || in read_dialogue()
80 dst->str[dst->len - 1] == '\n') in read_dialogue()
81 dst->str[--dst in read_dialogue()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dwintzimpl.cpp45 AnnualTimeZoneRule *std = nullptr, *dst = nullptr; in getSystemTimeInformation() local
47 btz->getSimpleRulesNear(uprv_getUTCtime(), initial, std, dst, status); in getSystemTimeInformation() local
49 if (std == nullptr || dst == nullptr) { in getSystemTimeInformation()
60 U_ASSERT(dst->getRule()->getDateRuleType() == DateTimeRule::DOW); in getSystemTimeInformation()
64 daylightBias = -1 * (dst->getDSTSavings()/60000); in getSystemTimeInformation()
89 daylightDate.wMonth = static_cast<WORD>(dst->getRule()->getRuleMonth()) + 1; in getSystemTimeInformation()
90 daylightDate.wDay = static_cast<WORD>(dst->getRule()->getRuleWeekInMonth()); in getSystemTimeInformation()
94 daylightDate.wDayOfWeek = static_cast<WORD>(dst->getRule()->getRuleDayOfWeek()) - 1; in getSystemTimeInformation()
96 mil = dst->getRule()->getRuleMillisInDay(); in getSystemTimeInformation()
115 delete dst; in getSystemTimeInformation()
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dwintzimpl.cpp45 AnnualTimeZoneRule *std = NULL, *dst = NULL; in getSystemTimeInformation() local
47 btz->getSimpleRulesNear(uprv_getUTCtime(), initial, std, dst, status); in getSystemTimeInformation() local
49 if (std == NULL || dst == NULL) { in getSystemTimeInformation()
60 U_ASSERT(dst->getRule()->getDateRuleType() == DateTimeRule::DOW); in getSystemTimeInformation()
64 daylightBias = -1 * (dst->getDSTSavings()/60000); in getSystemTimeInformation()
89 daylightDate.wMonth = static_cast<WORD>(dst->getRule()->getRuleMonth()) + 1; in getSystemTimeInformation()
90 daylightDate.wDay = static_cast<WORD>(dst->getRule()->getRuleWeekInMonth()); in getSystemTimeInformation()
94 daylightDate.wDayOfWeek = static_cast<WORD>(dst->getRule()->getRuleDayOfWeek()) - 1; in getSystemTimeInformation()
96 mil = dst->getRule()->getRuleMillisInDay(); in getSystemTimeInformation()
115 delete dst; in getSystemTimeInformation()
[all...]
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_tiling.c152 /* The dst offset we want is the start of this in vc4_t_image_helper()
181 vc4_store_t_image(void *dst, uint32_t dst_stride, in vc4_store_t_image() argument
185 vc4_t_image_helper(dst, dst_stride, in vc4_store_t_image()
191 vc4_load_t_image(void *dst, uint32_t dst_stride, in vc4_load_t_image() argument
196 dst, dst_stride, in vc4_load_t_image()
202 * start of \p dst according to the given tiling format.
205 vc4_load_tiled_image(void *dst, uint32_t dst_stride, in vc4_load_tiled_image() argument
211 vc4_load_lt_image(dst, dst_stride, in vc4_load_tiled_image()
216 vc4_load_t_image(dst, dst_stride, in vc4_load_tiled_image()
224 * \p dst accordin
227 vc4_store_tiled_image(void *dst, uint32_t dst_stride, void *src, uint32_t src_stride, uint8_t tiling_format, int cpp, const struct pipe_box *box) vc4_store_tiled_image() argument
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dwintzimpl.cpp45 AnnualTimeZoneRule *std = NULL, *dst = NULL; in getSystemTimeInformation() local
47 btz->getSimpleRulesNear(uprv_getUTCtime(), initial, std, dst, status); in getSystemTimeInformation() local
49 if (std == NULL || dst == NULL) { in getSystemTimeInformation()
60 U_ASSERT(dst->getRule()->getDateRuleType() == DateTimeRule::DOW); in getSystemTimeInformation()
64 daylightBias = -1 * (dst->getDSTSavings()/60000); in getSystemTimeInformation()
89 daylightDate.wMonth = static_cast<WORD>(dst->getRule()->getRuleMonth()) + 1; in getSystemTimeInformation()
90 daylightDate.wDay = static_cast<WORD>(dst->getRule()->getRuleWeekInMonth()); in getSystemTimeInformation()
94 daylightDate.wDayOfWeek = static_cast<WORD>(dst->getRule()->getRuleDayOfWeek()) - 1; in getSystemTimeInformation()
96 mil = dst->getRule()->getRuleMillisInDay(); in getSystemTimeInformation()
115 delete dst; in getSystemTimeInformation()
[all...]
/third_party/vk-gl-cts/framework/opengl/
H A DgluPixelTransfer.cpp49 void readPixels (const RenderContext& context, int x, int y, const tcu::PixelBufferAccess& dst) in readPixels() argument
53 TCU_CHECK_INTERNAL(dst.getDepth() == 1); in readPixels()
54 TCU_CHECK_INTERNAL(dst.getRowPitch() == dst.getFormat().getPixelSize()*dst.getWidth()); in readPixels()
56 int width = dst.getWidth(); in readPixels()
57 int height = dst.getHeight(); in readPixels()
58 TransferFormat format = getTransferFormat(dst.getFormat()); in readPixels()
60 gl.pixelStorei(GL_PACK_ALIGNMENT, getTransferAlignment(dst.getFormat())); in readPixels()
61 gl.readPixels(x, y, width, height, format.format, format.dataType, dst in readPixels()
[all...]
/third_party/libdrm/exynos/
H A Dexynos_fimg2d.c115 static unsigned int g2d_get_scaling(unsigned int src, unsigned int dst) in g2d_get_scaling() argument
124 return ((src << 16) / dst); in g2d_get_scaling()
272 * g2d_add_base_addr - helper function to set dst/src base address register.
275 * @img: a pointer to the dst/src g2d_image structure.
489 * @dst: a pointer to g2d_image structure including image and buffer
500 struct g2d_image *dst, unsigned int src_x, unsigned int src_y, in g2d_copy()
517 if (dst_x + dst->width > w) in g2d_copy()
518 dst_w = dst->width - dst_x; in g2d_copy()
519 if (dst_y + dst->height > h) in g2d_copy()
520 dst_h = dst in g2d_copy()
499 g2d_copy(struct g2d_context *ctx, struct g2d_image *src, struct g2d_image *dst, unsigned int src_x, unsigned int src_y, unsigned int dst_x, unsigned dst_y, unsigned int w, unsigned int h) g2d_copy() argument
680 g2d_copy_with_scale(struct g2d_context *ctx, struct g2d_image *src, struct g2d_image *dst, unsigned int src_x, unsigned int src_y, unsigned int src_w, unsigned int src_h, unsigned int dst_x, unsigned int dst_y, unsigned int dst_w, unsigned int dst_h, unsigned int negative) g2d_copy_with_scale() argument
789 g2d_blend(struct g2d_context *ctx, struct g2d_image *src, struct g2d_image *dst, unsigned int src_x, unsigned int src_y, unsigned int dst_x, unsigned int dst_y, unsigned int w, unsigned int h, enum e_g2d_op op) g2d_blend() argument
906 g2d_scale_and_blend(struct g2d_context *ctx, struct g2d_image *src, struct g2d_image *dst, unsigned int src_x, unsigned int src_y, unsigned int src_w, unsigned int src_h, unsigned int dst_x, unsigned int dst_y, unsigned int dst_w, unsigned int dst_h, enum e_g2d_op op) g2d_scale_and_blend() argument
[all...]
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless_neon.c30 int num_pixels, uint8_t* dst) { in ConvertBGRAToRGBA_NEON()
38 vst4q_u8(dst, pixel); in ConvertBGRAToRGBA_NEON()
39 dst += 64; in ConvertBGRAToRGBA_NEON()
41 VP8LConvertBGRAToRGBA_C(src, num_pixels & 15, dst); // left-overs in ConvertBGRAToRGBA_NEON()
45 int num_pixels, uint8_t* dst) { in ConvertBGRAToBGR_NEON()
50 vst3q_u8(dst, tmp); in ConvertBGRAToBGR_NEON()
51 dst += 48; in ConvertBGRAToBGR_NEON()
53 VP8LConvertBGRAToBGR_C(src, num_pixels & 15, dst); // left-overs in ConvertBGRAToBGR_NEON()
57 int num_pixels, uint8_t* dst) { in ConvertBGRAToRGB_NEON()
62 vst3q_u8(dst, tm in ConvertBGRAToRGB_NEON()
29 ConvertBGRAToRGBA_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToRGBA_NEON() argument
44 ConvertBGRAToBGR_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToBGR_NEON() argument
56 ConvertBGRAToRGB_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToRGB_NEON() argument
74 ConvertBGRAToRGBA_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToRGBA_NEON() argument
92 ConvertBGRAToBGR_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToBGR_NEON() argument
119 ConvertBGRAToRGB_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToRGB_NEON() argument
524 AddGreenToBlueAndRed_NEON(const uint32_t* src, int num_pixels, uint32_t* dst) AddGreenToBlueAndRed_NEON() argument
544 TransformColorInverse_NEON(const VP8LMultipliers* const m, const uint32_t* const src, int num_pixels, uint32_t* dst) TransformColorInverse_NEON() argument
[all...]
H A Drescaler_mips32.c150 uint8_t* dst = wrk->dst; in ExportRowExpand_MIPS32() local
168 "addiu %[dst], %[dst], 1 \n\t" in ExportRowExpand_MIPS32()
173 "sb %[temp5], -1(%[dst]) \n\t" in ExportRowExpand_MIPS32()
177 [dst]"+r"(dst), [loop_end]"=&r"(loop_end) in ExportRowExpand_MIPS32()
191 "addiu %[dst], %[dst], 1 \n\t" in ExportRowExpand_MIPS32()
201 "sb %[temp5], -1(%[dst]) \ in ExportRowExpand_MIPS32()
[all...]
/foundation/multimedia/image_framework/frameworks/kits/cj/src/
H A Dpixel_map_impl.cpp64 uint32_t PixelMapImpl::CreatePremultipliedPixelMap(std::shared_ptr<PixelMap> src, std::shared_ptr<PixelMap> dst) in CreatePremultipliedPixelMap() argument
66 if (src == nullptr || dst == nullptr) { in CreatePremultipliedPixelMap()
70 if (dst->IsEditable()) { in CreatePremultipliedPixelMap()
71 return src->ConvertAlphaFormat(*dst.get(), isPremul); in CreatePremultipliedPixelMap()
78 uint32_t PixelMapImpl::CreateUnpremultipliedPixelMap(std::shared_ptr<PixelMap> src, std::shared_ptr<PixelMap> dst) in CreateUnpremultipliedPixelMap() argument
80 if (src == nullptr || dst == nullptr) { in CreateUnpremultipliedPixelMap()
84 if (dst->IsEditable()) { in CreateUnpremultipliedPixelMap()
85 return src->ConvertAlphaFormat(*dst.get(), isPremul); in CreateUnpremultipliedPixelMap()
97 uint32_t PixelMapImpl::ReadPixelsToBuffer(uint64_t &bufferSize, uint8_t *dst) in ReadPixelsToBuffer() argument
102 return real_->ReadPixels(bufferSize, dst); in ReadPixelsToBuffer()
105 ReadPixels(uint64_t &bufferSize, uint32_t &offset, uint32_t &stride, Rect &region, uint8_t *dst) ReadPixels() argument
[all...]
/third_party/ffmpeg/libswscale/arm/
H A Dswscale_unscaled.c39 uint8_t *dst[], int dstStride[]) { in rgbx_to_nv12_neon_32_wrapper()
42 dst[0] + srcSliceY * dstStride[0], in rgbx_to_nv12_neon_32_wrapper()
43 dst[1] + (srcSliceY / 2) * dstStride[1], in rgbx_to_nv12_neon_32_wrapper()
53 uint8_t *dst[], int dstStride[]) { in rgbx_to_nv12_neon_16_wrapper()
56 dst[0] + srcSliceY * dstStride[0], in rgbx_to_nv12_neon_16_wrapper()
57 dst[1] + (srcSliceY / 2) * dstStride[1], in rgbx_to_nv12_neon_16_wrapper()
73 uint8_t *dst, int linesize, \
83 uint8_t *dst[], int dstStride[]) { \
87 dst[0] + srcSliceY * dstStride[0], dstStride[0], \
109 uint8_t *dst, in
37 rgbx_to_nv12_neon_32_wrapper(SwsContext *context, const uint8_t *src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t *dst[], int dstStride[]) rgbx_to_nv12_neon_32_wrapper() argument
51 rgbx_to_nv12_neon_16_wrapper(SwsContext *context, const uint8_t *src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t *dst[], int dstStride[]) rgbx_to_nv12_neon_16_wrapper() argument
[all...]
/third_party/mesa3d/src/freedreno/afuc/
H A Dparser.y62 dst(int num)
64 instr->dst = num;
196 alu_msb_instr: T_OP_MSB reg ',' reg { new_instr($1); dst($2); src2($4); }
198 alu_not_instr: T_OP_NOT reg ',' reg { new_instr($1); dst($2); src2($4); }
199 | T_OP_NOT reg ',' immediate { new_instr($1); dst($2); immed($4); }
201 alu_mov_instr: T_OP_MOV reg ',' reg { new_instr($1); dst($2); src1($4); }
203 new_instr($1); dst($2); immed($4); shift($6);
205 | T_OP_MOV reg ',' immediate { new_instr($1); dst($2); immed($4); }
207 new_instr($1); dst($2); label($4); shift($6);
209 | T_OP_MOV reg ',' T_LABEL_REF { new_instr($1); dst(
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
H A DGPUCommandEncoder.cpp68 wgpu::Buffer dst{}; in copyBufferToBuffer()
70 !conv(dst, destination)) { in copyBufferToBuffer()
74 enc_.CopyBufferToBuffer(src, sourceOffset, dst, destinationOffset, size); in copyBufferToBuffer()
84 wgpu::ImageCopyTexture dst{}; in copyBufferToTexture()
87 !conv(dst, destination) || // in copyBufferToTexture()
92 enc_.CopyBufferToTexture(&src, &dst, &size); in copyBufferToTexture()
102 wgpu::ImageCopyBuffer dst{}; in copyTextureToBuffer()
105 !conv(dst, destination) || // in copyTextureToBuffer()
110 enc_.CopyTextureToBuffer(&src, &dst, &size); in copyTextureToBuffer()
120 wgpu::ImageCopyTexture dst{}; in copyTextureToTexture()
[all...]
/third_party/skia/gm/
H A Drrect.cpp23 static void inset0(const SkRRect& src, SkScalar dx, SkScalar dy, SkRRect* dst) { in inset0() argument
28 dst->setEmpty(); in inset0()
40 dst->setRectRadii(r, radii); in inset0()
43 static void inset1(const SkRRect& src, SkScalar dx, SkScalar dy, SkRRect* dst) { in inset1() argument
48 dst->setEmpty(); in inset1()
56 dst->setRectRadii(r, radii); in inset1()
59 static void inset2(const SkRRect& src, SkScalar dx, SkScalar dy, SkRRect* dst) { in inset2() argument
64 dst->setEmpty(); in inset2()
80 dst->setRectRadii(r, radii); in inset2()
87 static void inset3(const SkRRect& src, SkScalar dx, SkScalar dy, SkRRect* dst) { in inset3() argument
[all...]
/third_party/mesa3d/src/intel/blorp/
H A Dblorp_clear.c473 brw_blorp_surface_info_init(batch, &params.dst, surf, level, in blorp_fast_clear()
475 params.num_samples = params.dst.surf.samples; in blorp_fast_clear()
486 params.dst.clear_color = in blorp_fast_clear()
487 isl_color_value_swizzle_inv(params.dst.clear_color, swizzle); in blorp_fast_clear()
595 brw_blorp_surface_info_init(batch, &params.dst, surf, level, in blorp_clear()
597 params.dst.view.swizzle = swizzle; in blorp_clear()
611 if (params.dst.tile_x_sa || params.dst.tile_y_sa) { in blorp_clear()
612 assert(params.dst.surf.samples == 1); in blorp_clear()
614 params.x0 += params.dst in blorp_clear()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eapol_auth/
H A Deapol_auth_sm.c1187 static int eapol_auth_conf_clone(struct eapol_auth_config *dst, in eapol_auth_conf_clone() argument
1190 dst->ctx = src->ctx; in eapol_auth_conf_clone()
1191 dst->eap_reauth_period = src->eap_reauth_period; in eapol_auth_conf_clone()
1192 dst->wpa = src->wpa; in eapol_auth_conf_clone()
1193 dst->individual_wep_key_len = src->individual_wep_key_len; in eapol_auth_conf_clone()
1194 dst->eap_server = src->eap_server; in eapol_auth_conf_clone()
1195 dst->ssl_ctx = src->ssl_ctx; in eapol_auth_conf_clone()
1196 dst->msg_ctx = src->msg_ctx; in eapol_auth_conf_clone()
1197 dst->eap_sim_db_priv = src->eap_sim_db_priv; in eapol_auth_conf_clone()
1198 os_free(dst in eapol_auth_conf_clone()
[all...]

Completed in 13 milliseconds

1...<<21222324252627282930>>...226