HomeSort by: relevance | last modified time | path
    Searched refs:new (Results 1 - 25 of 694) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/xdm/dist/xdm/
rpcauth.c 58 Xauth *new; local
60 new = malloc (sizeof *new);
61 if (!new)
63 new->family = FamilyWild;
64 new->address_length = 0;
65 new->address = 0;
66 new->number_length = 0;
67 new->number = 0;
71 new->data_length = strlen(key)
    [all...]
mitauth.c 58 Xauth *new; local
59 new = malloc (sizeof (Xauth));
61 if (!new)
63 new->family = FamilyWild;
64 new->address_length = 0;
65 new->address = NULL;
66 new->number_length = 0;
67 new->number = NULL;
69 new->data = malloc (AUTH_DATA_LEN);
70 if (!new->data
    [all...]
krb5auth.c 94 Xauth *new; local
98 new = malloc (sizeof *new);
99 if (!new)
101 new->family = FamilyWild;
102 new->address_length = 0;
103 new->address = 0;
104 new->number_length = 0;
105 new->number = 0;
110 new->data = malloc (3 + strlen(filename) + 1)
    [all...]
xdmauth.c 86 Xauth *new; local
87 new = malloc (sizeof (Xauth));
89 if (!new)
91 new->family = FamilyWild;
92 new->address_length = 0;
93 new->address = NULL;
94 new->number_length = 0;
95 new->number = NULL;
97 new->data_length = 16;
99 new->data_length = 8
    [all...]
  /xsrc/external/mit/xf86-video-ati/dist/src/
radeon_modes.c 90 DisplayModePtr new = NULL; local
93 new = xf86CVTMode(800, 600, 60.00, FALSE, FALSE);
94 xf86SetModeDefaultName(new);
95 new->type = M_T_DRIVER | M_T_PREFERRED;
97 return new;
104 DisplayModePtr new = NULL; local
112 new = xf86CVTMode(widths[i], heights[i], 60.0, FALSE, FALSE);
113 xf86SetModeDefaultName(new);
115 new->type = M_T_DRIVER;
117 new->next = NULL
141 DisplayModePtr new = NULL; local
209 DisplayModePtr last=NULL, new=NULL, first=NULL; local
264 DisplayModePtr new = NULL; local
446 DisplayModePtr new = NULL; local
    [all...]
  /xsrc/external/mit/libXft/dist/src/
xftname.c 41 FcPattern *new = FcPatternDuplicate (pat); local
43 FcPatternDel (new, FC_LANG);
44 FcPatternDel (new, FC_CHARSET);
45 name = FcNameUnparse (new);
46 FcPatternDestroy (new);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
vc4_reorder_uniforms.c 47 uint32_t new = ~0; local
53 if (new == ~0) {
54 new = next_uniform++;
55 if (uniform_index_size <= new) {
68 assert(inst->src[i].index == uniform_index[new]);
71 uniform_index[new] = inst->src[i].index;
72 inst->src[i].index = new;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
vc4_reorder_uniforms.c 47 uint32_t new = ~0; local
53 if (new == ~0) {
54 new = next_uniform++;
55 if (uniform_index_size <= new) {
68 assert(inst->src[i].index == uniform_index[new]);
71 uniform_index[new] = inst->src[i].index;
72 inst->src[i].index = new;
  /xsrc/external/mit/libXfont/dist/src/util/
private.c 82 pointer *new; local
86 new = realloc (pFont->devPrivates, (n + 1) * sizeof (pointer));
87 if (!new)
91 new = malloc ((n + 1) * sizeof (pointer));
92 if (!new)
95 memcpy (new, pFont->devPrivates, (pFont->maxPrivate + 1) * sizeof (pointer));
97 pFont->devPrivates = new;
98 /* zero out new, uninitialized privates */
  /xsrc/external/mit/libXfont2/dist/src/util/
private.c 84 pointer *new; local
88 new = reallocarray (pFont->devPrivates, (n + 1), sizeof (pointer));
89 if (!new)
93 new = reallocarray (NULL, (n + 1), sizeof (pointer));
94 if (!new)
97 memcpy (new, pFont->devPrivates, (pFont->maxPrivate + 1) * sizeof (pointer));
99 pFont->devPrivates = new;
100 /* zero out new, uninitialized privates */
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/brw/
brw_test.c 32 const struct brw_instruction *new, int num_new,
38 memcmp(new, old, num_new * sizeof(struct brw_instruction))) {
39 printf ("%s: new\n", function);
41 brw_disasm(stdout, &new[n], gen);
brw_test.h 38 const struct brw_instruction *new, int num_new,
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/brw/
brw_test.c 32 const struct brw_instruction *new, int num_new,
38 memcmp(new, old, num_new * sizeof(struct brw_instruction))) {
39 printf ("%s: new\n", function);
41 brw_disasm(stdout, &new[n], gen);
brw_test.h 38 const struct brw_instruction *new, int num_new,
  /xsrc/external/mit/xorg-server/dist/os/
mitauth.c 53 struct auth *new; local
55 new = malloc(sizeof(struct auth));
56 if (!new)
58 new->data = malloc((unsigned) data_length);
59 if (!new->data) {
60 free(new);
63 new->next = mit_auth;
64 mit_auth = new;
65 memmove(new->data, data, (int) data_length);
66 new->len = data_length
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/os/
mitauth.c 56 struct auth *new; local
58 new = malloc(sizeof (struct auth));
59 if (!new)
61 new->data = malloc((unsigned) data_length);
62 if (!new->data) {
63 free(new);
66 new->next = mit_auth;
67 mit_auth = new;
68 memmove(new->data, data, (int) data_length);
69 new->len = data_length
    [all...]
  /xsrc/external/mit/libXt/dist/src/
Core.c 326 Widget new,
335 if (old->core.tm.translations != new->core.tm.translations) {
336 XtTranslations save = new->core.tm.translations;
338 new->core.tm.translations = old->core.tm.translations;
339 _XtMergeTranslations(new, save, XtTableReplace);
346 if (old->core.background_pixel != new->core.background_pixel
347 && new->core.background_pixmap == XtUnspecifiedPixmap) {
348 attributes.background_pixel = new->core.background_pixel;
352 if (old->core.background_pixmap != new->core.background_pixmap) {
353 if (new->core.background_pixmap == XtUnspecifiedPixmap)
    [all...]
  /xsrc/external/mit/xkbcomp/dist/
keytypes.c 165 PreserveInfo *new = malloc(sizeof(PreserveInfo)); local
166 if (!new)
168 *new = *old;
169 new->defs.next = NULL;
171 last->defs.next = (CommonInfo *) new;
173 info->dflt.preserve = new;
174 last = new;
236 FindMatchingKeyType(KeyTypesInfo *info, const KeyTypeInfo *new)
241 if (old->name == new->name)
256 AddKeyType(XkbDescPtr xkb, KeyTypesInfo * info, KeyTypeInfo * new)
704 PreserveInfo new; local
790 char *old, *new; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/
radeon_list.c 37 struct rc_list * new = memory_pool_malloc(pool, sizeof(struct rc_list)); local
38 new->Item = item;
39 new->Next = NULL;
40 new->Prev = NULL;
42 return new;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/
radeon_list.c 37 struct rc_list * new = memory_pool_malloc(pool, sizeof(struct rc_list)); local
38 new->Item = item;
39 new->Next = NULL;
40 new->Prev = NULL;
42 return new;
  /xsrc/external/mit/glu/dist/src/libnurbs/internals/
bufpool.h 120 inline void * operator new( size_t, Pool & );
121 inline void * operator new( size_t, void *);
122 inline void * operator new( size_t s)
123 { return ::new char[s]; }
130 PooledObj::operator new( size_t, Pool& pool )
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/
nouveau_heap.c 104 struct nouveau_heap *new = r->next; local
106 new->prev = r->prev;
108 r->prev->next = new;
109 new->size += r->size;
110 new->start = r->start;
113 r = new;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/
nouveau_heap.c 104 struct nouveau_heap *new = r->next; local
106 new->prev = r->prev;
108 r->prev->next = new;
109 new->size += r->size;
110 new->start = r->start;
113 r = new;
  /xsrc/external/mit/xf86-video-ark/dist/src/
ark_driver.c 79 static void ARKWriteMode(ScrnInfoPtr pScrn, vgaRegPtr pVga, ARKRegPtr new);
639 ARKRegPtr new = &pARK->ModeRegs; local
681 new->cr46 = rdinx(vgaIOBase + 4, 0x46) & ~0x04;
686 new->cr46 |= 0x04;
691 new->cr41 = (offset & 0x100) >> 5;
693 new->sr11 = 0x90;
696 new->sr11 |= 0x06;
699 new->sr11 |= 0x0a;
702 new->sr11 |= 0x06;
707 new->sr11 |= 0x0e
    [all...]
  /xsrc/external/mit/xorg-server/dist/xkb/
ddxLEDs.c 42 XkbDDXUpdateIndicators(DeviceIntPtr dev, CARD32 new)
44 dev->kbdfeed->ctrl.leds = new;
50 XkbDDXUpdateDeviceIndicators(DeviceIntPtr dev, XkbSrvLedInfoPtr sli, CARD32 new)
53 XkbDDXUpdateIndicators(dev, new);

Completed in 72 milliseconds

1 2 3 4 5 6 7 8 91011>>