/external/vboot_reference/tests/futility/ |
test_show_kernel.sh | 22 # Pack kernel data key using original vboot utilities. 23 ${FUTILITY} vbutil_key --pack ${TMP}.datakey.test \ 28 ${FUTILITY} vbutil_keyblock --pack ${TMP}.keyblock.test \ 35 --pack ${TMP}.kernel.test \
|
/external/vboot_reference/tests/ |
load_kernel_tests.sh | 29 # Pack kernel data key using original vboot utilities. 30 ${FUTILITY} vbutil_key --pack datakey.test \ 35 ${FUTILITY} vbutil_keyblock --pack keyblock.test \ 42 --pack "kernel.test" \
|
/external/wpa_supplicant_8/src/common/ |
eapol_common.h | 15 #pragma pack(push, 1) 32 #pragma pack(pop) 61 #pragma pack(push, 1) 89 #pragma pack(pop)
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
mssip.h | 13 #pragma pack (8) 79 #pragma pack() 92 #pragma pack(8) 123 #pragma pack()
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
aboutDialog.py | 37 frameButtons.pack(side=BOTTOM, fill=X) 38 frameMain.pack(side=TOP, expand=TRUE, fill=BOTH) 41 self.buttonOk.pack(padx=5, pady=5) 44 frameBg.pack(expand=TRUE, fill=BOTH) 78 buttonLicense.pack(side=LEFT, padx=10, pady=10) 82 buttonCopyright.pack(side=LEFT, padx=10, pady=10) 86 buttonCredits.pack(side=LEFT, padx=10, pady=10) 98 idle_about_b.pack(side=LEFT, padx=10, pady=10) 102 idle_news_b.pack(side=LEFT, padx=10, pady=10) 106 idle_credits_b.pack(side=LEFT, padx=10, pady=10 [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
aboutDialog.py | 37 frameButtons.pack(side=BOTTOM, fill=X) 38 frameMain.pack(side=TOP, expand=TRUE, fill=BOTH) 41 self.buttonOk.pack(padx=5, pady=5) 44 frameBg.pack(expand=TRUE, fill=BOTH) 78 buttonLicense.pack(side=LEFT, padx=10, pady=10) 82 buttonCopyright.pack(side=LEFT, padx=10, pady=10) 86 buttonCredits.pack(side=LEFT, padx=10, pady=10) 98 idle_about_b.pack(side=LEFT, padx=10, pady=10) 102 idle_news_b.pack(side=LEFT, padx=10, pady=10) 106 idle_credits_b.pack(side=LEFT, padx=10, pady=10 [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
aboutDialog.py | 37 frameButtons.pack(side=BOTTOM, fill=X) 38 frameMain.pack(side=TOP, expand=TRUE, fill=BOTH) 41 self.buttonOk.pack(padx=5, pady=5) 44 frameBg.pack(expand=TRUE, fill=BOTH) 78 buttonLicense.pack(side=LEFT, padx=10, pady=10) 82 buttonCopyright.pack(side=LEFT, padx=10, pady=10) 86 buttonCredits.pack(side=LEFT, padx=10, pady=10) 98 idle_about_b.pack(side=LEFT, padx=10, pady=10) 102 idle_news_b.pack(side=LEFT, padx=10, pady=10) 106 idle_credits_b.pack(side=LEFT, padx=10, pady=10 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
aboutDialog.py | 37 frameButtons.pack(side=BOTTOM, fill=X) 38 frameMain.pack(side=TOP, expand=TRUE, fill=BOTH) 41 self.buttonOk.pack(padx=5, pady=5) 44 frameBg.pack(expand=TRUE, fill=BOTH) 78 buttonLicense.pack(side=LEFT, padx=10, pady=10) 82 buttonCopyright.pack(side=LEFT, padx=10, pady=10) 86 buttonCredits.pack(side=LEFT, padx=10, pady=10) 98 idle_about_b.pack(side=LEFT, padx=10, pady=10) 102 idle_news_b.pack(side=LEFT, padx=10, pady=10) 106 idle_credits_b.pack(side=LEFT, padx=10, pady=10 [all...] |
/system/core/mkbootimg/ |
mkbootimg | 20 from struct import pack 38 sha.update(pack('I', filesize(f))) 40 sha.update(pack('I', 0)) 45 f.write(pack(str(pad) + 'x')) 50 args.output.write(pack('8s', BOOT_MAGIC)) 51 args.output.write(pack('10I', 62 args.output.write(pack('16s', args.board.encode())) # asciiz product name 63 args.output.write(pack('512s', args.cmdline[:512].encode())) 69 img_id = pack('32s', sha.digest()) 72 args.output.write(pack('1024s', args.cmdline[512:].encode()) [all...] |
/toolchain/binutils/binutils-2.25/cpu/ |
frv.cpu | [all...] |
/bionic/tools/relocation_packer/src/ |
packer.h | 5 // Pack relative relocations into a more compact form. 22 // Pack relocations into a more compact form.
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/ |
p14.cpp | 18 // parameter pack that has not been expanded; otherwise, it is parsed 24 typedef identity<T(Types......)> variadic_function_pack_1; // expected-warning {{varargs}} expected-note {{pack}} expected-note {{insert ','}}
|
/external/clang/test/CXX/temp/temp.param/ |
p11-0x.cpp | 5 // default template-argument supplied or be a template parameter pack. 25 // template parameter pack, it shall be the last template-parameter. 26 template<typename ...Types, // expected-error{{template parameter pack must be the last template parameter}} 30 template<typename ...Types, // expected-error{{template parameter pack must be the last template parameter}} 34 template<int ...Values, // expected-error{{template parameter pack must be the last template parameter}} 37 template<int ...Values, // expected-error{{template parameter pack must be the last template parameter}} 41 template<template<typename> class ...Templates, // expected-error{{template parameter pack must be the last template parameter}} 44 template<template<typename> class ...Templates, // expected-error{{template parameter pack must be the last template parameter}}
|
/external/clang/test/Sema/ |
pragma-pack-5.c | 4 // Check #pragma pack handling with bitfields. 7 #pragma pack(2)
|
/external/clang/test/SemaTemplate/ |
ms-if-exists.cpp | 63 __if_exists(T::operator Ts) { // expected-error{{__if_exists name contains unexpanded parameter pack 'Ts'}} 66 __if_not_exists(Ts::operator T) { // expected-error{{__if_not_exists name contains unexpanded parameter pack 'Ts'}}
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/ |
build.xml | 20 <target name="pack-natives"> 32 <target name="all" depends="compile-natives,pack-natives"/>
|
/external/libgdx/extensions/gdx-bullet/jni/ |
build.xml | 20 <target name="pack-natives"> 32 <target name="all" depends="compile-natives,pack-natives"/>
|
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ |
build.xml | 18 <target name="pack-natives"> 30 <target name="all" depends="compile-natives,pack-natives"/>
|
/external/libgdx/extensions/gdx-freetype/jni/ |
build.xml | 20 <target name="pack-natives"> 32 <target name="all" depends="compile-natives,pack-natives"/>
|
/external/libgdx/gdx/jni/ |
build.xml | 20 <target name="pack-natives"> 32 <target name="all" depends="compile-natives,pack-natives"/>
|
/external/libmtp/src/ |
README | 6 ptp-pack.c 7 ptp-pack.h
|
/external/skia/src/sfnt/ |
SkOTTable_OS_2.h | 18 #pragma pack(push, 1) 42 #pragma pack(pop)
|
SkOTTable_gasp.h | 15 #pragma pack(push, 1) 66 #pragma pack(pop)
|
SkSFNTHeader.h | 18 #pragma pack(push, 1) 64 #pragma pack(pop)
|
SkTTCFHeader.h | 13 #pragma pack(push, 1) 51 #pragma pack(pop)
|