HomeSort by relevance Sort by last modified time
    Searched defs:at_end (Results 1 - 14 of 14) sorted by null

  /external/mesa3d/src/util/
simple_list.h 168 #define at_end(list, elem) ((elem) == (list)) macro
  /external/google-breakpad/src/common/linux/
elf_symbols_to_module.cc 51 bool at_end; member in struct:google_breakpad::ELFSymbolIterator::Symbol
83 // at_end() is true when it is called.
116 symbol_.at_end = !cursor_;
156 while(!iterator->at_end) {
  /external/tensorflow/tensorflow/core/framework/
reader_base.cc 104 bool at_end = false; local
107 ReadUpToLocked(remaining, keys, values, &num_records_produced, &at_end);
114 if (!at_end && status.ok() && num_records_produced == 0) {
117 " must set *at_end=true, *num_produced > 0 or return an error.");
121 if (status.ok() && at_end) {
138 bool* at_end) {
142 Status status = ReadLocked(&key, &value, &produced, at_end);
172 bool at_end = false; local
173 Status status = ReadLocked(key, value, &produced, &at_end);
175 if (!at_end && status.ok() && !produced)
    [all...]
  /external/google-breakpad/src/common/
stabs_reader.h 123 bool at_end; member in struct:google_breakpad::StabsReader::EntryIterator::Entry
156 // at_end() is true when it is called.
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
TclUtil.py 27 def at_end(self): member in class:TclLexer
73 if self.at_end():
92 if self.at_end():
99 if self.at_end():
111 while not self.at_end():
118 if self.at_end():
125 elif c == '$' and not self.at_end() and (self.look().isalpha() or
145 if self.at_end() or self.look().isspace():
153 while not self.at_end():
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_builder.h 102 at_end() const function in class:brw::fs_builder
brw_vec4_builder.h 98 at_end() const function in class:brw::vec4_builder
  /external/python/cpython3/Objects/stringlib/
unicode_format.h 671 int at_end; local
711 at_end = self->str.start >= self->str.end;
714 if ((c == '}') && (at_end ||
721 if (at_end && c == '{') {
726 if (!at_end) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
string_format.h 728 int at_end; local
769 at_end = self->str.ptr >= self->str.end;
772 if ((c == '}') && (at_end || (c != *self->str.ptr))) {
777 if (at_end && c == '{') {
782 if (!at_end) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
string_format.h 731 int at_end; local
772 at_end = self->str.ptr >= self->str.end;
775 if ((c == '}') && (at_end || (c != *self->str.ptr))) {
780 if (at_end && c == '{') {
785 if (!at_end) {
    [all...]
  /external/python/cpython2/Objects/stringlib/
string_format.h 728 int at_end; local
769 at_end = self->str.ptr >= self->str.end;
772 if ((c == '}') && (at_end || (c != *self->str.ptr))) {
777 if (at_end && c == '{') {
782 if (!at_end) {
    [all...]
  /toolchain/binutils/binutils-2.27/gas/
listing.c 128 int at_end; member in struct:file_info_struct
282 p->at_end = 0;
478 if (file->at_end)
496 file->at_end = 1;
532 file->at_end = 1;
583 file->at_end = 1;
1082 if (!current_file->at_end)
1087 && !current_file->at_end)
1243 && !list->file->at_end)
1279 && !list->file->at_end)
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
ia64-gen.c 2520 int at_end = 0; local
    [all...]
  /external/v8/src/regexp/
jsregexp.h 322 at_end(false),
329 return (at_end == that->at_end) &&
338 at_end |= that->at_end;
372 bool at_end: 1; member in struct:v8::internal::NodeInfo
731 AT_END,
738 return new(on_success->zone()) AssertionNode(AT_END, on_success);
    [all...]

Completed in 821 milliseconds