Home
last modified time | relevance | path

Searched refs:lz (Results 1 – 25 of 164) sorted by relevance

1234567

/third_party/python/Modules/
Ditertoolsmodule.c324 groupby_reduce(groupbyobject *lz, PyObject *Py_UNUSED(ignored)) in groupby_reduce() argument
330 if (lz->tgtkey && lz->currkey && lz->currvalue) in groupby_reduce()
331 value = Py_BuildValue("O(OO)(OOO)", Py_TYPE(lz), in groupby_reduce()
332 lz->it, lz->keyfunc, lz->currkey, lz->currvalue, lz->tgtkey); in groupby_reduce()
334 value = Py_BuildValue("O(OO)", Py_TYPE(lz), in groupby_reduce()
335 lz->it, lz->keyfunc); in groupby_reduce()
343 groupby_setstate(groupbyobject *lz, PyObject *state) in groupby_setstate() argument
354 Py_XSETREF(lz->currkey, currkey); in groupby_setstate()
356 Py_XSETREF(lz->currvalue, currvalue); in groupby_setstate()
358 Py_XSETREF(lz->tgtkey, tgtkey); in groupby_setstate()
[all …]
/third_party/python/Python/
Dbltinmodule.c508 filterobject *lz; in filter_new() local
522 lz = (filterobject *)type->tp_alloc(type, 0); in filter_new()
523 if (lz == NULL) { in filter_new()
528 lz->func = Py_NewRef(func); in filter_new()
529 lz->it = it; in filter_new()
531 return (PyObject *)lz; in filter_new()
553 filterobject *lz = (filterobject *)tp->tp_alloc(tp, 0); in filter_vectorcall() local
555 if (lz == NULL) { in filter_vectorcall()
560 lz->func = Py_NewRef(args[0]); in filter_vectorcall()
561 lz->it = it; in filter_vectorcall()
[all …]
/third_party/rust/crates/minimal-lexical/src/
Dlemire.rs65 let lz = w.leading_zeros() as i32; in compute_float() localVariable
66 w <<= lz; in compute_float()
86 return compute_error_scaled::<F>(q, hi, lz); in compute_float()
91 let mut power2 = power(q) + upperbit - lz - F::MINIMUM_EXPONENT; in compute_float()
154 let lz = w.leading_zeros() as i32; in compute_error() localVariable
155 w <<= lz; in compute_error()
157 compute_error_scaled::<F>(q, hi, lz) in compute_error()
162 pub fn compute_error_scaled<F: Float>(q: i32, mut w: u64, lz: i32) -> ExtendedFloat { in compute_error_scaled()
166 let power2 = power(q as i32) + F::EXPONENT_BIAS - hilz - lz - 62; in compute_error_scaled()
/third_party/jerryscript/jerry-libm/
Dfmod.c42 unsigned lx, ly, lz; in fmod() local
159 lz = lx - ly; in fmod()
171 if ((hz | lz) == 0) /* return sign(x) * 0 */ in fmod()
175 hx = hz + hz + (lz >> 31); in fmod()
176 lx = lz + lz; in fmod()
180 lz = lx - ly; in fmod()
188 lx = lz; in fmod()
/third_party/musl/src/stdlib/
Dfcvt.c9 int i, lz; in fcvt() local
14 if (tmp[i] == '0') lz = strspn(tmp+i+2, "0"); in fcvt()
15 else lz = -(int)strcspn(tmp+i, "."); in fcvt()
17 if (n<=lz) { in fcvt()
24 return ecvt(x, n-lz, dp, sign); in fcvt()
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/aarch64/
Djchuff-neon.c246 unsigned int lz = BUILTIN_CLZ(vgetq_lane_s16(abs_row0, 0)); in jsimd_huff_encode_one_block_neon() local
248 unsigned int lz; in jsimd_huff_encode_one_block_neon() local
249 __asm__("clz %w0, %w1" : "=r"(lz) : "r"(vgetq_lane_s16(abs_row0, 0))); in jsimd_huff_encode_one_block_neon()
251 unsigned int nbits = 32 - lz; in jsimd_huff_encode_one_block_neon()
253 unsigned int diff = (unsigned int)(vgetq_lane_u16(row0_diff, 0) << lz) >> lz; in jsimd_huff_encode_one_block_neon()
376 lz = BUILTIN_CLZ(block_abs[i]); in jsimd_huff_encode_one_block_neon()
377 nbits = 32 - lz; in jsimd_huff_encode_one_block_neon()
378 diff = (unsigned int)(block_diff[i] << lz) >> lz; in jsimd_huff_encode_one_block_neon()
/third_party/ffmpeg/libavfilter/tests/
Dintegral.c41 const int w = 6, h = 5, lz = 8; in main() local
73 src, lz, xoff, yoff, e, w, h); in main()
78 src, lz, in main()
/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/
Dastc_mathlib_softfloat.cpp68 uint32_t lz; in clz32()
69 __asm__("clz %0, %1": "=r"(lz):"r"(inp)); in clz32()
70 return lz; in clz32()
Dastc_image_load_store.cpp96 int lz = clz32(p) - 16; in unorm16_to_sf16() local
97 p <<= (lz + 1); in unorm16_to_sf16()
99 p |= (14 - lz) << 10; in unorm16_to_sf16()
/third_party/skia/src/effects/
DSkEmbossMask.cpp55 SkFixed lz = SkScalarToFixed(light.fDirection[2]); in Emboss() local
56 SkFixed lz_dot_nz = lz * kDelta; in Emboss()
57 int lz_dot8 = lz >> 8; in Emboss()
/third_party/skia/third_party/externals/libpng/scripts/
Dmakefile.sgi51 LDFLAGS_A=$(ABI) -L. -L$(ZLIBLIB) -lpng16 -lz -lm
52 LDFLAGS=$(ABI) -L. -L$(ZLIBLIB) -lpng -lz -lm
103 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
Dmakefile.linux55 LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng16 -lz -lm
56 LDFLAGS_A=-L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) libpng.a -lz -lm
110 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
Dmakefile.linux-opt62 LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng16 -lz -lm
63 LDFLAGS_A=-L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) libpng.a -lz -lm
121 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
Dmakefile.dec59 LDFLAGS=-L$(ZLIBLIB) -rpath $(ZLIBLIB) libpng.a -lz -lm
86 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
Dmakefile.beos47 LDFLAGS=-L. -Wl,-soname=$(LIBSOMAJ) -L$(ZLIBLIB) -lz
101 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
Dmakefile.sco43 LDFLAGS=-L. -L$(ZLIBLIB) -lpng16 -lz -lm
97 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
Dmakefile.sggcc49 LDFLAGS=$(ABI) -L. -L$(ZLIBLIB) -lpng -lz -lm
102 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
Dmakefile.darwin43 LDFLAGS=-L. -L$(ZLIBLIB) -lpng16 -lz
97 -e s!-lpng16!-lpng16\ -lz! > libpng.pc
Dmakefile.hpux52 LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm
101 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
/third_party/rust/crates/minimal-lexical/tests/
Dlemire_tests.rs18 fn compute_error_scaled32(q: i32, w: u64, lz: i32) -> (i32, u64) { in compute_error_scaled32()
19 let fp = lemire::compute_error_scaled::<f32>(q, w, lz); in compute_error_scaled32()
23 fn compute_error_scaled64(q: i32, w: u64, lz: i32) -> (i32, u64) { in compute_error_scaled64()
24 let fp = lemire::compute_error_scaled::<f64>(q, w, lz); in compute_error_scaled64()
/third_party/zlib/contrib/minizip/
DMakefile.am25 libminizip_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:0:0 -lz
45 minizip_LDADD = libminizip.la -lz
/third_party/openGLES/extensions/EXT/
DEXT_texture_compression_astc_decode_mode.txt176 int lz = clz17( Cr | Cg | Cb | 1);
177 if (Cr == 65535 ) { Cr = 65536; lz = 0; }
178 if (Cg == 65535 ) { Cg = 65536; lz = 0; }
179 if (Cb == 65535 ) { Cb = 65536; lz = 0; }
180 Cr <<= lz;
181 Cg <<= lz;
182 Cb <<= lz;
186 uint32_t exponent = 16 - lz;
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_texture_compression_astc_decode_mode.txt176 int lz = clz17( Cr | Cg | Cb | 1);
177 if (Cr == 65535 ) { Cr = 65536; lz = 0; }
178 if (Cg == 65535 ) { Cg = 65536; lz = 0; }
179 if (Cb == 65535 ) { Cb = 65536; lz = 0; }
180 Cr <<= lz;
181 Cg <<= lz;
182 Cb <<= lz;
186 uint32_t exponent = 16 - lz;
/third_party/astc-encoder/Source/
Dastcenc_mathlib_softfloat.cpp76 uint32_t lz; in clz32()
77 __asm__("clz %0, %1": "=r"(lz):"r"(inp)); in clz32()
78 return lz; in clz32()
/third_party/skia/third_party/externals/libpng/contrib/pngminus/
DMakefile20 ZLIB_SHARED = -lz
21 ZLIB_STATIC = -lz

1234567