Home
last modified time | relevance | path

Searched refs:gob (Results 1 – 25 of 2879) sorted by relevance

12345678910>>...116

/dports/games/jumpnbump/jumpnbump-1.61-7a0a7ab7491680338bb13058adafdfaac03a1f6d/modify/
H A Dgobpack.c105 gob->width = malloc(gob->num_images*sizeof(int)); in read_gob()
106 gob->height = malloc(gob->num_images*sizeof(int)); in read_gob()
107 gob->hs_x = malloc(gob->num_images*sizeof(int)); in read_gob()
108 gob->hs_y = malloc(gob->num_images*sizeof(int)); in read_gob()
109 gob->data = malloc(gob->num_images*sizeof(void *)); in read_gob()
122 image_size = gob->width[i] * gob->height[i]; in read_gob()
148 offset += gob->width[i] * gob->height[i]; in write_gob()
163 fwrite(gob->data[i], 1, gob->width[i] * gob->height[i], handle); in write_gob()
371 gob.hs_x = malloc(gob.num_images*sizeof(int)); in main()
392 gob.orig_data[i] = malloc(gob.width[i] * gob.height[i]); in main()
[all …]
/dports/games/nazghul/nazghul-0.7.1/src/
H A Dgob.c13 struct gob *gob = (struct gob *)calloc(1, sizeof(*gob)); in gob_new() local
14 assert(gob); in gob_new()
16 gob->p = p; in gob_new()
18 return gob; in gob_new()
22 void gob_del(struct gob *gob) in gob_del() argument
24 gob->sc->vptr->unprotect(gob->sc, gob->p); in gob_del()
25 free(gob); in gob_del()
28 void gob_save(struct gob *gob, struct save *save) in gob_save() argument
35 cell = (gob->flags & GOB_SAVECAR) ? gob->p : in gob_save()
36 scm_car(gob->sc, scm_cdr(gob->sc, gob->p)); in gob_save()
[all …]
H A Dgob.h8 struct gob { struct
15 #define gob_ref(gob) ((gob)->refcount++) argument
17 extern struct gob *gob_new(scheme *sc, pointer p);
18 extern void gob_del(struct gob *gob);
19 extern void gob_save(struct gob *gob, struct save *save);
20 extern void gob_unref(struct gob *gob);
/dports/games/nazghul/nazghul-0.7.1/worlds/haxima-1.002/
H A Dcontainers.scm97 (define (is-container? gob) (eq? (car gob) 'container))
99 (define (container-contents gob) (cadr gob))
100 (define (container-set-contents! gob val) (set-car! (cdr gob) val))
102 (define (container-traps gob) (caddr gob))
109 (define (container-destroyed? gob) (cadddr gob))
110 (define (container-destroy! gob) (set-car! (cdddr gob) #t))
112 (define (container-sprites gob) (eval (list-ref gob 4)))
114 (define (container-locked? gob) (list-ref gob 5))
117 (define (container-magic-locked? gob) (list-ref gob 6))
120 (define (container-key gob) (list-ref gob 7))
[all …]
H A Dwind-bridge.scm35 (define (wind-bridge-facing gob) (car gob))
36 (define (wind-bridge-delay gob) (cadr gob))
37 (define (wind-bridge-set-facing! gob val) (set-car! gob val))
38 (define (wind-bridge-inc-delay! gob) (set-car! (cdr gob) (+ 1 (cadr gob))))
39 (define (wind-bridge-reset-delay! gob) (set-car! (cdr gob) 0))
43 (gob (gob kobj))
53 (cond ((< (wind-bridge-delay gob) 2)
55 (wind-bridge-inc-delay! gob))
77 (wind-bridge-set-facing! gob dir)
78 (wind-bridge-reset-delay! gob)
[all …]
H A Dkama.scm25 (define (kama-gave-food? gob) (car gob))
26 (define (kama-gave-food! gob) (set-car! gob #t))
27 (define (kama-joined-once? gob) (cadr gob))
28 (define (kama-joined-once! gob) (set-car! (cdr gob) #t))
29 (define (kama-get-jail-door-tag gob) (caddr gob))
47 (if (kama-gave-food? (gob knpc))
57 (if (kama-gave-food? (gob knpc))
82 (or (door-locked? gob)
93 (kama-joined-once! (gob knpc))
117 (kama-gave-food! (gob knpc))
[all …]
H A Ddemon-gate.scm9 (define (demon-gate-unlock gob) (set-car! gob (- (car gob) 1)))
10 (define (demon-gate-completely-unlocked? gob) (= (car gob) 0))
11 (define (demon-gate-opened? gob) (cadr gob))
12 (define (demon-gate-opened! gob) (set-car! (cdr gob) #t))
13 (define (end-game-played? gob) (caddr gob))
14 (define (end-game-played! gob) (set-car! (cddr gob) #t))
52 (let ((dgate (gob kgate)))
89 (let ((dgate (gob kgate)))
/dports/math/R-cran-spdep/spdep/R/
H A Dgraph2nb.R5 graph2nb <- function(gob, row.names=NULL,sym=FALSE) { argument
7 res <- vector(mode="list", length=gob$np)
9 if(length(row.names) != gob$np)
14 if (gob$np < 1) stop("non-positive gob$np")
17 for (i in 1:gob$np) {
18 res[[i]] <- sort(unique(c(gob$to[gob$from==i],
19 gob$from[gob$to==i])))
24 for (i in 1:gob$np) {
25 res[[i]] <- sort(gob$to[gob$from==i])
30 attr(res, "call") <- attr(gob, "call")
[all …]
/dports/games/jumpnbump/jumpnbump-1.61-7a0a7ab7491680338bb13058adafdfaac03a1f6d/sdl/
H A Dgfx.c679 assert(gob); in put_pob()
751 assert(gob); in pob_width()
845 gob->width = malloc(gob->num_images*sizeof(int)); in register_gob()
846 gob->height = malloc(gob->num_images*sizeof(int)); in register_gob()
847 gob->hs_x = malloc(gob->num_images*sizeof(int)); in register_gob()
848 gob->hs_y = malloc(gob->num_images*sizeof(int)); in register_gob()
849 gob->data = malloc(gob->num_images*sizeof(void *)); in register_gob()
862 image_size = gob->width[i] * gob->height[i]; in register_gob()
866 image_size = gob->width[i] * gob->height[i] * 4; in register_gob()
868 …do_scale2x((unsigned char *)gob->orig_data[i], gob->width[i], gob->height[i], (unsigned char *)gob in register_gob()
[all …]
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/hashicorp/hcl/v2/hcldec/
H A Dgob.go12 gob.Register(ObjectSpec(nil))
13 gob.Register(TupleSpec(nil))
14 gob.Register((*AttrSpec)(nil))
15 gob.Register((*LiteralSpec)(nil))
16 gob.Register((*ExprSpec)(nil))
17 gob.Register((*BlockSpec)(nil))
18 gob.Register((*BlockListSpec)(nil))
19 gob.Register((*BlockSetSpec)(nil))
20 gob.Register((*BlockMapSpec)(nil))
21 gob.Register((*BlockLabelSpec)(nil))
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/nomad/vendor/github.com/hashicorp/hcl2/hcldec/
H A Dgob.go12 gob.Register(ObjectSpec(nil))
13 gob.Register(TupleSpec(nil))
14 gob.Register((*AttrSpec)(nil))
15 gob.Register((*LiteralSpec)(nil))
16 gob.Register((*ExprSpec)(nil))
17 gob.Register((*BlockSpec)(nil))
18 gob.Register((*BlockListSpec)(nil))
19 gob.Register((*BlockSetSpec)(nil))
20 gob.Register((*BlockMapSpec)(nil))
21 gob.Register((*BlockLabelSpec)(nil))
[all …]
/dports/sysutils/nomad/nomad-1.1.0/vendor/github.com/hashicorp/hcl/v2/hcldec/
H A Dgob.go12 gob.Register(ObjectSpec(nil))
13 gob.Register(TupleSpec(nil))
14 gob.Register((*AttrSpec)(nil))
15 gob.Register((*LiteralSpec)(nil))
16 gob.Register((*ExprSpec)(nil))
17 gob.Register((*BlockSpec)(nil))
18 gob.Register((*BlockListSpec)(nil))
19 gob.Register((*BlockSetSpec)(nil))
20 gob.Register((*BlockMapSpec)(nil))
21 gob.Register((*BlockLabelSpec)(nil))
[all …]
/dports/sysutils/terraform-provider-gridscale/terraform-provider-gridscale-1.6.2/vendor/github.com/hashicorp/hcl2/hcldec/
H A Dgob.go12 gob.Register(ObjectSpec(nil))
13 gob.Register(TupleSpec(nil))
14 gob.Register((*AttrSpec)(nil))
15 gob.Register((*LiteralSpec)(nil))
16 gob.Register((*ExprSpec)(nil))
17 gob.Register((*BlockSpec)(nil))
18 gob.Register((*BlockListSpec)(nil))
19 gob.Register((*BlockSetSpec)(nil))
20 gob.Register((*BlockMapSpec)(nil))
21 gob.Register((*BlockLabelSpec)(nil))
[all …]
/dports/sysutils/terraform-docs/terraform-docs-0.16.0/vendor/github.com/hashicorp/hcl/v2/hcldec/
H A Dgob.go12 gob.Register(ObjectSpec(nil))
13 gob.Register(TupleSpec(nil))
14 gob.Register((*AttrSpec)(nil))
15 gob.Register((*LiteralSpec)(nil))
16 gob.Register((*ExprSpec)(nil))
17 gob.Register((*BlockSpec)(nil))
18 gob.Register((*BlockListSpec)(nil))
19 gob.Register((*BlockSetSpec)(nil))
20 gob.Register((*BlockMapSpec)(nil))
21 gob.Register((*BlockLabelSpec)(nil))
[all …]
/dports/sysutils/terraform-switcher/terraform-switcher-0.13.1201/vendor/github.com/hashicorp/hcl2/hcldec/
H A Dgob.go12 gob.Register(ObjectSpec(nil))
13 gob.Register(TupleSpec(nil))
14 gob.Register((*AttrSpec)(nil))
15 gob.Register((*LiteralSpec)(nil))
16 gob.Register((*ExprSpec)(nil))
17 gob.Register((*BlockSpec)(nil))
18 gob.Register((*BlockListSpec)(nil))
19 gob.Register((*BlockSetSpec)(nil))
20 gob.Register((*BlockMapSpec)(nil))
21 gob.Register((*BlockLabelSpec)(nil))
[all …]
/dports/sysutils/terraform-provider-vultr/terraform-provider-vultr-0.1.10/vendor/github.com/hashicorp/hcl2/hcldec/
H A Dgob.go12 gob.Register(ObjectSpec(nil))
13 gob.Register(TupleSpec(nil))
14 gob.Register((*AttrSpec)(nil))
15 gob.Register((*LiteralSpec)(nil))
16 gob.Register((*ExprSpec)(nil))
17 gob.Register((*BlockSpec)(nil))
18 gob.Register((*BlockListSpec)(nil))
19 gob.Register((*BlockSetSpec)(nil))
20 gob.Register((*BlockMapSpec)(nil))
21 gob.Register((*BlockLabelSpec)(nil))
[all …]
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/hashicorp/hcl/v2/hcldec/
H A Dgob.go12 gob.Register(ObjectSpec(nil))
13 gob.Register(TupleSpec(nil))
14 gob.Register((*AttrSpec)(nil))
15 gob.Register((*LiteralSpec)(nil))
16 gob.Register((*ExprSpec)(nil))
17 gob.Register((*BlockSpec)(nil))
18 gob.Register((*BlockListSpec)(nil))
19 gob.Register((*BlockSetSpec)(nil))
20 gob.Register((*BlockMapSpec)(nil))
21 gob.Register((*BlockLabelSpec)(nil))
[all …]
/dports/www/gitea/gitea-1.16.5/vendor/gitea.com/go-chi/session/
H A Dutils.go28 gob.Register([]interface{}{})
29 gob.Register(map[int]interface{}{})
30 gob.Register(map[string]interface{}{})
31 gob.Register(map[interface{}]interface{}{})
32 gob.Register(map[string]string{})
33 gob.Register(map[int]string{})
34 gob.Register(map[int]int{})
35 gob.Register(map[int]int64{})
41 gob.Register(v)
44 err := gob.NewEncoder(buf).Encode(obj)
[all …]
/dports/multimedia/gstreamer1-plugins-v4l2/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtph263pay.c726 GstRtpH263PayGob *gob; in gst_rtp_h263_pay_gob_new() local
735 gob->gobn = gobn; in gst_rtp_h263_pay_gob_new()
736 gob->quant = 0; in gst_rtp_h263_pay_gob_new()
738 gob->nmacroblocs = 0; in gst_rtp_h263_pay_gob_new()
740 return gob; in gst_rtp_h263_pay_gob_new()
747 if (!gob) in gst_rtp_h263_pay_gob_destroy()
750 if (gob->macroblocks) { in gst_rtp_h263_pay_gob_destroy()
761 g_free (gob); in gst_rtp_h263_pay_gob_destroy()
1440 gst_rtp_h263_pay_boundry_init (&boundry, gob->start, gob->start, gob->sbit, in gst_rtp_h263_pay_mode_B_fragment()
1443 gob->macroblocks = in gst_rtp_h263_pay_mode_B_fragment()
[all …]
/dports/multimedia/gstreamer1-plugins-vpx/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtph263pay.c726 GstRtpH263PayGob *gob; in gst_rtp_h263_pay_gob_new() local
735 gob->gobn = gobn; in gst_rtp_h263_pay_gob_new()
736 gob->quant = 0; in gst_rtp_h263_pay_gob_new()
738 gob->nmacroblocs = 0; in gst_rtp_h263_pay_gob_new()
740 return gob; in gst_rtp_h263_pay_gob_new()
747 if (!gob) in gst_rtp_h263_pay_gob_destroy()
750 if (gob->macroblocks) { in gst_rtp_h263_pay_gob_destroy()
761 g_free (gob); in gst_rtp_h263_pay_gob_destroy()
1440 gst_rtp_h263_pay_boundry_init (&boundry, gob->start, gob->start, gob->sbit, in gst_rtp_h263_pay_mode_B_fragment()
1443 gob->macroblocks = in gst_rtp_h263_pay_mode_B_fragment()
[all …]
/dports/graphics/gstreamer1-plugins-aalib/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtph263pay.c726 GstRtpH263PayGob *gob; in gst_rtp_h263_pay_gob_new() local
735 gob->gobn = gobn; in gst_rtp_h263_pay_gob_new()
736 gob->quant = 0; in gst_rtp_h263_pay_gob_new()
738 gob->nmacroblocs = 0; in gst_rtp_h263_pay_gob_new()
740 return gob; in gst_rtp_h263_pay_gob_new()
747 if (!gob) in gst_rtp_h263_pay_gob_destroy()
750 if (gob->macroblocks) { in gst_rtp_h263_pay_gob_destroy()
761 g_free (gob); in gst_rtp_h263_pay_gob_destroy()
1440 gst_rtp_h263_pay_boundry_init (&boundry, gob->start, gob->start, gob->sbit, in gst_rtp_h263_pay_mode_B_fragment()
1443 gob->macroblocks = in gst_rtp_h263_pay_mode_B_fragment()
[all …]
/dports/multimedia/gstreamer1-plugins-good/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtph263pay.c726 GstRtpH263PayGob *gob; in gst_rtp_h263_pay_gob_new() local
735 gob->gobn = gobn; in gst_rtp_h263_pay_gob_new()
736 gob->quant = 0; in gst_rtp_h263_pay_gob_new()
738 gob->nmacroblocs = 0; in gst_rtp_h263_pay_gob_new()
740 return gob; in gst_rtp_h263_pay_gob_new()
747 if (!gob) in gst_rtp_h263_pay_gob_destroy()
750 if (gob->macroblocks) { in gst_rtp_h263_pay_gob_destroy()
761 g_free (gob); in gst_rtp_h263_pay_gob_destroy()
1440 gst_rtp_h263_pay_boundry_init (&boundry, gob->start, gob->start, gob->sbit, in gst_rtp_h263_pay_mode_B_fragment()
1443 gob->macroblocks = in gst_rtp_h263_pay_mode_B_fragment()
[all …]
/dports/multimedia/gstreamer1-plugins-dv/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtph263pay.c726 GstRtpH263PayGob *gob; in gst_rtp_h263_pay_gob_new() local
735 gob->gobn = gobn; in gst_rtp_h263_pay_gob_new()
736 gob->quant = 0; in gst_rtp_h263_pay_gob_new()
738 gob->nmacroblocs = 0; in gst_rtp_h263_pay_gob_new()
740 return gob; in gst_rtp_h263_pay_gob_new()
747 if (!gob) in gst_rtp_h263_pay_gob_destroy()
750 if (gob->macroblocks) { in gst_rtp_h263_pay_gob_destroy()
761 g_free (gob); in gst_rtp_h263_pay_gob_destroy()
1440 gst_rtp_h263_pay_boundry_init (&boundry, gob->start, gob->start, gob->sbit, in gst_rtp_h263_pay_mode_B_fragment()
1443 gob->macroblocks = in gst_rtp_h263_pay_mode_B_fragment()
[all …]
/dports/audio/gstreamer1-plugins-flac/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtph263pay.c726 GstRtpH263PayGob *gob; in gst_rtp_h263_pay_gob_new() local
735 gob->gobn = gobn; in gst_rtp_h263_pay_gob_new()
736 gob->quant = 0; in gst_rtp_h263_pay_gob_new()
738 gob->nmacroblocs = 0; in gst_rtp_h263_pay_gob_new()
740 return gob; in gst_rtp_h263_pay_gob_new()
747 if (!gob) in gst_rtp_h263_pay_gob_destroy()
750 if (gob->macroblocks) { in gst_rtp_h263_pay_gob_destroy()
761 g_free (gob); in gst_rtp_h263_pay_gob_destroy()
1440 gst_rtp_h263_pay_boundry_init (&boundry, gob->start, gob->start, gob->sbit, in gst_rtp_h263_pay_mode_B_fragment()
1443 gob->macroblocks = in gst_rtp_h263_pay_mode_B_fragment()
[all …]
/dports/audio/gstreamer1-plugins-taglib/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtph263pay.c726 GstRtpH263PayGob *gob; in gst_rtp_h263_pay_gob_new() local
735 gob->gobn = gobn; in gst_rtp_h263_pay_gob_new()
736 gob->quant = 0; in gst_rtp_h263_pay_gob_new()
738 gob->nmacroblocs = 0; in gst_rtp_h263_pay_gob_new()
740 return gob; in gst_rtp_h263_pay_gob_new()
747 if (!gob) in gst_rtp_h263_pay_gob_destroy()
750 if (gob->macroblocks) { in gst_rtp_h263_pay_gob_destroy()
761 g_free (gob); in gst_rtp_h263_pay_gob_destroy()
1440 gst_rtp_h263_pay_boundry_init (&boundry, gob->start, gob->start, gob->sbit, in gst_rtp_h263_pay_mode_B_fragment()
1443 gob->macroblocks = in gst_rtp_h263_pay_mode_B_fragment()
[all …]

12345678910>>...116