/external/tcpdump/ |
print-udp.c | 423 register const struct sunrpc_msg *rp; local 439 rp = (const struct sunrpc_msg *)(up + 1); 440 direction = (enum sunrpc_msg_type)EXTRACT_32BITS(&rp->rm_direction); 442 sunrpcrequest_print(ndo, (const u_char *)rp, length, 445 nfsreply_print(ndo, (const u_char *)rp, length, 506 register const struct sunrpc_msg *rp; local 509 rp = (const struct sunrpc_msg *)(up + 1); 510 if (ND_TTEST(rp->rm_direction)) { 511 direction = (enum sunrpc_msg_type)EXTRACT_32BITS(&rp->rm_direction); 513 ND_PRINT((ndo, "NFS request xid %u ", EXTRACT_32BITS(&rp->rm_xid))) [all...] |
/external/adhd/cras/src/server/ |
cras_apm_list.c | 524 float *const *rp; local 539 rp = float_buffer_read_pointer(input, offset, &nread); 555 memcpy(wp[i], rp[j], nread * sizeof(float)); 568 rp = float_buffer_read_pointer(apm->fbuffer, 0, &nread); 572 rp); 578 dsp_util_interleave(rp,
|
/external/libffi/src/pa/ |
linux.S | 52 stw %rp, -20(%sp) 102 copy %r31, %rp 247 ldw -20(%sp), %rp 248 bv %r0(%rp) 266 stw %rp, -20(%sp) 285 ldw -20(%sp), %rp
|
/external/python/cpython2/Modules/_ctypes/libffi/src/pa/ |
linux.S | 52 stw %rp, -20(%sp) 102 copy %r31, %rp 247 ldw -20(%sp), %rp 248 bv %r0(%rp) 266 stw %rp, -20(%sp) 285 ldw -20(%sp), %rp
|
/external/toybox/toys/net/ |
netstat.c | 64 struct addrinfo hints, *result, *rp; local 75 for (rp = result; rp; rp = rp->ai_next) 76 if (!getnameinfo(rp->ai_addr, sock_len, buf, 256, 0, 0, 0)) break;
|
ifconfig.c | 68 struct addrinfo hints, *result, *rp = 0; local 81 for (rp = result; rp; rp = rp->ai_next) 82 if (rp->ai_family == af) break; 83 if (!rp) error_exit("bad address '%s' : %s", host, gai_strerror(status)); 87 from = ((char *)rp->ai_addr) + 4;
|
/external/toybox/toys/pending/ |
tftp.c | 434 struct addrinfo *info, rp, *res=0; local 445 memset(&rp, 0, sizeof(rp)); 446 rp.ai_family = AF_UNSPEC; 447 rp.ai_socktype = SOCK_STREAM; 448 ret = getaddrinfo(toys.optargs[0], toys.optargs[1], &rp, &info);
|
/external/icu/icu4c/source/test/intltest/ |
plurults.cpp | 510 const char* rp = result; 511 while (*rp) { 512 while (*rp == ' ') ++rp; 513 if (!rp) { 517 const char* ep = rp; 521 UnicodeString keyword(rp, ep - rp, US_INV); 525 errln("error getting samples for %s", rp); 530 errln("count > 4 for keyword %s", rp); [all...] |
/external/libpng/ |
pngread.c | 333 png_bytep rp; local 345 for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel) 347 *(rp) = (png_byte)((256 + *rp + *(rp + 1)) & 0xff); 348 *(rp+2) = (png_byte)((256 + *(rp + 2) + *(rp + 1)) & 0xff); 353 png_bytep rp; local 649 png_bytepp rp; local 704 png_bytepp rp; local [all...] |
/external/pdfium/third_party/libpng16/ |
pngread.c | 328 png_bytep rp; local 340 for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel) 342 *(rp) = (png_byte)((256 + *rp + *(rp + 1)) & 0xff); 343 *(rp+2) = (png_byte)((256 + *(rp + 2) + *(rp + 1)) & 0xff); 348 png_bytep rp; local 643 png_bytepp rp; local 698 png_bytepp rp; local [all...] |
/external/grpc-grpc/src/core/lib/iomgr/ |
resolve_address_posix.cc | 155 static void do_request_thread(void* rp, grpc_error* error) { 156 request* r = static_cast<request*>(rp);
|
resolve_address_windows.cc | 135 static void do_request_thread(void* rp, grpc_error* error) { 136 request* r = (request*)rp;
|
/external/icu/icu4c/source/common/ |
uvectr32.h | 239 int32_t *rp = elements+count; local 241 return rp;
|
uvectr64.h | 228 int64_t *rp = elements+count; local 230 return rp;
|
/external/libvpx/libvpx/tools/ |
tiny_ssim.c | 184 static void ssim_parms_8x8(const uint8_t *s, int sp, const uint8_t *r, int rp, 193 for (i = 0; i < 8; i++, s += sp, r += rp) { 206 int rp, uint32_t *sum_s, uint32_t *sum_r, 215 for (i = 0; i < 8; i++, s += sp, r += rp) { 256 static double ssim_8x8(const uint8_t *s, int sp, const uint8_t *r, int rp) { 258 ssim_parms_8x8(s, sp, r, rp, &sum_s, &sum_r, &sum_sq_s, &sum_sq_r, &sum_sxr); 264 int rp, uint32_t bd) { 266 highbd_ssim_parms_8x8(s, sp, r, rp, &sum_s, &sum_r, &sum_sq_s, &sum_sq_r,
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
ssim_opt_x86_64.asm | 54 ; int rp 80 mov rax, arg(3) ;rp 144 ; int rp 170 mov rax, arg(3) ;rp
|
/external/skia/gm/ |
stringart.cpp | 49 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX, variable 51 path.lineTo(rp);
|
/external/skia/src/gpu/vk/ |
GrVkCopyPipeline.cpp | 200 bool GrVkCopyPipeline::isCompatible(const GrVkRenderPass& rp) const { 201 return rp.isCompatible(*fRenderPass);
|
/external/skqp/gm/ |
stringart.cpp | 49 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX, variable 51 path.lineTo(rp);
|
/external/skqp/src/gpu/vk/ |
GrVkCopyPipeline.cpp | 189 bool GrVkCopyPipeline::isCompatible(const GrVkRenderPass& rp) const { 190 return rp.isCompatible(*fRenderPass);
|
/build/soong/third_party/zip/ |
zip_test.go | 135 var rp *repeatedByte 137 rp = &r.buf[len(r.buf)-1] 139 if lastByte := rp.b; len(p) > 0 && p[0] == lastByte { 148 rp.n += int64(len(p)) 155 if rp == nil || rp.b != b { 157 rp = &r.buf[len(r.buf)-1] 159 rp.n++
|
/external/boringssl/src/crypto/fipsmodule/bn/ |
shift.c | 106 BN_ULONG *ap, *rp, t, c; local 121 rp = r->d; 125 *(rp++) = (t << 1) | c; 129 *rp = 1;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
RegisterPressure.h | 400 RegPressureTracker(IntervalPressure &rp) : P(rp), RequireIntervals(true) {} 401 RegPressureTracker(RegionPressure &rp) : P(rp), RequireIntervals(false) {}
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/ |
client.py | 111 rp = pickle.Unpickler(self._rf)
112 reply = rp.load()
113 del rp
|
/external/adhd/cras/src/tests/ |
apm_list_unittest.cc | 127 float *const *rp; local 150 rp = float_buffer_read_pointer(buf, 0, &nread); 153 ext_dsp_module_value->ports[i] = rp[i];
|