/prebuilts/ndk/r11/platforms/android-15/arch-mips/usr/include/asm/ |
io.h | 76 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) static inline void pfx##write##bwlq(type val, volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); __val = pfx##ioswab##bwlq(__mem, val); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) *__mem = __val; else if (cpu_has_64bits) { unsigned long __flags; type __tmp; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __writeq""\n\t" "dsll32 %L0, %L0, 0" "\n\t" "dsrl32 %L0, %L0, 0" "\n\t" "dsll32 %M0, %M0, 0" "\n\t" "or %L0, %L0, %M0" "\n\t" "sd %L0, %2" "\n\t" ".set mips0" "\n" : "=r" (__tmp) : "0" (__val), "m" (*__mem)); if (irq) local_irq_restore(__flags); } else BUG(); } static inline type pfx##read##bwlq(const volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) __val = *__mem; else if (cpu_has_64bits) { unsigned long __flags; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __readq" "\n\t" "ld %L0, %1" "\n\t" "dsra32 %M0, %L0, 0" "\n\t" "sll %L0, %L0, 0" "\n\t" ".set mips0" "\n" : "=r" (__val) : "m" (*__mem)); if (irq) local_irq_restore(__flags); } else { __val = 0; BUG(); } return pfx##ioswab##bwlq(__mem, __val); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bwlq(__addr, val); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); *__addr = __val; slow; } static inline type pfx##in##bwlq##p(unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); __val = *__addr; slow; return pfx##ioswab##bwlq(__addr, __val); [all...] |
/prebuilts/ndk/r11/platforms/android-16/arch-mips/usr/include/asm/ |
io.h | 76 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) static inline void pfx##write##bwlq(type val, volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); __val = pfx##ioswab##bwlq(__mem, val); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) *__mem = __val; else if (cpu_has_64bits) { unsigned long __flags; type __tmp; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __writeq""\n\t" "dsll32 %L0, %L0, 0" "\n\t" "dsrl32 %L0, %L0, 0" "\n\t" "dsll32 %M0, %M0, 0" "\n\t" "or %L0, %L0, %M0" "\n\t" "sd %L0, %2" "\n\t" ".set mips0" "\n" : "=r" (__tmp) : "0" (__val), "m" (*__mem)); if (irq) local_irq_restore(__flags); } else BUG(); } static inline type pfx##read##bwlq(const volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) __val = *__mem; else if (cpu_has_64bits) { unsigned long __flags; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __readq" "\n\t" "ld %L0, %1" "\n\t" "dsra32 %M0, %L0, 0" "\n\t" "sll %L0, %L0, 0" "\n\t" ".set mips0" "\n" : "=r" (__val) : "m" (*__mem)); if (irq) local_irq_restore(__flags); } else { __val = 0; BUG(); } return pfx##ioswab##bwlq(__mem, __val); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bwlq(__addr, val); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); *__addr = __val; slow; } static inline type pfx##in##bwlq##p(unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); __val = *__addr; slow; return pfx##ioswab##bwlq(__addr, __val); [all...] |
/prebuilts/ndk/r11/platforms/android-17/arch-mips/usr/include/asm/ |
io.h | 76 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) static inline void pfx##write##bwlq(type val, volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); __val = pfx##ioswab##bwlq(__mem, val); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) *__mem = __val; else if (cpu_has_64bits) { unsigned long __flags; type __tmp; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __writeq""\n\t" "dsll32 %L0, %L0, 0" "\n\t" "dsrl32 %L0, %L0, 0" "\n\t" "dsll32 %M0, %M0, 0" "\n\t" "or %L0, %L0, %M0" "\n\t" "sd %L0, %2" "\n\t" ".set mips0" "\n" : "=r" (__tmp) : "0" (__val), "m" (*__mem)); if (irq) local_irq_restore(__flags); } else BUG(); } static inline type pfx##read##bwlq(const volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) __val = *__mem; else if (cpu_has_64bits) { unsigned long __flags; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __readq" "\n\t" "ld %L0, %1" "\n\t" "dsra32 %M0, %L0, 0" "\n\t" "sll %L0, %L0, 0" "\n\t" ".set mips0" "\n" : "=r" (__val) : "m" (*__mem)); if (irq) local_irq_restore(__flags); } else { __val = 0; BUG(); } return pfx##ioswab##bwlq(__mem, __val); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bwlq(__addr, val); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); *__addr = __val; slow; } static inline type pfx##in##bwlq##p(unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); __val = *__addr; slow; return pfx##ioswab##bwlq(__addr, __val); [all...] |
/prebuilts/ndk/r11/platforms/android-18/arch-mips/usr/include/asm/ |
io.h | 76 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) static inline void pfx##write##bwlq(type val, volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); __val = pfx##ioswab##bwlq(__mem, val); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) *__mem = __val; else if (cpu_has_64bits) { unsigned long __flags; type __tmp; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __writeq""\n\t" "dsll32 %L0, %L0, 0" "\n\t" "dsrl32 %L0, %L0, 0" "\n\t" "dsll32 %M0, %M0, 0" "\n\t" "or %L0, %L0, %M0" "\n\t" "sd %L0, %2" "\n\t" ".set mips0" "\n" : "=r" (__tmp) : "0" (__val), "m" (*__mem)); if (irq) local_irq_restore(__flags); } else BUG(); } static inline type pfx##read##bwlq(const volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) __val = *__mem; else if (cpu_has_64bits) { unsigned long __flags; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __readq" "\n\t" "ld %L0, %1" "\n\t" "dsra32 %M0, %L0, 0" "\n\t" "sll %L0, %L0, 0" "\n\t" ".set mips0" "\n" : "=r" (__val) : "m" (*__mem)); if (irq) local_irq_restore(__flags); } else { __val = 0; BUG(); } return pfx##ioswab##bwlq(__mem, __val); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bwlq(__addr, val); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); *__addr = __val; slow; } static inline type pfx##in##bwlq##p(unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); __val = *__addr; slow; return pfx##ioswab##bwlq(__addr, __val); [all...] |
/prebuilts/ndk/r11/platforms/android-19/arch-mips/usr/include/asm/ |
io.h | 76 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) static inline void pfx##write##bwlq(type val, volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); __val = pfx##ioswab##bwlq(__mem, val); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) *__mem = __val; else if (cpu_has_64bits) { unsigned long __flags; type __tmp; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __writeq""\n\t" "dsll32 %L0, %L0, 0" "\n\t" "dsrl32 %L0, %L0, 0" "\n\t" "dsll32 %M0, %M0, 0" "\n\t" "or %L0, %L0, %M0" "\n\t" "sd %L0, %2" "\n\t" ".set mips0" "\n" : "=r" (__tmp) : "0" (__val), "m" (*__mem)); if (irq) local_irq_restore(__flags); } else BUG(); } static inline type pfx##read##bwlq(const volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) __val = *__mem; else if (cpu_has_64bits) { unsigned long __flags; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __readq" "\n\t" "ld %L0, %1" "\n\t" "dsra32 %M0, %L0, 0" "\n\t" "sll %L0, %L0, 0" "\n\t" ".set mips0" "\n" : "=r" (__val) : "m" (*__mem)); if (irq) local_irq_restore(__flags); } else { __val = 0; BUG(); } return pfx##ioswab##bwlq(__mem, __val); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bwlq(__addr, val); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); *__addr = __val; slow; } static inline type pfx##in##bwlq##p(unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); __val = *__addr; slow; return pfx##ioswab##bwlq(__addr, __val); [all...] |
/prebuilts/ndk/r11/platforms/android-9/arch-mips/usr/include/asm/ |
io.h | 76 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) static inline void pfx##write##bwlq(type val, volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); __val = pfx##ioswab##bwlq(__mem, val); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) *__mem = __val; else if (cpu_has_64bits) { unsigned long __flags; type __tmp; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __writeq""\n\t" "dsll32 %L0, %L0, 0" "\n\t" "dsrl32 %L0, %L0, 0" "\n\t" "dsll32 %M0, %M0, 0" "\n\t" "or %L0, %L0, %M0" "\n\t" "sd %L0, %2" "\n\t" ".set mips0" "\n" : "=r" (__tmp) : "0" (__val), "m" (*__mem)); if (irq) local_irq_restore(__flags); } else BUG(); } static inline type pfx##read##bwlq(const volatile void __iomem *mem) { volatile type *__mem; type __val; __mem = (void *)__swizzle_addr_##bwlq((unsigned long)(mem)); if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) __val = *__mem; else if (cpu_has_64bits) { unsigned long __flags; if (irq) local_irq_save(__flags); __asm__ __volatile__( ".set mips3" "\t\t# __readq" "\n\t" "ld %L0, %1" "\n\t" "dsra32 %M0, %L0, 0" "\n\t" "sll %L0, %L0, 0" "\n\t" ".set mips0" "\n" : "=r" (__val) : "m" (*__mem)); if (irq) local_irq_restore(__flags); } else { __val = 0; BUG(); } return pfx##ioswab##bwlq(__mem, __val); } 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); __val = pfx##ioswab##bwlq(__addr, val); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); *__addr = __val; slow; } static inline type pfx##in##bwlq##p(unsigned long port) { volatile type *__addr; type __val; __addr = (void *)__swizzle_addr_##bwlq(mips_io_port_base + port); BUILD_BUG_ON(sizeof(type) > sizeof(unsigned long)); __val = *__addr; slow; return pfx##ioswab##bwlq(__addr, __val); [all...] |
/external/iproute2/ip/ |
ipprefix.c | 77 struct in6_addr *pfx; local 80 pfx = (struct in6_addr *)RTA_DATA(tb[PREFIX_ADDRESS]); 85 pfx,
|
ipneigh.c | 37 inet_prefix pfx; member in struct:__anon20575 239 if (filter.pfx.family) { 244 if (inet_addr_match(&dst, &filter.pfx, filter.pfx.bitlen)) 411 get_prefix(&filter.pfx, *argv, filter.family); 413 filter.family = filter.pfx.family;
|
/external/iproute2/lib/ |
ll_addr.c | 63 inet_prefix pfx; local 64 if (get_addr_1(&pfx, arg, AF_INET)) { 70 memcpy(lladdr, pfx.data, 4);
|
/external/llvm/bindings/python/llvm/ |
common.py | 108 pfx, ext = 'lib', '.dylib' 110 pfx, ext = '', '.dll' 112 pfx, ext = 'lib', '.so' 116 lib = cdll.LoadLibrary(pfx + i + ext)
|
/external/ltp/utils/sctp/lib/ |
connectx.c | 182 #define __SYMPFX(pfx, sym) #pfx sym 183 #define _SYMPFX(pfx, sym) __SYMPFX(pfx, sym)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
getnameinfo.c | 114 u_char pfx;
local 172 pfx = ((struct sockaddr_in6 *)sa)->sin6_addr.s6_addr8[0];
173 if (pfx == 0 || pfx == 0xfe || pfx == 0xff)
|
/external/iproute2/examples/ |
gaiconf | 41 ${IP} -6 addrlabel list | while read p pfx l lbl; do 42 echo label ${pfx} ${lbl}
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/gcc-4.8.3/python/libstdcxx/v6/ |
printers.py | 854 for pfx in ('', 'w'): 855 add_one_type_printer(obj, 'basic_string', pfx + 'string') 856 add_one_type_printer(obj, 'basic_ios', pfx + 'ios') 857 add_one_type_printer(obj, 'basic_streambuf', pfx + 'streambuf') 858 add_one_type_printer(obj, 'basic_istream', pfx + 'istream') 859 add_one_type_printer(obj, 'basic_ostream', pfx + 'ostream') 860 add_one_type_printer(obj, 'basic_iostream', pfx + 'iostream') 861 add_one_type_printer(obj, 'basic_stringbuf', pfx + 'stringbuf') 863 pfx + 'istringstream') 865 pfx + 'ostringstream' [all...] |
/prebuilts/gdb/darwin-x86/share/pretty-printers/libstdcxx/gcc-4.8.3/ |
printers.py | 854 for pfx in ('', 'w'): 855 add_one_type_printer(obj, 'basic_string', pfx + 'string') 856 add_one_type_printer(obj, 'basic_ios', pfx + 'ios') 857 add_one_type_printer(obj, 'basic_streambuf', pfx + 'streambuf') 858 add_one_type_printer(obj, 'basic_istream', pfx + 'istream') 859 add_one_type_printer(obj, 'basic_ostream', pfx + 'ostream') 860 add_one_type_printer(obj, 'basic_iostream', pfx + 'iostream') 861 add_one_type_printer(obj, 'basic_stringbuf', pfx + 'stringbuf') 863 pfx + 'istringstream') 865 pfx + 'ostringstream' [all...] |
/prebuilts/gdb/darwin-x86/share/pretty-printers/libstdcxx/gcc-4.9/ |
printers.py | 967 for pfx in ('', 'w'): 968 add_one_type_printer(obj, 'basic_string', pfx + 'string') 969 add_one_type_printer(obj, 'basic_ios', pfx + 'ios') 970 add_one_type_printer(obj, 'basic_streambuf', pfx + 'streambuf') 971 add_one_type_printer(obj, 'basic_istream', pfx + 'istream') 972 add_one_type_printer(obj, 'basic_ostream', pfx + 'ostream') 973 add_one_type_printer(obj, 'basic_iostream', pfx + 'iostream') 974 add_one_type_printer(obj, 'basic_stringbuf', pfx + 'stringbuf') 976 pfx + 'istringstream') 978 pfx + 'ostringstream' [all...] |
/prebuilts/gdb/linux-x86/share/pretty-printers/libstdcxx/gcc-4.8.3/ |
printers.py | 854 for pfx in ('', 'w'): 855 add_one_type_printer(obj, 'basic_string', pfx + 'string') 856 add_one_type_printer(obj, 'basic_ios', pfx + 'ios') 857 add_one_type_printer(obj, 'basic_streambuf', pfx + 'streambuf') 858 add_one_type_printer(obj, 'basic_istream', pfx + 'istream') 859 add_one_type_printer(obj, 'basic_ostream', pfx + 'ostream') 860 add_one_type_printer(obj, 'basic_iostream', pfx + 'iostream') 861 add_one_type_printer(obj, 'basic_stringbuf', pfx + 'stringbuf') 863 pfx + 'istringstream') 865 pfx + 'ostringstream' [all...] |
/prebuilts/gdb/linux-x86/share/pretty-printers/libstdcxx/gcc-4.9/ |
printers.py | 967 for pfx in ('', 'w'): 968 add_one_type_printer(obj, 'basic_string', pfx + 'string') 969 add_one_type_printer(obj, 'basic_ios', pfx + 'ios') 970 add_one_type_printer(obj, 'basic_streambuf', pfx + 'streambuf') 971 add_one_type_printer(obj, 'basic_istream', pfx + 'istream') 972 add_one_type_printer(obj, 'basic_ostream', pfx + 'ostream') 973 add_one_type_printer(obj, 'basic_iostream', pfx + 'iostream') 974 add_one_type_printer(obj, 'basic_stringbuf', pfx + 'stringbuf') 976 pfx + 'istringstream') 978 pfx + 'ostringstream' [all...] |
/prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.8/ |
printers.py | 854 for pfx in ('', 'w'): 855 add_one_type_printer(obj, 'basic_string', pfx + 'string') 856 add_one_type_printer(obj, 'basic_ios', pfx + 'ios') 857 add_one_type_printer(obj, 'basic_streambuf', pfx + 'streambuf') 858 add_one_type_printer(obj, 'basic_istream', pfx + 'istream') 859 add_one_type_printer(obj, 'basic_ostream', pfx + 'ostream') 860 add_one_type_printer(obj, 'basic_iostream', pfx + 'iostream') 861 add_one_type_printer(obj, 'basic_stringbuf', pfx + 'stringbuf') 863 pfx + 'istringstream') 865 pfx + 'ostringstream' [all...] |
/prebuilts/python/linux-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.8/ |
printers.py | 854 for pfx in ('', 'w'): 855 add_one_type_printer(obj, 'basic_string', pfx + 'string') 856 add_one_type_printer(obj, 'basic_ios', pfx + 'ios') 857 add_one_type_printer(obj, 'basic_streambuf', pfx + 'streambuf') 858 add_one_type_printer(obj, 'basic_istream', pfx + 'istream') 859 add_one_type_printer(obj, 'basic_ostream', pfx + 'ostream') 860 add_one_type_printer(obj, 'basic_iostream', pfx + 'iostream') 861 add_one_type_printer(obj, 'basic_stringbuf', pfx + 'stringbuf') 863 pfx + 'istringstream') 865 pfx + 'ostringstream' [all...] |
/device/google/contexthub/firmware/os/platform/stm32/ |
crt_stm32.c | 20 #define VEC_(nm, pfx) void nm##pfx(void) __attribute__ ((weak, alias ("IntDefaultHandler")))
|
/external/elfutils/tests/ |
allregs.c | 74 const char *set, *pfx; member in struct:reginfo 119 state->info[regno].pfx = prefix; 182 state.info[i].pfx ?: "", state.info[i].name,
|
/external/iptables/extensions/ |
libxt_devgroup.c | 113 static void devgroup_show(const char *pfx, const struct xt_devgroup_info *info, 119 printf(" %ssrc-group ", pfx); 126 printf(" %sdst-group ", pfx);
|
/external/syslinux/core/ |
dmi.c | 267 static const char *dmi_install_string(const char *pfx, const char *str) 289 pfxlen = strlen(pfx); 293 memcpy(q, pfx, pfxlen);
|
/external/boringssl/src/crypto/pkcs8/ |
pkcs8_x509.c | 475 CBS in, pfx, mac_data, authsafe, content_type, wrapped_authsafes, authsafes; local 497 if (!CBS_get_asn1(&in, &pfx, CBS_ASN1_SEQUENCE) || 499 !CBS_get_asn1_uint64(&pfx, &version)) { 509 if (!CBS_get_asn1(&pfx, &authsafe, CBS_ASN1_SEQUENCE)) { 514 if (CBS_len(&pfx) == 0) { 519 if (!CBS_get_asn1(&pfx, &mac_data, CBS_ASN1_SEQUENCE)) {
|