HomeSort by relevance Sort by last modified time
    Searched refs:ll (Results 76 - 100 of 576) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/
ThrottledSource.cpp 54 mTotalTransferred * 1000000ll / mBandwidthLimitBytesPerSecond;
  /frameworks/base/core/tests/coretests/src/android/util/
ScrollViewScenario.java 175 final LinearLayout ll = new LinearLayout(context);
176 ll.setOrientation(LinearLayout.VERTICAL);
185 ll.addView(button, lp);
188 return ll;
  /external/chromium_org/v8/tools/
android-ll-prof.sh 33 # > ./tools/android-ll-prof.sh (debug|release) "args to d8" "args to ll_prof.py"
60 adb pull /data/local/tmp/v8/v8.log.ll .
  /external/proguard/bin/
proguardgui.bat 7 REM you'll have to add escaped quotes around them, e.g.
retrace.bat 7 REM you'll have to add escaped quotes around them, e.g.
  /external/valgrind/main/cachegrind/
cg_arch.c 130 VG_STR_CLO(arg, "--LL", tmp_str)) {
163 /* If the LL cache config isn't something the simulation functions
214 VG_(dmsg)("warning: pretending that LL cache has associativity"
247 check_cache_or_override ("LL", LLc, DEFINED(clo_LLc));
259 umsg_cache_img ("LL", LLc);
269 " --LL=<size>,<assoc>,<line_size> set LL cache manually\n"
290 // Gives the auto-detected configuration of I1, D1 and LL caches. They get
298 const VexCache *i1, *d1, *ll; local
306 ll = locate_cache(ci, UNIFIED_CACHE, ci->num_levels)
    [all...]
  /prebuilts/tools/common/proguard/proguard4.7/bin/
proguardgui.bat 7 REM you'll have to add escaped quotes around them, e.g.
retrace.bat 7 REM you'll have to add escaped quotes around them, e.g.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-context-osr.js 35 for (this.ll = 0; this.ll < 70670; ++this.ll) {
  /external/lldb/tools/lldb-perf/common/clang/
build-clang.sh 24 ( cd ./Debug/bin ; rm -rf ll* clang-check clang-tblgen count diagtool fpcmp macho-dump not opt yaml2obj FileCheck FileUpdate arcmt-test c-arcmt-test c-index-test bugpoint )
25 ( cd ./tools ; rm -rf ll* clang-check clang-tblgen count diagtool fpcmp lto macho-dump not opt yaml2obj FileCheck FileUpdate arcmt-test c-arcmt-test c-index-test bugpoint )
29 ( cd ../llvm/tools ; rm -rf *.txt bugpoint bugpoint-passes ll* lto macho-dump opt gold )
  /external/llvm/test/MC/Mips/
micromips-loadstore-instructions.s 20 # CHECK-EL: ll $2, 8($4) # encoding: [0x44,0x60,0x08,0x30]
34 # CHECK-EB: ll $2, 8($4) # encoding: [0x60,0x44,0x30,0x08]
45 ll $2, 8($4)
  /frameworks/av/media/libstagefright/timedtext/
TimedTextPlayer.cpp 37 static const int64_t kAdjustmentProcessingTimeUs = 100000ll;
38 static const int64_t kMaxDelayUs = 5000000ll;
39 static const int64_t kWaitTimeUsToRetryRead = 100000ll;
108 int64_t seekTimeUs = positionMs * 1000ll;
146 seekTimeUs = positionMs * 1000ll;
281 int64_t positionUs = positionMs * 1000ll;
  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.cpp 50 const int64_t PlaylistFetcher::kMinBufferedDurationUs = 10000000ll;
51 const int64_t PlaylistFetcher::kMaxMonitorDelayUs = 3000000ll;
65 mStartTimeUs(-1ll),
66 mSegmentStartTimeUs(-1ll),
67 mDiscontinuitySeq(-1ll),
69 mLastPlaylistFetchTimeUs(-1ll),
75 mNextPTSTimeUs(-1ll),
80 mAbsoluteTimeAnchorUs(0ll),
105 int64_t segmentStartUs = 0ll;
124 if (mPlaylist == NULL || mLastPlaylistFetchTimeUs < 0ll) {
    [all...]
  /external/qemu/include/qemu/
bswap.h 151 uint64_t ll; member in union:__anon33614
174 } ll; member in union:__anon33619
185 } ll; member in union:__anon33619
337 u.ll = ldq_le_p(ptr);
345 stq_le_p(ptr, u.ll);
402 u.ll = ldq_be_p(ptr);
410 stq_be_p(ptr, u.ll);
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
fcrypt.c 103 DES_LONG out[2],ll; local
146 ll=out[0]; l2c(ll,b);
147 ll=out[1]; l2c(ll,b);
  /external/openssl/crypto/des/
fcrypt.c 103 DES_LONG out[2],ll; local
146 ll=out[0]; l2c(ll,b);
147 ll=out[1]; l2c(ll,b);
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x.cpp 148 long long ll = 1; local
149 Agg<long> l2 = {ll}; // OK
177 unsigned long long ll5 = { ll }; // expected-error {{cannot be narrowed from type 'long long'}} expected-note {{silence}}
  /external/dhcpcd/
control.c 156 struct fd_list *l, *ll; local
167 ll = l->next;
171 l = ll;
  /frameworks/rs/driver/
rsdRuntimeStubs.cpp     [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldListIteratorTest.java 247 LinkedList ll = new LinkedList(); local
249 ll.add(objArray[i]);
251 l = ll.listIterator();
  /frameworks/support/v13/java/android/support/v13/app/
FragmentTabHost.java 144 LinearLayout ll = new LinearLayout(context); local
145 ll.setOrientation(LinearLayout.VERTICAL);
146 addView(ll, new FrameLayout.LayoutParams(
153 ll.addView(tw, new LinearLayout.LayoutParams(
159 ll.addView(fl, new LinearLayout.LayoutParams(0, 0, 0));
163 ll.addView(fl, new LinearLayout.LayoutParams(
  /frameworks/support/v4/java/android/support/v4/app/
FragmentTabHost.java 152 LinearLayout ll = new LinearLayout(context); local
153 ll.setOrientation(LinearLayout.VERTICAL);
154 addView(ll, new FrameLayout.LayoutParams(
161 ll.addView(tw, new LinearLayout.LayoutParams(
167 ll.addView(fl, new LinearLayout.LayoutParams(0, 0, 0));
171 ll.addView(fl, new LinearLayout.LayoutParams(
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
celib.h 93 LONGLONG ll; member in union:_LLFILETIME::__anon48631
98 static __inline VOID ceAddToFileTime(FILETIME *pft,LONGLONG ll) {
101 llft.ll += ll;
110 return(llft1.ll - llft2.ll);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
CollectionsTest.java 58 private LinkedList ll; field in class:CollectionsTest
261 // assumes ll is sorted and has no duplicate keys
262 final int llSize = ll.size();
271 assertEquals("Returned incorrect binary search item position", ll
272 .get(i), ll.get(Collections.binarySearch(ll, ll
314 Collections.copy(null, ll);
320 Collections.copy(ll, null);
325 final int llSize = ll.size()
    [all...]
  /external/chromium_org/native_client_sdk/src/doc/
io2014.rst 25 As the process gets easier, we'll update this page.
48 To follow along in this tutorial, you'll need to use a text editor to modify
76 You'll need to add these lines to `~/.bashrc` to cause them to be invoked each
139 We'll need to start an editor to fix this.
140 You'll want to change *hieght* to *height* on line 506.
166 Once you've identified the problem. You'll want to stop the test server.

Completed in 797 milliseconds

1 2 34 5 6 7 8 91011>>