Searched refs:rec (Results 1 - 25 of 185) sorted by relevance

12345678

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Dc1.c2 rec (a, b) function
6 return a * rec (a - 1, b + 1);
/openbsd-current/lib/libssl/
H A Dtls13_record.c35 struct tls13_record *rec = NULL; local
37 if ((rec = calloc(1, sizeof(struct tls13_record))) == NULL)
39 if ((rec->buf = tls_buffer_new(TLS13_RECORD_MAX_LEN)) == NULL)
42 return rec;
45 tls13_record_free(rec);
51 tls13_record_free(struct tls13_record *rec) argument
53 if (rec == NULL)
56 tls_buffer_free(rec->buf);
58 freezero(rec->data, rec
63 tls13_record_version(struct tls13_record *rec) argument
69 tls13_record_content_type(struct tls13_record *rec) argument
75 tls13_record_header(struct tls13_record *rec, CBS *cbs) argument
86 tls13_record_content(struct tls13_record *rec, CBS *cbs) argument
101 tls13_record_data(struct tls13_record *rec, CBS *cbs) argument
107 tls13_record_set_data(struct tls13_record *rec, uint8_t *data, size_t data_len) argument
121 tls13_record_recv(struct tls13_record *rec, tls_read_cb wire_read, void *wire_arg) argument
168 tls13_record_send(struct tls13_record *rec, tls_write_cb wire_write, void *wire_arg) argument
[all...]
H A Ds3_cbc.c105 * record in |rec| in constant time and returns 1 if the padding is valid and
116 ssl3_cbc_remove_padding(SSL3_RECORD_INTERNAL *rec, unsigned int eiv_len, argument
126 if (overhead + eiv_len > rec->length)
130 rec->data += eiv_len;
131 rec->input += eiv_len;
132 rec->length -= eiv_len;
134 padding_length = rec->data[rec->length - 1];
136 good = constant_time_ge(rec->length, overhead + padding_length);
147 if (to_check > rec
195 ssl3_cbc_copy_mac(unsigned char* out, const SSL3_RECORD_INTERNAL *rec, unsigned int md_size, unsigned int orig_len) argument
[all...]
/openbsd-current/regress/lib/libsndio/
H A DMakefile3 SUBDIR+= play rec fd cap vol
/openbsd-current/regress/lib/libsndio/rec/
H A DMakefile2 PROG= rec
5 SRCS = rec.c tools.c
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/execute/
H A Dio0.f28 write(90, rec=1) 123, 123.0
29 read(90, rec=1) i, r
42 write(90, '(i8,f8.1)',rec=1) 123, 123.0
43 read(90, '(i8,f8.1)', rec=1) i, r
/openbsd-current/gnu/usr.bin/perl/dist/Tie-File/t/
H A D03_longfetch.t40 my $rec = $a[$_];
41 print $rec eq "rec$_$:" ? "ok $N\n" : "not ok $N # rec=<$rec> ?\n";
47 my $rec = $a[$_];
48 print ((not defined $rec) ? "ok $N\n" : "not ok $N # rec=<$rec> is defined\n");
/openbsd-current/usr.bin/mg/
H A Dundo.c90 struct undo_rec *rec; local
92 rec = TAILQ_FIRST(&undo_free);
93 if (rec != NULL) {
95 TAILQ_REMOVE(&undo_free, rec, next);
98 if ((rec = malloc(sizeof(*rec))) == NULL)
101 memset(rec, 0, sizeof(struct undo_rec));
103 return (rec);
107 free_undo_record(struct undo_rec *rec) argument
118 free(rec
136 struct undo_rec *rec; local
151 struct undo_rec *rec; local
223 struct undo_rec *rec; local
247 struct undo_rec *rec, *trec; local
267 struct undo_rec *rec; local
314 struct undo_rec *rec; local
387 struct undo_rec *rec; local
[all...]
H A Dlog.c162 struct undo_rec *rec; local
172 TAILQ_FOREACH(rec, &curbp->b_undo, next) {
175 (rec->type == DELETE) ? "DELETE":
176 (rec->type == DELREG) ? "DELREGION":
177 (rec->type == INSERT) ? "INSERT":
178 (rec->type == BOUNDARY) ? "----" :
179 (rec->type == MODIFIED) ? "MODIFIED": "UNKNOWN",
180 rec->pos
182 if (rec->content) {
185 *rec
[all...]
/openbsd-current/usr.sbin/kvm_mkdb/
H A Dtestdb.c50 DBT rec; local
66 rec.data = VRS_KEY;
67 rec.size = sizeof(VRS_KEY) - 1;
68 if ((db->get)(db, &rec, &rec, 0))
70 if (rec.data == NULL || rec.size > kversionlen)
74 ret = memcmp(kversion, rec.data, rec.size) == 0;
/openbsd-current/sys/dev/pci/drm/amd/amdgpu/
H A Damdgpu_i2c.c47 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local
53 if (rec->hw_capable) {
54 temp = RREG32(rec->mask_clk_reg);
56 WREG32(rec->mask_clk_reg, temp);
60 temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask;
61 WREG32(rec->a_clk_reg, temp);
63 temp = RREG32(rec->a_data_reg) & ~rec
89 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local
108 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local
123 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local
137 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local
150 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local
256 amdgpu_i2c_create(struct drm_device *dev, const struct amdgpu_i2c_bus_rec *rec, const char *name) argument
360 amdgpu_i2c_add(struct amdgpu_device *adev, const struct amdgpu_i2c_bus_rec *rec, const char *name) argument
[all...]
H A Damdgpu_i2c.h28 const struct amdgpu_i2c_bus_rec *rec,
34 const struct amdgpu_i2c_bus_rec *rec,
/openbsd-current/sys/dev/pci/drm/radeon/
H A Dradeon_i2c.c92 struct radeon_i2c_bus_rec *rec = &i2c->rec; local
101 if (rec->hw_capable) {
114 if (rec->a_clk_reg == reg) {
126 if (ASIC_IS_DCE3(rdev) && rec->hw_capable) {
127 temp = RREG32(rec->mask_clk_reg);
129 WREG32(rec->mask_clk_reg, temp);
133 temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask;
134 WREG32(rec
162 struct radeon_i2c_bus_rec *rec = &i2c->rec; local
181 struct radeon_i2c_bus_rec *rec = &i2c->rec; local
196 struct radeon_i2c_bus_rec *rec = &i2c->rec; local
210 struct radeon_i2c_bus_rec *rec = &i2c->rec; local
223 struct radeon_i2c_bus_rec *rec = &i2c->rec; local
425 struct radeon_i2c_bus_rec *rec = &i2c->rec; local
678 struct radeon_i2c_bus_rec *rec = &i2c->rec; local
911 struct radeon_i2c_bus_rec *rec = &i2c->rec; local
1002 radeon_i2c_create(struct drm_device *dev, struct radeon_i2c_bus_rec *rec, const char *name) argument
1123 radeon_i2c_add(struct radeon_device *rdev, struct radeon_i2c_bus_rec *rec, const char *name) argument
[all...]
/openbsd-current/sys/dev/pci/
H A Dpciide_acard_reg.h37 #define ATP850_SETTIME(drive, act, rec) \
38 (((((act) & 0xf) << 8) | ((rec) & 0xf)) << ((drive) * 16))
39 #define ATP860_SETTIME(channel, drive, act, rec) \
40 (((((act) & 0xf) << 4) | ((rec) & 0xf)) << \
/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp412 LLVMPerfJitRecordCodeLoad rec;
413 rec.Prefix.Id = JIT_CODE_LOAD;
414 rec.Prefix.TotalSize = sizeof(rec) + // debug record itself
417 rec.Prefix.Timestamp = perf_get_timestamp();
419 rec.CodeSize = CodeSize;
420 rec.Vma = 0;
421 rec.CodeAddr = CodeAddr;
422 rec.Pid = Pid;
423 rec
[all...]
/openbsd-current/gnu/usr.sbin/mkhybrid/src/libhfs_iso/
H A Dnode.c118 unsigned char *rec; local
121 rec = HFS_NODEREC(*np, i);
124 if (HFS_RECKEYLEN(rec) > 0)
129 if (ptr == rec)
134 *ptr++ = *rec++;
154 unsigned char *rec; local
156 rec = HFS_NODEREC(*np, i);
158 if (HFS_RECKEYLEN(rec) == 0)
161 comp = bt->compare(rec, key);
204 unsigned char *rec; local
427 unsigned char *rec; local
[all...]
/openbsd-current/sys/dev/pci/drm/i915/display/
H A Dintel_overlay.c963 struct drm_intel_overlay_put_image *rec)
969 drm_rect_init(&req, rec->dst_x, rec->dst_y,
970 rec->dst_width, rec->dst_height);
982 static int check_overlay_scaling(struct drm_intel_overlay_put_image *rec) argument
987 tmp = ((rec->src_scan_height << 16) / rec->dst_height) >> 16;
991 tmp = ((rec->src_scan_width << 16) / rec
962 check_overlay_dst(struct intel_overlay *overlay, struct drm_intel_overlay_put_image *rec) argument
998 check_overlay_src(struct drm_i915_private *dev_priv, struct drm_intel_overlay_put_image *rec, struct drm_i915_gem_object *new_bo) argument
[all...]
/openbsd-current/usr.sbin/tokenadm/
H A Dtokenadm.c364 print_record(TOKENDB_Rec *rec, how_t how) argument
369 if (rec == NULL) {
375 if (rec->flags & TOKEN_ENABLED) {
386 printf("%-16s %-8s", rec->uname,
387 rec->flags & TOKEN_ENABLED ? "enabled" : "disabled");
390 if (rec->mode & i)
396 printf("%s\n", rec->uname);
398 printf("%-16s ", rec->uname);
401 printf("%s\n", rec->uname);
/openbsd-current/gnu/usr.bin/gcc/gcc/config/alpha/
H A Dalpha-interix.h118 #define PCC_BITFIELD_TYPE_TEST TYPE_NATIVE(rec)
119 #define GROUP_BITFIELDS_BY_ALIGN TYPE_NATIVE(rec)
/openbsd-current/gnu/usr.bin/perl/cpan/Scalar-List-Utils/t/
H A Dfirst.t71 sub rec { my $n = shift;
74 if ($n<5) { rec($n+1); }
75 else { $v = first \&rec, 1,2; }
79 rec(1);
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dpwent.t79 my @rec;
83 if (@rec) {
88 push @lines, join (':', @rec) . "\n";
89 @rec = ();
102 $rec[$info->{inx}] = $info->{mung}->($value);
105 if (@rec) {
108 push @lines, join (':', @rec) . "\n";
/openbsd-current/regress/lib/libssl/record/
H A Drecordtest.c372 struct tls13_record *rec; local
382 if ((rec = tls13_record_new()) == NULL)
389 ret = tls13_record_recv(rec, read_cb, &rs);
398 if (tls13_record_content_type(rec) != rrt->want_content_type) {
400 "want %u\n", test_no, tls13_record_content_type(rec),
405 tls13_record_data(rec, &cbs);
423 if (!tls13_record_header(rec, &cbs)) {
437 if (!tls13_record_content(rec, &cbs)) {
456 tls13_record_free(rec);
465 struct tls13_record *rec; local
[all...]
/openbsd-current/gnu/llvm/clang/lib/ARCMigrate/
H A DTransRetainReleaseDealloc.cpp85 if (Expr *rec = E->getInstanceReceiver()) {
86 rec = rec->IgnoreParenImpCasts();
87 if (rec->getType().getObjCLifetime() == Qualifiers::OCL_ExplicitNone &&
92 Pass.TA.reportError(err, rec->getBeginLoc());
96 if (isGlobalVar(rec) &&
101 Pass.TA.reportError(err, rec->getBeginLoc());
105 if (E->getMethodFamily() == OMF_release && isDelegateMessage(rec)) {
111 rec->getBeginLoc());
135 Expr *rec local
[all...]
/openbsd-current/usr.sbin/radiusctl/
H A Dradiusctl.c717 maxseq = MAXIMUM(maxseq, dump->records[i].rec.seq);
733 timespecadd(&upt, &dump->records[i].rec.start, &start);
736 width, dump->records[i].rec.seq,
738 buf0, sizeof(buf0)), dump->records[i].rec.username,
741 (struct sockaddr *)&dump->records[i].rec.tun_client, buf1,
754 timespecadd(&upt, &dump->records[idx].rec.start, &start);
757 if (dump->records[idx].rec.start.tv_sec == 0)
760 timespecadd(&upt, &dump->records[idx].rec.timeout, &timeout);
780 dump->records[idx].rec.seq, dump->records[idx].rec
[all...]
/openbsd-current/sys/dev/
H A Daudio.c125 struct audio_buf play, rec; member in struct:audio_softc
137 int offs; /* offset between play & rec dir */
474 sc->rec.used = sc->rec.start = 0;
475 sc->rec.pos = sc->rec.xrun = 0;
476 audio_fill_sil(sc, sc->rec.data, sc->rec.len);
507 nblk = sc->rec.len / sc->rec
[all...]

Completed in 318 milliseconds

12345678