HomeSort by relevance Sort by last modified time
    Searched defs:first (Results 351 - 375 of 3938) sorted by null

<<11121314151617181920>>

  /external/ImageMagick/MagickCore/
vision.c 173 first,
562 first=strtol(p,&p,10);
563 if (first < 0)
564 first+=(long) component_image->colors;
565 last=first;
574 for (step=first > last ? -1 : 1; first != (last+step); first+=step)
575 object[first].census++;
595 first=strtol(p,&p,10)
171 first, local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
CombinedEventsManager.java 44 /** First active event. */
45 private EventState first; field in class:CombinedEventsManager
55 first = null;
128 first = null;
151 if (first == null) {
152 first = state;
155 if (state.getEventTime() < first.getEventTime()) {
156 first = state;
159 if (state.getEventTime() > first.getEventTime()) {
160 first = state
    [all...]
  /external/blktrace/btt/
list.h 171 * list_first - Returns first entry on list, or NULL if empty
194 struct list_head *first = list->next; local
198 first->prev = head;
199 head->next = first;
208 * * @head: the place to add it in the first list.
  /external/boringssl/src/crypto/x509v3/
v3_crld.c 232 int first = 1; local
237 if (first)
238 first = 0;
244 if (first)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OutputStream.java 174 private boolean first = true; field in class:ASN1OutputStream.ImplicitOutputStream
184 if (first)
186 first = false;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_libbacktrace.cc 89 SymbolizedStack *first; member in struct:__sanitizer::__anon17195::SymbolizeCodeCallbackArg
98 info->FillModuleInfo(first->info.module, first->info.module_offset);
102 CHECK_EQ(addr, first->info.address);
160 data.first = stack;
  /external/deqp/external/openglcts/modules/gl/
gl4cShaderDrawParametersTests.hpp 45 GLuint first; member in struct:gl4cts::__anon17507
  /external/deqp/framework/referencerenderer/
rrPrimitiveAssembler.hpp 150 VertexPacket* const first = vertices[0]; local
153 *(outputIterator++) = Triangle(first, vertices[ndx], vertices[ndx+1], provokingOffset);
475 // first
  /external/deqp/modules/gles31/stress/
es31sDrawTests.cpp 77 deUint32 first; member in struct:deqp::gles31::Stress::__anon18860::DrawArraysCommand
240 drawCommand.first = (m_op == INVALID_DATA_FIRST) ? (overBoundDrawCount) : (0);
248 << "\n\tfirst\t" << drawCommand.first
464 spec.first = random.chooseWeighted<int, const int*, const float*> (DE_ARRAY_BEGIN(firsts), DE_ARRAY_END(firsts), firstWeights);
  /external/e2fsprogs/e2fsck/
mtrace.h 131 size_t first; /* First free fragment of the block. */ member in struct:__anon19017::__anon19018::__anon19019::__anon19020
138 (that may be the first of a free cluster). */
147 /* Pointer to first block of the heap. */
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 24 vector_int_pair(const VectorType &v, int i) : first(v), second(i) {}
26 VectorType first; member in struct:Eigen::internal::vector_int_pair
155 } else { //if the first child is a volume and the second is an object
176 inline bool operator()(const VIPair &v1, const VIPair &v2) const { return v1.first[dim] < v2.first[dim]; }
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IterationController.h 98 bool first() { return m_nit == 0; } function in class:Eigen::IterationController
  /external/elfutils/libdwfl/
dwfl_report_elf.c 69 bool first = true; local
84 unless we just layed out the first section at 0 when
90 /* This is the first section assigned a location.
137 if (first || end < shdr->sh_addr + shdr->sh_size)
139 if (first || bias > shdr->sh_addr)
151 first = false;
  /external/fio/lib/
prio_tree.c 81 struct prio_tree_node *first = NULL, *prev, *last = NULL; local
92 if (first == NULL) {
93 first = root->prio_tree_node;
95 INIT_PRIO_TREE_NODE(first);
96 last = first;
109 if (first) {
110 node->left = first;
111 first->parent = node;
398 * Get the first prio_tree_node that overlaps with the interval [radix_index,
  /external/fonttools/Lib/fontTools/
merge.py 38 first = next(t)
39 assert all(item == first for item in t), "Expected all items to be equal: %s" % lst
40 return first
42 def first(lst): function
160 'maxStorage': first,
161 'maxFunctionDefs': first,
162 'maxInstructionDefs': first,
177 14: bitwise_and, # Last resort font. FIXME? equal or first may be better
195 'macStyle': first,
213 'caretSlopeRise': first,
    [all...]
  /external/freetype/src/cache/
ftccmap.c 73 FT_UInt32 first; /* first character in node */ member in struct:FTC_CMapNodeRec_
124 node->first = (query->char_code / FTC_CMAP_INDICES_MAX) *
165 FT_UInt32 offset = (FT_UInt32)( query->char_code - node->first );
277 FT_ASSERT( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first ) <
281 if ( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first >=
286 FTC_CMAP_NODE( node )->first];
318 FTC_CMAP_NODE( node )->first]
  /external/google-breakpad/src/client/
minidump_file_writer_unittest.cc 80 const char *first = "First String"; local
81 ASSERT_TRUE(writer.WriteString(first, 0, &strings.get()->first_string));
  /external/guava/guava/src/com/google/common/collect/
EmptyContiguousSet.java 37 @Override public C first() { method in class:EmptyContiguousSet
Lists.java 287 // We copy elements to an ArrayList first, rather than incurring the
296 * Returns an unmodifiable list containing the specified first element and
307 * @param first the first element
311 public static <E> List<E> asList(@Nullable E first, E[] rest) {
312 return new OnePlusArrayList<E>(first, rest);
318 final E first; field in class:Lists.OnePlusArrayList
321 OnePlusArrayList(@Nullable E first, E[] rest) {
322 this.first = first;
361 final E first; field in class:Lists.TwoPlusArrayList
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Lists.java 262 * Returns an unmodifiable list containing the specified first element and
273 * @param first the first element
277 public static <E> List<E> asList(@Nullable E first, E[] rest) {
278 return new OnePlusArrayList<E>(first, rest);
284 final E first; field in class:Lists.OnePlusArrayList
287 OnePlusArrayList(@Nullable E first, E[] rest) {
288 this.first = first;
297 return (index == 0) ? first : rest[index - 1]
327 final E first; field in class:Lists.TwoPlusArrayList
    [all...]
RegularContiguousSet.java 68 return new AbstractSequentialIterator<C>(first()) {
86 @Override public C first() { method
95 long distance = domain.distance(first(), last());
124 C lowerEndpoint = Ordering.natural().max(this.first(), other.first());
147 return this.first().equals(that.first())
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SortedSetNavigationTester.java 68 sortedSet.first();
85 assertEquals(a, sortedSet.first());
95 assertEquals(a, sortedSet.first());
  /external/guava/guava-tests/test/com/google/common/collect/
SynchronizedNavigableSetTest.java 138 @Override public E first() { method in class:SynchronizedNavigableSetTest.TestSet
140 return delegate().first();
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-arabic-table.hh 374 uint16_t first; member in struct:ligature_set_t
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralRanges.java 95 StandardPlural first = null; local
101 if (first == null) {
102 first = item;
105 if (first != item) {
109 return first;
119 StandardPlural first = null; local
125 if (first == null) {
126 first = item;
129 if (first != item) {
137 return first;
    [all...]

Completed in 865 milliseconds

<<11121314151617181920>>