HomeSort by relevance Sort by last modified time
    Searched defs:first (Results 601 - 625 of 2784) sorted by null

<<21222324252627282930>>

  /external/llvm/include/llvm/IR/
ValueMap.h 59 // All methods will be called with a first argument of type ExtraData. The
60 // default implementations in this class take a templated first argument so
150 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second));
151 return std::make_pair(iterator(MapResult.first), MapResult.second);
156 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second)));
157 return std::make_pair(iterator(MapResult.first), MapResult.second);
313 const KeyT first; member in struct:llvm::ValueMapIterator::ValueTypeProxy
317 return std::make_pair(first, second);
322 ValueTypeProxy Result = {I->first.Unwrap(), I->second};
363 const KeyT first; member in struct:llvm::ValueMapConstIterator::ValueTypeProxy
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SeekableXZInputStream.java 97 * The list is in reverse order: The first element is
136 * this to point to the Check of the first Stream.
360 // is the first Stream in the file.
448 // Initialize curBlockInfo to point to the first Stream.
450 // and .setNext() work to get the first Block when starting
452 IndexDecoder first = (IndexDecoder)streams.get(streams.size() - 1); local
453 curBlockInfo = new BlockInfo(first);
457 queriedBlockInfo = new BlockInfo(first);
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_context.h 156 struct quad_stage *first; /**< points to one of the above stages */ member in struct:softpipe_context::__anon19778
  /external/mesa3d/src/mesa/vbo/
vbo_split_copy.c 332 GLuint first, incr; local
393 (void)split_prim_inplace(prim->mode, &first, &incr);
401 for (k = 0; k < first; k++, j++)
415 assert(j > first - incr);
416 j -= (first - incr);
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 195 protected GenericObject first() { method in class:GenericObjectList
276 Object obj = this.first();
  /external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/
MockWebServerTest.java 109 RecordedRequest first = server.takeRequest(); local
110 assertEquals("GET / HTTP/1.1", first.getRequestLine());
  /external/opencv/cv/src/
cvapprox.cpp 72 _CvPtInfo *array, *first = 0, *current = 0, *prev_current = 0; local
350 first = prev_current = &temp;
369 /* remove first */
370 first->next = current;
373 first->next->next = current;
375 first = current;
544 assert( src_contour->first != 0 );
577 CV_READ_SEQ_ELEM( start_pt, reader ); /* read the first point */
748 assert( src_contour->first != 0 );
782 CV_READ_SEQ_ELEM( start_pt, reader ); /* read the first point *
    [all...]
  /external/opencv3/3rdparty/jinja2/
runtime.py 100 :func:`contextfunction`\s get the active context passed as first argument
169 provided but inject the active context or environment as first
305 first = property(lambda x: x.index0 == 0) variable in class:LoopContext
  /external/opencv3/modules/core/include/opencv2/core/
cvstd.hpp 297 With the first constructor, DefaultDeleter\<Y\>() becomes the associated deleter (so p will
321 With the first two, the same pointer is stored, as well; for the second, Y\* must be convertible
496 String(const char* first, const char* last);
497 template<typename Iterator> String(Iterator first, Iterator last);
637 String::String(const char* first, const char* last)
640 size_t len = (size_t)(last - first);
641 memcpy(allocate(len), first, len); local
645 String::String(Iterator first, Iterator last)
648 size_t len = (size_t)(last - first);
650 while (first != last
    [all...]
  /external/opencv3/modules/imgproc/src/
approx.cpp 66 _CvPtInfo *array = buf, *first = 0, *current = 0, *prev_current = 0; local
325 first = prev_current = &temp;
344 /* remove first */
345 first->next = current;
348 first->next->next = current;
350 first = current;
750 "Use cvApproxChains first" );
786 if( src_seq->first->next == src_seq->first )
787 src = (cv::Point*)src_seq->first->data
    [all...]
  /external/pdfium/third_party/agg23/
agg_rasterizer_scanline_aa.cpp 168 int delta, p, first, dx; local
180 first = poly_base_size;
185 first = 0;
195 m_cur_cell.add_cover(delta, (fx1 + first) * delta);
222 m_cur_cell.add_cover(delta, (fx2 + poly_base_size - first) * delta);
240 int p, rem, mod, lift, delta, first, incr; local
250 first = poly_base_size;
252 first = 0;
256 delta = first - fy1;
260 delta = first + first - poly_base_size
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftoutln.c 70 FT_UInt first; /* index of first point in contour */ local
85 first = 0;
99 v_start = outline->points[first];
109 point = outline->points + first;
110 tags = outline->tags + first;
117 /* check first point to determine origin */
120 /* first point is conic control. Yes, this happens. */
129 /* if both first and last points are conic, */
283 first = (FT_UInt)last + 1
553 FT_Int first, last; local
911 FT_Int c, first, last; local
1044 FT_Int c, n, first; local
    [all...]
  /external/pdfium/third_party/freetype/src/psaux/
