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

  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
avc_bitstream.cpp 74 stream->curr_word = stream->next_word = 0;
100 stream->curr_word |= (stream->next_word >> stream->incnt); // stream->incnt cannot be 32
101 stream->next_word <<= (31 - stream->incnt);
102 stream->next_word <<= 1;
122 stream->next_word = 0;
126 stream->next_word |= (v[i] << ((3 - i) << 3));
130 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
132 stream->next_word <<= (31 - num_bits);
133 stream->next_word <<= 1;
149 stream->next_word = ((uint32)v[0] << 24) | (v[1] << 16) | (v[2] << 8) | v[3]
    [all...]
avcdec_int.h 48 uint next_word; /* in case for old data in previous buffer hasn't been flushed. */ member in struct:tagDecBitstream
  /external/chromium/base/
atomicops_unittest.cc 20 AtomicType next_word; member in struct:__anon2124
29 s.next_word = next_word_value;
34 EXPECT_EQ(s.next_word, next_word_value);
39 EXPECT_EQ(s.next_word, next_word_value);
44 EXPECT_EQ(s.next_word, next_word_value);
49 EXPECT_EQ(s.next_word, next_word_value);
54 EXPECT_EQ(s.next_word, next_word_value);
59 EXPECT_EQ(s.next_word, next_word_value);
64 EXPECT_EQ(s.next_word, next_word_value);
69 EXPECT_EQ(s.next_word, next_word_value)
    [all...]
  /external/chromium/base/allocator/
allocator_unittests.cc 98 AtomicType next_word; member in struct:__anon2120::__anon2121
107 s.next_word = next_word_value;
112 EXPECT_EQ(s.next_word, next_word_value);
117 EXPECT_EQ(s.next_word, next_word_value);
122 EXPECT_EQ(s.next_word, next_word_value);
127 EXPECT_EQ(s.next_word, next_word_value);
132 EXPECT_EQ(s.next_word, next_word_value);
137 EXPECT_EQ(s.next_word, next_word_value);
142 EXPECT_EQ(s.next_word, next_word_value);
147 EXPECT_EQ(s.next_word, next_word_value)
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 55 stream->curr_word |= (stream->next_word >> stream->incnt); // stream->incnt cannot be 32
56 stream->next_word <<= (31 - stream->incnt);
57 stream->next_word <<= 1;
77 stream->next_word = 0;
81 stream->next_word |= (v[i] << ((3 - i) << 3));
85 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
87 stream->next_word <<= (31 - num_bits);
88 stream->next_word <<= 1;
104 stream->next_word = ((uint32)v[0] << 24) | (v[1] << 16) | (v[2] << 8) | v[3];
107 stream->curr_word |= (stream->next_word >> num_bits); // this is saf
    [all...]
mp4lib_int.h 37 uint32 next_word; member in struct:tagBitstream

Completed in 289 milliseconds