HomeSort by relevance Sort by last modified time
    Searched defs:inl (Results 1 - 21 of 21) sorted by null

  /external/boringssl/src/crypto/x509/
a_verify.c 78 int ret = 0, inl; local
96 inl = ASN1_item_i2d(asn, &buf_in, it);
103 if (!EVP_DigestVerifyUpdate(&ctx, buf_in, inl)) {
104 OPENSSL_cleanse(buf_in, (unsigned int)inl);
110 OPENSSL_cleanse(buf_in, (unsigned int)inl);
a_sign.c 86 size_t inl = 0, outl = 0, outll = 0; local
98 inl = ASN1_item_i2d(asn, &buf_in, it);
107 if (!EVP_DigestSignUpdate(ctx, buf_in, inl)
127 OPENSSL_cleanse((char *)buf_in, (unsigned int)inl);
  /external/clang/test/CodeGenCXX/
tls-init-funcs.cpp 27 inline int &inl() { function
31 int &use_inl() { return inl(); }
mangle-template.cpp 184 template <typename> inline int inl(bool b) { function in namespace:test14
202 int call(bool b) { return inl<void>(b); }
  /external/syslinux/com32/include/sys/
io.h 20 static inline uint32_t inl(uint16_t p) function
23 asm volatile ("inl %1,%0":"=a" (v):"Nd"(p));
  /external/v8/src/
source-position.cc 7 #include "src/objects-inl.h"
64 const auto& inl = cinfo->inlined_functions()[pos.InliningId()]; local
65 stack.push_back(pos.Info(inl.shared_info));
66 pos = inl.position.position;
79 InliningPosition inl = local
82 deopt_data->GetInlinedFunction(inl.inlined_function_id));
84 pos = inl.position;
117 InliningPosition inl = deopt_data->InliningPositions()->get(InliningId()); local
118 if (inl.inlined_function_id == -1) {
122 deopt_data->GetInlinedFunction(inl.inlined_function_id)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
io.h 80 inl (unsigned short int __port) function
84 __asm__ __volatile__ ("inl %w1,%0":"=a" (_v):"Nd" (__port));
92 __asm__ __volatile__ ("inl %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (__port));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
io.h 80 inl (unsigned short int __port) function
84 __asm__ __volatile__ ("inl %w1,%0":"=a" (_v):"Nd" (__port));
92 __asm__ __volatile__ ("inl %w1,%0\noutb %%al,$0x80":"=a" (_v)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
io.h 80 inl (unsigned short int __port) function
84 __asm__ __volatile__ ("inl %w1,%0":"=a" (_v):"Nd" (__port));
92 __asm__ __volatile__ ("inl %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (__port));
  /hardware/intel/img/psb_video/src/
tng_enc_trace.h 37 #define inl(...) 0 macro
65 return inl(0xCFC);
  /external/llvm/test/MC/X86/
x86-32.s 621 // CHECK: inl %dx, %eax
622 inl (%dx), %eax label
623 // CHECK: inl %dx, %eax
intel-syntax.s 436 // CHECK: inl %dx, %eax
442 inl DX define
x86-64.s 247 // CHECK: inl %dx, %eax
252 inl %dx label
274 // CHECK: inl %dx, %eax
275 // CHECK: inl %dx, %eax
282 inl (%dx), %eax label
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
io.h 318 uint32_t inl ( volatile uint32_t *io_addr );
319 #define inl( io_addr ) IOAPI_READ ( inl, uint32_t, io_addr, "IO", 8 ) macro
460 #define inl_p( io_addr ) INX_P ( inl, uint32_t, io_addr )
  /external/libjpeg-turbo/simd/
jdsample-altivec.c 319 __vector unsigned char in, inl, inh; local
329 inl = vec_mergeh(in, in);
332 vec_st(inl, 0, outptr);
337 inl = vec_mergeh(in, in);
340 vec_st(inl, 32, outptr);
358 __vector unsigned char in, inl, inh; local
370 inl = vec_mergeh(in, in);
373 vec_st(inl, 0, outptr0);
374 vec_st(inl, 0, outptr1);
381 inl = vec_mergeh(in, in)
    [all...]
  /external/lz4/programs/
lz4cli.c 577 size_t const inl = strlen(input_filename); local
578 dynNameSpace = (char*)calloc(1,inl+1);
581 outl = inl;
582 if (inl>4)
583 while ((outl >= inl-4) && (input_filename[outl] == extension[outl-inl+4])) dynNameSpace[outl--]=0;
584 if (outl != inl-5) { DISPLAYLEVEL(1, "Cannot determine an output filename\n"); badusage(exeName); }
  /external/swiftshader/third_party/LLVM/test/MC/X86/
x86-64.s 244 // CHECK: inl %dx
249 inl %dx label
271 // CHECK: inl %dx
272 // CHECK: inl %dx
279 inl (%dx), %eax label
  /external/openssh/
packet.c 742 size_t inl, outl; local
746 if ((r = sshbuf_get_string_direct(b, &inblob, &inl)) != 0 ||
749 if (inl == 0)
751 else if (inl != sizeof(state->compression_in_stream)) {
756 memcpy(&state->compression_in_stream, inblob, inl);
    [all...]