Searched refs:std (Results 51 - 75 of 33291) sorted by last modified time

1234567891011>>

/external/webrtc/src/system_wrappers/source/
H A Dlist_stl.cc125 std::list<ListItem*>::iterator item_iter = list_.begin();
137 // std::list::end() addresses the last item + 1. Decrement so that the
139 std::list<ListItem*>::iterator item_iter = list_.end();
152 std::list<ListItem*>::iterator item_iter = item->this_iter_;
169 std::list<ListItem*>::iterator item_iter = item->this_iter_;
196 std::list<ListItem*>::iterator insert_location = list_.begin();
225 std::list<ListItem*>::iterator insert_location = list_.begin();
H A Dlist_stl.h31 mutable std::list<ListItem*>::iterator this_iter_;
61 mutable std::list<ListItem*> list_;
H A Dmap.cc54 // Remove all map items. Please note that std::map::clear() can't be
56 // associated with it (i.e. using std::map::clear would introduce a
76 std::map<int, MapItem*>::const_iterator it = map_.begin();
86 std::map<int, MapItem*>::const_reverse_iterator it = map_.rbegin();
100 std::map<int, MapItem*>::const_iterator it = map_.find(item->item_id_);
119 std::map<int, MapItem*>::const_iterator it = map_.find(item->item_id_);
131 std::map<int, MapItem*>::const_iterator it = map_.find(id);
145 std::map<int, MapItem*>::iterator it = map_.find(item->item_id_);
157 std::map<int, MapItem*>::iterator it = map_.find(id);
H A Dsort.cc25 #include <algorithm> // std::sort
241 std::sort(dataT, dataT + numOfElements);
249 ptrSortKey = new(std::nothrow) SortKey<KeyType>[numOfElements];
271 WebRtc_UWord8* ptrDataSorted = new(std::nothrow) WebRtc_UWord8
323 std::sort(ptrSortKey, ptrSortKey + numOfElements,
381 // Fall back to std::sort for 64-bit types and floats due to compiler
439 SortKey* ptrSortKey = new(std::nothrow) SortKey[numOfElements];
493 WebRtc_UWord8* ptrDataSorted = new(std::nothrow) WebRtc_UWord8
512 // Fall back to std::sort for 64-bit types and floats due to compiler
H A Dtrace_unittest.cc26 std::string trace_file = webrtc::test::OutputPath() +
/external/webrtc/src/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp108 size_bins(std::vector<size_t> &bin_sizes, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset, unsigned &cache_end, unsigned bin_count)
125 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset
126 , std::vector<size_t> &bin_sizes)
194 //using std::sort if its worst-case is better
196 std::sort(lastPos, bin_cache[u]);
233 , const std::vector<size_t> &bin_sizes, const unsigned log_divisor, const div_type div_min)
242 spread_sort_rec(RandomAccessIter first, RandomAccessIter last, std::vector<RandomAccessIter> &bin_cache, unsigned cache_offset
243 , std::vector<size_t> &bin_sizes, right_shift shift, compare comp)
281 std
[all...]
/external/webrtc/src/system_wrappers/test/TestSort/
H A DTestSort.cpp106 if (std::numeric_limits<Type>::is_integer)
109 if (std::numeric_limits<Type>::is_signed)
116 return static_cast<Type>(floatRand * std::numeric_limits<Type>::max());
167 //std::sort(data, data + DataLength, KeyLessThan<KeyType>());
175 //std::sort(key, key + DataLength);
192 std::sort(keyRef, keyRef + DataLength);
230 printf("Sort data differs from std::sort reference\nExiting...\n");
/external/webrtc/test/testsupport/
H A Dfileutils.cc45 std::string ProjectRootPath() {
46 std::string working_dir = WorkingDir();
51 std::string current_path(working_dir);
55 std::string root_filename = current_path + kPathDelimiter +
71 std::string OutputPath() {
72 std::string path = ProjectRootPath();
83 std::string WorkingDir() {
89 return std::string(path_buffer);
93 bool CreateDirectory(std::string directory_name) {
113 bool FileExists(std
[all...]
H A Dfileutils.h25 // const std::string kInputFile = webrtc::test::ProjectRootPath() +
92 std::string ProjectRootPath();
103 std::string OutputPath();
124 std::string ResourcePath(std::string name, std::string extension);
129 std::string WorkingDir();
134 bool CreateDirectory(std::string directory_name);
138 size_t GetFileSize(std::string filename);
H A Dfileutils_unittest.cc25 static const std::string kDummyDir = "file_utils_unittest_dummy_dir";
26 static const std::string kResourcesDir = "resources";
27 static const std::string kTestName = "fileutils_unittest";
28 static const std::string kExtension = "tmp";
30 typedef std::list<std::string> FileList;
45 std::string resources_path = original_working_dir_ + kPathDelimiter +
80 std::remove(empty_dummy_dir_.c_str());
90 static std::string empty_dummy_dir_;
92 static std
[all...]
H A Dframe_reader.cc20 FrameReaderImpl::FrameReaderImpl(std::string input_filename,
H A Dframe_reader.h55 FrameReaderImpl(std::string input_filename, int frame_length_in_bytes);
64 std::string input_filename_;
H A Dframe_reader_unittest.cc19 const std::string kInputFilename = "temp_inputfile.tmp";
20 const std::string kInputFileContents = "baz";
31 std::remove(kInputFilename.c_str());
44 std::remove(kInputFilename.c_str());
H A Dframe_writer.cc18 FrameWriterImpl::FrameWriterImpl(std::string output_filename,
H A Dframe_writer.h53 FrameWriterImpl(std::string output_filename, int frame_length_in_bytes);
61 std::string output_filename_;
H A Dframe_writer_unittest.cc19 const std::string kOutputFilename = "temp_outputfile.tmp";
28 std::remove(kOutputFilename.c_str());
35 std::remove(kOutputFilename.c_str());
/external/webrtc/test/testsupport/metrics/
H A Dvideo_metrics.cc59 std::vector<FrameResult>::iterator iter;
H A Dvideo_metrics.h31 min(std::numeric_limits<double>::max()),
32 max(std::numeric_limits<double>::min()),
41 std::vector<FrameResult> frames;
H A Dvideo_metrics_unittest.cc41 std::remove(kEmptyFileName);
45 std::string video_file_;
/external/valgrind/main/none/tests/ppc64/
H A Djm-int.stdout.exp4721 std 0000000000000000, 0 => 0000000000000000, 0 (00000000 00000000)
4722 std 0000001cbe991def, 8 => 0000001cbe991def, 0 (00000000 00000000)
4723 std ffffffffffffffff, 16 => ffffffffffffffff, 0 (00000000 00000000)
4724 std 0000000000000000, -16 => 0000000000000000, 0 (00000000 00000000)
4725 std 0000001cbe991def, -8 => 0000001cbe991def, 0 (00000000 00000000)
4726 std ffffffffffffffff, 0 => ffffffffffffffff, 0 (00000000 00000000)
/external/valgrind/main/none/tests/x86/
H A Dinsn_basic.def948 std eflags[0x400,0x000] : => eflags[0x400,0x400]
949 std eflags[0x400,0x400] : => eflags[0x400,0x400]
/external/valgrind/main/perf/
H A Dtinycc.c3136 DEF_ASM_OP0(std, 0xfd)
3593 DEF_ASM_OP0(std, 0xfd)
4468 DEF_ASM_OP0(std, 0xfd)
4925 DEF_ASM_OP0(std, 0xfd)
15175 DEF_ASM_OP0(std, 0xfd)
15637 DEF_ASM_OP0(std, 0xfd)
/external/vixl/src/a64/
H A Dassembler-a64.cc2198 std::list<Literal*>::iterator it;
2236 std::list<Literal*>::iterator it;
H A Dassembler-a64.h1869 std::list<Literal*> literals_;
H A Ddebugger-a64.cc273 static DebugCommand* Build(std::vector<Token*> args);
287 static DebugCommand* Build(std::vector<Token*> args);
305 static DebugCommand* Build(std::vector<Token*> args);
317 static DebugCommand* Build(std::vector<Token*> args);
339 static DebugCommand* Build(std::vector<Token*> args);
369 static DebugCommand* Build(std::vector<Token*> args);
384 explicit UnknownCommand(std::vector<Token*> args) : args_(args) {}
390 std::vector<Token*> args_;
396 InvalidCommand(std::vector<Token*> args, int index, const char* cause)
403 std
[all...]

Completed in 1609 milliseconds

1234567891011>>