/external/zopfli/src/zopfli/ |
D | deflate.c | 490 size_t lstart, size_t lend, int btype) { in ZopfliCalculateBlockSize() argument 496 assert(btype == 1 || btype == 2); /* This is not for uncompressed blocks. */ in ZopfliCalculateBlockSize() 498 if(btype == 1) { in ZopfliCalculateBlockSize() 528 static void AddLZ77Block(const ZopfliOptions* options, int btype, int final, in AddLZ77Block() argument 545 AddBit(btype & 1, bp, out, outsize); in AddLZ77Block() 546 AddBit((btype & 2) >> 1, bp, out, outsize); in AddLZ77Block() 548 if (btype == 1) { in AddLZ77Block() 554 assert(btype == 2); in AddLZ77Block() 594 int btype = 2; in DeflateDynamicBlock() local 620 btype = 1; in DeflateDynamicBlock() [all …]
|
D | deflate.h | 57 void ZopfliDeflate(const ZopfliOptions* options, int btype, int final, 66 void ZopfliDeflatePart(const ZopfliOptions* options, int btype, int final, 80 size_t lstart, size_t lend, int btype);
|
/external/v8/src/base/ |
D | functional.h | 206 #define V8_BASE_BIT_SPECIALIZE_BIT_CAST(type, btype) \ 210 return bit_cast<btype>(lhs) == bit_cast<btype>(rhs); \ 216 hash<btype> h; \ 217 return h(bit_cast<btype>(v)); \
|
/external/u-boot/fs/jffs2/ |
D | mini_inflate.c | 353 int bfinal, btype; in decompress_block() local 359 btype = pull_bits(&stream, 2); in decompress_block() 360 if (btype == NO_COMP) decompress_none(&stream, dest + stream.decoded); in decompress_block() 361 else if (btype == DYNAMIC_COMP) in decompress_block() 363 else if (btype == FIXED_COMP) decompress_fixed(&stream, dest + stream.decoded); in decompress_block()
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/f2fs/f2fs_do_submit_bio/ |
D | format | 10 field:int btype; offset:12; size:4; signed:1; 15 …, ((unsigned int) ((REC->dev) & ((1U << 20) - 1))), __print_symbolic(REC->btype, { NODE, "NODE" },…
|
/external/mesa3d/src/compiler/glsl/ |
D | builtin_functions.cpp | 4673 const glsl_type *btype = type->get_base_type(); in _determinant_mat4() local 4674 MAKE_SIG(btype, avail, 1, m); in _determinant_mat4() 4676 ir_variable *SubFactor00 = body.make_temp(btype, "SubFactor00"); in _determinant_mat4() 4677 ir_variable *SubFactor01 = body.make_temp(btype, "SubFactor01"); in _determinant_mat4() 4678 ir_variable *SubFactor02 = body.make_temp(btype, "SubFactor02"); in _determinant_mat4() 4679 ir_variable *SubFactor03 = body.make_temp(btype, "SubFactor03"); in _determinant_mat4() 4680 ir_variable *SubFactor04 = body.make_temp(btype, "SubFactor04"); in _determinant_mat4() 4681 ir_variable *SubFactor05 = body.make_temp(btype, "SubFactor05"); in _determinant_mat4() 4682 ir_variable *SubFactor06 = body.make_temp(btype, "SubFactor06"); in _determinant_mat4() 4683 ir_variable *SubFactor07 = body.make_temp(btype, "SubFactor07"); in _determinant_mat4() [all …]
|
/external/zopfli/src/zopflipng/lodepng/ |
D | lodepng_util.h | 122 int btype; //block type (0-2) member
|
D | lodepng_util.cpp | 373 zlibinfo->back().btype = BTYPE; in inflate() 481 … const unsigned char* in, size_t& bp, size_t& pos, size_t inlength, unsigned long btype) in inflateHuffmanBlock() 484 if(btype == 1) { generateFixedTrees(codetree, codetreeD); } in inflateHuffmanBlock() 485 …else if(btype == 2) { getTreeInflateDynamic(codetree, codetreeD, in, bp, inlength); if(error) retu… in inflateHuffmanBlock()
|
D | lodepng.cpp | 1087 size_t* pos, size_t inlength, unsigned btype) in inflateHuffmanBlock() argument 1097 if(btype == 1) getTreeInflateFixed(&tree_ll, &tree_d); in inflateHuffmanBlock() 1098 else if(btype == 2) error = getTreeInflateDynamic(&tree_ll, &tree_d, in, bp, inlength); in inflateHuffmanBlock() 1972 if(settings->btype > 2) return 61; in lodepng_deflatev() 1973 else if(settings->btype == 0) return deflateNoCompression(out, in, insize); in lodepng_deflatev() 1974 else if(settings->btype == 1) blocksize = insize; in lodepng_deflatev() 1994 if(settings->btype == 1) error = deflateFixed(out, &bp, &hash, in, start, end, settings, final); in lodepng_deflatev() 1995 …else if(settings->btype == 2) error = deflateDynamic(out, &bp, &hash, in, start, end, settings, fi… in lodepng_deflatev() 2222 settings->btype = 2; in lodepng_compress_settings_init() 5411 zlibsettings.btype = 1; in filter() [all …]
|
D | lodepng.h | 281 …unsigned btype; /*the block type for LZ (0, 1, 2 or 3, see zlib standard). Should be 2 for proper … member
|
/external/libxml2/ |
D | gentest.py | 793 (bnam, btype) = t_args[j][:2] 794 if btype == "const_char_ptr" or btype == "const_xmlChar_ptr":
|
/external/u-boot/arch/arm/include/asm/arch-am33xx/ |
D | clock.h | 125 void rtc_only_update_board_type(u32 btype);
|
/external/u-boot/board/ti/am43xx/ |
D | board.c | 540 void rtc_only_update_board_type(u32 btype) in rtc_only_update_board_type() argument 545 switch (btype) { in rtc_only_update_board_type()
|
/external/e2fsprogs/debugfs/ |
D | logdump.c | 325 static const char *type_to_name(int btype) in type_to_name() argument 327 switch (btype) { in type_to_name()
|
/external/perfetto/protos/perfetto/trace/ftrace/ |
D | f2fs.proto | 11 optional int32 btype = 2; field
|
/external/syzkaller/vendor/github.com/ianlancetaylor/demangle/ |
D | demangle.go | 1135 if btype, ok := builtinTypes[st.str[0]]; ok { 1136 ret = &BuiltinType{Name: btype}
|
/external/pcre/dist2/testdata/ |
D | testinput2 | 3352 /\btype\b\W*?\btext\b\W*?\bjavascript\b/I 3354 /\btype\b\W*?\btext\b\W*?\bjavascript\b|\burl\b\W*?\bshell:|<input\b.*?\btype\b\W*?\bimage\b|\bonke…
|
D | testoutput2 | 11208 /\btype\b\W*?\btext\b\W*?\bjavascript\b/I 11215 /\btype\b\W*?\btext\b\W*?\bjavascript\b|\burl\b\W*?\bshell:|<input\b.*?\btype\b\W*?\bimage\b|\bonke…
|
/external/perfetto/protos/perfetto/trace/ |
D | perfetto_trace.proto | 1330 optional int32 btype = 2; field
|