HomeSort by relevance Sort by last modified time
    Searched refs:drop (Results 1 - 25 of 338) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iproute2/examples/diffserv/
afcbq 9 # - the drop probability associated with each AF virtual queue
22 # values in the for loop of this script; $drop stands for the
24 # $dscp = ($class*8+$drop*2)
27 # $gprio=$drop+1;
74 for $drop (1..3) {
75 print "\n# --- AF Class $class DP $drop---\n";
76 $dscp = $class*8+$drop*2;
77 $tcindex = sprintf("1%x%x",$class,$drop);
80 $prob = $drop*0.02;
82 $gprio = $drop+1
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inftrees.c 45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
206 drop = 0; /* current bits to drop from code for index */
218 this.bits = (unsigned char)(len - drop);
    [all...]
  /external/zlib/src/contrib/infback9/
inftree9.c 45 unsigned drop; /* code bits to drop for sub-table */ local
146 with length len. That code is converted to an index by dropping drop
147 bits off of the bottom. For codes where len is less than drop + curr,
148 those top drop + curr - len bits are incremented through all values to
154 new sub-table should be started. drop is zero when the root table is
155 being filled, and drop is root when sub-tables are being filled.
199 drop = 0; /* current bits to drop from code for index */
212 this.bits = (unsigned char)(len - drop);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inftrees.c 45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
205 drop = 0; /* current bits to drop from code for index */
218 here.bits = (unsigned char)(len - drop);
    [all...]
  /external/pdfium/third_party/zlib_v128/
inftrees.c 45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
205 drop = 0; /* current bits to drop from code for index */
218 here.bits = (unsigned char)(len - drop);
    [all...]
  /external/python/cpython2/Modules/zlib/
inftrees.c 45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
205 drop = 0; /* current bits to drop from code for index */
218 here.bits = (unsigned char)(len - drop);
    [all...]
  /external/zlib/src/
inftrees.c 45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
205 drop = 0; /* current bits to drop from code for index */
218 here.bits = (unsigned char)(len - drop);
    [all...]
  /external/syslinux/com32/lib/zlib/
inftrees.c 45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
205 drop = 0; /* current bits to drop from code for index */
218 here.bits = (unsigned char)(len - drop);
    [all...]
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/ext/
list_ext.kt 28 else -> get(0).toCamelCaseAsVar() + drop(1).joinToCamelCase()
  /hardware/qcom/gps/msm8909/utils/
LocSharedLock.h 39 // itself when the last client calls its drop() method. To add a cient,
51 // whe a client no longer needs this shared lock, drop() shall be called.
52 inline void drop() { if (1 == android_atomic_dec(&mRef)) delete this; } function in class:LocSharedLock
  /hardware/qcom/gps/msm8996/utils/
LocSharedLock.h 39 // itself when the last client calls its drop() method. To add a cient,
51 // whe a client no longer needs this shared lock, drop() shall be called.
52 inline void drop() { if (1 == android_atomic_dec(&mRef)) delete this; } function in class:LocSharedLock
  /hardware/qcom/gps/msm8998/utils/
LocSharedLock.h 39 // itself when the last client calls its drop() method. To add a cient,
51 // whe a client no longer needs this shared lock, drop() shall be called.
52 inline void drop() { if (1 == android_atomic_dec(&mRef)) delete this; } function in class:LocSharedLock
  /hardware/qcom/gps/sdm845/utils/
LocSharedLock.h 39 // itself when the last client calls its drop() method. To add a cient,
51 // whe a client no longer needs this shared lock, drop() shall be called.
52 inline void drop() { if (1 == android_atomic_dec(&mRef)) delete this; } function in class:LocSharedLock
  /libcore/ojluni/src/main/java/java/nio/channels/
MembershipKey.java 43 * membership is dropped by invoking the {@link #drop() drop} method, or
68 * valid until the membership is dropped by invoking the {@link #drop() drop}
77 * Drop membership.
96 public abstract void drop(); method in class:MembershipKey
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DropGesture.java 23 * A {@link DropGesture} is a {@link Gesture} which deals with drag and drop, so
25 * "valid", and in general gets access to the system drag and drop data
31 * The cursor has entered the drop target boundaries.
33 * @param event The {@link DropTargetEvent} for this drag and drop event
40 * The cursor is moving over the drop target.
42 * @param event The {@link DropTargetEvent} for this drag and drop event
52 * @param event The {@link DropTargetEvent} for this drag and drop event
59 * The cursor has left the drop target boundaries OR the drop has been
62 * @param event The {@link DropTargetEvent} for this drag and drop even
85 public void drop(final DropTargetEvent event) { method in class:DropGesture
    [all...]
  /system/netd/libnetdutils/
Netlink.cpp 33 onMsg(hdr, drop(take(tail, len), sizeof(hdr)));
34 tail = drop(tail, align(len, 2));
45 onAttr(hdr, drop(take(tail, len), sizeof(hdr)));
46 tail = drop(tail, align(len, 2));
Slice.cpp 49 tail = drop(tail, 1);
  /external/webrtc/webrtc/modules/video_processing/
video_decimator.cc 58 bool drop = false;
68 if (drop_count_) { // Just got here so drop to be sure.
75 drop = true;
85 drop = true;
89 drop = false;
94 return drop;
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 81 template<place > class ...Drop>
84 typedef types<typename Drop<_>::type...> drop; typedef in struct:ParameterPackExpansions::takedrop_impl::inner
92 template<unsigned N, typename...Ts> struct drop { struct in namespace:ParameterPackExpansions
94 template inner<wrap<Ts>::template inner...>::drop; // expected-error {{too few template arguments}}
101 using D1 = drop<3, int, char, double, long>::type;
109 using D2 = drop<4, int, char, double, long>::type;
113 using D3 = drop<5, int, char, double, long>::type; // expected-note {{in instantiation of}}
  /external/vboot_reference/tests/
test_using_qemu.sh 27 sudo chroot ${SYSROOT} ${QEMU_RUN} -drop-ld-preload \
  /frameworks/av/media/libstagefright/
FrameRenderTracker.cpp 115 // complete any frames queued prior to this and drop any incomplete ones if requested
118 bool drop = false; // whether to drop each frame local
121 drop = dropIncomplete;
126 drop = true;
128 drop = dropIncomplete;
140 if (drop || (it->mFence == NULL && it == mRenderQueue.begin())) {
  /external/libcap/progs/
quicktest.sh 110 fail_capsh --drop=cap_setuid --secbits=0x2f --print -- -c "./privileged --uid=$nouid"
115 # Note, the bounding set (edited with --drop) only limits p
117 pass_capsh --secbits=47 --inh=cap_setuid,cap_setgid --drop=cap_setuid \
148 --drop=all --secbits=0x2f --caps= --print
  /external/iproute2/testsuite/tests/tc/
policer.t 5 $TC filter add dev $DEV parent 10:0 protocol ip prio 10 u32 match ip protocol 1 0xff police rate 2kbit buffer 10k drop flowid 10:12
12 $TC filter add dev $DEV parent 10:0 protocol ip prio 10 u32 match ip protocol 1 0xff police rate 2kbit buffer 10k drop flowid 10:12
  /packages/providers/CalendarProvider/
maketests.py 44 drop = False
48 drop = True
49 if not drop:
52 drop = False
  /system/core/adb/daemon/
main.cpp 72 // Drop privileges by default. Set to 1 on userdebug and user builds.
76 // Drop privileges if ro.secure is set...
77 bool drop = ro_secure; local
84 drop = false;
86 // ... and "adb unroot" lets you explicitly drop privileges.
88 drop = true;
91 return drop;
93 return true; // "adb root" not allowed, always drop privileges.

Completed in 1359 milliseconds

1 2 3 4 5 6 7 8 91011>>