HomeSort by relevance Sort by last modified time
    Searched full:last (Results 476 - 500 of 31774) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.27/zlib/examples/
gzlog.c 18 valid state. The last data to be appended or compressed is saved in an
22 gzlog maintains another auxiliary file with the last 32K of data from the
32 foo.add -- last message to append or last data to compress
33 foo.dict -- dictionary of the last 32K of data for next compression
48 extra field has the necessary information to restore the start of the last
115 - Pointer to the last stored block length. This is the same as above, but
116 for the last stored block of the uncompressed data in the gzip file.
119 stored block as added, at which point the last stored block length pointer
121 different, the first bit of the last stored block header is eight bits, o
297 off_t last; \/* offset of last stored block first length byte *\/ member in struct:log
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
SystemResourceTable.h 41 /// Last Attempt Status Values
81 /// The last attempt version field describes the last firmware version for which
83 /// Last Attempt Version is updated each time an UpdateCapsule() is attempted for
92 /// The last attempt status field describes the result of the last firmware update
  /external/curl/lib/
slist.c 29 /* The last #include files should be: */
33 /* returns last node in linked list */
42 /* loop through to find the last item */
61 struct curl_slist *last; local
77 last = slist_get_last(list);
78 last->next = new_item;
  /external/kernel-headers/original/uapi/linux/
msg.h 20 struct msg *msg_last; /* last message in queue,unused */
21 __kernel_time_t msg_stime; /* last msgsnd time */
22 __kernel_time_t msg_rtime; /* last msgrcv time */
23 __kernel_time_t msg_ctime; /* last change time */
29 __kernel_ipc_pid_t msg_lspid; /* pid of last msgsnd */
30 __kernel_ipc_pid_t msg_lrpid; /* last receive pid */
  /external/libcxx/test/libcxx/utilities/memory/util.smartptr/
race_condition.pass.cpp 63 int last = p.use_count(); local
65 assert(last >= 4);
67 if (last != new_val) ++shared_changes_count;
69 last = w.use_count();
71 assert(last >= 4);
73 if (last != new_val) ++weak_changes_count;
  /external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
erase_iter_iter.invalidation.pass.cpp 26 typename C::iterator last = first + num; local
27 typename C::iterator it1 = last;
30 c.erase (first, last);
45 typename C::iterator last = c.end(); local
46 typename C::iterator first = last - num;
50 c.erase (first, last);
  /external/parameter-framework/upstream/utility/
Utility.h 42 /** Join all elements in [first, last[ with op.
49 * let [first, last[ = list<string>{"1", "2", "3"}
50 * then join(first, last, op) == "1|2|3"
54 T join(InputIt first, InputIt last, BinaryOperation op, T empty = T{})
56 if (first == last) {
61 return std::accumulate(first, last, init, op);
  /external/pdfium/third_party/agg23/
agg_shorten_path.h 43 vertex_type& last = vs[n]; local
45 float x = prev.x + (last.x - prev.x) * d;
46 float y = prev.y + (last.y - prev.y) * d;
47 last.x = x;
48 last.y = y;
49 if(!prev(last)) {
  /external/v8/src/compiler/
frame-elider.cc 56 const Instruction* last = local
58 if (last->IsThrow() || last->IsTailCall() ||
59 last->IsDeoptimizeCall()) {
65 DCHECK(last->IsRet() || last->IsJump());
  /libcore/luni/src/main/java/android/system/
StructStat.java 56 /** Seconds part of time of last access. */
59 /** StructTimespec with time of last access. */
62 /** Seconds part of time of last data modification. */
65 /** StructTimespec with time of last modification. */
68 /** Seconds part of time of last status change */
71 /** StructTimespec with time of last status change. */
  /prebuilts/go/darwin-x86/src/cmd/vet/
rangeloop.go 8 instances where the defer or go statement is the last statement in the loop
68 // if it's the last one in the loop body.
75 var last *ast.CallExpr
78 last = s.Call
80 last = s.Call
84 lit, ok := last.Fun.(*ast.FuncLit)
  /prebuilts/go/darwin-x86/src/encoding/xml/
