/third_party/lzma/C/ |
H A D | LzmaDec.c | 243 Byte *dic = p->dic;
in LZMA_DECODE_REAL() local 269 prob += (UInt32)3 * ((((processedPos << 8) + dic[(dicPos == 0 ? dicBufSize : dicPos) - 1]) & lpMask) << lc);
in LZMA_DECODE_REAL() 291 unsigned matchByte = dic[dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0)];
in LZMA_DECODE_REAL() 319 dic[dicPos++] = (Byte)symbol;
in LZMA_DECODE_REAL() 350 dic[dicPos] = dic[dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0)];
in LZMA_DECODE_REAL() 572 Byte *dest = dic + dicPos;
in LZMA_DECODE_REAL() 584 dic[dicPos++] = dic[po in LZMA_DECODE_REAL() 623 Byte *dic; LzmaDec_WriteRem() local [all...] |
H A D | LzmaDec.h | 59 Byte *dic;
member 76 #define LzmaDec_CONSTRUCT(p) { (p)->dic = NULL; (p)->probs = NULL; }
161 use data from CLzmaDec::dic and update CLzmaDec::dicPos
169 The decoding to internal dictionary buffer (CLzmaDec::dic).
|
H A D | Lzma2Dec.c | 18 00000001 U U - Uncompressed, reset dic, need reset state and set new prop
23 111uuuuu U U P P S - LZMA, reset state + set new prop, reset dic
166 memcpy(p->dic + p->dicPos, src, size);
in LzmaDec_UpdateWithUncompressed() 457 memcpy(dest, p->decoder.dic + dicPos, outCur);
in Lzma2Dec_DecodeToBuf() 479 p.decoder.dic = dest;
in Lzma2Decode()
|
H A D | 7zDec.c | 171 state.dic = outBuffer;
in SzDecodeLzma() 233 state.decoder.dic = outBuffer;
in SzDecodeLzma2()
|
H A D | Lzma2DecMt.c | 447 t->dec.decoder.dic = dest;
in Lzma2DecMt_MtCallback_PreCode() 751 size_t written = ISeqOutStream_Write(p->outStream, dec->decoder.dic + wrPos, writeSize);
in Lzma2Dec_Decode_ST()
|
H A D | XzDec.c | 411 Data is unpacked to (spec->decoder.decoder.dic) output buffer.
460 spec->decoder.decoder.dic = outBuf;
in Lzma2State_SetFromMethod() 474 spec->decoder.decoder.dic = outBuf;
in Lzma2State_ResetOutBuf()
|
/third_party/lzma/Asm/x86/ |
H A D | LzmaDecOpt.asm | 79 ; x12 offs (MATCHED) / dic / len_temp
112 dic equ r12
define 435 ; prob += (UInt32)3 * ((((processedPos << 8) + dic[(dicPos == 0 ? dicBufSize : dicPos) - 1]) & lpMask) << lc);
628 mov dic, GLOB_2 dic_Spec
629 add PARAM_limit, dic
638 add dicPos, dic
640 mov LOC_0 dic_Spec, dic
691 add t0_R, dic
692 cmp dicPos, dic
739 ; mov dic, LO [all...] |
/third_party/lzma/Asm/arm64/ |
H A D | LzmaDecOpt.S | 181 #define dic r24 define 754 LOAD_LZMA_PAIR dic, dicBufSize, offset_dic 761 p2_add limit, dic 764 p2_add dicPos, dic 789 add t0_R, dicBufSize, dic 790 cmp dicPos, dic 1050 sub t0_R, dicPos, dic 1065 p2_add t0_R, dic 1155 // matchByte = dic[dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0)]; 1157 sub t0_R, dicPos, dic [all...] |
/third_party/libabigail/src/ |
H A D | abg-ctf-reader.cc | 120 dic_type_key(ctf_dict_t *dic, ctf_id_t ctf_type); 157 /// @param dic the dictionnary the type belongs to. 163 add_type(ctf_dict_t *dic, ctf_id_t ctf_type, type_base_sptr type) in add_type() argument 165 string key = dic_type_key(dic, ctf_type); in add_type() 180 /// @param dic the dictionnary the type belongs to. 184 lookup_type(ctf_dict_t *dic, ctf_id_t ctf_type) in lookup_type() argument 187 std::string key = dic_type_key(dic, ctf_type); in lookup_type() 1179 build_array_ctf_range(reader *rdr, ctf_dict_t *dic, in build_array_ctf_range() argument 1189 type_base_sptr index_type = rdr->build_type(dic, index); in build_array_ctf_range() 1664 /// @param dic th 1669 dic_type_key(ctf_dict_t *dic, ctf_id_t ctf_type) dic_type_key() argument [all...] |
/third_party/python/Lib/test/ |
H A D | datetimetester.py | 1227 dic = {d: 1} 1228 dic[e] = 2 1229 self.assertEqual(len(dic), 1) 1230 self.assertEqual(dic[d], 2) 1231 self.assertEqual(dic[e], 2) 1239 dic = {d: 1} 1240 dic[e] = 2 1241 self.assertEqual(len(dic), 1) 1242 self.assertEqual(dic[d], 2) 1243 self.assertEqual(dic[ [all...] |
H A D | _test_multiprocessing.py | 4830 dic = {} 4843 dic[r] = [] 4853 dic[r].append(msg) 4856 for v in dic.values():
|
/third_party/lzma/CPP/7zip/Compress/ |
H A D | LzmaDecoder.cpp | 177 const HRESULT res2 = WriteStream(outStream, _state.dic + wrPos, _state.dicPos - wrPos);
in CodeSpec()
|
/third_party/python/Lib/multiprocessing/ |
H A D | managers.py | 962 dic = {} 966 return self._callmethod(%r, args, kwds)''' % (meth, meth), dic) 968 ProxyType = type(name, (BaseProxy,), dic)
|