Lines Matching refs:opstr
128 const CFF1TopDictVal &opstr, in serialize()
133 OpCode op = opstr.op; in serialize()
171 supp_op.str.str = opstr.str.str + opstr.last_arg_offset; in serialize()
172 if ( unlikely (!(opstr.str.len >= opstr.last_arg_offset + 3))) in serialize()
174 supp_op.str.len = opstr.str.len - opstr.last_arg_offset; in serialize()
180 return_trace (CFFTopDict_OpSerializer<CFF1TopDictVal>::serialize (c, opstr, mod.offsets)); in serialize()
185 unsigned int calculate_serialized_size (const CFF1TopDictVal &opstr) const in calculate_serialized_size()
187 OpCode op = opstr.op; in calculate_serialized_size()
209 …return ((OpCode_Size (OpCode_shortint) + 2) * 2) + (opstr.str.len - opstr.last_arg_offset)/* suppl… in calculate_serialized_size()
212 return CFFTopDict_OpSerializer<CFF1TopDictVal>::calculate_serialized_size (opstr); in calculate_serialized_size()
240 const OpStr &opstr, in serialize()
245 if (opstr.op == OpCode_FontName) in serialize()
246 return_trace (FontDict::serialize_uint2_op (c, opstr.op, mod.fontName)); in serialize()
248 return_trace (SUPER::serialize (c, opstr, mod.privateDictInfo)); in serialize()
251 unsigned int calculate_serialized_size (const OpStr &opstr) const in calculate_serialized_size()
253 if (opstr.op == OpCode_FontName) in calculate_serialized_size()
256 return SUPER::calculate_serialized_size (opstr); in calculate_serialized_size()