HomeSort by relevance Sort by last modified time
    Searched refs:pad (Results 276 - 300 of 606) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
xteststr.h 42 CARD8 pad; member in struct:__anon29147
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
desc_32.h 29 unsigned short pad; member in struct:Xgt_desc_struct
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
desc_32.h 29 unsigned short pad; member in struct:Xgt_desc_struct
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
desc_32.h 29 unsigned short pad; member in struct:Xgt_desc_struct
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
desc_32.h 29 unsigned short pad; member in struct:Xgt_desc_struct
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
desc_32.h 29 unsigned short pad; member in struct:Xgt_desc_struct
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
desc_32.h 34 unsigned short pad; member in struct:Xgt_desc_struct
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
desc_32.h 34 unsigned short pad; member in struct:Xgt_desc_struct
  /system/media/camera/docs/
metadata_helpers.py 149 # pad with spaces to make string len == size. add new line if too big
152 Creates a function that given a string will pad it with spaces to make
166 Deprecated. Use pad instead since it works for non-first items in a
193 # Pad the string until the buffer reaches the desired column.
195 def pad(col): function
197 Create a function that given a string will pad it to the specified column col.
198 If the string overflows the column, put the string on a new line and pad it.
207 pad(8)("hello") == 'hello '
  /bionic/libc/kernel/common/linux/
pkt_cls.h 272 __u8 pad; member in struct:tc_rsvp_pinfo
422 __u16 pad; member in struct:tcf_ematch_hdr
  /dalvik/vm/arch/arm/
CallEABI.S 106 * F - pad flag -- if set, write a pad word to the stack
113 * in a row, and the first word can never be a pad -- but there's really
158 @.pad #4 @ adjust for 64-bit align
182 * inserting pad words when appropriate.
204 @ held in r2-r3. It's possible r3 will hold a pad, so check the
206 @ indicate a pad in r2) and shifting the second into the carry flag.
207 @ If the carry is set, r3 will hold a pad, so we adjust argv less.
223 @ Get pad flag into carry bit. If it's set, we don't pull a value
230 DBG movcs ip, #-3 @ DEBUG DEBUG - make pad word obviou
    [all...]
  /development/ndk/platforms/android-3/include/linux/
pkt_cls.h 252 __u8 pad; member in struct:tc_rsvp_pinfo
328 __u16 pad; member in struct:tcf_ematch_hdr
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 232 # Pad an array with a given <tt>value</tt> upto a given <tt>length</tt>.
234 # [0,1,2].pad(6,"a") #=> [0,1,2,"a","a","a"]
239 # [0,1,2].pad(-6,"a") #=> ["a","a","a",0,1,2]
243 def pad( len, val=nil ) method in class:Array
252 # Like #pad but changes the array in place.
255 # a.pad!(6,"x")
260 def pad!( len, val=nil )
  /external/dnsmasq/contrib/dnslist/
dnslist.pl 198 $sec = pad($sec, '0', 2);
199 $min = pad($min, '0', 2);
200 $hour = pad($hour, '0', 2);
201 $mon = pad($mon, '0', 2);
202 $mday = pad($mday, '0', 2);
206 # Pad string to a certain length by repeatedly prepending another string.
207 sub pad { subroutine
208 my ($text, $pad, $length) = @_;
210 $text = "$pad$text";