HomeSort by relevance Sort by last modified time
    Searched defs:second (Results 126 - 150 of 1918) sorted by null

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_win.c 33 int first, second; local
37 second = tolower(*string2);
40 } while (first && first == second);
42 return (first - second);
98 (in the second table entry). Based on the header type, we
124 /* We have at least 2 tables - the import table is the second
  /external/apache-http/android/src/android/net/http/
LegacyHttpDateTime.java 77 this.second = s;
82 int second; field in class:LegacyHttpDateTime.TimeOfDay
119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date,
220 int second = (timeString.charAt(i++) - '0') * 10 local
223 return new TimeOfDay(hour, minute, second);
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 24 vector_int_pair(const VectorType &v, int i) : first(v), second(i) {}
27 int second; member in struct:Eigen::internal::vector_int_pair
124 objects[i] = tmp[objCenters[i].second];
146 if(children[idx + 1] < numBoxes) { //second index is always bigger
155 } else { //if the first child is a volume and the second is an object
187 boxes.push_back(objBoxes[objCenters[from].second].merged(objBoxes[objCenters[from + 1].second]));
197 boxes.push_back(boxes[idx1].merged(objBoxes[objCenters[mid].second]));
  /external/google-breakpad/src/client/
minidump_file_writer_unittest.cc 82 const wchar_t *second = L"Second String"; local
83 ASSERT_TRUE(writer.WriteString(second, 0, &strings.get()->second_string));
  /external/guava/guava/src/com/google/common/collect/
Lists.java 337 * Returns an unmodifiable list containing the specified first and second
349 * @param second the second element
354 @Nullable E first, @Nullable E second, E[] rest) {
355 return new TwoPlusArrayList<E>(first, second, rest);
362 final E second; field in class:Lists.TwoPlusArrayList
365 TwoPlusArrayList(@Nullable E first, @Nullable E second, E[] rest) {
367 this.second = second;
378 return second;
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Lists.java 303 * Returns an unmodifiable list containing the specified first and second
315 * @param second the second element
320 @Nullable E first, @Nullable E second, E[] rest) {
321 return new TwoPlusArrayList<E>(first, second, rest);
328 final E second; field in class:Lists.TwoPlusArrayList
331 TwoPlusArrayList(@Nullable E first, @Nullable E second, E[] rest) {
333 this.second = second;
344 return second;
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-arabic-table.hh 376 uint16_t second; member in struct:ligature_set_t::ligature_pairs_t
  /external/libffi/src/x86/
win64.S 40 jmp second
44 second: label
73 mov rdx, rsp ; stack is second parameter
322 mov %rsp, %rdx # stack is second parameter
  /external/ltp/testcases/realtime/func/sched_jitter/
sched_jitter.c 86 unsigned long long first, second; local
89 second = (unsigned long long)b.tv_sec * NSEC_PER_SEC + b.tv_nsec;
90 return first - second;
  /external/mesa3d/src/compiler/glsl/
link_atomics.cpp 83 const active_atomic_counter_uniform *const second = (active_atomic_counter_uniform *) b; local
85 return int(first->var->data.offset) - int(second->var->data.offset);
  /external/mesa3d/src/glx/tests/
create_context_unittest.cpp 290 /* Use zeros in the second half of each attribute pair to try and trick the
293 * Use non-zero in the second half of the last attribute pair to try and
392 GLXContext second = local
396 ASSERT_NE((GLXContext) 0, second);
399 struct glx_context *ctx = (struct glx_context *) second;
  /external/mockito/src/test/java/org/mockito/internal/verification/checkers/
NumberOfInvocationsCheckerTest.java 91 Invocation second = buildSimpleMethod().toInvocation(); local
94 invocations = asList(first, second, third);
105 Invocation second = buildSimpleMethod().toInvocation(); local
107 invocations = asList(first, second);
NumberOfInvocationsInOrderCheckerTest.java 66 Invocation second = buildSimpleMethod().toInvocation(); local
69 invocations = asList(first, second);
136 Invocation second = buildSimpleMethod().toInvocation(); local
139 invocations = asList(first, second, third);
150 Invocation second = buildSimpleMethod().toInvocation(); local
152 invocations = asList(first, second);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
consuming_buffers.hpp 185 typename Buffers::const_iterator second = other.begin_remainder_; local
186 std::advance(begin_remainder_, std::distance(first, second));
197 typename Buffers::const_iterator second = other.begin_remainder_; local
198 std::advance(begin_remainder_, std::distance(first, second));
  /external/python/cpython2/Modules/_ctypes/libffi/src/x86/
win64.S 40 jmp second
44 second: label
73 mov rdx, rsp ; stack is second parameter
296 mov %rsp, %rdx # stack is second parameter
  /external/python/cpython2/Python/
dynload_win.c 33 int first, second; local
37 second = tolower(*string2);
40 } while (first && first == second);
42 return (first - second);
98 (in the second table entry). Based on the header type, we
124 /* We have at least 2 tables - the import table is the second
  /external/python/cpython3/Modules/_ctypes/libffi/src/x86/
win64.S 40 jmp second
44 second: label
73 mov rdx, rsp ; stack is second parameter
296 mov %rsp, %rdx # stack is second parameter
  /external/python/cpython3/Python/
dynload_win.c 46 int first, second; local
50 second = tolower(*string2);
53 } while (first && first == second);
55 return (first - second);
111 (in the second table entry). Based on the header type, we
137 /* We have at least 2 tables - the import table is the second
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
RobolectricTestRunnerTest.java 164 public void second() throws Exception { method in class:RobolectricTestRunnerTest.TestWithTwoMethods
  /external/skia/src/pathops/
SkPathOpsCubic.h 167 const SkDCubic second() const { function in struct:SkDCubicPair
  /external/skqp/src/pathops/
SkPathOpsCubic.h 167 const SkDCubic second() const { function in struct:SkDCubicPair
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructorExampleTest.java 166 Row second = iter.next(); local
167 assertEquals("id222", second.getId());
169 second.getDescription());
170 assertEquals(0.333, second.getRatio(), 0.000000001);
171 assertEquals(17, second.getSize());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/
MergeJavaBeanTest.java 55 // Second object: Data ( 13, "id456" )
106 // Second object is map
107 Map<?, ?> second = (Map<?, ?>) list.get(1); local
108 assertEquals(11, second.get("age"));
109 assertEquals("id123", second.get("id"));
122 // Second object is map with a diffrent id
123 Map<?, ?> second = (Map<?, ?>) list.get(1); local
124 assertEquals(11, second.get("age"));
125 assertEquals("id456", second.get("id"));
150 // Second object: Data ( 37, null
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_rdft_mips.c 275 const float* second = rdft_wk3ri_second; local
313 // second 8
348 // finish second 8
450 "lwc1 %[f13], 8(%[second]) \n\t"
451 "lwc1 %[f14], 12(%[second]) \n\t"
507 " addiu %[second], %[second], 8 \n\t"
514 [p2_rdft] "=&r" (p2_rdft), [count] "=&r" (count), [second] "+r" (second)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
vp8_partition_aggregator.cc 124 PartitionTreeNode* second; local
127 second = right;
130 second = left;
133 if (second->Cost(penalty) <= first->Cost(penalty)) {
134 second = second->GetOptimalNode(max_size, penalty);
135 // Compare cost estimate for "second" with actual cost for "first".
136 if (second->Cost(penalty) < first->Cost(penalty)) {
137 return second;

Completed in 1021 milliseconds

1 2 3 4 56 7 8 91011>>