psobjs.c 282 /* first character must be already part of the comment */
329 /* first character must be `('; */
406 /* first character must be `<' */
440 /* first character must be the opening brace that */
502 /* the first character which isn't part of the just handled token. */
628 /* first of all, skip leading whitespace */
767 /* first character must be a delimiter or a part of a number */
844 /* first character must be a delimiter or a part of a number */
1712 FT_Int first; local
    [all...]
  /external/selinux/sepolgen/src/sepolgen/
yacc.py 328 # first syntax error. This function is only called if
484 global Nonterminals, First, Follow, Precedence, LRitems
487 Productions = [None] # A list of all of the productions. The first
503 First = { } # A dictionary of precomputed FIRST(x) symbols
1046 def first(beta): function
    [all...]
  /external/skia/src/pathops/
SkOpContour.h 211 SkOpSegment* first() { function in class:SkOpContour
216 const SkOpSegment* first() const { function in class:SkOpContour
SkPathOpsCommon.cpp 16 // find first angle, initialize winding to computed fWindSum
98 // find first angle, initialize winding to computed wind sum
110 SkOpSegment* first = nullptr; local
121 if (!first && (sortable || start->starter(end)->windSum() != SK_MinS32)) {
122 first = segment;
132 if (first) {
138 return first;
308 bool first = true; variable
328 if (first) {
329 first = false
    [all...]
  /external/skia/tools/
create_test_font.cpp 87 const char* first = str.c_str(); local
88 const char* last = first + str.size();
90 while (ptr > first && *--ptr != '\n')
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
ParserImpl.java 92 * FIRST sets:
95 * implicit_document: FIRST(block_node)
621 private boolean first = false; field in class:ParserImpl.ParseFlowSequenceEntry
623 public ParseFlowSequenceEntry(boolean first) {
624 this.first = first;
629 if (!first) {
716 private boolean first = false; field in class:ParserImpl.ParseFlowMappingKey
718 public ParseFlowMappingKey(boolean first) {
719 this.first = first
    [all...]
  /external/speex/libspeex/
nb_celp.h 52 int first; /**< Is this the first frame? */ member in struct:EncState
125 int first; /**< Is this the first frame? */ member in struct:DecState
  /external/toybox/toys/pending/
modprobe.c 94 // Remove first element from the list and return it.
246 // process the tokens[0] contains first word of config line.
426 int rc = 0, first = 1; local
447 if (first) {
453 first = 0;
  /external/tpm2/
RSAKeySieve.c 219 // likelihood, if the number is not prime, the first test fails.
363 // returns the first prime that is equal to the requested starting value. If the starting value is no a prime, then
368 UINT32 first, // IN: the initial prime
376 while(iter->lastPrime < first)
503 // Mask the first bits in the field and the last byte in order to eliminate
575 UINT32 first; local
606 first = bnP->d[0] | 0x80000000;
624 chosen = FindNthSetBit(defaultFieldSize, field,((first % ones) + 1));
859 // first prime by at least 2^100. Since BIGNUMS use words, the check
862 { // bnQ is non-zero, we have a first valu
    [all...]
  /external/v8/src/compiler/
loop-analysis.cc 46 // first from nodes to their inputs, starting at {end}, then in the reverse
191 // Setup loop headers first.
193 // found the loop node first.
196 // found a phi first.
422 // recursively create potential parent loops first.
463 Node* first = *HeaderNodes(loop).begin(); local
464 if (first->opcode() == IrOpcode::kLoop) return first;
465 DCHECK(IrOpcode::IsPhiOpcode(first->opcode()));
466 Node* header = NodeProperties::GetControlInput(first);
    [all...]
  /external/v8/src/crankshaft/
lithium.cc 172 bool first = true; local
177 if (!first) stream->Add(" ");
178 first = false;
300 int first = block->first_instruction_index(); local
302 LInstruction* first_instr = instructions()->at(first);
311 for (int i = first + 1; i < last && can_eliminate; ++i) {
357 // The receiver is at index 0, the first parameter at index 1, so we
595 // of fields) of the captured objects in depth-first traversal order, or
  /external/wpa_supplicant_8/src/ap/
vlan_full.c 517 struct hostapd_vlan *first, *prev, *vlan = hapd->conf->vlan; local
521 first = prev = vlan;
576 if (vlan == first)
  /external/zlib/src/examples/
gzlog.c 46 When appending data, the information in the first three items above plus the
59 When compressing data, the information in the first two items above plus the
83 gain exclusive access to the log files, first a foo.lock file must be
105 the extra field is within the first 52 bytes of the file, which is smaller
110 - Pointer to first stored block length -- this points to the two-byte length
111 of the first stored block, which is followed by the two-byte, one's
117 Initially this is the same as the first stored block length pointer.
120 is different from the first stored block length pointer. When they are
121 different, the first bit of the last stored block header is eight bits, or
134 - First stored block start as the number of bits back from the final store
294 off_t first; \/* offset of first stored block first length byte *\/ member in struct:log
    [all...]

Completed in 3150 milliseconds

<<21222324252627282930>>