HomeSort by relevance Sort by last modified time
    Searched refs:first_code (Results 1 - 7 of 7) sorted by null

  /external/grpc-grpc/test/core/surface/
byte_buffer_reader_test.cc 42 int first_code, second_code; local
50 first_code = grpc_byte_buffer_reader_next(&reader, &first_slice);
51 GPR_ASSERT(first_code != 0);
64 int first_code, second_code; local
73 first_code = grpc_byte_buffer_reader_next(&reader, &first_slice);
74 GPR_ASSERT(first_code != 0);
87 int first_code, second_code; local
95 first_code = grpc_byte_buffer_reader_next(&reader, &first_slice);
96 GPR_ASSERT(first_code != 0);
  /external/pdfium/core/fpdfapi/font/
cpdf_cidfont.cpp 791 uint32_t first_code = 0; local
801 if (first_code >
808 result->push_back(first_code);
809 result->push_back(first_code);
812 first_code++;
817 first_code = pObj->GetInteger();
825 result->push_back(first_code);
  /external/v8/src/wasm/baseline/
liftoff-register.h 262 unsigned first_code = base::bits::CountTrailingZeros(regs_); local
263 return LiftoffRegister::from_liftoff_code(first_code);
  /external/ImageMagick/coders/
gif.c 125 first_code,
348 lzw_info->first_code=(size_t) GetNextLZWCode(lzw_info,lzw_info->bits);
349 lzw_info->last_code=lzw_info->first_code;
350 } while (lzw_info->first_code == lzw_info->clear_code);
351 return((int) lzw_info->first_code);
367 PushLZWStack(lzw_info->stack,lzw_info->first_code);
381 lzw_info->first_code=lzw_info->table[1][value];
382 PushLZWStack(lzw_info->stack,lzw_info->first_code);
387 lzw_info->table[1][lzw_info->slot]=lzw_info->first_code;
122 first_code, member in struct:_LZWInfo
    [all...]
  /external/iperf3/src/
cjson.c 536 unsigned int first_code = 0; local
550 first_code = parse_hex4(first_sequence + 2);
553 if (((first_code >= 0xDC00) && (first_code <= 0xDFFF)))
559 if ((first_code >= 0xD800) && (first_code <= 0xDBFF))
588 codepoint = 0x10000 + (((first_code & 0x3FF) << 10) | (second_code & 0x3FF));
593 codepoint = first_code;
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
cmap_table.cc 481 int32_t first_code = FirstCode(high_byte); local
484 if (low_byte < first_code || low_byte >= first_code + entry_count) {
494 (low_byte - first_code) * DataSize::kUSHORT;
    [all...]
  /external/freetype/src/sfnt/
ttcmap.c 346 FT_UInt first_code, code_count, offset; local
350 first_code = TT_NEXT_USHORT( p );
362 if ( first_code >= 256 || code_count > 256 - first_code )
    [all...]

Completed in 446 milliseconds