Home
last modified time | relevance | path

Searched refs:btype (Results 1 – 16 of 16) sorted by relevance

/external/zopfli/src/zopfli/
Ddeflate.c490 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 …]
Ddeflate.h57 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/
Dfunctional.h207 #define V8_BASE_BIT_SPECIALIZE_BIT_CAST(type, btype) \
211 return bit_cast<btype>(lhs) == bit_cast<btype>(rhs); \
217 hash<btype> h; \
218 return h(bit_cast<btype>(v)); \
/external/valgrind/coregrind/m_demangle/
Dcplus-dem.c2683 int btype; in demangle_class() local
2688 btype = register_Btype (work); in demangle_class()
2712 remember_Btype (work, class_name.b, LEN_STRING(&class_name), btype); in demangle_class()
4144 string btype; in demangle_fund_type() local
4145 string_init (&btype); in demangle_fund_type()
4146 if (demangle_class_name (work, mangled, &btype)) { in demangle_fund_type()
4147 remember_Btype (work, btype.b, LEN_STRING (&btype), bindex); in demangle_fund_type()
4149 string_appends (result, &btype); in demangle_fund_type()
4153 string_delete (&btype); in demangle_fund_type()
4158 string btype; in demangle_fund_type() local
[all …]
/external/libvncserver/webclients/novnc/include/
Djsunzip.js638 var btype;
645 btype = this.read_bits(d, 2, 0);
648 switch (btype)
/external/zopfli/src/zopflipng/lodepng/
Dlodepng_util.h122 int btype; //block type (0-2) member
Dlodepng_util.cpp373 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()
Dlodepng.cpp1087 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 …]
Dlodepng.h281 …unsigned btype; /*the block type for LZ (0, 1, 2 or 3, see zlib standard). Should be 2 for proper … member
/external/mesa3d/src/compiler/glsl/
Dbuiltin_functions.cpp4214 const glsl_type *btype = type->get_base_type(); in _determinant_mat4() local
4215 MAKE_SIG(btype, avail, 1, m); in _determinant_mat4()
4217 ir_variable *SubFactor00 = body.make_temp(btype, "SubFactor00"); in _determinant_mat4()
4218 ir_variable *SubFactor01 = body.make_temp(btype, "SubFactor01"); in _determinant_mat4()
4219 ir_variable *SubFactor02 = body.make_temp(btype, "SubFactor02"); in _determinant_mat4()
4220 ir_variable *SubFactor03 = body.make_temp(btype, "SubFactor03"); in _determinant_mat4()
4221 ir_variable *SubFactor04 = body.make_temp(btype, "SubFactor04"); in _determinant_mat4()
4222 ir_variable *SubFactor05 = body.make_temp(btype, "SubFactor05"); in _determinant_mat4()
4223 ir_variable *SubFactor06 = body.make_temp(btype, "SubFactor06"); in _determinant_mat4()
4224 ir_variable *SubFactor07 = body.make_temp(btype, "SubFactor07"); in _determinant_mat4()
[all …]
/external/libxml2/
Dgentest.py793 (bnam, btype) = t_args[j][:2]
794 if btype == "const_char_ptr" or btype == "const_xmlChar_ptr":
/external/svox/pico/lib/
Dpicoctrl.c144 picoos_uint8 btype; in ctrlStep() local
160 btype = picodata_cbGetFrontItemType(ctrl->procUnit[ctrl->curPU]->cbOut); in ctrlStep()
161 ctrl->lastItemTypeProduced=(picoos_uint8)btype; in ctrlStep()
/external/e2fsprogs/debugfs/
Dlogdump.c320 static const char *type_to_name(int btype) in type_to_name() argument
322 switch (btype) { in type_to_name()
/external/valgrind/perf/
Dtinycc.c12128 CType type1, btype; in struct_decl() local
12191 parse_btype(&btype, &ad); in struct_decl()
12195 type1 = btype; in struct_decl()
14506 CType btype, type; in func_decl_list() local
14510 if (!parse_btype(&btype, &ad)) in func_decl_list()
14512 if (((btype.t & VT_BTYPE) == VT_ENUM || in func_decl_list()
14513 (btype.t & VT_BTYPE) == VT_STRUCT) && in func_decl_list()
14518 type = btype; in func_decl_list()
14633 CType type, btype; in decl() local
14638 if (!parse_btype(&btype, &ad)) { in decl()
[all …]
/external/pcre/dist2/testdata/
Dtestinput23341 /\btype\b\W*?\btext\b\W*?\bjavascript\b/I
3343 /\btype\b\W*?\btext\b\W*?\bjavascript\b|\burl\b\W*?\bshell:|<input\b.*?\btype\b\W*?\bimage\b|\bonke…
Dtestoutput211028 /\btype\b\W*?\btext\b\W*?\bjavascript\b/I
11035 /\btype\b\W*?\btext\b\W*?\bjavascript\b|\burl\b\W*?\bshell:|<input\b.*?\btype\b\W*?\bimage\b|\bonke…