GRAYBYTE WORDPRESS FILE MANAGER5010

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/include/X11/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/include/X11//Xalloca.h
/*

Copyright 1995, 1998  The Open Group

Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of The Open Group shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization
from The Open Group.

*/
/*
 * The purpose of this header is to define the macros ALLOCATE_LOCAL and
 * DEALLOCATE_LOCAL appropriately for the platform being compiled on.
 * These macros are used to make fast, function-local memory allocations.
 * Their characteristics are as follows:
 *
 * void *ALLOCATE_LOCAL(size_t size)
 *    Returns a pointer to size bytes of memory, or NULL if the allocation
 *    failed.  The memory must be freed with DEALLOCATE_LOCAL before the
 *    function that made the allocation returns.  You should not ask for
 *    large blocks of memory with this function, since on many platforms
 *    the memory comes from the stack, which may have limited size.
 *
 * void DEALLOCATE_LOCAL(void *)
 *    Frees the memory allocated by ALLOCATE_LOCAL.  Omission of this
 *    step may be harmless on some platforms, but will result in
 *    memory leaks or worse on others.
 *
 * Before including this file, you should define two macros,
 * ALLOCATE_LOCAL_FALLBACK and DEALLOCATE_LOCAL_FALLBACK, that have the
 * same characteristics as ALLOCATE_LOCAL and DEALLOCATE_LOCAL.  The
 * header uses the fallbacks if it doesn't know a "better" way to define
 * ALLOCATE_LOCAL and DEALLOCATE_LOCAL.  Typical usage would be:
 *
 *    #define ALLOCATE_LOCAL_FALLBACK(_size) malloc(_size)
 *    #define DEALLOCATE_LOCAL_FALLBACK(_ptr) free(_ptr)
 *    #include "Xalloca.h"
 */

#ifndef XALLOCA_H
#define XALLOCA_H 1

#ifndef INCLUDE_ALLOCA_H
/* Need to add more here to match Imake *.cf's */
# if defined(HAVE_ALLOCA_H) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
#  define INCLUDE_ALLOCA_H
# endif
#endif

#ifdef INCLUDE_ALLOCA_H
#  include <alloca.h>
#endif

#ifndef NO_ALLOCA
/*
 * os-dependent definition of local allocation and deallocation
 * If you want something other than (DE)ALLOCATE_LOCAL_FALLBACK
 * for ALLOCATE/DEALLOCATE_LOCAL then you add that in here.
 */


#  ifdef __GNUC__
#    ifndef alloca
#      define alloca __builtin_alloca
#    endif /* !alloca */
#    define ALLOCATE_LOCAL(size) alloca((size_t)(size))
#  else /* ! __GNUC__ */

/*
 * warning: old mips alloca (pre 2.10) is unusable, new one is built in
 * Test is easy, the new one is named __builtin_alloca and comes
 * from alloca.h which #defines alloca.
 */
#      if defined(__sun) || defined(alloca)
/*
 * Some System V boxes extract alloca.o from /lib/libPW.a; if you
 * decide that you don't want to use alloca, you might want to fix it here.
 */
/* alloca might be a macro taking one arg (hi, Sun!), so give it one. */
#        if !defined(__cplusplus)
#          define __Xnullarg		/* as nothing */
           extern void *alloca(__Xnullarg);
#        endif
#        define ALLOCATE_LOCAL(size) alloca((size_t)(size))
#      endif /* who does alloca */
#  endif /* __GNUC__ */

#endif /* NO_ALLOCA */

#if !defined(ALLOCATE_LOCAL)
#  if defined(ALLOCATE_LOCAL_FALLBACK) && defined(DEALLOCATE_LOCAL_FALLBACK)
#    define ALLOCATE_LOCAL(_size)  ALLOCATE_LOCAL_FALLBACK(_size)
#    define DEALLOCATE_LOCAL(_ptr) DEALLOCATE_LOCAL_FALLBACK(_ptr)
#  else /* no fallbacks supplied; error */
#    define ALLOCATE_LOCAL(_size)  ALLOCATE_LOCAL_FALLBACK undefined!
#    define DEALLOCATE_LOCAL(_ptr) DEALLOCATE_LOCAL_FALLBACK undefined!
#  endif /* defined(ALLOCATE_LOCAL_FALLBACK && DEALLOCATE_LOCAL_FALLBACK) */
#else
#  if !defined(DEALLOCATE_LOCAL)
#    define DEALLOCATE_LOCAL(_ptr) do {} while(0)
#  endif
#endif /* defined(ALLOCATE_LOCAL) */

