Searched refs:first_code (Results 1 – 8 of 8) sorted by relevance
/external/grpc-grpc/test/core/surface/ |
D | byte_buffer_reader_test.cc | 42 int first_code, second_code; in test_read_one_slice() local 50 first_code = grpc_byte_buffer_reader_next(&reader, &first_slice); in test_read_one_slice() 51 GPR_ASSERT(first_code != 0); in test_read_one_slice() 64 int first_code, second_code; in test_read_one_slice_malloc() local 73 first_code = grpc_byte_buffer_reader_next(&reader, &first_slice); in test_read_one_slice_malloc() 74 GPR_ASSERT(first_code != 0); in test_read_one_slice_malloc() 87 int first_code, second_code; in test_read_none_compressed_slice() local 95 first_code = grpc_byte_buffer_reader_next(&reader, &first_slice); in test_read_none_compressed_slice() 96 GPR_ASSERT(first_code != 0); in test_read_none_compressed_slice()
|
/external/pdfium/core/fpdfapi/font/ |
D | cpdf_cidfont.cpp | 791 uint32_t first_code = 0; in LoadMetricsArray() local 801 if (first_code > in LoadMetricsArray() 808 result->push_back(first_code); in LoadMetricsArray() 809 result->push_back(first_code); in LoadMetricsArray() 812 first_code++; in LoadMetricsArray() 817 first_code = pObj->GetInteger(); in LoadMetricsArray() 825 result->push_back(first_code); in LoadMetricsArray()
|
/external/ImageMagick/coders/ |
D | gif.c | 122 first_code, member 343 lzw_info->first_code=(size_t) GetNextLZWCode(lzw_info,lzw_info->bits); in ReadBlobLZWByte() 344 lzw_info->last_code=lzw_info->first_code; in ReadBlobLZWByte() 345 } while (lzw_info->first_code == lzw_info->clear_code); in ReadBlobLZWByte() 346 return((int) lzw_info->first_code); in ReadBlobLZWByte() 362 PushLZWStack(lzw_info->stack,lzw_info->first_code); in ReadBlobLZWByte() 376 lzw_info->first_code=lzw_info->table[1][value]; in ReadBlobLZWByte() 377 PushLZWStack(lzw_info->stack,lzw_info->first_code); in ReadBlobLZWByte() 382 lzw_info->table[1][lzw_info->slot]=lzw_info->first_code; in ReadBlobLZWByte()
|
/external/iperf3/src/ |
D | cjson.c | 536 unsigned int first_code = 0; in utf16_literal_to_utf8() local 550 first_code = parse_hex4(first_sequence + 2); in utf16_literal_to_utf8() 553 if (((first_code >= 0xDC00) && (first_code <= 0xDFFF))) in utf16_literal_to_utf8() 559 if ((first_code >= 0xD800) && (first_code <= 0xDBFF)) in utf16_literal_to_utf8() 588 codepoint = 0x10000 + (((first_code & 0x3FF) << 10) | (second_code & 0x3FF)); in utf16_literal_to_utf8() 593 codepoint = first_code; in utf16_literal_to_utf8()
|
/external/v8/src/wasm/baseline/ |
D | liftoff-register.h | 262 unsigned first_code = base::bits::CountTrailingZeros(regs_); in GetFirstRegSet() local 263 return LiftoffRegister::from_liftoff_code(first_code); in GetFirstRegSet()
|
/external/sfntly/cpp/src/sfntly/table/core/ |
D | cmap_table.cc | 481 int32_t first_code = FirstCode(high_byte); in GlyphId() local 484 if (low_byte < first_code || low_byte >= first_code + entry_count) { in GlyphId() 494 (low_byte - first_code) * DataSize::kUSHORT; in GlyphId()
|
/external/freetype/src/sfnt/ |
D | ttcmap.c | 346 FT_UInt first_code, code_count, offset; in FT_CALLBACK_DEF() local 350 first_code = TT_NEXT_USHORT( p ); in FT_CALLBACK_DEF() 362 if ( first_code >= 256 || code_count > 256 - first_code ) in FT_CALLBACK_DEF()
|
/external/freetype/ |
D | ChangeLog.23 | 4294 include such an empty sub-header (code_count == 0, first_code == 0
|