Home
last modified time | relevance | path

Searched refs:sbits (Results 1 - 21 of 21) sorted by relevance

/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dexp.c31 static inline double specialcase(double_t tmp, uint64_t sbits, uint64_t ki) in specialcase() argument
37 sbits -= 1009ull << 52; in specialcase()
38 scale = asdouble(sbits); in specialcase()
43 sbits += 1022ull << 52; in specialcase()
44 scale = asdouble(sbits); in specialcase()
75 uint64_t ki, idx, top, sbits; in exp() local
121 sbits = T[idx + 1] + top; in exp()
129 return specialcase(tmp, sbits, ki); in exp()
130 scale = asdouble(sbits); in exp()
H A Dexp2.c29 static inline double specialcase(double_t tmp, uint64_t sbits, uint64_t ki) in specialcase() argument
35 sbits -= 1ull << 52; in specialcase()
36 scale = asdouble(sbits); in specialcase()
41 sbits += 1022ull << 52; in specialcase()
42 scale = asdouble(sbits); in specialcase()
73 uint64_t ki, idx, top, sbits; in exp2() local
108 sbits = T[idx + 1] + top; in exp2()
116 return specialcase(tmp, sbits, ki); in exp2()
117 scale = asdouble(sbits); in exp2()
H A Dpow.c124 static inline double specialcase(double_t tmp, uint64_t sbits, uint64_t ki) in specialcase() argument
130 sbits -= 1009ull << 52; in specialcase()
131 scale = asdouble(sbits); in specialcase()
136 sbits += 1022ull << 52; in specialcase()
137 /* Note: sbits is signed scale. */ in specialcase()
138 scale = asdouble(sbits); in specialcase()
154 y = asdouble(sbits & 0x8000000000000000); in specialcase()
169 uint64_t ki, idx, top, sbits; in exp_inline() local
218 sbits = T[idx + 1] + top; in exp_inline()
226 return specialcase(tmp, sbits, k in exp_inline()
[all...]
/third_party/musl/src/math/
H A Dexp2.c29 static inline double specialcase(double_t tmp, uint64_t sbits, uint64_t ki) in specialcase() argument
35 sbits -= 1ull << 52; in specialcase()
36 scale = asdouble(sbits); in specialcase()
41 sbits += 1022ull << 52; in specialcase()
42 scale = asdouble(sbits); in specialcase()
73 uint64_t ki, idx, top, sbits; in exp2() local
108 sbits = T[idx + 1] + top; in exp2()
116 return specialcase(tmp, sbits, ki); in exp2()
117 scale = asdouble(sbits); in exp2()
H A Dexp.c31 static inline double specialcase(double_t tmp, uint64_t sbits, uint64_t ki) in specialcase() argument
37 sbits -= 1009ull << 52; in specialcase()
38 scale = asdouble(sbits); in specialcase()
43 sbits += 1022ull << 52; in specialcase()
44 scale = asdouble(sbits); in specialcase()
75 uint64_t ki, idx, top, sbits; in exp() local
121 sbits = T[idx + 1] + top; in exp()
129 return specialcase(tmp, sbits, ki); in exp()
130 scale = asdouble(sbits); in exp()
H A Dpow.c124 static inline double specialcase(double_t tmp, uint64_t sbits, uint64_t ki) in specialcase() argument
130 sbits -= 1009ull << 52; in specialcase()
131 scale = asdouble(sbits); in specialcase()
136 sbits += 1022ull << 52; in specialcase()
137 /* Note: sbits is signed scale. */ in specialcase()
138 scale = asdouble(sbits); in specialcase()
154 y = asdouble(sbits & 0x8000000000000000); in specialcase()
169 uint64_t ki, idx, top, sbits; in exp_inline() local
218 sbits = T[idx + 1] + top; in exp_inline()
226 return specialcase(tmp, sbits, k in exp_inline()
[all...]
/third_party/optimized-routines/math/
H A Dexp2.c31 specialcase (double_t tmp, uint64_t sbits, uint64_t ki) in specialcase() argument
38 sbits -= 1ull << 52; in specialcase()
39 scale = asdouble (sbits); in specialcase()
44 sbits += 1022ull << 52; in specialcase()
45 scale = asdouble (sbits); in specialcase()
79 uint64_t ki, idx, top, sbits; in exp2() local
117 sbits = T[idx + 1] + top; in exp2()
131 return specialcase (tmp, sbits, ki); in exp2()
132 scale = asdouble (sbits); in exp2()
H A Dexp.c33 specialcase (double_t tmp, uint64_t sbits, uint64_t ki) in specialcase() argument
40 sbits -= 1009ull << 52; in specialcase()
41 scale = asdouble (sbits); in specialcase()
46 sbits += 1022ull << 52; in specialcase()
47 scale = asdouble (sbits); in specialcase()
83 uint64_t ki, idx, top, sbits; in exp_inline() local
135 sbits = T[idx + 1] + top; in exp_inline()
149 return specialcase (tmp, sbits, ki); in exp_inline()
150 scale = asdouble (sbits); in exp_inline()
H A Dpow.c128 specialcase (double_t tmp, uint64_t sbits, uint64_t ki) in specialcase() argument
135 sbits -= 1009ull << 52; in specialcase()
136 scale = asdouble (sbits); in specialcase()
141 sbits += 1022ull << 52; in specialcase()
142 /* Note: sbits is signed scale. */ in specialcase()
143 scale = asdouble (sbits); in specialcase()
160 y = asdouble (sbits & 0x8000000000000000); in specialcase()
176 uint64_t ki, idx, top, sbits; in exp_inline() local
227 sbits = T[idx + 1] + top; in exp_inline()
241 return specialcase (tmp, sbits, k in exp_inline()
[all...]
/third_party/musl/porting/uniproton/kernel/src/math/
H A Dpow.c124 static inline double specialcase(double_t tmp, uint64_t sbits, uint64_t ki) in specialcase() argument
130 sbits -= 1009ull << 52; in specialcase()
131 scale = asdouble(sbits); in specialcase()
136 sbits += 1022ull << 52; in specialcase()
137 /* Note: sbits is signed scale. */ in specialcase()
138 scale = asdouble(sbits); in specialcase()
154 y = asdouble(sbits & 0x8000000000000000); in specialcase()
169 uint64_t ki, idx, top, sbits; in exp_inline() local
218 sbits = T[idx + 1] + top; in exp_inline()
226 return specialcase(tmp, sbits, k in exp_inline()
[all...]
/third_party/musl/porting/liteos_m/kernel/src/math/
H A Dpow.c124 static inline double specialcase(double_t tmp, uint64_t sbits, uint64_t ki) in specialcase() argument
130 sbits -= 1009ull << 52; in specialcase()
131 scale = asdouble(sbits); in specialcase()
136 sbits += 1022ull << 52; in specialcase()
137 /* Note: sbits is signed scale. */ in specialcase()
138 scale = asdouble(sbits); in specialcase()
154 y = asdouble(sbits & 0x8000000000000000); in specialcase()
169 uint64_t ki, idx, top, sbits; in exp_inline() local
218 sbits = T[idx + 1] + top; in exp_inline()
226 return specialcase(tmp, sbits, k in exp_inline()
[all...]
/third_party/ffmpeg/libavformat/
H A Drtpenc_h263_rfc2190.c72 int len, int sbits, int ebits, int m) in send_mode_b()
80 put_bits(&pb, 3, sbits); /* SBIT - 0 bits */ in send_mode_b()
105 int len, sbits = 0, ebits = 0; in ff_rtp_send_h263_rfc2190() local
181 send_mode_b(s1, &info, &packet_start_state, buf, len, sbits, in ff_rtp_send_h263_rfc2190()
185 sbits = 8 - ebits; in ff_rtp_send_h263_rfc2190()
188 sbits = 0; in ff_rtp_send_h263_rfc2190()
70 send_mode_b(AVFormatContext *s1, const struct H263Info *info, const struct H263State *state, const uint8_t *buf, int len, int sbits, int ebits, int m) send_mode_b() argument
/third_party/skia/third_party/externals/freetype/src/cache/
H A Dftcsbits.c5 * FreeType sbits manager (body).
68 FTC_SBit sbit = snode->sbits; in ftc_snode_free()
120 sbit = snode->sbits + ( gindex - gnode->gindex ); in ftc_snode_load()
251 snode->sbits[node_count].width = 255; in FT_LOCAL_DEF()
290 FTC_SBit sbit = snode->sbits; in FT_LOCAL_DEF()
350 FTC_SBit sbit = snode->sbits + ( gindex - gnode->gindex ); in FT_LOCAL_DEF()
H A Dftcsbits.h35 FTC_SBitRec sbits[FTC_SBIT_ITEMS_PER_NODE]; member
H A Dftcbasic.c554 *ansbit = FTC_SNODE( node )->sbits + in FT_EXPORT_DEF()
623 *ansbit = FTC_SNODE( node )->sbits + in FT_EXPORT_DEF()
/third_party/ffmpeg/libavcodec/
H A Dopus_pvq.c587 int mbits, sbits, delta; in quant_band_template() local
686 sbits = (itheta != 0 && itheta != 16384) ? 1 << 3 : 0; in quant_band_template()
687 mbits -= sbits; in quant_band_template()
689 f->remaining2 -= qalloc+sbits; in quant_band_template()
693 if (sbits) { in quant_band_template()
740 sbits = b - mbits; in quant_band_template()
754 if (mbits >= sbits) { in quant_band_template()
762 sbits += rebalance - (3 << 3); in quant_band_template()
766 cmt = pvq->quant_band(pvq, f, rc, band, Y, NULL, N, sbits, blocks, in quant_band_template()
773 cm = pvq->quant_band(pvq, f, rc, band, Y, NULL, N, sbits, block in quant_band_template()
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fRboStateQueryTests.cpp240 int sbits; in test() member
251 checkRenderbufferComponentSize(m_testCtx, *this, -1, -1, -1, -1, requiredDepthFormats[ndx].dbits, requiredDepthFormats[ndx].sbits); in test()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fRboStateQueryTests.cpp291 int sbits; in test() member
306 checkRenderbufferComponentSize(m_testCtx, *this, -1, -1, -1, -1, requiredDepthFormats[ndx].dbits, requiredDepthFormats[ndx].sbits); in test()
H A Des3fFboStateQueryTests.cpp674 int sbits; in test() member
684 testDepthAttachment(depthAttachments[ndx].internalFormat, depthAttachments[ndx].attachment, depthAttachments[ndx].dbits, depthAttachments[ndx].sbits); in test()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceInstARM32.cpp43 #define X(tag, elementty, int_width, fp_width, uvec_width, svec_width, sbits, \
45 {int_width, fp_width, svec_width, uvec_width, sbits, ubits},
H A DIceTargetLoweringARM32.cpp1745 #define X(tag, elementty, int_width, fp_width, uvec_width, svec_width, sbits, \
1757 #define X(tag, elementty, int_width, fp_width, uvec_width, svec_width, sbits, \

Completed in 24 milliseconds