/external/compiler-rt/lib/ppc/ |
gcc_qadd.c | 16 DD dst = { .ld = x }, src = { .ld = y }; local 18 register double A = dst.s.hi, a = dst.s.lo, 23 dst.s.hi = A + B; 24 dst.s.lo = 0.0; 25 return dst.ld; 33 dst.s.hi = A + B; 34 dst.s.lo = 0.0; 35 return dst.ld; 43 dst.s.hi = testForOverflow [all...] |
gcc_qsub.c | 16 DD dst = { .ld = x }, src = { .ld = y }; local 18 register double A = dst.s.hi, a = dst.s.lo, 23 dst.s.hi = A + B; 24 dst.s.lo = 0.0; 25 return dst.ld; 33 dst.s.hi = A + B; 34 dst.s.lo = 0.0; 35 return dst.ld; 43 dst.s.hi = testForOverflow [all...] |
/external/libselinux/src/ |
label_internal.h | 37 char *dst; member in struct:selabel_sub
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_etc.c | 39 float *dst = dst_row + (y + j) * dst_stride / sizeof(*dst_row) + x * comps; local 44 dst[0] = ubyte_to_float(tmp[0]); 45 dst[1] = ubyte_to_float(tmp[1]); 46 dst[2] = ubyte_to_float(tmp[2]); 47 dst[3] = 1.0f; 48 dst += comps; 66 util_format_etc1_rgb8_fetch_rgba_float(float *dst, const uint8_t *src, unsigned i, unsigned j) 77 dst[0] = ubyte_to_float(tmp[0]); 78 dst[1] = ubyte_to_float(tmp[1]); 79 dst[2] = ubyte_to_float(tmp[2]) [all...] |
/external/mesa3d/src/gallium/auxiliary/vl/ |
vl_zscan.h | 64 struct pipe_surface *dst; member in struct:vl_zscan_buffer 85 struct pipe_sampler_view *src, struct pipe_surface *dst);
|
/external/mesa3d/src/gallium/drivers/r300/ |
r300_tgsi_to_rc.c | 186 struct rc_dst_register * dst, 189 dst->File = translate_register_file(src->Register.File); 190 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index); 191 dst->WriteMask = src->Register.WriteMask; 202 struct rc_src_register * dst, 207 dst->File = translate_register_file(src->Register.File); 208 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index); 209 dst->RelAddr = src->Register.Indirect; 210 dst->Swizzle = tgsi_util_get_full_src_register_swizzle(src, 0); 211 dst->Swizzle |= tgsi_util_get_full_src_register_swizzle(src, 1) << 3 273 struct rc_instruction * dst; local [all...] |
r300_vs.c | 184 struct ureg_dst dst; local 190 dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0); 193 ureg_MOV(ureg, dst, imm);
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_state_vs.c | 81 struct ureg_dst dst; local 88 dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0); 90 ureg_MOV(ureg, dst, src);
|
/external/oprofile/libpopt/ |
poptconfig.c | 100 /*@dependent@*/ char * dst; local 127 dst = buf = alloca(fileLength + 1); 135 *dst = '\0'; 136 dst = buf; 137 while (*dst && isspace(*dst)) dst++; 138 if (*dst && *dst != '#') 139 configLine(con, dst); [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_yuv.c | 85 SDL_Rect src, dst; local 134 dst.x = dstx; 135 dst.y = dsty; 136 dst.w = dstw; 137 dst.h = dsth; 138 return overlay->hwfuncs->Display(current_video, overlay, &src, &dst);
|
/external/qemu/distrib/sdl-1.2.15/test/ |
testgamma.c | 130 SDL_Rect dst; local 132 dst.x = (screen->w - image->w)/2; 133 dst.y = (screen->h - image->h)/2; 134 dst.w = image->w; 135 dst.h = image->h; 136 SDL_BlitSurface(image, NULL, screen, &dst); 137 SDL_UpdateRects(screen, 1, &dst);
|
/external/skia/src/animator/ |
SkTypedArray.cpp | 158 int32_t* dst = fArray + index; local 159 memmove(dst + count, dst, sizeof(int32_t) * (oldCount - index)); 161 memcpy(dst, src, sizeof(int32_t) * count); 162 return dst;
|
/external/skia/src/effects/ |
Sk2DPathEffect.cpp | 19 bool Sk2DPathEffect::filterPath(SkPath* dst, const SkPath& src, 31 this->begin(ir, dst); 39 this->nextSpan(rect.fLeft, y, rect.width(), dst); 43 this->end(dst); 54 SkPoint src, dst; local 58 mat.mapPoints(&dst, &src, 1); 59 this->next(dst, x++, y, path); 64 void Sk2DPathEffect::begin(const SkIRect& uvBounds, SkPath* dst) const {} 65 void Sk2DPathEffect::next(const SkPoint& loc, int u, int v, SkPath* dst) const {} 66 void Sk2DPathEffect::end(SkPath* dst) const { [all...] |
/external/skia/src/utils/ |
SkBase64.cpp | 38 unsigned char* dst = (unsigned char*) fData; local 89 *dst = (unsigned char) one; 91 dst++; 95 *dst = (unsigned char) two; 96 dst++; 100 *dst = (unsigned char) three; 101 dst++; 104 fLength = dst - dstStart; 120 unsigned char* dst = (unsigned char*) dstPtr; 121 if (dst) { [all...] |
/external/skia/tests/ |
ColorTest.cpp | 56 SkPMColor dst = SkPreMultiplyColor(colorDst); 58 REPORTER_ASSERT(reporter, SkFourByteInterp(src, dst, a0) == dst); 59 REPORTER_ASSERT(reporter, SkFourByteInterp(src, dst, a255) == src); 73 SkPMColor dst = SkPreMultiplyColor(colorDst); local 75 REPORTER_ASSERT(reporter, SkFastFourByteInterp(src, dst, a0) == dst); 76 REPORTER_ASSERT(reporter, SkFastFourByteInterp(src, dst, a255) == src);
|
/frameworks/av/media/libstagefright/rtsp/ |
ARTPAssembler.cpp | 89 uint8_t *dst = accessUnit->data() + offset; local 97 dst[0] = 0xff; 99 dst[1] = 102 dst[2] = (profile << 6) 106 dst[3] = ((channelConfig & 3) << 6) | (frameLength >> 11); 108 dst[4] = (frameLength >> 3) & 0xff; 109 dst[5] = (frameLength & 7) << 5; 110 dst[6] = 0x00; 112 memcpy(dst + 7, nal->data(), nal->size());
|
/system/core/libpixelflinger/ |
clear.cpp | 55 uint8_t* dst = (uint8_t*)s.data + (l + t*s.stride)*size; local 67 memset(dst, packed, w); 68 dst += stride; 73 android_memset16((uint16_t*)dst, packed, w); 74 dst += stride; 81 android_memset32((uint32_t*)dst, packed, w); 82 dst += stride;
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
VideoUtils.java | 71 public static void startTrim(File src, File dst, int startMs, int endMs) 74 genVideoUsingMuxer(src.getPath(), dst.getPath(), startMs, endMs, 77 trimUsingMp4Parser(src, dst, startMs, endMs); 83 File dst = dstFileInfo.mFile; local 97 writeMovieIntoFile(dst, movie); 101 private static void writeMovieIntoFile(File dst, Movie movie) 103 if (!dst.exists()) { 104 dst.createNewFile(); 108 FileOutputStream fos = new FileOutputStream(dst); 230 private static void trimUsingMp4Parser(File src, File dst, int startMs, int endMs [all...] |
/bionic/libc/kernel/common/linux/netfilter_ipv4/ |
ip_conntrack_tuple.h | 85 } dst; member in struct:ip_conntrack_tuple 87 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
|
/build/tools/acp/ |
acp.c | 117 char* dst; local 142 dst = malloc(stripDestLen +1 + srcNameLen +1); 143 memcpy(dst, stripDest, stripDestLen); 144 dst[stripDestLen] = FSSEP; 145 memcpy(dst + stripDestLen+1, srcName, srcNameLen+1); 148 dst = stripDest; 154 copyResult = copyFile(src, dst, options); 160 if (dst != stripDest) 161 free(dst);
|
/development/ndk/platforms/android-3/include/linux/netfilter_ipv4/ |
ip_conntrack_tuple.h | 76 } dst; member in struct:ip_conntrack_tuple 79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
|
/external/antlr/antlr-3.4/runtime/Python/ |
ez_setup.py | 115 src = dst = None 141 dst = open(saveto,"wb"); dst.write(data) variable 144 if dst: dst.close()
|
/external/chromium_org/chrome/test/security_tests/ |
ipc_security_tests.cc | 48 size_t dst = cl.length() - pos; local 49 if (dst <4) { 52 for (; dst != 0; --dst) { 58 if (0 == dst) { 62 for (; dst != 0; --dst) {
|
/external/chromium_org/third_party/icu/source/i18n/ |
wintzimpl.cpp | 41 AnnualTimeZoneRule *std = NULL, *dst = NULL; local 43 btz->getSimpleRulesNear(uprv_getUTCtime(), initial, std, dst, status); local 45 if (std == NULL || dst == NULL) { 49 // Do not use DST. Set 0 to all stadardDate/daylightDate fields 56 U_ASSERT(dst->getRule()->getDateRuleType() == DateTimeRule::DOW); 60 daylightBias = -1 * (dst->getDSTSavings()/60000); 85 daylightDate.wMonth = dst->getRule()->getRuleMonth() + 1; 86 daylightDate.wDay = dst->getRule()->getRuleWeekInMonth(); 90 daylightDate.wDayOfWeek = dst->getRule()->getRuleDayOfWeek() - 1; 92 mil = dst->getRule()->getRuleMillisInDay() [all...] |
/external/chromium_org/third_party/leveldatabase/src/db/ |
dbformat.cc | 106 std::string* dst) const { 114 user_policy_->CreateFilter(keys, n, dst); 124 char* dst; local 126 dst = space_; 128 dst = new char[needed]; 130 start_ = dst; 131 dst = EncodeVarint32(dst, usize + 8); 132 kstart_ = dst; 133 memcpy(dst, user_key.data(), usize) [all...] |