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

  /external/chromium_org/net/spdy/
hpack_huffman_table.h 36 // a portion of the prefix mapped to DecodeEntry, which in turn either
39 struct NET_EXPORT_PRIVATE DecodeEntry {
40 DecodeEntry();
41 DecodeEntry(uint8 next_table_index, uint8 length, uint16 symbol_id);
103 const DecodeEntry& Entry(const DecodeTable& table, uint32 index) const;
106 const DecodeEntry& entry);
109 std::vector<DecodeEntry> decode_entries_;
hpack_huffman_table_test.cc 29 typedef HpackHuffmanTable::DecodeEntry DecodeEntry;
53 std::vector<DecodeEntry> decode_entries(const DecodeTable& decode_table) {
54 std::vector<DecodeEntry>::const_iterator begin =
56 return std::vector<DecodeEntry>(begin, begin + decode_table.size());
59 std::vector<DecodeEntry> entries = decode_entries(table);
65 const DecodeEntry& entry = entries[i];
72 const DecodeEntry& next = entries[i + j];
113 const DecodeEntry& lhs = std::tr1::get<0>(arg);
114 const DecodeEntry& rhs = std::tr1::get<1>(arg)
    [all...]
hpack_huffman_table.cc 40 HpackHuffmanTable::DecodeEntry::DecodeEntry()
43 HpackHuffmanTable::DecodeEntry::DecodeEntry(uint8 next_table_index,
133 DecodeEntry entry = Entry(table, index);
166 const DecodeEntry& entry = Entry(table, j);
198 const HpackHuffmanTable::DecodeEntry& HpackHuffmanTable::Entry(
208 const DecodeEntry& entry) {
291 const DecodeEntry& entry = Entry(*table, index);
  /external/chromium_org/third_party/leveldatabase/src/table/
block.cc 53 static inline const char* DecodeEntry(const char* p, const char* limit,
174 const char* key_ptr = DecodeEntry(data_ + region_offset,
239 p = DecodeEntry(p, limit, &shared, &non_shared, &value_length);

Completed in 137 milliseconds