HomeSort by relevance Sort by last modified time
    Searched defs:hold (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inffast.c 84 unsigned long hold; /* local strm->hold */ local
111 hold = state->hold;
122 hold += (unsigned long)(PUP(in)) << bits;
124 hold += (unsigned long)(PUP(in)) << bits;
127 here = lcode[hold & lmask];
130 hold >>= op;
144 hold += (unsigned long)(PUP(in)) << bits;
147 len += (unsigned)hold & ((1U << op) - 1)
    [all...]
fx_zlib_infback.c 134 hold = state->hold; \
145 state->hold = hold; \
152 hold = 0; \
176 hold += (unsigned long)(*next++) << bits; \
191 ((unsigned)hold & ((1U << (n)) - 1))
196 hold >>= (n); \
203 hold >>= bits & 7; \
261 unsigned long hold; /* bit buffer * local
    [all...]
fx_zlib_inflate.c 120 state->hold = 0;
240 state->hold = 0;
246 state->hold += value << state->bits;
465 hold = state->hold; \
476 state->hold = hold; \
483 hold = 0; \
493 hold += (unsigned long)(*next++) << bits; \
507 ((unsigned)hold & ((1U << (n)) - 1)
613 unsigned long hold; \/* bit buffer *\/ local
    [all...]
inflate.h 98 unsigned long hold; /* input bit accumulator */ member in struct:inflate_state
  /external/zlib/src/contrib/masmx64/
inffas8664.c 94 /* 80 40 */ size_t /*unsigned long */hold; /* edx rdx local strm->hold */ member in struct:inffast_ar
135 ar.hold = state->hold;
145 /* align in on 1/2 hold size boundary */
146 while (((size_t)(void *)ar.in & (sizeof(ar.hold) / 2 - 1)) != 0) {
147 ar.hold += (unsigned long)*ar.in++ << ar.bits;
170 ar.hold &= (1U << ar.bits) - 1;
181 state->hold = (unsigned long)ar.hold;
    [all...]
  /external/zlib/src/
inffast.c 84 unsigned long hold; /* local strm->hold */ local
111 hold = state->hold;
122 hold += (unsigned long)(PUP(in)) << bits;
124 hold += (unsigned long)(PUP(in)) << bits;
127 here = lcode[hold & lmask];
130 hold >>= op;
144 hold += (unsigned long)(PUP(in)) << bits;
147 len += (unsigned)hold & ((1U << op) - 1)
    [all...]
infback.c 134 hold = state->hold; \
145 state->hold = hold; \
152 hold = 0; \
176 hold += (unsigned long)(*next++) << bits; \
191 ((unsigned)hold & ((1U << (n)) - 1))
196 hold >>= (n); \
203 hold >>= bits & 7; \
261 unsigned long hold; /* bit buffer * local
    [all...]
inflate.c 120 state->hold = 0;
240 state->hold = 0;
246 state->hold += value << state->bits;
465 hold = state->hold; \
476 state->hold = hold; \
483 hold = 0; \
493 hold += (unsigned long)(*next++) << bits; \
507 ((unsigned)hold & ((1U << (n)) - 1)
613 unsigned long hold; \/* bit buffer *\/ local
    [all...]
inflate.h 98 unsigned long hold; /* input bit accumulator */ member in struct:inflate_state
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 287 <i>channel</i> feature, which allows you to hold on to all tokens of interest
887 def hold( pos = @position ) method in class:ANTLR3.that.CommonTokenStream
888 block_given? or return enum_for( :hold, pos )
    [all...]
  /external/zlib/src/contrib/inflate86/
inffas86.c 89 /* 80 40 */ unsigned long hold; /* edx rdx local strm->hold */ member in struct:inffast_ar
118 ar.hold = state->hold;
128 /* align in on 1/2 hold size boundary */
129 while (((unsigned long)(void *)ar.in & (sizeof(ar.hold) / 2 - 1)) != 0) {
130 ar.hold += (unsigned long)*ar.in++ << ar.bits;
146 " movq 80(%%rsp), %%rdx\n" /* rdx = hold */
168 " orq %%rax, %%rdx\n" /* hold |= *((uint *)in)++ << bits */
187 " orq %%rax, %%rdx\n" /* hold |= *((uint *)in)++ << bits *
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
ExtendedInCallServiceTest.java 177 call.hold();
317 call1.hold();
MockConference.java 107 mRemoteConference.hold();
MockConnection.java 77 mRemoteConnection.hold();
  /external/zlib/src/contrib/blast/
blast.c 418 static unsigned char hold[CHUNK]; local
420 *buf = hold;
421 return fread(hold, 1, CHUNK, (FILE *)how);
  /external/zlib/src/contrib/infback9/
infback9.c 119 hold = 0; \
143 hold += (unsigned long)(*next++) << bits; \
158 ((unsigned)hold & ((1U << (n)) - 1))
163 hold >>= (n); \
170 hold >>= bits & 7; \
233 unsigned long hold; /* bit buffer */ local
265 hold = 0;
316 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) {
321 length = (unsigned)hold & 0xffff
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
TelecomAdapter.java 91 call.hold();
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestConnectionManager.java 159 mRemote.hold();
  /system/core/logcat/tests/
logcat_test.cpp 671 char *hold = *list; local
683 if (hold) {
684 asprintf(list, "%s %s", hold, buf);
685 free(hold);
  /external/tcpdump/
print-pim.c 78 { PIMV2_HELLO_OPTION_HOLDTIME, "Hold Time" },
130 int hold; local
133 hold = EXTRACT_16BITS(&bp[6]);
134 if (hold != 180) {
135 (void)printf("Hold ");
136 relts_print(hold);
157 (void)printf(" Hold time: ");
241 (void)printf(" (Hold-time ");
272 (void)printf(" RP %s hold ", ipaddr_string(&bp[16]));
326 int hold; local
    [all...]
  /external/zlib/src/contrib/minizip/
miniunz.c 168 char hold; local
172 hold = *p;
180 if (hold == 0)
182 *p++ = hold;
  /frameworks/base/telecomm/java/android/telecom/
RemoteConference.java 393 * Puts the conference on hold.
395 public void hold() { method in class:RemoteConference
397 mConnectionService.hold(mId);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 155 public synchronized void hold(Thread t) { method in class:Profile.Watchdog
212 // Hold the future samples coming from current thread until commit() or
215 public static void hold() { method in class:Profile
216 sWatchdog.hold(Thread.currentThread());
  /packages/services/Telecomm/src/com/android/server/telecom/
CallsManager.java 630 // Do not support any more live calls. Our options are to move a call to hold, disconnect
746 // STATE_DIALING, put it on hold before answering the call.
752 // This call does not support hold. If it is from a different connection
768 mForegroundCall.hold();
771 // on-hold before answering the new call.
    [all...]
  /system/core/liblog/tests/
liblog_test.cpp 418 I will hold friends with you, lady.\n\
699 char hold[4][PROP_VALUE_MAX]; local
715 memset(hold, 0, sizeof(hold));
717 property_get(key, hold[0], "");
719 property_get(key + base_offset, hold[1], "");
723 property_get(key, hold[2], "");
725 property_get(key, hold[3], "");
872 property_set(key, hold[0]);
873 property_set(key + base_offset, hold[1])
    [all...]

Completed in 1122 milliseconds

1 2 3