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

  /external/chromium/base/
atomicops_unittest.cc 24 AtomicType next_word; member in struct:__anon2627
33 s.next_word = next_word_value;
38 EXPECT_EQ(s.next_word, next_word_value);
43 EXPECT_EQ(s.next_word, next_word_value);
48 EXPECT_EQ(s.next_word, next_word_value);
53 EXPECT_EQ(s.next_word, next_word_value);
58 EXPECT_EQ(s.next_word, next_word_value);
63 EXPECT_EQ(s.next_word, next_word_value);
68 EXPECT_EQ(s.next_word, next_word_value);
73 EXPECT_EQ(s.next_word, next_word_value)
    [all...]
  /external/chromium/base/allocator/
allocator_unittests.cc 98 AtomicType next_word; member in struct:__anon2623::__anon2624
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/av/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
  /external/webkit/Source/WebKit/android/content/
address_detector.cpp 195 size_t next_word = 1; local
196 for (; next_word <= kMaxAddressWords + 1; ++next_word) {
199 if (next_word == words.size()) {
219 const Word& current_word = words[next_word];
233 next_house_number_word = next_word;
240 if (next_word <= kMaxLocationNameDistance &&
247 if (next_word > kMinAddressWords) {
250 size_t state_first_word = next_word;
286 next_word = state_last_word
    [all...]

Completed in 131 milliseconds