example_test.go 21 LastName string `xml:"name>last"`
43 // <last>Doe</last>
61 LastName string `xml:"name>last"`
83 // <last>Doe</last>
  /prebuilts/go/linux-x86/src/cmd/vet/
rangeloop.go 8 instances where the defer or go statement is the last statement in the loop
68 // if it's the last one in the loop body.
75 var last *ast.CallExpr
78 last = s.Call
80 last = s.Call
84 lit, ok := last.Fun.(*ast.FuncLit)
  /prebuilts/go/linux-x86/src/encoding/xml/
example_test.go 21 LastName string `xml:"name>last"`
43 // <last>Doe</last>
61 LastName string `xml:"name>last"`
83 // <last>Doe</last>
  /prebuilts/misc/common/swig/include/2.0.11/octave/
std_map.i 33 OctMapIterator_T(OutIterator curr, OutIterator first, OutIterator last, octave_value seq)
34 : OctSwigIteratorClosed_T<OutIterator,ValueType,FromOper>(curr, first, last, seq)
44 OctMapKeyIterator_T(OutIterator curr, OutIterator first, OutIterator last, octave_value seq)
45 : OctMapIterator_T<OutIterator, FromOper>(curr, first, last, seq)
61 OctMapValueIterator_T(OutIterator curr, OutIterator first, OutIterator last, octave_value seq)
62 : OctMapIterator_T<OutIterator, FromOper>(curr, first, last, seq)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/memory/util.smartptr/
race_condition.pass.cpp 63 int last = p.use_count(); local
65 assert(last >= 4);
67 if (last != new_val) ++shared_changes_count;
69 last = w.use_count();
71 assert(last >= 4);
73 if (last != new_val) ++weak_changes_count;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.modifiers/
erase_iter_iter.invalidation.pass.cpp 26 typename C::iterator last = first + num; local
27 typename C::iterator it1 = last;
30 c.erase (first, last);
45 typename C::iterator last = c.end(); local
46 typename C::iterator first = last - num;
50 c.erase (first, last);
  /external/zlib/src/contrib/ada/
zlib.adb 62 -- Simple_GZip_Header'Last > Footer_Array'Last, so do not make
63 -- Simple_GZip_Header'Last <= Footer_Array'Last.
220 Filter.Offset := Simple_GZip_Header'Last + 1;
251 Last : Stream_Element_Offset;
253 Translate (Filter, No_Data, Last, Out_Data, Out_Last, Flush);
269 Last : Stream_Element_Offset;
275 Data_In (In_Buffer, Last);
282 In_Data => In_Buffer (In_First .. Last),
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/ada/
zlib.adb 62 -- Simple_GZip_Header'Last > Footer_Array'Last, so do not make
63 -- Simple_GZip_Header'Last <= Footer_Array'Last.
220 Filter.Offset := Simple_GZip_Header'Last + 1;
251 Last : Stream_Element_Offset;
253 Translate (Filter, No_Data, Last, Out_Data, Out_Last, Flush);
269 Last : Stream_Element_Offset;
275 Data_In (In_Buffer, Last);
282 In_Data => In_Buffer (In_First .. Last),
    [all...]
  /art/libartbase/base/
iteration_range.h 25 // range [first, last) defined by two iterators.
35 IterationRange(iterator first, iterator last) : first_(first), last_(last) { }
  /external/autotest/site_utils/
count_jobs.py 7 """Counts the number of jobs created in the last 24 hours."""
25 """Returns the number of jobs kicked off in the last |duration| minutes.
34 """Counts the number of AFE jobs in the last day and report to monarch."""
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
TBCPadding.java 10 * This padding pads the block out with the compliment of the last bit
42 * Note: this assumes that the last block of plain text is always
45 * should be the same as the last block of plain text.
  /external/curl/docs/cmdline-opts/
range.d 18 specifies the last 500 bytes
24 specifies the first and last byte only(*)(HTTP)
46 If this option is used several times, the last one will be used.
  /external/e2fsprogs/lib/ext2fs/
hashmap.c 26 h->first = h->last = NULL;
47 if (!h->last)
48 h->last = e;
  /external/e2fsprogs/tests/
filter.sed 16 /^Last write time:/d
17 /^Last mount time:/d
18 /^Last checked:/d

Completed in 1289 milliseconds

<<11121314151617181920>>