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

<<31323334353637383940>>

  /art/disassembler/
disassembler_arm.cc 189 bool first = true; local
192 if (first) {
193 first = false;
229 : first(instr, 12, 22), imm8(instr & 0xFF) {}
230 FpRegister first; member in struct:art::arm::FpRegisterRange
234 os << "{" << rhs.first;
235 int count = (rhs.first.size != 0 ? ((rhs.imm8 + 1u) >> 1) : rhs.imm8);
237 os << "-" << FpRegister(rhs.first, count - 1);
241 } else if (rhs.first.size != 0 && (rhs.imm8 & 1) != 0) {
242 os << rhs.first << " (HALF)"
    [all...]
  /art/runtime/
java_vm_ext.cc 210 bool first = true; variable
212 if (!first) {
215 first = false;
216 os << library.first;
    [all...]
stack.cc 1022 mirror::Object* first = (*monitors_)[0]; local
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/isc/
eventlib_p.h 162 evWait * first; member in struct:evWaitList
237 int firstfd; /* First active fd */
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 349 int first = 1; /* is this the first alternative? */ local
368 if (first) {
372 first = 0;
381 if (!first) { /* tail-end fixups */
563 * This implementation is a bit of a kludge, in that a trailing $ is first
572 int end1, /* first terminating character */
577 int first = 1; /* first subexpression? */ local
595 wasdollar = p_simp_re(p, first, reclimit)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioTrackSurroundTest.java 241 // Use first and last timestamp to get the most accurate rate.
242 AudioTimestamp first = mTimestamps.get(0); local
244 double measuredRate = calculateSampleRate(first, last);
  /development/perftests/panorama/feature_mos/src/mosaic/
Blend.cpp 110 else // For WIDE strip mode, first select the relevant frames to blend.
381 // First go through each frame and for each mosaic pixel determine which frame it should come from
422 // from the first image, then go to 50% contribution from each image at
1197 MosaicFrame *first = frames[0]; local
1250 MosaicFrame *first = frames[0]; local
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 277 public boolean first() throws SQLException { method in class:Impl_RowSet
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 45 * and also collects all absolute paths within the subtree. First
87 * variables will be inserted as first children of the element, before
163 // trying to find the longest matches first.
335 ElemTemplateElement first = null; local
339 first = elems[0];
342 if(first != elems[i])
350 if(areEqual && isNotSameAsOwner(head, first) && first.canAcceptVariables())
354 System.err.print(first.getClass().getName());
355 System.err.println(" at " + first.getSystemId() + " Line " + first.getLineNumber())
556 MultistepExprHolder first = null; local
1339 MultistepExprHolder first = this; local
1374 MultistepExprHolder first = this; local
    [all...]
  /external/curl/tests/server/
tftpd.c 257 /* if next is set indicates the first signal handled in exit_signal_handler */
352 The first time this is called it will set got_exit_signal to one and
433 bfs[0].counter = BF_ALLOC; /* pass out the first buffer */
946 int first = 1, ecode; local
980 if (first) {
982 first = 0;
    [all...]
  /external/dbus/bus/
signals.c 789 /* First we need to parse arg0 = 0, arg27 = 27 */
2388 const char *first; member in struct:__anon9577
2414 BusMatchRule *first; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryPipelineBarrierTests.cpp 291 bool first = true; local
297 if (!first)
300 first = false;
1016 m_queueFamilies.push_back(m_queues[queueNdx].first);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDrawTests.cpp 101 deUint32 first; member in struct:deqp::gles31::Functional::__anon10540::DrawArraysCommand
190 spec.first = 0;
272 spec.first = 0;
308 spec.first = 0;
355 spec.first = 0;
416 spec.first = 0;
524 const std::string iterationDesc = std::string("first vertex ") + de::toString(indexTest.offsets[iterationNdx] / gls::DrawTestSpec::indexTypeSize(indexTest.type));
635 const std::string desc = std::string("first ") + de::toString(firsts[firstNdx]);
638 spec.first = firsts[firstNdx];
686 // First-test
    [all...]
  /external/deqp/modules/glshared/
glsDrawTest.hpp 226 int first; //!< used only if drawMethod = DrawArrays* member in struct:deqp::gls::DrawTestSpec
glsFboUtil.hpp 73 T1 first; member in struct:deqp::gls::Pair
354 glw::GLenum m_error; //< The first GL error encountered.
glsVertexArrayTests.cpp 1958 name << "first" << first << "_"; local
    [all...]
  /external/dhcpcd-6.8.2/
ipv6.c 436 /* Make the address from the first local-link address */
1600 struct ipv6_addr *ap, *first; local
    [all...]
  /external/dng_sdk/source/
dng_pthread.cpp 372 primaryHandle = iter->second.first;
408 primaryHandle = iter->second.first;
412 iter->second.first = NULL;
687 waiter *first; local
693 first = real_cond.head_waiter;
694 if (first != NULL)
696 if (first->next != NULL)
697 first->next->prev = NULL;
699 real_cond.tail_waiter = NULL; // Or first->prev, which is always NULL in this case
701 first->chosen_by_signal = true
719 waiter *first; local
    [all...]
dng_xmp.cpp 879 // First make sure the XMP is not badly formatted, since
3129 bool first = true; local
    [all...]
  /external/e2fsprogs/e2fsck/
dict.c 158 dnode_t *first, *next; local
160 first = dict_first(dict);
163 while (first && (next = dict_next(dict, first))) {
164 if (dict->compare(first->key, next->key) > 0)
166 first = next;
169 while (first && (next = dict_next(dict, first))) {
170 if (dict->compare(first->key, next->key) >= 0)
172 first = next
    [all...]
  /external/fio/
graph.c 184 int first = 1; local
194 if (first) {
196 first = 0;
208 int first = 1; local
217 if (first) {
219 first = 0;
508 int first = 1; local
516 if (first) {
517 first = 0;
534 int good_data = 1, first = 1 local
    [all...]
  /external/fio/t/
btrace2fio.c 577 uint64_t first; local
579 first = min(o->first_ttime[0], o->first_ttime[1]);
580 return min(first, o->first_ttime[2]);