Searched refs:src (Results 26 - 45 of 45) sorted by relevance

12

/system/core/libpixelflinger/codeflinger/
H A DMIPSAssembler.cpp420 int src; // src is modified by dataProcAdrModes() - passed as int& local
434 if (dataProcAdrModes(Op2, src) == SRC_REG) {
435 mMips->AND(Rd, Rn, src);
437 mMips->ANDI(Rd, Rn, src);
443 if (dataProcAdrModes(Op2, src, true) == SRC_REG) {
444 mMips->ADDU(Rd, Rn, src);
446 mMips->ADDIU(Rd, Rn, src);
452 if (dataProcAdrModes(Op2, src, true) == SRC_REG) {
453 mMips->SUBU(Rd, Rn, src);
[all...]
H A Dblending.cpp86 // fragment: extracted src
272 // src-alpha in fragment, and we need src-alpha just this time.
274 // alpha-src will be needed for other components
636 const integer_t& dst, const integer_t& src)
639 const int shift = src.size() - dst.size();
641 ADD(AL, 0, d.reg, src.reg, dst.reg);
643 ADD(AL, 0, d.reg, src.reg, reg_imm(dst.reg, LSL, shift));
646 d.h = src.size();
H A Dload_store.cpp197 void GGLAssembler::expand(integer_t& dst, const integer_t& src, int dbits) argument
199 assert(src.size());
201 int sbits = src.size();
202 int s = src.reg;
205 // be sure to set 'dst' after we read 'src' as they may be identical
H A DGGLAssembler.h375 void store(const pointer_t& addr, const pixel_t& src, uint32_t flags=0);
397 const integer_t& src);
/system/core/libpixelflinger/
H A Dbuffer.cpp58 void ggl_set_surface(context_t* c, surface_t* dst, const GGLSurface* src) argument
60 dst->width = src->width;
61 dst->height = src->height;
62 dst->stride = src->stride;
63 dst->data = src->data;
64 dst->format = src->format;
324 int sh, int sl, // src
H A Dscanline.cpp122 extern "C" void scanline_t32cb16_arm(uint16_t *dst, uint32_t *src, size_t ct);
195 "565 fb, 8888 tx, blend dst:ONE_MINUS_SRCA src:SRCA", scanline_t32cb16blend_srca, init_y_noop },
333 // src and dest have the same format anyway, there is no dithering
448 const pixel_t* src, const pixel_t* dst);
481 blend_factor(c, &sf, c->state.blend.src, fragment, fb);
526 uint32_t factor, const pixel_t* src, const pixel_t* dst)
548 r->c[1] = blendfactor(src->c[1], src->s[1]);
549 r->c[2] = blendfactor(src->c[2], src
525 blend_factor(context_t* c, pixel_t* r, uint32_t factor, const pixel_t* src, const pixel_t* dst) argument
998 uint16_t* src = reinterpret_cast<uint16_t*>(m_data) + (u + (m_stride*v)); local
1004 uint32_t* src = reinterpret_cast<uint32_t*>(m_data) + (u + (m_stride*v)); local
1050 const uint16_t* src = reinterpret_cast<const uint16_t*>(m_data); local
1060 const uint32_t* src = reinterpret_cast<const uint32_t*>(m_data); local
2124 uint32_t *src = reinterpret_cast<uint32_t*>(tex->data)+(u+(tex->stride*v)); local
2170 uint32_t *src = reinterpret_cast<uint32_t*>(tex->data)+(u+(tex->stride*v)); local
2238 uint8_t *src = reinterpret_cast<uint8_t*>(tex->data) + local
2329 uint8_t *src = reinterpret_cast<uint8_t*>(tex->data) + local
[all...]
H A Dpixelflinger.cpp302 static void ggl_blendFunc(void* con, GGLenum src, GGLenum dst) argument
305 c->state.blend.src = src;
306 c->state.blend.src_alpha = src;
316 GGLenum src, GGLenum dst,
320 c->state.blend.src = src;
794 c->state.blend.src = GGL_ONE;
315 ggl_blendFuncSeparate(void* con, GGLenum src, GGLenum dst, GGLenum srcAlpha, GGLenum dstAplha) argument
/system/core/adb/
H A Dfile_sync_client.c562 const char *src; member in struct:copyinfo
591 ci->src = (const char*)(ci + 1);
592 ci->dst = ci->src + ssize;
593 snprintf((char*) ci->src, ssize, isdir ? "%s%s/" : "%s%s", spath, name);
596 // fprintf(stderr,"mkcopyinfo('%s','%s')\n", ci->src, ci->dst);
643 if(lstat(ci->src, &st)) {
644 fprintf(stderr,"cannot stat '%s': %s\n", ci->src, strerror(errno));
650 fprintf(stderr, "skipping special file '%s'\n", ci->src);
666 local_build_list(filelist, ci->src, ci->dst);
722 fprintf(stderr,"%spush: %s -> %s\n", listonly ? "would " : "", ci->src, c
[all...]
H A Dadb.c411 * was malloc'ed and needs to freed. *dst will be set to a dup of src.
413 static void qual_overwrite(char **dst, const char *src) argument
421 if (!src || !*src)
424 *dst = strdup(src);
H A Dsysdeps_win32.c916 bip_buffer_write( BipBuffer bip, const void* src, int len ) argument
924 BIPDUMP( src, len );
958 memcpy( bip->buff + bip->a_end, src, avail );
959 src += avail;
980 memcpy( bip->buff + bip->b_end, src, avail );
/system/core/include/diskconfig/
H A Ddiskconfig.h120 int write_raw_image(const char *dst, const char *src, loff_t offset, int test);
/system/core/init/
H A Dbootchart.c94 file_buff_write( FileBuff buff, const void* src, int len ) argument
101 memcpy( buff->data + buff->count, src, avail );
103 src = (char*)src + avail;
H A Dinit_parser.c185 int expand_props(char *dst, const char *src, int dst_size) argument
189 const char *src_ptr = src;
195 if (!src || !dst || dst_size == 0)
198 src_len = strlen(src);
243 src);
246 src);
255 ERROR("prop name too long in '%s'\n", src);
264 ERROR("invalid zero-length prop name in '%s'\n", src);
271 prop, src);
286 ERROR("destination buffer overflow while expanding '%s'\n", src);
[all...]
/system/core/include/sysutils/
H A DList.h167 List(const List<T>& src) { // copy-constructor argument
169 insert(begin(), src.begin(), src.end());
/system/netd/
H A DList.h167 List(const List<T>& src) { // copy-constructor argument
169 insert(begin(), src.begin(), src.end());
H A DBandwidthController.h131 static int StrncpyAndCheck(char *buffer, const char *src, size_t buffSize);
H A DBandwidthController.cpp160 int BandwidthController::StrncpyAndCheck(char *buffer, const char *src, size_t buffSize) { argument
163 strncpy(buffer, src, buffSize);
/system/core/include/pixelflinger/
H A Dpixelflinger.h246 void (*blendFunc)(void* c, GGLenum src, GGLenum dst);
247 void (*blendFuncSeparate)(void* c, GGLenum src, GGLenum dst,
/system/core/toolbox/
H A Dnewfs_msdos.c30 "$FreeBSD: src/sbin/newfs_msdos/newfs_msdos.c,v 1.33 2009/04/11 14:56:29 ed Exp $";
1017 oklabel(const char *src) argument
1022 c = (u_char)*src++;
1033 mklabel(u_int8_t *dest, const char *src) argument
1038 c = *src ? toupper(*src++) : ' ';
1047 setstr(u_int8_t *dest, const char *src, size_t len) argument
1050 *dest++ = *src ? *src++ : ' ';
/system/core/include/private/pixelflinger/
H A Dggl_context.h278 uint32_t src; member in struct:android::blend_state_t

Completed in 384 milliseconds

12