HomeSort by relevance Sort by last modified time
    Searched refs:ll (Results 176 - 200 of 517) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium/net/http/
http_response_headers_unittest.cc 1233 10000000000ll,
1234 10000000001ll
1240 10000000000ll
    [all...]
  /external/chromium_org/tools/android/memdump/
memdump.cc 109 return (page_info.flags & ((1ll << KPF_DIRTY) |
110 (1ll << KPF_ANON) |
111 (1ll << KPF_UNEVICTABLE) |
112 (1ll << KPF_MLOCKED))) ?
  /frameworks/av/media/libstagefright/
VBRISeeker.cpp 70 numFrames * 1000000ll * (sampleRate >= 32000 ? 1152 : 576) / sampleRate;
AwesomePlayer.cpp 64 static int64_t kLowWaterMarkUs = 2000000ll; // 2secs
65 static int64_t kHighWaterMarkUs = 5000000ll; // 5secs
71 static int64_t kOffloadPauseMaxUs = 60000000ll;
628 *bitrate = size * 8000000ll / mDurationUs; // in bits/sec
649 *durationUs = cachedDataRemaining * 8000000ll / bitrate;
678 if (!(mFlags & VIDEO_AT_EOS) && videoLateByUs > 300000ll) {
679 ALOGV("video late by %lld ms.", videoLateByUs / 1000ll);
684 videoLateByUs / 1000ll);
714 int64_t cachedDurationUs = cachedSize * 8000000ll / bitrate;
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPAssembler.cpp 39 if (ALooper::GetNowUs() - mFirstFailureTimeUs > 10000ll) {
ARTPConnection.cpp 53 const int64_t ARTPConnection::kSelectTimeoutUs = 1000ll;
121 unsigned start = (unsigned)((rand()* 1000ll)/RAND_MAX) + 15550;
310 || mLastReceiverReportTimeUs + 5000000ll <= nowUs) {
614 (ntpTime >> 32) + (double)(ntpTime & 0xffffffff) / (1ll << 32));
UDPPusher.cpp 104 int64_t whenUs = mFirstTimeUs + timeMs * 1000ll;
MyHandler.h 47 static int64_t kAccessUnitTimeoutUs = 10000000ll;
51 static int64_t kStartupTimeoutUs = 10000000ll;
53 static int64_t kDefaultKeepAliveTimeoutUs = 60000000ll;
55 static int64_t kPauseDelayUs = 3000000ll;
348 "even one, we'll let it pass for now, but this may break "
670 mKeepAliveTimeoutUs = timeoutSecs * 1000000ll;
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.cpp 92 params->setInt64(kKeyTime, 1ll);
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 70 LinkedList<String> ll = lls; local
73 Collections.binarySearch(ll, new Integer(10), null);
103 LinkedList ll = lls; local
106 Collections.binarySearch(ll, new Integer(10));
  /external/bluetooth/bluedroid/stack/gatt/
gatt_sr.c 400 UINT16 handle = 0, ll = len; local
427 while (ll >= 2 && p_tcb->sr_cmd.multi_req.num_handles < GATT_MAX_READ_MULTI_HANDLES)
453 ll -= 2;
456 if (ll != 0)
470 for (ll = 0; ll < p_tcb->sr_cmd.multi_req.num_handles; ll ++)
476 handle = p_tcb->sr_cmd.multi_req.handles[ll];
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/threads/
netware.bat 8 rem After building, copy mttest.nlm to the server and run it, you'll probably
  /external/chromium_org/v8/test/webkit/
dfg-integer-optimization.js 37 // Create numbers big enough that we'll start seeing doubles only after about 200 invocations.
rehash-assign.js 66 ll = 11;
  /external/openssl/crypto/threads/
netware.bat 8 rem After building, copy mttest.nlm to the server and run it, you'll probably
  /external/strace/
net.c 1214 struct sockaddr_ll ll; member in union:__anon26713
1313 ntohs(addrbuf.ll.sll_protocol),
1314 addrbuf.ll.sll_ifindex);
1315 printxval(af_packet_types, addrbuf.ll.sll_pkttype, "?");
1317 addrbuf.ll.sll_halen,
1318 addrbuf.ll.sll_hatype);
1319 for (i=0; i<addrbuf.ll.sll_halen; i++)
1320 tprintf("%02x", addrbuf.ll.sll_addr[i]);
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/
SoftAMR.cpp 400 + (mNumSamplesOutput * 1000000ll) / kSampleRateNB;
408 + (mNumSamplesOutput * 1000000ll) / kSampleRateWB;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/
SoftAMRNBEncoder.cpp 52 mInputTimeUs(-1ll),
319 (copy * 1000000ll / kSampleRate) / sizeof(int16_t);
  /external/chromium_org/third_party/freetype/src/autofit/
afhints.c 484 FT_Pos ll, ss; /* long and short arm lengths */ local
493 ll = dy;
499 ll = -dx;
508 ll = dx;
514 ll = dy;
522 if ( FT_ABS( ll ) <= FT_ABS( ss ) )
    [all...]
  /external/freetype/src/autofit/
afhints.c 484 FT_Pos ll, ss; /* long and short arm lengths */ local
493 ll = dy;
499 ll = -dx;
508 ll = dx;
514 ll = dy;
522 if ( FT_ABS( ll ) <= FT_ABS( ss ) )
    [all...]
  /external/libffi/src/powerpc/
ffi.c 98 long long *ll; member in union:__anon20384
134 long long **ll; member in union:__anon20385
293 *next_arg.ll = **p_argv.ll;
310 *gpr_base.ll++ = **p_argv.ll;
    [all...]
  /external/chromium_org/third_party/zlib/contrib/minizip/
zip.c 213 local void init_linkedlist(linkedlist_data* ll)
215 ll->first_block = ll->last_block = NULL;
218 local void free_linkedlist(linkedlist_data* ll)
220 free_datablock(ll->first_block);
221 ll->first_block = ll->last_block = NULL;
225 local int add_data_in_datablock(linkedlist_data* ll, const void* buf, uLong len)
230 if (ll==NULL)
233 if (ll->last_block == NULL
    [all...]
  /external/zlib/src/contrib/minizip/
zip.c 213 local void init_linkedlist(linkedlist_data* ll)
215 ll->first_block = ll->last_block = NULL;
218 local void free_linkedlist(linkedlist_data* ll)
220 free_datablock(ll->first_block);
221 ll->first_block = ll->last_block = NULL;
225 local int add_data_in_datablock(linkedlist_data* ll, const void* buf, uLong len)
230 if (ll==NULL)
233 if (ll->last_block == NULL
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasm-pp.c 206 * it and cause confusion: instead, rightly, it'll cause an error.)
4643 Line *l, *ll; local
4926 Line *ll; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 3056 LinearLayout ll = new LinearLayout(mActivity); local
3110 LinearLayout ll = new LinearLayout(mActivity); local
3159 LinearLayout ll = (LinearLayout) mActivity.findViewById(R.id.layout_textviewtest); local
3235 LinearLayout ll = new LinearLayout(getActivity()); local
3287 LinearLayout ll = (LinearLayout) activity.findViewById(R.id.layout_textviewtest); local
    [all...]

Completed in 699 milliseconds

1 2 3 4 5 6 78 91011>>