Searched defs:fract (Results 1 - 18 of 18) sorted by relevance

/external/skia/src/core/
H A DSkScalar.cpp34 SkScalar fract = (searchKey - leftKey) / (rightKey - leftKey); local
35 return SkScalarInterp(values[right-1], values[right], fract);
/external/dng_sdk/source/
H A Ddng_1d_table.h92 real32 fract = y - z; local
94 return fTable [index ] * (1.0f - fract) +
95 fTable [index + 1] * ( fract);
H A Ddng_1d_table.cpp168 real64 fract = 0.0; local
173 table16 [j] = (uint16) (base + slope * fract);
175 fract += step;
177 if (fract > 1.0)
181 fract -= 1.0;
H A Ddng_abort_sniffer.h137 /// \param fract Percentage of total processing this task is expected to
141 real64 fract);
148 /// \param fract percentage of processing completed on current task.
151 virtual void UpdateProgress (real64 fract);
174 /// \param fract Percentage of total processing this task is expected
179 real64 fract = 0.0)
185 fSniffer->StartTask (name, fract);
203 /// \param fract Percentage of processing completed on current task,
206 void UpdateProgress (real64 fract) argument
209 fSniffer->UpdateProgress (fract);
[all...]
H A Ddng_render.cpp407 real32 fract = y - (real32) index; local
409 return kTable [index ] * (1.0f - fract) +
410 kTable [index + 1] * ( fract);
687 real32 fract = y - (real32) index; local
689 return kTable [index ] * (1.0f - fract) +
690 kTable [index + 1] * ( fract);
H A Ddng_resample.cpp221 real64 fract = sample * (1.0 / (real64) kResampleSubsampleCount); local
236 real64 x = (k - fract) * scale;
277 w16 [fRadius - (fract >= 0.5 ? 0 : 1)] += (int16) (16384 - t16);
/external/deqp/framework/delibs/debase/
H A DdeMath.c117 double fract = frexp(x, &tmpExp); local
119 return fract * 2.0;
132 double fract = modf(a, &integer); local
133 if (fabs(fract) == 0.5)
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2qos.c30 unsigned int rate,fract; local
38 power = fract = 0;
41 fract = fract*10+*end-48;
54 while (power && fract)
56 fract /= 10;
60 fract *= 10;
63 rate += fract;
/external/deqp/framework/common/
H A DtcuVectorUtil.hpp68 inline float fract (float f) { return f - deFloatFloor(f); } function in namespace:tcu
455 TCU_DECLARE_VECTOR_UNARY_FUNC(fract, deFloatFrac)
/external/libhevc/common/
H A Dihevc_chroma_intra_pred_filters.c1140 WORD32 inv_ang, inv_ang_sum, pos, fract; local
1178 fract = pos & (31);
1185 pu1_dst[(row * dst_strd) + col] = (UWORD8)(((32 - fract)
1187 + fract * ref_main[ref_main_idx_u + 2] + 16) >> 5);
1188 pu1_dst[(row * dst_strd) + (col + 1)] = (UWORD8)(((32 - fract)
1190 + fract * ref_main[ref_main_idx_v + 2] + 16) >> 5);
1246 WORD32 pos, fract; local
1258 fract = pos & (31);
1266 pu1_dst[col + (row * dst_strd)] = (((32 - fract)
1268 + fract * pu1_re
[all...]
H A Dihevc_intra_pred_filters.c1283 WORD32 pos, fract; local
1295 fract = pos & (31);
1301 pu1_dst[col + (row * dst_strd)] = (((32 - fract)
1303 + fract * pu1_ref[ref_main_idx - 1] + 16) >> 5);
1364 WORD32 pos, fract; local
1401 fract = pos & (31);
1407 pu1_dst[col + (dst_strd * row)] = (UWORD8)(((32 - fract)
1409 + fract * ref_main[ref_main_idx + 1] + 16) >> 5);
1467 WORD32 inv_ang, inv_ang_sum, pos, fract; local
1499 fract
1563 WORD32 two_nt, pos, fract; local
[all...]
/external/libhevc/common/x86/
H A Dihevc_chroma_intra_pred_filters_ssse3_intr.c1220 /* fract = pos & (31); */
1231 /*(32 - fract) */
1277 /* fract*(pu1_ref[ref_main_idx + 1]- pu1_ref[ref_main_idx]) */
1283 /*((32 - fract)* pu1_ref[ref_main_idx]+ fract * pu1_ref[ref_main_idx + 1] + 16)*/
1289 /*((32 - fract)* pu1_ref[ref_main_idx]+ fract * pu1_ref[ref_main_idx + 1] + 16) >>5*/
1348 /* fract = pos & (31); */
1359 /*(32 - fract) */
1445 /* fract*(pu1_re
1997 WORD32 inv_ang, inv_ang_sum, pos, fract; local
2352 WORD32 pos, fract; local
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c205 LLVMValueRef fract, flr, isOdd; local
207 lp_build_ifloor_fract(coord_bld, coord, &flr, &fract);
213 coord = lp_build_set_sign(coord_bld, fract, isOdd);
243 /* wrap with normalized floats is just fract */
H A Dlp_bld_arit.c1561 clamp_fract(struct lp_build_context *bld, LLVMValueRef fract) argument
1568 return lp_build_min(bld, fract, max);
1780 * Combined ifloor() & fract().
/external/libhevc/common/arm/
H A Dihevc_intra_pred_filters_neon_intr.c2108 WORD32 pos, fract = 100, fract_prev; local
2136 fract_prev = fract;
2139 fract = pos & (31);
2141 if(fract_prev < fract)
2147 dup_const_fract = vdup_n_u8((uint8_t)fract);
2148 dup_const_32_fract = vdup_n_u8((uint8_t)(32 - fract));
2224 fract_prev = fract;
2226 fract = pos & (31);
2227 if(fract_prev < fract)
2232 dup_fract = vdup_n_u8((uint8_t)fract);
2321 WORD32 pos, fract = 1000, fract_prev; local
2582 WORD32 inv_ang, inv_ang_sum, pos, fract = 1000, fract_prev;; local
2802 WORD32 pos, fract = 0, fract_prev; local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp3159 const double fract = deModf(x, &truncated); local
3162 if (fabs(fract) <= 0.5)
3164 if (fabs(fract) >= 0.5)
3165 ret |= truncated + deSign(fract);
3185 DEFINE_DERIVED_FLOAT1(Fract, fract, x, x - app<Floor>(x));
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3210 const double fract = deModf(x, &truncated); local
3213 if (fabs(fract) <= 0.5)
3215 if (fabs(fract) >= 0.5)
3216 ret |= truncated + deSign(fract);
3236 DEFINE_DERIVED_FLOAT1(Fract, fract, x, x - app<Floor>(x));
/external/libgdx/backends/gdx-backend-moe/libs/
H A Dintel-moe-core.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE SQLite/ SQLite/Authorizer.class Authorizer.java package ...

Completed in 656 milliseconds