Home
last modified time | relevance | path

Searched refs:rp (Results 1 - 25 of 318) sorted by relevance

12345678910>>...13

/third_party/libwebsockets/lib/roles/http/server/
H A Dranges.c63 * returns 0 if no further valid range forthcoming; rp->state
68 lws_ranges_next(struct lws_range_parsing *rp) in lws_ranges_next() argument
74 char c = rp->buf[rp->pos]; in lws_ranges_next()
76 switch (rp->state) { in lws_ranges_next()
82 rp->state = LWSRS_COMPLETED; in lws_ranges_next()
86 if (c != beq[rp->pos]) { in lws_ranges_next()
87 rp->state = LWSRS_SYNTAX; in lws_ranges_next()
90 if (rp->pos == 5) in lws_ranges_next()
91 rp in lws_ranges_next()
166 lws_ranges_reset(struct lws_range_parsing *rp) lws_ranges_reset() argument
181 lws_ranges_init(struct lws *wsi, struct lws_range_parsing *rp, unsigned long long extent) lws_ranges_init() argument
[all...]
/third_party/skia/third_party/externals/libpng/powerpc/
H A Dfilter_vsx_intrinsics.c44 png_bytep rp = row + offset;\
46 size_t unaligned_top = 16 - (((size_t)rp % 16));\
71 *rp = (png_byte)(((int)(*rp) + (int)(*pp++)) & 0xff); in png_read_filter_row_up_vsx()
72 rp++; in png_read_filter_row_up_vsx()
78 rp_vec = vec_ld(0,rp); in png_read_filter_row_up_vsx()
83 vec_st(rp_vec,0,rp); in png_read_filter_row_up_vsx()
86 rp += 16; in png_read_filter_row_up_vsx()
97 *rp = (png_byte)(((int)(*rp) in png_read_filter_row_up_vsx()
[all...]
/third_party/ntfs-3g/libntfs-3g/
H A Dlogfile.c48 * @rp: restart page header to check
51 * Check the restart page header @rp for consistency and return TRUE if it is
54 * This function only needs NTFS_BLOCK_SIZE bytes in @rp, i.e. it does not
57 static BOOL ntfs_check_restart_page_header(RESTART_PAGE_HEADER *rp, s64 pos) in ntfs_check_restart_page_header() argument
68 logfile_system_page_size = le32_to_cpu(rp->system_page_size); in ntfs_check_restart_page_header()
69 logfile_log_page_size = le32_to_cpu(rp->log_page_size); in ntfs_check_restart_page_header()
93 if (((rp->major_ver != const_cpu_to_sle16(1)) in ntfs_check_restart_page_header()
94 || (rp->minor_ver != const_cpu_to_sle16(1))) in ntfs_check_restart_page_header()
95 && ((rp->major_ver != const_cpu_to_sle16(2)) in ntfs_check_restart_page_header()
96 || (rp in ntfs_check_restart_page_header()
169 ntfs_check_restart_area(RESTART_PAGE_HEADER *rp) ntfs_check_restart_area() argument
284 ntfs_check_log_client_array(RESTART_PAGE_HEADER *rp) ntfs_check_log_client_array() argument
374 ntfs_check_and_load_restart_page(ntfs_attr *log_na, RESTART_PAGE_HEADER *rp, s64 pos, RESTART_PAGE_HEADER **wrp, LSN *lsn) ntfs_check_and_load_restart_page() argument
492 ntfs_check_logfile(ntfs_attr *log_na, RESTART_PAGE_HEADER **rp) ntfs_check_logfile() argument
679 ntfs_is_logfile_clean(ntfs_attr *log_na, RESTART_PAGE_HEADER *rp) ntfs_is_logfile_clean() argument
[all...]
/third_party/skia/third_party/externals/libpng/
H A Dpngtrans.c271 png_bytep rp = row; in png_do_invert() local
277 *rp = (png_byte)(~(*rp)); in png_do_invert()
278 rp++; in png_do_invert()
285 png_bytep rp = row; in png_do_invert() local
291 *rp = (png_byte)(~(*rp)); in png_do_invert()
292 rp += 2; in png_do_invert()
300 png_bytep rp = row; in png_do_invert() local
306 *rp in png_do_invert()
325 png_bytep rp = row; png_do_swap() local
461 png_bytep rp; png_do_packswap() local
630 png_bytep rp; png_do_bgr() local
643 png_bytep rp; png_do_bgr() local
660 png_bytep rp; png_do_bgr() local
676 png_bytep rp; png_do_bgr() local
711 png_bytep rp = png_ptr->row_buf + row_info->rowbytes - 1; png_do_check_palette_indexes() local
[all...]
/third_party/skia/third_party/externals/libpng/arm/
H A Dfilter_neon_intrinsics.c55 png_bytep rp = row; in png_read_filter_row_up_neon() local
61 for (; rp < rp_stop; rp += 16, pp += 16) in png_read_filter_row_up_neon()
65 qrp = vld1q_u8(rp); in png_read_filter_row_up_neon()
68 vst1q_u8(rp, qrp); in png_read_filter_row_up_neon()
76 png_bytep rp = row; in png_read_filter_row_sub3_neon() local
79 uint8x16_t vtmp = vld1q_u8(rp); in png_read_filter_row_sub3_neon()
88 for (; rp < rp_stop;) in png_read_filter_row_sub3_neon()
102 vtmp = vld1q_u8(rp + 12); in png_read_filter_row_sub3_neon()
106 vst1_lane_u32(png_ptr(uint32_t,rp), png_ld in png_read_filter_row_sub3_neon()
123 png_bytep rp = row; png_read_filter_row_sub4_neon() local
155 png_bytep rp = row; png_read_filter_row_avg3_neon() local
223 png_bytep rp = row; png_read_filter_row_avg4_neon() local
292 png_bytep rp = row; png_read_filter_row_paeth3_neon() local
360 png_bytep rp = row; png_read_filter_row_paeth4_neon() local
421 png_bytep rp = row; png_read_filter_row_up_neon() local
458 png_bytep rp = row; png_read_filter_row_up_x2_neon() local
505 png_bytep rp = row; png_read_filter_row_sub3_neon() local
580 png_bytep rp = row; png_read_filter_row_sub4_neon() local
647 png_bytep rp = row; png_read_filter_row_avg3_neon() local
758 png_bytep rp = row; png_read_filter_row_avg3_x2_neon() local
942 png_bytep rp = row; png_read_filter_row_avg4_neon() local
1035 png_bytep rp = row; png_read_filter_row_avg4_x2_neon() local
1198 png_bytep rp = row; png_read_filter_row_paeth3_neon() local
1310 png_bytep rp = row; png_read_filter_row_paeth3_x2_neon() local
1499 png_bytep rp = row; png_read_filter_row_paeth4_neon() local
1597 png_bytep rp = row; png_read_filter_row_paeth4_x2_neon() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_sparc.c16 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont() argument
19 int bn_mul_mont_vis3(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont()
21 int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont()
23 int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont()
30 typedef int (*bn_mul_mont_f) (BN_ULONG *rp, const BN_ULONG *ap, in bn_mul_mont()
34 int bn_mul_mont_t4_8(BN_ULONG *rp, const BN_ULONG *ap, in bn_mul_mont()
37 int bn_mul_mont_t4_16(BN_ULONG *rp, const BN_ULONG *ap, in bn_mul_mont()
40 int bn_mul_mont_t4_24(BN_ULONG *rp, const BN_ULONG *ap, in bn_mul_mont()
43 int bn_mul_mont_t4_32(BN_ULONG *rp, const BN_ULONG *ap, in bn_mul_mont()
52 if ((*worker) (rp, a in bn_mul_mont()
[all...]
H A Dbn_nist.c396 unsigned int *rp = (unsigned int *)r_d; in BN_nist_mod_192() local
399 acc = load_u32(&rp[0]); in BN_nist_mod_192()
402 store_lo32(&rp[0], acc); in BN_nist_mod_192()
405 acc += load_u32(&rp[1]); in BN_nist_mod_192()
408 store_lo32(&rp[1], acc); in BN_nist_mod_192()
411 acc += load_u32(&rp[2]); in BN_nist_mod_192()
415 store_lo32(&rp[2], acc); in BN_nist_mod_192()
418 acc += load_u32(&rp[3]); in BN_nist_mod_192()
422 store_lo32(&rp[3], acc); in BN_nist_mod_192()
425 acc += load_u32(&rp[ in BN_nist_mod_192()
543 unsigned int *rp = (unsigned int *)r_d; BN_nist_mod_224() local
705 unsigned int *rp = (unsigned int *)r_d; BN_nist_mod_256() local
942 unsigned int *rp = (unsigned int *)r_d; BN_nist_mod_384() local
[all...]
H A Dbn_add.c80 BN_ULONG *rp, carry, t1, t2; in BN_uadd() local
103 rp = r->d; in BN_uadd()
105 carry = bn_add_words(rp, ap, bp, min); in BN_uadd()
106 rp += min; in BN_uadd()
113 *(rp++) = t2; in BN_uadd()
116 *rp = carry; in BN_uadd()
128 BN_ULONG t1, t2, borrow, *rp; in BN_usub() local
148 rp = r->d; in BN_usub()
150 borrow = bn_sub_words(rp, ap, bp, min); in BN_usub()
152 rp in BN_usub()
[all...]
/third_party/openssl/crypto/bn/
H A Dbn_sparc.c16 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont() argument
19 int bn_mul_mont_vis3(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont()
21 int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont()
23 int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_mul_mont()
30 typedef int (*bn_mul_mont_f) (BN_ULONG *rp, const BN_ULONG *ap, in bn_mul_mont()
34 int bn_mul_mont_t4_8(BN_ULONG *rp, const BN_ULONG *ap, in bn_mul_mont()
37 int bn_mul_mont_t4_16(BN_ULONG *rp, const BN_ULONG *ap, in bn_mul_mont()
40 int bn_mul_mont_t4_24(BN_ULONG *rp, const BN_ULONG *ap, in bn_mul_mont()
43 int bn_mul_mont_t4_32(BN_ULONG *rp, const BN_ULONG *ap, in bn_mul_mont()
52 if ((*worker) (rp, a in bn_mul_mont()
[all...]
H A Dbn_nist.c374 unsigned int *rp = (unsigned int *)r_d; in BN_nist_mod_192() local
377 acc = rp[0]; in BN_nist_mod_192()
380 rp[0] = (unsigned int)acc; in BN_nist_mod_192()
383 acc += rp[1]; in BN_nist_mod_192()
386 rp[1] = (unsigned int)acc; in BN_nist_mod_192()
389 acc += rp[2]; in BN_nist_mod_192()
393 rp[2] = (unsigned int)acc; in BN_nist_mod_192()
396 acc += rp[3]; in BN_nist_mod_192()
400 rp[3] = (unsigned int)acc; in BN_nist_mod_192()
403 acc += rp[ in BN_nist_mod_192()
521 unsigned int *rp = (unsigned int *)r_d; BN_nist_mod_224() local
683 unsigned int *rp = (unsigned int *)r_d; BN_nist_mod_256() local
920 unsigned int *rp = (unsigned int *)r_d; BN_nist_mod_384() local
[all...]
H A Dbn_add.c80 BN_ULONG *rp, carry, t1, t2; in BN_uadd() local
103 rp = r->d; in BN_uadd()
105 carry = bn_add_words(rp, ap, bp, min); in BN_uadd()
106 rp += min; in BN_uadd()
113 *(rp++) = t2; in BN_uadd()
116 *rp = carry; in BN_uadd()
128 BN_ULONG t1, t2, borrow, *rp; in BN_usub() local
148 rp = r->d; in BN_usub()
150 borrow = bn_sub_words(rp, ap, bp, min); in BN_usub()
152 rp in BN_usub()
[all...]
/third_party/icu/icu4c/source/tools/tzcode/
H A Dzic.c171 static zic_t rpytime(const struct rule * rp, zic_t wantedy);
172 static void rulesub(struct rule * rp,
902 register struct rule * rp; in associate() local
940 rp = &rules[base]; in associate()
942 if (strcmp(rp->r_name, rules[out].r_name) != 0) in associate()
946 if (strcmp(zp->z_rule, rp->r_name) != 0) in associate()
948 zp->z_rules = rp; in associate()
1394 rulesub(register struct rule *const rp, in rulesub() argument
1411 rp->r_month = lp->l_value; in rulesub()
1412 rp in rulesub()
2022 stringrule(char *result, const struct rule *const rp, const zic_t dstoff, const zic_t gmtoff) stringrule() argument
2110 register struct rule * rp; stringzone() local
2221 register struct rule * rp; outzone() local
2982 rpytime(register const struct rule *const rp, register const zic_t wantedy) rpytime() argument
[all...]
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H A Dzic.c170 static zic_t rpytime(const struct rule * rp, zic_t wantedy);
171 static void rulesub(struct rule * rp,
901 register struct rule * rp; in associate() local
939 rp = &rules[base]; in associate()
941 if (strcmp(rp->r_name, rules[out].r_name) != 0) in associate()
945 if (strcmp(zp->z_rule, rp->r_name) != 0) in associate()
947 zp->z_rules = rp; in associate()
1393 rulesub(register struct rule *const rp, in rulesub() argument
1410 rp->r_month = lp->l_value; in rulesub()
1411 rp in rulesub()
2021 stringrule(char *result, const struct rule *const rp, const zic_t dstoff, const zic_t gmtoff) stringrule() argument
2109 register struct rule * rp; stringzone() local
2220 register struct rule * rp; outzone() local
2981 rpytime(register const struct rule *const rp, register const zic_t wantedy) rpytime() argument
[all...]
/third_party/libunwind/libunwind/tests/
H A Dia64-test-nat-asm.S37 br.call.sptk.many rp = b6;; \
52 br.ret.sptk.many rp
66 .save rp, loc1
67 mov loc1 = rp
89 mov rp = loc1
90 br.ret.sptk.many rp
104 .save rp, loc1
105 mov loc1 = rp
126 mov rp = loc1
127 br.ret.sptk.many rp
[all...]
H A Dia64-dyn-asm.S6 br.ret.sptk.many rp
19 mov r3 = rp
20 mov rp = loc0 // trash rp
32 br.call.sptk rp = b6
36 ld8 r3 = [r2] // r3 = saved rp
40 mov rp = r3
43 {.mib; st8 [sp] = in0 // trash rp save location
45 br.ret.sptk.many rp
54 mov loc0 = rp
[all...]
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Drestrict.c6 void *restrict rp; variable
10 void f01(typeof(&rp) dst) { } /* check-should-pass */
16 rp = up; /* check-should-pass */ in foo()
17 up = rp; /* check-should-pass */ in foo()
42 prp = &rp; /* check-should-pass */ in bar()
48 pup = &rp; /* check-should-fail */ in bar()
54 extern typeof(&rp) prp; in baz()
57 prp = &rp; /* check-should-pass */ in baz()
63 pup = &rp; /* check-should-fail */ in baz()
/third_party/alsa-utils/seq/aseqnet/
H A Daseqnet.c316 static void get_net_addr(struct addrinfo *rp, char *buf, size_t buflen) in get_net_addr() argument
320 switch (rp->ai_family) { in get_net_addr()
322 ptr = &((struct sockaddr_in *) rp->ai_addr)->sin_addr; in get_net_addr()
325 ptr = &((struct sockaddr_in6 *) rp->ai_addr)->sin6_addr; in get_net_addr()
331 inet_ntop(rp->ai_family, ptr, buf, buflen-1); in get_net_addr()
350 struct addrinfo *result, *rp; in init_server() local
365 for (rp = result; rp != NULL; rp = rp in init_server()
435 struct addrinfo *result, *rp; init_client() local
[all...]
/third_party/musl/porting/liteos_a/kernel/src/internal/
H A Dfloatscan.c72 int rp; in decfloat() local
164 rp = lrp; in decfloat()
167 if (lnz<9 && lnz<=rp && rp < 18) { in decfloat()
168 if (rp == 9) return sign * (long double)x[0]; in decfloat()
169 if (rp < 9) return sign * (long double)x[0] / p10s[8-rp]; in decfloat()
170 int bitlim = bits-3*(int)(rp-9); in decfloat()
172 return sign * (long double)x[0] * p10s[rp-10]; in decfloat()
179 if (rp in decfloat()
321 long long rp = 0; hexfloat() local
[all...]
/third_party/musl/porting/liteos_m/kernel/src/internal/
H A Dfloatscan.c72 int rp; in decfloat() local
164 rp = lrp; in decfloat()
167 if (lnz<9 && lnz<=rp && rp < 18) { in decfloat()
168 if (rp == 9) return sign * (long double)x[0]; in decfloat()
169 if (rp < 9) return sign * (long double)x[0] / p10s[8-rp]; in decfloat()
170 int bitlim = bits-3*(int)(rp-9); in decfloat()
172 return sign * (long double)x[0] * p10s[rp-10]; in decfloat()
179 if (rp in decfloat()
321 long long rp = 0; hexfloat() local
[all...]
/third_party/musl/porting/uniproton/kernel/src/internal/
H A Dfloatscan.c72 int rp; in decfloat() local
164 rp = lrp; in decfloat()
167 if (lnz<9 && lnz<=rp && rp < 18) { in decfloat()
168 if (rp == 9) return sign * (long double)x[0]; in decfloat()
169 if (rp < 9) return sign * (long double)x[0] / p10s[8-rp]; in decfloat()
170 int bitlim = bits-3*(int)(rp-9); in decfloat()
172 return sign * (long double)x[0] * p10s[rp-10]; in decfloat()
179 if (rp in decfloat()
321 long long rp = 0; hexfloat() local
[all...]
/third_party/musl/src/internal/
H A Dfloatscan.c72 int rp; in decfloat() local
164 rp = lrp; in decfloat()
167 if (lnz<9 && lnz<=rp && rp < 18) { in decfloat()
168 if (rp == 9) return sign * (long double)x[0]; in decfloat()
169 if (rp < 9) return sign * (long double)x[0] / p10s[8-rp]; in decfloat()
170 int bitlim = bits-3*(int)(rp-9); in decfloat()
172 return sign * (long double)x[0] * p10s[rp-10]; in decfloat()
179 if (rp in decfloat()
321 long long rp = 0; hexfloat() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/ec/asm/
H A Decp_nistz256-sparcv9.pl99 my ($rp,$ap,$bp)=map("%i$_",(0..2));
355 st @acc[0],[$rp]
357 st @acc[1],[$rp+4]
359 st @acc[2],[$rp+8]
361 st @acc[3],[$rp+12]
363 st @acc[4],[$rp+16]
365 st @acc[5],[$rp+20]
367 st @acc[6],[$rp+24]
369 st @acc[7],[$rp+28]
437 st @acc[0],[$rp]
[all...]
/third_party/openssl/crypto/ec/asm/
H A Decp_nistz256-sparcv9.pl99 my ($rp,$ap,$bp)=map("%i$_",(0..2));
355 st @acc[0],[$rp]
357 st @acc[1],[$rp+4]
359 st @acc[2],[$rp+8]
361 st @acc[3],[$rp+12]
363 st @acc[4],[$rp+16]
365 st @acc[5],[$rp+20]
367 st @acc[6],[$rp+24]
369 st @acc[7],[$rp+28]
437 st @acc[0],[$rp]
[all...]
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-adopt-tcp/
H A Dminimal-raw-adopt-tcp.c95 struct addrinfo h, *r, *rp; in main() local
152 for (rp = r; rp; rp = rp->ai_next) { in main()
153 sock.sockfd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol); in main()
157 if (!rp) { in main()
165 if (connect(sock.sockfd, rp in main()
[all...]
/third_party/nghttp2/integration-tests/
H A Dserver_tester_http3.go17 func (st *serverTester) http3(rp requestParam) (*serverResponse, error) {
31 if rp.method != "" {
32 method = rp.method
37 if rp.body != nil {
38 body = bytes.NewBuffer(rp.body)
43 if rp.path != "" {
50 reqURL = u.String() + rp.path
61 for _, h := range rp.header {
65 req.Header.Add("Test-Case", rp.name)

Completed in 16 milliseconds

12345678910>>...13