/external/mesa3d/src/mesa/main/ |
arrayobj.c | 384 * "The first bind call, either BindVertexArray or 485 GLuint first; local 498 first = _mesa_HashFindFreeKeyBlock(ctx->Array.Objects, n); 503 GLuint name = first + i; 511 arrays[i] = first + i;
|
queryobj.c | 179 GLuint first; local 198 first = _mesa_HashFindFreeKeyBlock(ctx->Query.QueryObjects, n); 199 if (first) { 203 = ctx->Driver.NewQueryObject(ctx, first + i); 208 ids[i] = first + i; 209 _mesa_HashInsert(ctx->Query.QueryObjects, first + i, q);
|
transformfeedback.c | 728 GLuint first; local 742 first = _mesa_HashFindFreeKeyBlock(ctx->TransformFeedback.Objects, n); 743 if (first) { 747 = ctx->Driver.NewTransformFeedback(ctx, first + i); 752 names[i] = first + i; 753 _mesa_HashInsert(ctx->TransformFeedback.Objects, first + i, obj);
|
/external/mesa3d/src/mesa/vbo/ |
vbo_split_inplace.c | 154 GLuint first, incr; local 155 GLboolean split_inplace = split_prim_inplace(prim->mode, &first, &incr); 157 GLuint count = prim->count - (prim->count - first) % incr; 159 if (prim->count < first) 163 (available < first && split_inplace)) { 182 nr -= (nr - first) % incr; 202 j += nr - (first - incr); 209 /* XXX: could at least send the first max_verts off from the
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
DefaultRouter.java | 88 * <li>The implementation then places the first Route header field value into 185 * The implementation then places the first Route header field value 214 throw new SipException("First Route not a SIP URI"); 265 Route first = (Route) routes.getFirst(); local 266 SipUri firstUri = (SipUri) first.getAddress().getURI();
|
/external/opencv3/3rdparty/zlib/ |
crc32.c | 16 protection on the static variables used to control the first-use generation 18 first call get_crc_table() to initialize the tables before allowing more than 84 The first table is simply the CRC of all possible eight bit values. This is 96 static volatile int first = 1; /* flag to limit concurrent making */ local 102 if (first) { 103 first = 0; 120 and then the byte reversal of those as well as the first table */ 134 else { /* not first */ 383 /* apply len2 zeros to crc1 (first square will put the operator for one
|
/external/opencv3/modules/objdetect/src/ |
HaarStructs.h | 5 int first; member in struct:__anon21766
|
/external/opencv3/samples/cpp/ |
tvl1_optical_flow.cpp | 19 static bool first = true; local 34 if (first) 56 first = false;
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
consuming_buffers.hpp | 52 // Construct with a buffer for the first entry and an iterator 54 consuming_buffers_iterator(bool at_end, const Buffer& first, 58 first_(buffer(first, max_size)), 184 typename Buffers::const_iterator first = other.buffers_.begin(); local 186 std::advance(begin_remainder_, std::distance(first, second)); 196 typename Buffers::const_iterator first = other.buffers_.begin(); local 198 std::advance(begin_remainder_, std::distance(first, second)); 203 // Get a forward-only iterator to the first element.
|
hash_map.hpp | 104 iterator it = buckets_[bucket].first; 111 if (it->first == k) 125 const_iterator it = buckets_[bucket].first; 132 if (it->first == k) 145 size_t bucket = calculate_hash_value(v.first) % num_buckets_; 146 iterator it = buckets_[bucket].first; 149 buckets_[bucket].first = buckets_[bucket].last = 158 if (it->first == v.first) 173 size_t bucket = calculate_hash_value(it->first) % num_buckets_ 303 iterator first; member in struct:asio::detail::hash_map::bucket_type [all...] |
/external/pcre/dist/ |
pcre_get.c | 141 firstptr where to put the pointer to the first entry 208 pcre_uchar *first = entry; local 210 while (first > nametable) 213 (pcre_uchar *)(first - entrysize + IMM2_SIZE)) != 0) break; 214 first -= entrysize; 223 *firstptr = (char *)first; 226 *firstptr = (PCRE_UCHAR16 *)first; 229 *firstptr = (PCRE_UCHAR32 *)first; 243 * Find first set of multiple named strings * 247 It returns the number of the first one that was set in a pattern match 274 char *first, *last; local 276 PCRE_UCHAR16 *first, *last; local 278 PCRE_UCHAR32 *first, *last; local [all...] |
/external/pdfium/third_party/libopenjpeg20/ |
pi.h | 94 /** 0 if the first packet */ 95 OPJ_BOOL first; member in struct:opj_pi_iterator 121 * @return a list of packet iterator that points to the first packet of the tile (not true). 162 @return Returns a packet iterator that points to the first packet of the tile
|
/external/pdfium/third_party/zlib_v128/ |
crc32.c | 16 protection on the static variables used to control the first-use generation 18 first call get_crc_table() to initialize the tables before allowing more than 84 The first table is simply the CRC of all possible eight bit values. This is 96 static volatile int first = 1; /* flag to limit concurrent making */ local 102 if (first) { 103 first = 0; 120 and then the byte reversal of those as well as the first table */ 134 else { /* not first */ 383 /* apply len2 zeros to crc1 (first square will put the operator for one
|
/external/proguard/src/proguard/gui/ |
TabbedPane.java | 129 // If this is the first tab, make sure its button is selected. 175 * Selects the first tab. 177 public void first() method in class:TabbedPane 179 cardLayout.first(cardPanel);
|
/external/protobuf/src/google/protobuf/io/ |
gzip_stream.cc | 93 bool first = zcontext_.next_in == NULL; local 102 if (first) {
|
/external/skia/experimental/SkV8Example/ |
Global.cpp | 85 bool first = true; local 88 if (first) { 89 first = false; 112 // Pull out the first arg, make sure it's a function.
|
/external/skia/gm/ |
testimagefilters.cpp | 44 SkImageFilter* first = SkOffsetImageFilter::Create(SkIntToScalar(16), SkIntToScalar(16)); local 46 SkAutoUnref aur0(first); 48 return SkMergeImageFilter::Create(first, second);
|
/external/skia/src/core/ |
SkDeque.cpp | 78 Block* first = fFrontBlock; local 81 if (nullptr == first->fBegin) { 83 first->fEnd = first->fStop; 84 begin = first->fStop - fElemSize; 86 begin = first->fBegin - fElemSize; 87 if (begin < first->start()) { // no more room in this chunk 89 first = this->allocateBlock(fAllocCount); 90 first->fNext = fFrontBlock; 91 fFrontBlock->fPrev = first; 155 Block* first = fFrontBlock; local [all...] |
/external/skia/src/pathops/ |
SkPathOpsCubic.h | 15 const SkDCubic& first() const { return (const SkDCubic&) pts[0]; } function in struct:SkDCubicPair
|
/external/skia/src/utils/ |
SkParsePath.cpp | 78 SkPoint first = {0, 0}; local 185 c = first; 197 first = c;
|
/external/smali/util/src/main/java/org/jf/util/ |
ArraySortedSet.java | 152 public T first() { method in class:ArraySortedSet
|
/external/snakeyaml/src/test/java/examples/collections/ |
TypeSafeMapImplementationsTest.java | 61 String first = sortedMap.keySet().iterator().next(); local 62 assertEquals("1", first); 155 String first = (String) map1.keySet().iterator().next(); local 156 assertEquals("2", first); 188 String first = (String) map1.keySet().iterator().next(); local 189 assertEquals("1", first);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/ |
CompactConstructorExampleTest.java | 161 Row first = iter.next(); local 162 assertEquals("id111", first.getId()); 163 assertEquals("I think; therefore I am.", first.getDescription()); 164 assertEquals(0.125, first.getRatio(), 0.000000001); 165 assertEquals(15, first.getSize());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/ |
MergeJavaBeanTest.java | 50 // First object: Data ( 11, "id123" ) 102 // First object: Data ( 11, "id123" ) 103 Data first = (Data) list.get(0); local 104 assertEquals(11, first.getAge()); 105 assertEquals("id123", first.getId()); 118 // First object: Data ( 11, "id123" ) 119 Data first = (Data) list.get(0); local 120 assertEquals(11, first.getAge()); 121 assertEquals("id123", first.getId()); 146 // First object: Data ( 11, "id123" 188 Object first = objects.get(0); local [all...] |
/external/testng/src/test/java/test/methodinterceptors/ |
MethodInterceptorTest.java | 71 ITestResult first = tla.getPassedTests().get(0); local 75 Assert.assertEquals(first.getMethod().getMethodName(), method); 77 Assert.assertNotSame(first.getMethod().getMethodName(), method);
|