Home
last modified time | relevance | path

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

1234567891011

/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/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/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/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/flutter/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
/third_party/flutter/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
/third_party/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
/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/zlib/contrib/minizip/
DMakefile.am25 libminizip_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:0:0 -lz
45 minizip_LDADD = libminizip.la -lz
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/minizip/
DMakefile.am25 libminizip_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:0:0 -lz
45 minizip_LDADD = libminizip.la -lz
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/minizip/
DMakefile.am25 libminizip_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:0:0 -lz
45 minizip_LDADD = libminizip.la -lz
/third_party/libpng/contrib/pngminus/
DMakefile20 ZLIB_SHARED = -lz
21 ZLIB_STATIC = -lz
/third_party/flutter/skia/third_party/externals/libpng/contrib/pngminus/
DMakefile20 ZLIB_SHARED = -lz
21 ZLIB_STATIC = -lz
/third_party/skia/third_party/externals/libpng/contrib/pngminus/
DMakefile20 ZLIB_SHARED = -lz
21 ZLIB_STATIC = -lz

1234567891011