#endif /* XALLOCA_H */

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
June 24 2025 08:30:34
root / root
0755
dri
--
March 03 2024 23:04:21
root / root
0755
extensions
--
March 03 2024 23:04:21
root / root
0755
fonts
--
March 03 2024 23:04:21
root / root
0755
DECkeysym.h
2.749 KB
April 14 2020 15:29:25
root / root
0644
HPkeysym.h
5.904 KB
April 14 2020 15:29:25
root / root
0644
ImUtil.h
0.448 KB
June 17 2019 14:47:35
root / root
0644
Sunkeysym.h
3.928 KB
April 14 2020 15:29:25
root / root
0644
X.h
19.665 KB
April 14 2020 15:29:25
root / root
0644
XF86keysym.h
13.293 KB
April 14 2020 15:29:25
root / root
0644
XKBlib.h
30.269 KB
June 17 2019 14:47:35
root / root
0644
XWDFile.h
3.781 KB
April 14 2020 15:29:25
root / root
0644
Xalloca.h
4.479 KB
April 14 2020 15:29:25
root / root
0644
Xarch.h
2.882 KB
April 14 2020 15:29:25
root / root
0644
Xatom.h
2.459 KB
April 14 2020 15:29:25
root / root
0644
Xauth.h
3.728 KB
February 10 2019 22:45:00
root / root
0644
Xcms.h
20.846 KB
June 17 2019 14:47:35
root / root
0644
Xdefs.h
2.345 KB
April 14 2020 15:29:25
root / root
0644
Xfuncproto.h
7.679 KB
April 14 2020 15:29:25
root / root
0644
Xfuncs.h
2.203 KB
April 14 2020 15:29:25
root / root
0644
Xlib-xcb.h
0.494 KB
June 17 2019 14:47:35
root / root
0644
Xlib.h
97.199 KB
June 17 2019 14:47:35
root / root
0644
XlibConf.h
1.53 KB
September 24 2024 02:41:12
root / root
0644
Xlibint.h
39.562 KB
September 24 2024 02:41:00
root / root
0644
Xlocale.h
1.267 KB
June 17 2019 14:47:35
root / root
0644
Xmd.h
5.002 KB
April 14 2020 15:29:25
root / root
0644
Xos.h
4.26 KB
April 14 2020 15:29:25
root / root
0644
Xos_r.h
32.903 KB
April 14 2020 15:29:25
root / root
0644
Xosdefs.h
3.042 KB
April 14 2020 15:29:25
root / root
0644
Xpoll.h
7.562 KB
August 18 2020 22:42:49
root / root
0644
Xproto.h
51.171 KB
April 14 2020 15:29:25
root / root
0644
Xprotostr.h
2.679 KB
April 14 2020 15:29:25
root / root
0644
Xregion.h
5.81 KB
June 17 2019 14:47:35
root / root
0644
Xresource.h
10.379 KB
June 17 2019 14:47:35
root / root
0644
Xthreads.h
12.104 KB
April 14 2020 15:29:25
root / root
0644
Xutil.h
20.853 KB
June 17 2019 14:47:35
root / root
0644
Xw32defs.h
1.864 KB
April 14 2020 15:29:25
root / root
0644
Xwindows.h
3.206 KB
April 14 2020 15:29:25
root / root
0644
Xwinsock.h
2.208 KB
April 14 2020 15:29:25
root / root
0644
ap_keysym.h
2.239 KB
April 14 2020 15:29:25
root / root
0644
cursorfont.h
3.045 KB
June 17 2019 14:47:35
root / root
0644
keysym.h
2.704 KB
April 14 2020 15:29:25
root / root
0644
keysymdef.h
171.141 KB
April 14 2020 15:29:25
root / root
0644
xpm.h
15.833 KB
March 30 2024 13:53:16
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF