text
stringlengths 1
22.8M
|
|---|
Ovida or Odiva (died 481/482) was a late Western Roman general and warlord of likely Gothic origin and the last Roman ruler of Dalmatia. Ovida initially served Julius Nepos, ruler of Roman Dalmatia and later western Roman emperor in Italy from 474 to 475. After being usurped in 475, Nepos continued to claim the imperial title in exile in Dalmatia, supported by the Eastern Roman Empire, but he was murdered by Ovida and another general, Viator, in 480. Upon his death, Ovida became the ruler of Dalmatia, a position he held until he was defeated and killed by Odoacer, the first barbarian King of Italy, in 481 or 482.
Background
Ovida or Odiva (different sources use different spellings) was a comes who served under Julius Nepos. Based on his name, he was of Germanic, presumably Gothic, origin. Nepos was the Roman provincial ruler of Dalmatia under the title magister militum Dalmatiae, having succeeded his uncle Marcellinus. In 474, Nepos became the western Roman emperor, but he was driven out of Italy in 475, returning to Dalmatia. While in exile in Dalmatia, Nepos continued to claim the imperial title, and was supported as the legitimate western emperor by the Eastern Roman Empire.
For unknown reasons, Ovida and another Germanic general, Viator, murdered Nepos on 9 May 480, near Salona. Perhaps the murder was instigated by Glycerius, Nepos' predecessor as western emperor, whom Nepos had deposed and made bishop of Salona, or perhaps it was motivated by unwillingness to partake in Nepos' planned reconquest of Italy.
Ruler of Dalmatia
After Nepos' murder, Ovida became the ruler of Dalmatia. Some modern historians, such as Wolf Liebeschuetz, describe Ovida's position as a warlord. No coinage minted under Ovida has been securely identified, but it is possible that some western coins minted in Zeno's name were minted in Dalmatia, possibly under Ovida, which, if true, indicates that Ovida accepted Zeno as his new sovereign after Nepos' death. Ovida's rule in Dalmatia was not accepted by Odoacer, who had deposed Nepos' successor in Italy, Romulus Augustulus, and become the first king of Italy. Odoacer thus invaded Dalmatia. The date of Odoacer's invasion and Ovida's defeat is not certain, as different sources provide different dates, but he ruled for at least a year and a half. Ovida was defeated and put to death by Odoacer on either 27 November or 9 December, in either 481 or 482.
References
Bibliography
Ancient Roman generals
Western Roman Empire
5th-century Romans of Gothic descent
History of Dalmatia
Gothic warriors
Regicides
Year of birth unknown
Last of the Romans
Executed regicides
|
Nils-Erik Haglund (19 June 1893 – 19 March 1921) was a Swedish swimmer. He competed in the men's 400 metre freestyle event at the 1912 Summer Olympics.
Haglund represented Stockholms KK.
References
External links
1893 births
1921 deaths
Olympic swimmers for Sweden
Swimmers at the 1912 Summer Olympics
Swimmers from Stockholm
Swedish male freestyle swimmers
Stockholms KK swimmers
|
```sqlpl
-- or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information
-- regarding copyright ownership. The ASF licenses this file
--
-- path_to_url
--
-- Unless required by applicable law or agreed to in writing, software
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
select avg(ss_quantity)
,avg(ss_ext_sales_price)
,avg(ss_ext_wholesale_cost)
,sum(ss_ext_wholesale_cost)
from store_sales
,store
,customer_demographics
,household_demographics
,customer_address
,date_dim
where s_store_sk = ss_store_sk
and ss_sold_date_sk = d_date_sk and d_year = 2001
and((ss_hdemo_sk=hd_demo_sk
and cd_demo_sk = ss_cdemo_sk
and cd_marital_status = 'D'
and cd_education_status = '2 yr Degree'
and ss_sales_price between 100.00 and 150.00
and hd_dep_count = 3
)or
(ss_hdemo_sk=hd_demo_sk
and cd_demo_sk = ss_cdemo_sk
and cd_marital_status = 'S'
and cd_education_status = 'Secondary'
and ss_sales_price between 50.00 and 100.00
and hd_dep_count = 1
) or
(ss_hdemo_sk=hd_demo_sk
and cd_demo_sk = ss_cdemo_sk
and cd_marital_status = 'W'
and cd_education_status = 'Advanced Degree'
and ss_sales_price between 150.00 and 200.00
and hd_dep_count = 1
))
and((ss_addr_sk = ca_address_sk
and ca_country = 'United States'
and ca_state in ('CO', 'IL', 'MN')
and ss_net_profit between 100 and 200
) or
(ss_addr_sk = ca_address_sk
and ca_country = 'United States'
and ca_state in ('OH', 'MT', 'NM')
and ss_net_profit between 150 and 300
) or
(ss_addr_sk = ca_address_sk
and ca_country = 'United States'
and ca_state in ('TX', 'MO', 'MI')
and ss_net_profit between 50 and 250
))
```
|
```xml
import { Component } from '@angular/core';
@Component({
selector: 'scatter-demo',
styleUrls: ['./scatter-demo.component.scss'],
templateUrl: './scatter-demo.component.html',
})
export class ScatterDemoComponent {}
```
|
```c
/**
* @file lv_port_fs_templ.c
*
*/
/*Copy this file as "lv_port_fs.c" and set this value to "1" to enable content*/
#if 0
/*********************
* INCLUDES
*********************/
#include "lv_port_fs_template.h"
#include "../../lvgl.h"
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* STATIC PROTOTYPES
**********************/
static void fs_init(void);
static void * fs_open(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode);
static lv_fs_res_t fs_close(lv_fs_drv_t * drv, void * file_p);
static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * br);
static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint32_t * bw);
static lv_fs_res_t fs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_t whence);
static lv_fs_res_t fs_size(lv_fs_drv_t * drv, void * file_p, uint32_t * size_p);
static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p);
static void * fs_dir_open(lv_fs_drv_t * drv, const char * path);
static lv_fs_res_t fs_dir_read(lv_fs_drv_t * drv, void * rddir_p, char * fn, uint32_t fn_len);
static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * rddir_p);
/**********************
* STATIC VARIABLES
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**********************
* MACROS
**********************/
/**********************
* GLOBAL FUNCTIONS
**********************/
void lv_port_fs_init(void)
{
/*----------------------------------------------------
* Initialize your storage device and File System
* -------------------------------------------------*/
fs_init();
/*---------------------------------------------------
* Register the file system interface in LVGL
*--------------------------------------------------*/
static lv_fs_drv_t fs_drv;
lv_fs_drv_init(&fs_drv);
/*Set up fields...*/
fs_drv.letter = 'P';
fs_drv.open_cb = fs_open;
fs_drv.close_cb = fs_close;
fs_drv.read_cb = fs_read;
fs_drv.write_cb = fs_write;
fs_drv.seek_cb = fs_seek;
fs_drv.tell_cb = fs_tell;
fs_drv.dir_close_cb = fs_dir_close;
fs_drv.dir_open_cb = fs_dir_open;
fs_drv.dir_read_cb = fs_dir_read;
lv_fs_drv_register(&fs_drv);
}
/**********************
* STATIC FUNCTIONS
**********************/
/*Initialize your Storage device and File system.*/
static void fs_init(void)
{
/*E.g. for FatFS initialize the SD card and FatFS itself*/
/*You code here*/
}
/**
* Open a file
* @param drv pointer to a driver where this function belongs
* @param path path to the file beginning with the driver letter (e.g. S:/folder/file.txt)
* @param mode read: FS_MODE_RD, write: FS_MODE_WR, both: FS_MODE_RD | FS_MODE_WR
* @return a file descriptor or NULL on error
*/
static void * fs_open(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode)
{
lv_fs_res_t res = LV_FS_RES_NOT_IMP;
void * f = NULL;
if(mode == LV_FS_MODE_WR) {
/*Open a file for write*/
f = ... /*Add your code here*/
}
else if(mode == LV_FS_MODE_RD) {
/*Open a file for read*/
f = ... /*Add your code here*/
}
else if(mode == (LV_FS_MODE_WR | LV_FS_MODE_RD)) {
/*Open a file for read and write*/
f = ... /*Add your code here*/
}
return f;
}
/**
* Close an opened file
* @param drv pointer to a driver where this function belongs
* @param file_p pointer to a file_t variable. (opened with fs_open)
* @return LV_FS_RES_OK: no error or any error from @lv_fs_res_t enum
*/
static lv_fs_res_t fs_close(lv_fs_drv_t * drv, void * file_p)
{
lv_fs_res_t res = LV_FS_RES_NOT_IMP;
/*Add your code here*/
return res;
}
/**
* Read data from an opened file
* @param drv pointer to a driver where this function belongs
* @param file_p pointer to a file_t variable.
* @param buf pointer to a memory block where to store the read data
* @param btr number of Bytes To Read
* @param br the real number of read bytes (Byte Read)
* @return LV_FS_RES_OK: no error or any error from @lv_fs_res_t enum
*/
static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * br)
{
lv_fs_res_t res = LV_FS_RES_NOT_IMP;
/*Add your code here*/
return res;
}
/**
* Write into a file
* @param drv pointer to a driver where this function belongs
* @param file_p pointer to a file_t variable
* @param buf pointer to a buffer with the bytes to write
* @param btw Bytes To Write
* @param bw the number of real written bytes (Bytes Written). NULL if unused.
* @return LV_FS_RES_OK: no error or any error from @lv_fs_res_t enum
*/
static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint32_t * bw)
{
lv_fs_res_t res = LV_FS_RES_NOT_IMP;
/*Add your code here*/
return res;
}
/**
* Set the read write pointer. Also expand the file size if necessary.
* @param drv pointer to a driver where this function belongs
* @param file_p pointer to a file_t variable. (opened with fs_open )
* @param pos the new position of read write pointer
* @param whence tells from where to interpret the `pos`. See @lv_fs_whence_t
* @return LV_FS_RES_OK: no error or any error from @lv_fs_res_t enum
*/
static lv_fs_res_t fs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs_whence_t whence)
{
lv_fs_res_t res = LV_FS_RES_NOT_IMP;
/*Add your code here*/
return res;
}
/**
* Give the position of the read write pointer
* @param drv pointer to a driver where this function belongs
* @param file_p pointer to a file_t variable
* @param pos_p pointer to store the result
* @return LV_FS_RES_OK: no error or any error from @lv_fs_res_t enum
*/
static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p)
{
lv_fs_res_t res = LV_FS_RES_NOT_IMP;
/*Add your code here*/
return res;
}
/**
* Initialize a 'lv_fs_dir_t' variable for directory reading
* @param drv pointer to a driver where this function belongs
* @param path path to a directory
* @return pointer to the directory read descriptor or NULL on error
*/
static void * fs_dir_open(lv_fs_drv_t * drv, const char * path)
{
void * dir = NULL;
/*Add your code here*/
dir = ... /*Add your code here*/
return dir;
}
/**
* Read the next filename form a directory.
* The name of the directories will begin with '/'
* @param drv pointer to a driver where this function belongs
* @param rddir_p pointer to an initialized 'lv_fs_dir_t' variable
* @param fn pointer to a buffer to store the filename
* @param fn_len length of the buffer to store the filename
* @return LV_FS_RES_OK: no error or any error from @lv_fs_res_t enum
*/
static lv_fs_res_t fs_dir_read(lv_fs_drv_t * drv, void * rddir_p, char * fn, uint32_t fn_len)
{
lv_fs_res_t res = LV_FS_RES_NOT_IMP;
/*Add your code here*/
return res;
}
/**
* Close the directory reading
* @param drv pointer to a driver where this function belongs
* @param rddir_p pointer to an initialized 'lv_fs_dir_t' variable
* @return LV_FS_RES_OK: no error or any error from @lv_fs_res_t enum
*/
static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * rddir_p)
{
lv_fs_res_t res = LV_FS_RES_NOT_IMP;
/*Add your code here*/
return res;
}
#else /*Enable this file at the top*/
/*This dummy typedef exists purely to silence -Wpedantic.*/
typedef int keep_pedantic_happy;
#endif
```
|
```objective-c
/* Threads compatibility routines for libgcc2 and libobjc. */
/* Compile this one with gcc. */
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it under
Software Foundation; either version 3, or (at your option) any later
version.
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
for more details.
Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
<path_to_url */
#ifndef _GLIBCXX_GCC_GTHR_POSIX_H
#define _GLIBCXX_GCC_GTHR_POSIX_H
/* POSIX threads specific definitions.
Easy, since the interface is just one-to-one mapping. */
#define __GTHREADS 1
#define __GTHREADS_CXX0X 1
#include <pthread.h>
#if ((defined(_LIBOBJC) || defined(_LIBOBJC_WEAK)) \
|| !defined(_GTHREAD_USE_MUTEX_TIMEDLOCK))
# include <unistd.h>
# if defined(_POSIX_TIMEOUTS) && _POSIX_TIMEOUTS >= 0
# define _GTHREAD_USE_MUTEX_TIMEDLOCK 1
# else
# define _GTHREAD_USE_MUTEX_TIMEDLOCK 0
# endif
#endif
typedef pthread_t __gthread_t;
typedef pthread_key_t __gthread_key_t;
typedef pthread_once_t __gthread_once_t;
typedef pthread_mutex_t __gthread_mutex_t;
typedef pthread_mutex_t __gthread_recursive_mutex_t;
typedef pthread_cond_t __gthread_cond_t;
typedef struct timespec __gthread_time_t;
/* POSIX like conditional variables are supported. Please look at comments
in gthr.h for details. */
#define __GTHREAD_HAS_COND 1
#define __GTHREAD_MUTEX_INIT PTHREAD_MUTEX_INITIALIZER
#define __GTHREAD_MUTEX_INIT_FUNCTION __gthread_mutex_init_function
#define __GTHREAD_ONCE_INIT PTHREAD_ONCE_INIT
#if defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
#define __GTHREAD_RECURSIVE_MUTEX_INIT PTHREAD_RECURSIVE_MUTEX_INITIALIZER
#elif defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP)
#define __GTHREAD_RECURSIVE_MUTEX_INIT PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
#else
#define __GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION __gthread_recursive_mutex_init_function
#endif
#define __GTHREAD_COND_INIT PTHREAD_COND_INITIALIZER
#define __GTHREAD_TIME_INIT {0,0}
#ifdef _GTHREAD_USE_MUTEX_INIT_FUNC
# undef __GTHREAD_MUTEX_INIT
#endif
#ifdef _GTHREAD_USE_RECURSIVE_MUTEX_INIT_FUNC
# undef __GTHREAD_RECURSIVE_MUTEX_INIT
# undef __GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION
# define __GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION __gthread_recursive_mutex_init_function
#endif
#ifdef _GTHREAD_USE_COND_INIT_FUNC
# undef __GTHREAD_COND_INIT
# define __GTHREAD_COND_INIT_FUNCTION __gthread_cond_init_function
#endif
#if __GXX_WEAK__ && _GLIBCXX_GTHREAD_USE_WEAK
# ifndef __gthrw_pragma
# define __gthrw_pragma(pragma)
# endif
# define __gthrw2(name,name2,type) \
static __typeof(type) name __attribute__ ((__weakref__(#name2))); \
__gthrw_pragma(weak type)
# define __gthrw_(name) __gthrw_ ## name
#else
# define __gthrw2(name,name2,type)
# define __gthrw_(name) name
#endif
/* Typically, __gthrw_foo is a weak reference to symbol foo. */
#define __gthrw(name) __gthrw2(__gthrw_ ## name,name,name)
__gthrw(pthread_once)
__gthrw(pthread_getspecific)
__gthrw(pthread_setspecific)
__gthrw(pthread_create)
__gthrw(pthread_join)
__gthrw(pthread_equal)
__gthrw(pthread_self)
__gthrw(pthread_detach)
#ifndef __BIONIC__
__gthrw(pthread_cancel)
#endif
__gthrw(sched_yield)
__gthrw(pthread_mutex_lock)
__gthrw(pthread_mutex_trylock)
#if _GTHREAD_USE_MUTEX_TIMEDLOCK
__gthrw(pthread_mutex_timedlock)
#endif
__gthrw(pthread_mutex_unlock)
__gthrw(pthread_mutex_init)
__gthrw(pthread_mutex_destroy)
__gthrw(pthread_cond_init)
__gthrw(pthread_cond_broadcast)
__gthrw(pthread_cond_signal)
__gthrw(pthread_cond_wait)
__gthrw(pthread_cond_timedwait)
__gthrw(pthread_cond_destroy)
__gthrw(pthread_key_create)
__gthrw(pthread_key_delete)
__gthrw(pthread_mutexattr_init)
__gthrw(pthread_mutexattr_settype)
__gthrw(pthread_mutexattr_destroy)
#if defined(_LIBOBJC) || defined(_LIBOBJC_WEAK)
/* Objective-C. */
__gthrw(pthread_exit)
#ifdef _POSIX_PRIORITY_SCHEDULING
#ifdef _POSIX_THREAD_PRIORITY_SCHEDULING
__gthrw(sched_get_priority_max)
__gthrw(sched_get_priority_min)
#endif /* _POSIX_THREAD_PRIORITY_SCHEDULING */
#endif /* _POSIX_PRIORITY_SCHEDULING */
__gthrw(pthread_attr_destroy)
__gthrw(pthread_attr_init)
__gthrw(pthread_attr_setdetachstate)
#ifdef _POSIX_THREAD_PRIORITY_SCHEDULING
__gthrw(pthread_getschedparam)
__gthrw(pthread_setschedparam)
#endif /* _POSIX_THREAD_PRIORITY_SCHEDULING */
#endif /* _LIBOBJC || _LIBOBJC_WEAK */
#if __GXX_WEAK__ && _GLIBCXX_GTHREAD_USE_WEAK
/* On Solaris 2.6 up to 9, the libc exposes a POSIX threads interface even if
-pthreads is not specified. The functions are dummies and most return an
error value. However pthread_once returns 0 without invoking the routine
it is passed so we cannot pretend that the interface is active if -pthreads
is not specified. On Solaris 2.5.1, the interface is not exposed at all so
we need to play the usual game with weak symbols. On Solaris 10 and up, a
working interface is always exposed. On FreeBSD 6 and later, libc also
exposes a dummy POSIX threads interface, similar to what Solaris 2.6 up
to 9 does. FreeBSD >= 700014 even provides a pthread_cancel stub in libc,
which means the alternate __gthread_active_p below cannot be used there. */
#if defined(__FreeBSD__) || (defined(__sun) && defined(__svr4__))
static volatile int __gthread_active = -1;
static void
__gthread_trigger (void)
{
__gthread_active = 1;
}
static inline int
__gthread_active_p (void)
{
static pthread_mutex_t __gthread_active_mutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_once_t __gthread_active_once = PTHREAD_ONCE_INIT;
/* Avoid reading __gthread_active twice on the main code path. */
int __gthread_active_latest_value = __gthread_active;
/* This test is not protected to avoid taking a lock on the main code
path so every update of __gthread_active in a threaded program must
be atomic with regard to the result of the test. */
if (__builtin_expect (__gthread_active_latest_value < 0, 0))
{
if (__gthrw_(pthread_once))
{
/* If this really is a threaded program, then we must ensure that
__gthread_active has been set to 1 before exiting this block. */
__gthrw_(pthread_mutex_lock) (&__gthread_active_mutex);
__gthrw_(pthread_once) (&__gthread_active_once, __gthread_trigger);
__gthrw_(pthread_mutex_unlock) (&__gthread_active_mutex);
}
/* Make sure we'll never enter this block again. */
if (__gthread_active < 0)
__gthread_active = 0;
__gthread_active_latest_value = __gthread_active;
}
return __gthread_active_latest_value != 0;
}
#else /* neither FreeBSD nor Solaris */
/* For a program to be multi-threaded the only thing that it certainly must
be using is pthread_create. However, there may be other libraries that
intercept pthread_create with their own definitions to wrap pthreads
functionality for some purpose. In those cases, pthread_create being
defined might not necessarily mean that libpthread is actually linked
in.
For the GNU C library, we can use a known internal name. This is always
available in the ABI, but no other library would define it. That is
ideal, since any public pthread function might be intercepted just as
pthread_create might be. __pthread_key_create is an "internal"
implementation symbol, but it is part of the public exported ABI. Also,
it's among the symbols that the static libpthread.a always links in
whenever pthread_create is used, so there is no danger of a false
negative result in any statically-linked, multi-threaded program.
For others, we choose pthread_cancel as a function that seems unlikely
to be redefined by an interceptor library. The bionic (Android) C
library does not provide pthread_cancel, so we do use pthread_create
there (and interceptor libraries lose). */
#ifdef __GLIBC__
__gthrw2(__gthrw_(__pthread_key_create),
__pthread_key_create,
pthread_key_create)
# define GTHR_ACTIVE_PROXY __gthrw_(__pthread_key_create)
#elif defined (__BIONIC__)
# define GTHR_ACTIVE_PROXY __gthrw_(pthread_create)
#else
# define GTHR_ACTIVE_PROXY __gthrw_(pthread_cancel)
#endif
static inline int
__gthread_active_p (void)
{
static void *const __gthread_active_ptr
= __extension__ (void *) >HR_ACTIVE_PROXY;
return __gthread_active_ptr != 0;
}
#endif /* FreeBSD or Solaris */
#else /* not __GXX_WEAK__ */
/* Similar to Solaris, HP-UX 11 for PA-RISC provides stubs for pthread
calls in shared flavors of the HP-UX C library. Most of the stubs
have no functionality. The details are described in the "libc cumulative
patch" for each subversion of HP-UX 11. There are two special interfaces
provided for checking whether an application is linked to a shared pthread
library or not. However, these interfaces aren't available in early
libpthread libraries. We also need a test that works for archive
libraries. We can't use pthread_once as some libc versions call the
init function. We also can't use pthread_create or pthread_attr_init
as these create a thread and thereby prevent changing the default stack
size. The function pthread_default_stacksize_np is available in both
the archive and shared versions of libpthread. It can be used to
determine the default pthread stack size. There is a stub in some
shared libc versions which returns a zero size if pthreads are not
active. We provide an equivalent stub to handle cases where libc
doesn't provide one. */
#if defined(__hppa__) && defined(__hpux__)
static volatile int __gthread_active = -1;
static inline int
__gthread_active_p (void)
{
/* Avoid reading __gthread_active twice on the main code path. */
int __gthread_active_latest_value = __gthread_active;
size_t __s;
if (__builtin_expect (__gthread_active_latest_value < 0, 0))
{
pthread_default_stacksize_np (0, &__s);
__gthread_active = __s ? 1 : 0;
__gthread_active_latest_value = __gthread_active;
}
return __gthread_active_latest_value != 0;
}
#else /* not hppa-hpux */
static inline int
__gthread_active_p (void)
{
return 1;
}
#endif /* hppa-hpux */
#endif /* __GXX_WEAK__ */
#ifdef _LIBOBJC
/* This is the config.h file in libobjc/ */
#include <config.h>
#ifdef HAVE_SCHED_H
# include <sched.h>
#endif
/* Key structure for maintaining thread specific storage */
static pthread_key_t _objc_thread_storage;
static pthread_attr_t _objc_thread_attribs;
/* Thread local storage for a single thread */
static void *thread_local_storage = NULL;
/* Backend initialization functions */
/* Initialize the threads subsystem. */
static inline int
__gthread_objc_init_thread_system (void)
{
if (__gthread_active_p ())
{
/* Initialize the thread storage key. */
if (__gthrw_(pthread_key_create) (&_objc_thread_storage, NULL) == 0)
{
/* The normal default detach state for threads is
* PTHREAD_CREATE_JOINABLE which causes threads to not die
* when you think they should. */
if (__gthrw_(pthread_attr_init) (&_objc_thread_attribs) == 0
&& __gthrw_(pthread_attr_setdetachstate) (&_objc_thread_attribs,
PTHREAD_CREATE_DETACHED) == 0)
return 0;
}
}
return -1;
}
/* Close the threads subsystem. */
static inline int
__gthread_objc_close_thread_system (void)
{
if (__gthread_active_p ()
&& __gthrw_(pthread_key_delete) (_objc_thread_storage) == 0
&& __gthrw_(pthread_attr_destroy) (&_objc_thread_attribs) == 0)
return 0;
return -1;
}
/* Backend thread functions */
/* Create a new thread of execution. */
static inline objc_thread_t
__gthread_objc_thread_detach (void (*func)(void *), void *arg)
{
objc_thread_t thread_id;
pthread_t new_thread_handle;
if (!__gthread_active_p ())
return NULL;
if (!(__gthrw_(pthread_create) (&new_thread_handle, &_objc_thread_attribs,
(void *) func, arg)))
thread_id = (objc_thread_t) new_thread_handle;
else
thread_id = NULL;
return thread_id;
}
/* Set the current thread's priority. */
static inline int
__gthread_objc_thread_set_priority (int priority)
{
if (!__gthread_active_p ())
return -1;
else
{
#ifdef _POSIX_PRIORITY_SCHEDULING
#ifdef _POSIX_THREAD_PRIORITY_SCHEDULING
pthread_t thread_id = __gthrw_(pthread_self) ();
int policy;
struct sched_param params;
int priority_min, priority_max;
if (__gthrw_(pthread_getschedparam) (thread_id, &policy, ¶ms) == 0)
{
if ((priority_max = __gthrw_(sched_get_priority_max) (policy)) == -1)
return -1;
if ((priority_min = __gthrw_(sched_get_priority_min) (policy)) == -1)
return -1;
if (priority > priority_max)
priority = priority_max;
else if (priority < priority_min)
priority = priority_min;
params.sched_priority = priority;
/*
* The solaris 7 and several other man pages incorrectly state that
* this should be a pointer to policy but pthread.h is universally
* at odds with this.
*/
if (__gthrw_(pthread_setschedparam) (thread_id, policy, ¶ms) == 0)
return 0;
}
#endif /* _POSIX_THREAD_PRIORITY_SCHEDULING */
#endif /* _POSIX_PRIORITY_SCHEDULING */
return -1;
}
}
/* Return the current thread's priority. */
static inline int
__gthread_objc_thread_get_priority (void)
{
#ifdef _POSIX_PRIORITY_SCHEDULING
#ifdef _POSIX_THREAD_PRIORITY_SCHEDULING
if (__gthread_active_p ())
{
int policy;
struct sched_param params;
if (__gthrw_(pthread_getschedparam) (__gthrw_(pthread_self) (), &policy, ¶ms) == 0)
return params.sched_priority;
else
return -1;
}
else
#endif /* _POSIX_THREAD_PRIORITY_SCHEDULING */
#endif /* _POSIX_PRIORITY_SCHEDULING */
return OBJC_THREAD_INTERACTIVE_PRIORITY;
}
/* Yield our process time to another thread. */
static inline void
__gthread_objc_thread_yield (void)
{
if (__gthread_active_p ())
__gthrw_(sched_yield) ();
}
/* Terminate the current thread. */
static inline int
__gthread_objc_thread_exit (void)
{
if (__gthread_active_p ())
/* exit the thread */
__gthrw_(pthread_exit) (&__objc_thread_exit_status);
/* Failed if we reached here */
return -1;
}
/* Returns an integer value which uniquely describes a thread. */
static inline objc_thread_t
__gthread_objc_thread_id (void)
{
if (__gthread_active_p ())
return (objc_thread_t) __gthrw_(pthread_self) ();
else
return (objc_thread_t) 1;
}
/* Sets the thread's local storage pointer. */
static inline int
__gthread_objc_thread_set_data (void *value)
{
if (__gthread_active_p ())
return __gthrw_(pthread_setspecific) (_objc_thread_storage, value);
else
{
thread_local_storage = value;
return 0;
}
}
/* Returns the thread's local storage pointer. */
static inline void *
__gthread_objc_thread_get_data (void)
{
if (__gthread_active_p ())
return __gthrw_(pthread_getspecific) (_objc_thread_storage);
else
return thread_local_storage;
}
/* Backend mutex functions */
/* Allocate a mutex. */
static inline int
__gthread_objc_mutex_allocate (objc_mutex_t mutex)
{
if (__gthread_active_p ())
{
mutex->backend = objc_malloc (sizeof (pthread_mutex_t));
if (__gthrw_(pthread_mutex_init) ((pthread_mutex_t *) mutex->backend, NULL))
{
objc_free (mutex->backend);
mutex->backend = NULL;
return -1;
}
}
return 0;
}
/* Deallocate a mutex. */
static inline int
__gthread_objc_mutex_deallocate (objc_mutex_t mutex)
{
if (__gthread_active_p ())
{
int count;
/*
* Posix Threads specifically require that the thread be unlocked
* for __gthrw_(pthread_mutex_destroy) to work.
*/
do
{
count = __gthrw_(pthread_mutex_unlock) ((pthread_mutex_t *) mutex->backend);
if (count < 0)
return -1;
}
while (count);
if (__gthrw_(pthread_mutex_destroy) ((pthread_mutex_t *) mutex->backend))
return -1;
objc_free (mutex->backend);
mutex->backend = NULL;
}
return 0;
}
/* Grab a lock on a mutex. */
static inline int
__gthread_objc_mutex_lock (objc_mutex_t mutex)
{
if (__gthread_active_p ()
&& __gthrw_(pthread_mutex_lock) ((pthread_mutex_t *) mutex->backend) != 0)
{
return -1;
}
return 0;
}
/* Try to grab a lock on a mutex. */
static inline int
__gthread_objc_mutex_trylock (objc_mutex_t mutex)
{
if (__gthread_active_p ()
&& __gthrw_(pthread_mutex_trylock) ((pthread_mutex_t *) mutex->backend) != 0)
{
return -1;
}
return 0;
}
/* Unlock the mutex */
static inline int
__gthread_objc_mutex_unlock (objc_mutex_t mutex)
{
if (__gthread_active_p ()
&& __gthrw_(pthread_mutex_unlock) ((pthread_mutex_t *) mutex->backend) != 0)
{
return -1;
}
return 0;
}
/* Backend condition mutex functions */
/* Allocate a condition. */
static inline int
__gthread_objc_condition_allocate (objc_condition_t condition)
{
if (__gthread_active_p ())
{
condition->backend = objc_malloc (sizeof (pthread_cond_t));
if (__gthrw_(pthread_cond_init) ((pthread_cond_t *) condition->backend, NULL))
{
objc_free (condition->backend);
condition->backend = NULL;
return -1;
}
}
return 0;
}
/* Deallocate a condition. */
static inline int
__gthread_objc_condition_deallocate (objc_condition_t condition)
{
if (__gthread_active_p ())
{
if (__gthrw_(pthread_cond_destroy) ((pthread_cond_t *) condition->backend))
return -1;
objc_free (condition->backend);
condition->backend = NULL;
}
return 0;
}
/* Wait on the condition */
static inline int
__gthread_objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex)
{
if (__gthread_active_p ())
return __gthrw_(pthread_cond_wait) ((pthread_cond_t *) condition->backend,
(pthread_mutex_t *) mutex->backend);
else
return 0;
}
/* Wake up all threads waiting on this condition. */
static inline int
__gthread_objc_condition_broadcast (objc_condition_t condition)
{
if (__gthread_active_p ())
return __gthrw_(pthread_cond_broadcast) ((pthread_cond_t *) condition->backend);
else
return 0;
}
/* Wake up one thread waiting on this condition. */
static inline int
__gthread_objc_condition_signal (objc_condition_t condition)
{
if (__gthread_active_p ())
return __gthrw_(pthread_cond_signal) ((pthread_cond_t *) condition->backend);
else
return 0;
}
#else /* _LIBOBJC */
static inline int
__gthread_create (__gthread_t *__threadid, void *(*__func) (void*),
void *__args)
{
return __gthrw_(pthread_create) (__threadid, NULL, __func, __args);
}
static inline int
__gthread_join (__gthread_t __threadid, void **__value_ptr)
{
return __gthrw_(pthread_join) (__threadid, __value_ptr);
}
static inline int
__gthread_detach (__gthread_t __threadid)
{
return __gthrw_(pthread_detach) (__threadid);
}
static inline int
__gthread_equal (__gthread_t __t1, __gthread_t __t2)
{
return __gthrw_(pthread_equal) (__t1, __t2);
}
static inline __gthread_t
__gthread_self (void)
{
return __gthrw_(pthread_self) ();
}
static inline int
__gthread_yield (void)
{
return __gthrw_(sched_yield) ();
}
static inline int
__gthread_once (__gthread_once_t *__once, void (*__func) (void))
{
if (__gthread_active_p ())
return __gthrw_(pthread_once) (__once, __func);
else
return -1;
}
static inline int
__gthread_key_create (__gthread_key_t *__key, void (*__dtor) (void *))
{
return __gthrw_(pthread_key_create) (__key, __dtor);
}
static inline int
__gthread_key_delete (__gthread_key_t __key)
{
return __gthrw_(pthread_key_delete) (__key);
}
static inline void *
__gthread_getspecific (__gthread_key_t __key)
{
return __gthrw_(pthread_getspecific) (__key);
}
static inline int
__gthread_setspecific (__gthread_key_t __key, const void *__ptr)
{
return __gthrw_(pthread_setspecific) (__key, __ptr);
}
static inline void
__gthread_mutex_init_function (__gthread_mutex_t *__mutex)
{
if (__gthread_active_p ())
__gthrw_(pthread_mutex_init) (__mutex, NULL);
}
static inline int
__gthread_mutex_destroy (__gthread_mutex_t *__mutex)
{
if (__gthread_active_p ())
return __gthrw_(pthread_mutex_destroy) (__mutex);
else
return 0;
}
static inline int
__gthread_mutex_lock (__gthread_mutex_t *__mutex)
{
if (__gthread_active_p ())
return __gthrw_(pthread_mutex_lock) (__mutex);
else
return 0;
}
static inline int
__gthread_mutex_trylock (__gthread_mutex_t *__mutex)
{
if (__gthread_active_p ())
return __gthrw_(pthread_mutex_trylock) (__mutex);
else
return 0;
}
#if _GTHREAD_USE_MUTEX_TIMEDLOCK
static inline int
__gthread_mutex_timedlock (__gthread_mutex_t *__mutex,
const __gthread_time_t *__abs_timeout)
{
if (__gthread_active_p ())
return __gthrw_(pthread_mutex_timedlock) (__mutex, __abs_timeout);
else
return 0;
}
#endif
static inline int
__gthread_mutex_unlock (__gthread_mutex_t *__mutex)
{
if (__gthread_active_p ())
return __gthrw_(pthread_mutex_unlock) (__mutex);
else
return 0;
}
#if !defined( PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP) \
|| defined(_GTHREAD_USE_RECURSIVE_MUTEX_INIT_FUNC)
static inline int
__gthread_recursive_mutex_init_function (__gthread_recursive_mutex_t *__mutex)
{
if (__gthread_active_p ())
{
pthread_mutexattr_t __attr;
int __r;
__r = __gthrw_(pthread_mutexattr_init) (&__attr);
if (!__r)
__r = __gthrw_(pthread_mutexattr_settype) (&__attr,
PTHREAD_MUTEX_RECURSIVE);
if (!__r)
__r = __gthrw_(pthread_mutex_init) (__mutex, &__attr);
if (!__r)
__r = __gthrw_(pthread_mutexattr_destroy) (&__attr);
return __r;
}
return 0;
}
#endif
static inline int
__gthread_recursive_mutex_lock (__gthread_recursive_mutex_t *__mutex)
{
return __gthread_mutex_lock (__mutex);
}
static inline int
__gthread_recursive_mutex_trylock (__gthread_recursive_mutex_t *__mutex)
{
return __gthread_mutex_trylock (__mutex);
}
#if _GTHREAD_USE_MUTEX_TIMEDLOCK
static inline int
__gthread_recursive_mutex_timedlock (__gthread_recursive_mutex_t *__mutex,
const __gthread_time_t *__abs_timeout)
{
return __gthread_mutex_timedlock (__mutex, __abs_timeout);
}
#endif
static inline int
__gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *__mutex)
{
return __gthread_mutex_unlock (__mutex);
}
static inline int
__gthread_recursive_mutex_destroy (__gthread_recursive_mutex_t *__mutex)
{
return __gthread_mutex_destroy (__mutex);
}
#ifdef _GTHREAD_USE_COND_INIT_FUNC
static inline void
__gthread_cond_init_function (__gthread_cond_t *__cond)
{
if (__gthread_active_p ())
__gthrw_(pthread_cond_init) (__cond, NULL);
}
#endif
static inline int
__gthread_cond_broadcast (__gthread_cond_t *__cond)
{
return __gthrw_(pthread_cond_broadcast) (__cond);
}
static inline int
__gthread_cond_signal (__gthread_cond_t *__cond)
{
return __gthrw_(pthread_cond_signal) (__cond);
}
static inline int
__gthread_cond_wait (__gthread_cond_t *__cond, __gthread_mutex_t *__mutex)
{
return __gthrw_(pthread_cond_wait) (__cond, __mutex);
}
static inline int
__gthread_cond_timedwait (__gthread_cond_t *__cond, __gthread_mutex_t *__mutex,
const __gthread_time_t *__abs_timeout)
{
return __gthrw_(pthread_cond_timedwait) (__cond, __mutex, __abs_timeout);
}
static inline int
__gthread_cond_wait_recursive (__gthread_cond_t *__cond,
__gthread_recursive_mutex_t *__mutex)
{
return __gthread_cond_wait (__cond, __mutex);
}
static inline int
__gthread_cond_destroy (__gthread_cond_t* __cond)
{
return __gthrw_(pthread_cond_destroy) (__cond);
}
#endif /* _LIBOBJC */
#endif /* ! _GLIBCXX_GCC_GTHR_POSIX_H */
```
|
VMEBus Switched Serial, commonly known as VXS, is an ANSI standard (ANSI/VITA 41) that improves the performance of standard parallel VMEbus by enhancing it to support newer switched serial fabrics. The base specification (ANSI 41) defines all common elements of the standard, while "dot"-specifications (ANSI 41.n) define extensions which use specific serial fabrics (such as PCI Express, RapidIO, StarFabric from Dolphin Interconnect Solutions and InfiniBand) or additional functionality. VXS is backward compatible with VMEBus. It is defined by the VME International Trade Association (VITA) working group.
Specification
In common with other similar standards, VXS comprises a ‘base line’ specification, which defines the basic mechanical and electrical elements of VXS, together with a series of ‘dot level’ specifications, one or more of which must be implemented to create a functional module. The specifications are as follows:
See also
VPX
References
Computer buses
American National Standards Institute standards
|
```yaml
name: 'Boxy SVG'
description:
'Scalable Vector Graphics (SVG) editor. For beginners as well as for
professional web designers and web developers. On any device and operating
system.'
category: 'Graphics & Design'
website: 'path_to_url
snapcraftName: 'boxy-svg'
keywords:
- svg
- vector
- editor
- graphics
- design
- images
screenshots:
- imageUrl: 'path_to_url
caption: 'Boxy SVG app'
```
|
Anne Marie Helger (born 12 February 1946) is a Danish actress and performer. She has performed in theatre, films and television.
Style and work
In Denmark, Helger is well known for her activism, political satire and engagement in numerous humanitarian projects. Helgers work for the Danish HIV-AIDS movement is among her most notable of these.
Helger attended the Aalborg Theatre school, but did not finish the education. In the 1960s she became a member of the travelling street theatre group of Solvognen (The Sun Chariot), and later in the 1970s Debatteatret (The Debate-theatre).
Helger is known for her many flamboyant dresses, make-up and jewellery, but not exclusively, as she has also performed in classical theatre plays and on television. Helger has worked closely with Danish actor and performer Peter Larsen in various events and projects.
Selected filmography
Strømer (Cop) (1976)
Nyt Legetøj (1977)
The Heritage () (1978)
Johnny Larsen (1979)
Kniven i Hjertet (1981)
Koks i Kulissen (1983)
Crash (1984)
Sidste Akt (1987)
Himmel og Helvede (1988)
De Frigjorte (1993)
Viktor og Viktoria (1993)
Cirkus Ildebrand (1995)
Fru Eilersen og Mehmet (2006)
References
Sources
Kvinfo: Anne Marie Helger (1946 - ) Dansk Kvindebiografisk Leksikon
External links
helger.dk, Anne Marie Helger web page (in Danish language)
1946 births
Danish film actresses
Danish television actresses
People from Gentofte Municipality
Living people
|
```c++
// Boost.Signals library
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// path_to_url
// For more information, see path_to_url
#include <boost/signals/signal2.hpp>
#include <iostream>
template<typename T>
struct first_positive {
typedef T result_type;
template<typename InputIterator>
T operator()(InputIterator first, InputIterator last) const
{
while (first != last && !(*first > 0)) { ++first; }
return (first == last) ? 0
: *first;
}
};
template<typename T>
struct noisy_divide {
typedef T result_type;
T operator()(const T& x, const T& y) const
{
std::cout << "Dividing " << x << " and " << y << std::endl;
return x/y;
}
};
int main()
{
boost::signal2<int, int, int, first_positive<int> > sig_positive;
sig_positive.connect(std::plus<int>());
sig_positive.connect(std::multiplies<int>());
sig_positive.connect(std::minus<int>());
sig_positive.connect(noisy_divide<int>());
assert(sig_positive(3, -5) == 8); // returns 8, but prints nothing
return 0;
}
```
|
The state road D1 () is a national highway in Croatia. It is a one-lane highway that spans from Macelj border crossing in the north via Krapina, Zagreb, Karlovac, Slunj, Gračac, Knin, Sinj, ending in Split. It is long overall.
Before the A1 and A2 dual carriage motorways have been completed (in 2005 and 2007 respectively), the D1 was probably the busiest road during the summer in Croatia as it connected the northern border as well as the city of Zagreb with the tourist resorts at the Adriatic Sea. Since then, the traffic has waned significantly, but the D1 remains relevant as an alternative to the tolled highways.
Route description
North of Zagreb the D1 is mostly parallel to the A2 motorway up to the Krapina interchange, connecting to a number of the A2 interchanges directly or via connector roads. It also runs parallel with railway tracks in some sections running through hilly terrain.
A part of the D1 state road is concurrent with other routes: the A2 motorway between Zaprešić and Jankomir interchanges, the A3 motorway between Jankomir and Lučko interchanges, the D3 state road between the A3 motorway Lučko interchange and Karlovac, the D6 state road in Karlovac, the D33 state road in Knin and the D219 state road in Sinj.
Parts of the D1 have been upgraded to expressway (brza cesta) status. Currently two sections of the D1 are considered as such, since they comprise dual carriageways or are currently expanded to four traffic lanes:
an urban expressway in Karlovac, between the A1 motorway Karlovac interchange and Mostanje
an expressway in and near Split, between the A1 motorway Dugopolje interchange and Bilice roundabout in Split itself
The northern part of the D1 in Karlovac is actually a slightly lower road category because there are several intersections with traffic lights which slow the traffic down.
Parts of the road in Lika have climbing lanes.
The road, as well as all other state roads in Croatia are managed and maintained by Hrvatske ceste, a state-owned company.
Traffic volume
Traffic is regularly counted and reported by Hrvatske ceste, operator of the road. The D1 AADT and ASDT (average summer daily traffic) figure variations observed south of Karlovac are attributed to tourist traffic to various regions of Adriatic Sea coast in Dalmatia region of Croatia.
Road junctions and populated areas
Maps
See also
A1 motorway
A2 motorway
A3 motorway
Sources
External links
D001
D001
D001
D001
D001
D001
D001
D001
Buildings and structures in Krapina-Zagorje County
|
```yaml
{{- /*
*/}}
{{- if .Values.auth.enabled }}
apiVersion: {{ include "common.capabilities.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ template "supabase.auth.fullname" . }}
namespace: {{ include "common.names.namespace" . | quote }}
{{- $versionLabel := dict "app.kubernetes.io/version" ( include "common.images.version" ( dict "imageRoot" .Values.auth.image "chart" .Chart ) ) }}
{{- $labels := include "common.tplvalues.merge" ( dict "values" ( list .Values.commonLabels $versionLabel ) "context" . ) }}
labels: {{- include "common.labels.standard" ( dict "customLabels" $labels "context" $ ) | nindent 4 }}
app.kubernetes.io/part-of: supabase
app.kubernetes.io/component: auth
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
replicas: {{ .Values.auth.replicaCount }}
{{- if .Values.auth.updateStrategy }}
strategy: {{- toYaml .Values.auth.updateStrategy | nindent 4 }}
{{- end }}
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.auth.podLabels .Values.commonLabels $versionLabel ) "context" . ) }}
selector:
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
app.kubernetes.io/component: auth
template:
metadata:
annotations:
{{- if .Values.auth.podAnnotations }}
{{- include "common.tplvalues.render" (dict "value" .Values.auth.podAnnotations "context" $) | nindent 8 }}
{{- end }}
checksum/default-configmap: {{ include (print $.Template.BasePath "/auth/default-configmap.yaml") . | sha256sum }}
{{- if .Values.auth.extraConfig }}
checksum/extra-configmap: {{ include (print $.Template.BasePath "/auth/extra-configmap.yaml") . | sha256sum }}
{{- end }}
checksum/jwt-secret: {{ include (print $.Template.BasePath "/jwt-secret.yaml") . | sha256sum }}
labels: {{- include "common.labels.standard" ( dict "customLabels" $podLabels "context" $ ) | nindent 8 }}
app.kubernetes.io/part-of: supabase
app.kubernetes.io/component: auth
spec:
serviceAccountName: {{ template "supabase.serviceAccountName" . }}
{{- include "supabase.imagePullSecrets" . | nindent 6 }}
automountServiceAccountToken: {{ .Values.auth.automountServiceAccountToken }}
{{- if .Values.auth.hostAliases }}
hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.auth.hostAliases "context" $) | nindent 8 }}
{{- end }}
{{- if .Values.auth.affinity }}
affinity: {{- include "common.tplvalues.render" ( dict "value" .Values.auth.affinity "context" $) | nindent 8 }}
{{- else }}
affinity:
podAffinity: {{- include "common.affinities.pods" (dict "type" .Values.auth.podAffinityPreset "component" "auth" "customLabels" $podLabels "context" $) | nindent 10 }}
podAntiAffinity: {{- include "common.affinities.pods" (dict "type" .Values.auth.podAntiAffinityPreset "component" "auth" "customLabels" $podLabels "context" $) | nindent 10 }}
nodeAffinity: {{- include "common.affinities.nodes" (dict "type" .Values.auth.nodeAffinityPreset.type "key" .Values.auth.nodeAffinityPreset.key "values" .Values.auth.nodeAffinityPreset.values) | nindent 10 }}
{{- end }}
{{- if .Values.auth.nodeSelector }}
nodeSelector: {{- include "common.tplvalues.render" ( dict "value" .Values.auth.nodeSelector "context" $) | nindent 8 }}
{{- end }}
{{- if .Values.auth.tolerations }}
tolerations: {{- include "common.tplvalues.render" (dict "value" .Values.auth.tolerations "context" .) | nindent 8 }}
{{- end }}
{{- if .Values.auth.priorityClassName }}
priorityClassName: {{ .Values.auth.priorityClassName | quote }}
{{- end }}
{{- if .Values.auth.schedulerName }}
schedulerName: {{ .Values.auth.schedulerName | quote }}
{{- end }}
{{- if .Values.auth.topologySpreadConstraints }}
topologySpreadConstraints: {{- include "common.tplvalues.render" (dict "value" .Values.auth.topologySpreadConstraints "context" .) | nindent 8 }}
{{- end }}
{{- if .Values.auth.podSecurityContext.enabled }}
securityContext: {{- include "common.compatibility.renderSecurityContext" (dict "secContext" .Values.auth.podSecurityContext "context" $) | nindent 8 }}
{{- end }}
{{- if .Values.auth.terminationGracePeriodSeconds }}
terminationGracePeriodSeconds: {{ .Values.auth.terminationGracePeriodSeconds }}
{{- end }}
initContainers:
{{- if not .Values.diagnosticMode.enabled }}
{{- include "supabase.waitForDBInitContainer" . | nindent 8 }}
{{- end }}
{{- if .Values.auth.initContainers }}
{{- include "common.tplvalues.render" (dict "value" .Values.auth.initContainers "context" $) | nindent 8 }}
{{- end }}
containers:
- name: gotrue
image: {{ template "supabase.auth.image" . }}
imagePullPolicy: {{ .Values.auth.image.pullPolicy }}
{{- if .Values.auth.containerSecurityContext.enabled }}
securityContext: {{- include "common.compatibility.renderSecurityContext" (dict "secContext" .Values.auth.containerSecurityContext "context" $) | nindent 12 }}
{{- end }}
{{- if .Values.diagnosticMode.enabled }}
command: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.command "context" $) | nindent 12 }}
{{- else if .Values.auth.command }}
command: {{- include "common.tplvalues.render" (dict "value" .Values.auth.command "context" $) | nindent 12 }}
{{- end }}
{{- if .Values.diagnosticMode.enabled }}
args: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.args "context" $) | nindent 12 }}
{{- else if .Values.auth.args }}
args: {{- include "common.tplvalues.render" (dict "value" .Values.auth.args "context" $) | nindent 12 }}
{{- end }}
env:
- name: DB_USER
value: {{ include "supabase.database.user" . | quote }}
- name: DB_HOST
value: {{ include "supabase.database.host" . | quote }}
- name: DB_PORT
value: {{ include "supabase.database.port" . | quote }}
- name: DB_NAME
value: {{ include "supabase.database.name" . | quote }}
- name: DB_SSL
value: {{ .Values.dbSSL | quote }}
- name: DB_PASSWORD
valueFrom:
secretKeyRef:
name: {{ include "supabase.database.secretName" . }}
key: {{ include "supabase.database.passwordKey" . | quote }}
- name: GOTRUE_DB_DATABASE_URL
value: "postgresql://$(DB_USER):$(DB_PASSWORD)@$(DB_HOST):$(DB_PORT)/$(DB_NAME)?search_path=auth&sslmode=$(DB_SSL)"
- name: GOTRUE_JWT_SECRET
valueFrom:
secretKeyRef:
name: {{ include "supabase.jwt.secretName" . }}
key: {{ include "supabase.jwt.secretKey" . }}
- name: GOTRUE_OPERATOR_TOKEN
valueFrom:
secretKeyRef:
name: {{ include "supabase.jwt.secretName" . }}
key: {{ include "supabase.jwt.secretKey" . }}
{{- if .Values.auth.extraEnvVars }}
{{- include "common.tplvalues.render" (dict "value" .Values.auth.extraEnvVars "context" $) | nindent 12 }}
{{- end }}
envFrom:
- configMapRef:
name: {{ include "supabase.auth.defaultConfigmapName" . }}
{{- if .Values.auth.extraConfigExistingConfigmap }}
- configMapRef:
name: {{ include "supabase.auth.extraConfigmapName" . }}
{{- end }}
{{- if .Values.auth.extraEnvVarsCM }}
- configMapRef:
name: {{ include "common.tplvalues.render" (dict "value" .Values.auth.extraEnvVarsCM "context" $) }}
{{- end }}
{{- if .Values.auth.extraEnvVarsSecret }}
- secretRef:
name: {{ include "common.tplvalues.render" (dict "value" .Values.auth.extraEnvVarsSecret "context" $) }}
{{- end }}
{{- if .Values.auth.resources }}
resources: {{- toYaml .Values.auth.resources | nindent 12 }}
{{- else if ne .Values.auth.resourcesPreset "none" }}
resources: {{- include "common.resources.preset" (dict "type" .Values.auth.resourcesPreset) | nindent 12 }}
{{- end }}
ports:
- name: http
containerPort: {{ .Values.auth.containerPorts.http }}
{{- if not .Values.diagnosticMode.enabled }}
{{- if .Values.auth.customLivenessProbe }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.auth.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.auth.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.auth.livenessProbe "enabled") "context" $) | nindent 12 }}
tcpSocket:
port: http
{{- end }}
{{- if .Values.auth.customReadinessProbe }}
readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.auth.customReadinessProbe "context" $) | nindent 12 }}
{{- else if .Values.auth.readinessProbe.enabled }}
readinessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.auth.readinessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /health
port: http
{{- end }}
{{- if .Values.auth.customStartupProbe }}
startupProbe: {{- include "common.tplvalues.render" (dict "value" .Values.auth.customStartupProbe "context" $) | nindent 12 }}
{{- else if .Values.auth.startupProbe.enabled }}
startupProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.auth.startupProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /health
port: http
{{- end }}
{{- end }}
{{- if .Values.auth.lifecycleHooks }}
lifecycle: {{- include "common.tplvalues.render" (dict "value" .Values.auth.lifecycleHooks "context" $) | nindent 12 }}
{{- end }}
volumeMounts:
- name: empty-dir
mountPath: /tmp
subPath: tmp-dir
{{- if .Values.auth.extraVolumeMounts }}
{{- include "common.tplvalues.render" (dict "value" .Values.auth.extraVolumeMounts "context" $) | nindent 12 }}
{{- end }}
{{- if .Values.auth.sidecars }}
{{- include "common.tplvalues.render" ( dict "value" .Values.auth.sidecars "context" $) | nindent 8 }}
{{- end }}
volumes:
- name: empty-dir
emptyDir: {}
{{- if .Values.auth.extraVolumes }}
{{- include "common.tplvalues.render" (dict "value" .Values.auth.extraVolumes "context" $) | nindent 8 }}
{{- end }}
{{- end }}
```
|
Fraydun "Fred" Manocherian (born 1932) is an American real estate developer, author, founder of the National Road Safety Foundation, and founder of the New York Health & Racquet Club chain.
Biography
Manocherian, raised Baha’i, was born in 1932 to a family of Persian Jewish descent, the son of Yahya Manocherian and his wife Touba (née Lalezari). He has one sister, Touran Manocherian Yaghoubzadeh; and three brothers: Amir Houshang, Eskandar, and Manouchehr.
He and his brothers founded Manocherian Brothers and Pan Am Equities, which focused on the redevelopment of Upper East Side tenement blocks.
In 1973, Manocherian, a fitness enthusiast, founded the New York Health & Racquet Club chain which eventually became the largest fitness chain in New York City. He also founded the New York Stress & Research Center.
In 1955, he became an advocate for federal funding of public education in traffic safety after two of his high school friends were killed by a drunk driver. In 1962, he founded the National Road Safety Foundation. In 1970, he wrote Flesh, Metal & Glass, a book about auto safety which included his Manocherian Chart. He and attorney Leonard J. Robbins founded The Manocherian-Robbins Foundation tasked with reducing the death rate on the nation's roadways through public-service advertising and legislative lobbying.
In 2011, he wrote the fiction novel, My Father's Will: A Novel.
Awards
Manocherian has received several awards due to his advocacy of automotive safety including the "Man of the Year" award from the New York Council for Civic Affairs, the "Man of the Year" award from the Greater New York Automobile Dealers Association, an Honorary Doctorate in Humane Letters from St. John's University, a Master of Arts degree from the International University of Communications in Washington, D.C., the 1997 Distinguished Service to Safety Award from the National Safety Council and the 2005 Public Service Award from the National Highway Traffic Safety Administration.
Personal life
In 1959, he married Jennifer Ann Robbins, daughter of cookbook author Ann Roe Robbins. They had five children: Kim (born 1960), John (born 1962), Jed (born 1966), Greg (born 1967) and Cara (born 1974).
His brother, Eskander Manocherian (died 1999) was married to Bernice Manocherian, former president of AIPAC. In 1985, his daughter Kimberly Diana Manocherian married Jerome John Strelov in a Unitarian ceremony in Manhattan. Kim is the president of the New York Health & Racquet Club. His niece, Ellen (daughter of Manouchehr Manocherian), is married to real estate investor and landlord Kamran Hakim. His son Greg, was an executive producer for the 1989 film That's Adequate; and co-produced and co-wrote the script for the 1997 independent film Hudson River Blues with his mother. His son John was an executive producer for the 2005 film Dave Chappelle's Block Party.
References
External links
20th-century American Jews
Living people
1932 births
American real estate businesspeople
Manocherian family
21st-century American Jews
|
This is a list of roads abbreviated N24.
N24 road (Belgium)
N24 road (France)
N24 road (Ireland)
N24 road (Luxembourg)
N24 road (Switzerland)
Nebraska Highway 24, a state highway in the U.S. state of Nebraska
See also
List of highways numbered 24
|
Erik Ellington (born August 9, 1977) is an American professional skateboarder.
He established Bakerboys Distribution with Andrew Reynolds and Jim Greco in 2007. The company provides distribution for closely related skateboard companies. In 2008, Ellington co-founded Deathwish Skateboards with Greco.
Early life
Ellington was born and raised in Anchorage, Alaska. In his teens, he moved to Tempe, Arizona. On the "Epicly Later'd" episode of Vice Media's Internet channel, he said of his early life,
We moved around a lot. When we lived in Alaska, my stepdad had money. He made a decent living; he had a body shop for cars and stuff. But then you move back and forth. Shit goes wrong up there, you move into a janky apartment, whatever. But we['ve] been up and down. I think it's a good experience, you know? To know both sides of the tracks.
Ellington said about living in Anchorage that "There wasn't a whole lot to do up there in winter. But in the summer you'd get between 16 and 22 hours of daylight. So you kind of got a year's worth of skating in those four months."
Ellington's early skateboard influences were the brands H Street and 101. As a teenager he sent video footage of himself to H Street and was sent a Mike Carroll signature model skateboard deck in response.
Professional skateboarding
Ellington first appeared on video when he played a Zero rider in Thrill of it All. Prior to this, he had appeared in the "Friends" section of the Toy Machine video, Welcome to Hell, but the part was uncredited. Ellington had relocated from San Diego to Tempe around the same time that he was recruited by professional skateboarder Jamie Thomas, the founder and owner of Zero. He explained the initial development of his relationship with Thomas:
Jamie Thomas came out to Arizona. Me and Scott Copalman talked to Jamie quite a bit. We were on Balance at the time, and [Thomas] was starting Zero clothing. So he wanted us to ride for the clothing. Actually, he wanted Scott to ride for the clothing. And then Scott said he wouldn't do it unless I was on too. He just said, "I won't leave Balance unless Erik comes with me." So, by default, I got on Zero.
Following the 1997 release of Thrill of it All, fellow professional skateboarder Adrian Lopez told Ellington that Ellington was on the verge of being dismissed from Zero's roster. Thomas explained the situation in a telephone interview, "We were trying to film for Misled Youth and Scotty and Erik went through a spell of several months without doing absolutely anything."
In 2005, Ellington co-founded the Supra footwear company. The company has released six different Ellington signature skate shoe designs, with the sixth model, "The Ellington", released in late 2012.
He established Bakerboys Distribution with Andrew Reynolds and Jim Greco in 2007. Bakerboys Distribution provides distribution for closely related skateboard companies.
In 2008, Ellington co-founded the skateboard deck brand Deathwish with professional skateboarder Jim Greco and, as of 2013, the two partners continue to co-own the company. The company's initial professional team roster consisted of Ellington, Greco, and Lizard King. Deathwish and Baker released the promotional video Baker Has A Deathwish. As of 2013, Copalman is an employee of Deathwish.
Ellington travelled to the Philippines as part of the "2012 Supra Asian Tour" where he was welcomed by the local media as a "living legend". While in the Philippines, Ellington participated in a street skateboarding demonstration at the Centris Walk in Quezon City and got a tattoo that reads "Thrilla In Manila". The Asian tour also visited Tokyo and Osaka, Japan, and Taipei.
In April 2013, the first full-length Deathwish video was released worldwide and Ellington appeared at premiers to promote the video. Entitled The Deathwish Video, the brand's inaugural production features Ellington, Greco, Jon Dickson, Hansen, Neen Williams, Furby, Moose, and Lizard King. Production of the video was overseen by Ellington with assistance from other professional skateboarders like Dustin Dollin.
Sponsors
Ellington is sponsored by Deathwish, Supra, KR3W, Thunder, Spitfire, Mob Grip, and Shake Junt.
Bakerboys Distribution
In 2007, Ellington and fellow professional skaters Andrew Reynolds and Jim Greco established Bakerboys Distribution as an umbrella company for four skateboard companies—Baker Skateboards, Deathwish, Brigada sunglasses, Heroin, and Shake Junt.
Influence
Skateboard journalist Patrick O'Dell has identified Ellington as one of his favorite skateboarders.
Fellow professional skateboarder Daewon Song, who received a signed copy of a 2014 Deathwish signature skateboard deck, posted on Instagram telling Ellington to "keep inspiring with all your amazing video parts."
Personal life
Ellington resides in Los Angeles with his two children.
In a 2011 interview, Ellington said that in his group of friends he is "probably" best known for "being a bit of a lagger. I'm always late. Nobody can really rely on me, for, uh ... being on time." In his spare time, Ellington enjoys carpentry.
Videography
Zero: Thrill Of It All (1997)
411VM: Issue 20 (1997)
Baker and Bootleg: Baker Bootleg (1998)
Zero: Misled Youth (1999)
Landspeed: CKY (1999)
ON Video: Spring 2001 (2001)
Baker: Summer Tour 2001 (2001)
ON Video: Fall 2002 (2002)
Emerica: This Is Skateboarding (2003)
V7: Teenage Tour (2004)
Emerica: Kids In Emerica (2004)
Baker: Baker 3 (2005)
Thrasher: King Of The Road 2006 (2006)
The Berrics: "Battle Commander" (2007)
Streets: LA (2007)
Baker and Deathwish: Baker Has A Deathwish (2008)
Shake Junt: Chicken Bone Nowison (2009)
Baker and Deathwish: Baker Has A Deathwish Summer Tour (2009)
Supra: European Tour (2011)
Ellington has said that the music record label companies make it difficult to get rights to music for skateboard videos and that he doesn't think that the companies understand that kids end up buying music they hear on video featuring their favorite skateboarders.
References
1977 births
American skateboarders
Living people
Sportspeople from Anchorage, Alaska
|
```yaml
identifier: rddrone_fmuk66
name: NXP RDDRONE-FMUK66
type: mcu
arch: arm
ram: 256
flash: 2048
toolchain:
- zephyr
- gnuarmemb
supported:
- can
- counter
- gpio
- i2c
- nvs
- pwm
- spi
- usb_device
- watchdog
vendor: nxp
```
|
Holmesfield is a village and civil parish in the English county of Derbyshire. The population of the civil parish at the 2011 census was 971. The name "Holmesfield" means "raised pasture-land" and is of Norse and Anglo-Saxon origin. Viking influences are also evident with many road names suffixed by "gate", the old Norse word for "way".
History
Holmesfield is mentioned in the Domesday Book of 1086 as one of the manors belonging to Walter D'Aincourt.
John Frescheville, 1st Baron Frescheville, was in 1645 ordered to pay an annuity to the Vicar of Holmesfield Church, as part his fine, for being on the losing side in the civil war.
St Swithin's parish church can be seen from much of the surrounding area. The main church was built in 1826 but has seen further work in recent years with the vicarage being added in 1999. Still visible in the grounds are the remains of a stone cross from around 641 AD, which would have replaced an original wooden cross erected by monks to mark the place where they would preach. The base of the stone cross now holds a sundial.
Geography
Holmesfield is sited at approximately above sea level on the edge of the Peak District National Park, with extensive views from the village over the surrounding hilly terrain. The parish includes a number of farming hamlets such as Millthorpe situated in the neighbouring Cordwell Valley. The Peak District Boundary Walk runs through Millthorpe.
Notable buildings
Within Holmesfield civil parish are 43 structures that are listed by Historic England for their historic or architectural interest. None is listed as Grade I but there are five structures (Cartledge Hall, Holmesfield Hall, Unthank Hall, farm outbuildings east of Holmesfield Hall, and an outbuilding southwest of Unthank Hall) that are listed as Grade II*. The other structures, including Woodthorpe Hall, Cartledge Grange and the parish church, are listed as Grade II.
Notable residents
Notable people who live or have lived in Holmesfield parish include:
Edward Carpenter (1844–1929), socialist and poet, lived at Millthorpe.
Robert Murray Gilchrist, novelist, lived and died at Cartledge Hall, buried in the parish churchyard.
George Merrill (1867–1928), lived at Millthorpe as Edward Carpenter's partner, and on whom the character Alec Scudder in E. M. Forster's novel Maurice is based.
G.H.B. Ward, activist for ramblers' rights, co-founder of the Clarion Ramblers in Sheffield and Labour Party politician.
Mark Roe, professional golfer.
Amenities
Holmesfield has a village hall, a riding school, and Victorian-built primary school A Thai restaurant closed in 2018. There are three pubs within the village (The Rutland Arms, The George and Dragon, and The Angel Inn) and a further two elsewhere within the parish (The Royal Oak at Millthorpe, and The Peacock and The Moorlands at Owler Bar). The village no longer has a shop or post office.
There is a regular farmers and artisan market held in the village usually on four dates throughout the year. The COVID-19 pandemic meant that no markets were held in 2020, but they recommenced in July 2021. The market is normally situated at the Angel Inn and St. Swithin's Church Hall.
References
External links
Villages in Derbyshire
Towns and villages of the Peak District
Civil parishes in Derbyshire
North East Derbyshire District
|
The descriptive term white-lipped is part of the common name of a number of different animal species:
Brown white-lipped python or Leiopython, a nonvenomous snake species, L. albertisii, found in New Guinea
Feijo white lipped frog (Hydrolaetare dantasi), a species of frog in the family Leptodactylidae
Galam white-lipped frog (Hylarana galamensis), a species of frog in the family Ranidae
Loreto white-lipped frog (Leptodactylus rhodomystax), a species of frog in the family Leptodactylidae
Mexican white-lipped frog (Leptodactylus fragilis), a species of leptodactylid frog in Texas, Mexico, Central America, Colombia and Venezuela
Northern white-lipped pitviper (Trimeresurus albolabris septentrionalis), a venomous snake subspecies found in Nepal and India
Wandolleck's white-lipped tree frog (Litoria albolabris), a species of frog in the family Hylidae
White-lipped bamboo viper (Trimeresurus albolabris), a venomous snake species found in Southeast Asia
White-lipped bandicoot or Clara's echymipera (Echymipera clara), a species of marsupial in the family Peramelidae
White-lipped bright-eyed frog (Boophis albilabris), a species of frog in the family Mantellidae
White-lipped chameleon (Furcifer minor) or Minor's chameleon, a species of lizard in the family Chamaeleonidae
White-lipped deer or Thorold's deer (Cervus albirostris), a threatened species of deer found at high altitudes in the eastern Tibetan Plateau
White lipped frog (Chalcorana labialis), a species of "true frog", family Ranidae
White-lipped island pitviper (Trimeresurus albolabris insularis), a venomous snake subspecies found in Indonesia
White-lipped keelback (Amphiesma leucomystax), a nonvenomous snake native to Vietnam
White-lipped mud turtle (Kinosternon leucostomum), a species of mud turtle in the family Kinosternidae
White-lipped peccary (Tayassu pecari), a peccary species found in Central and South America in rainforest, dry forest and chaco scrub
White-lipped python, several species of snake
White-lipped snail (Cepaea hortensis), a medium-sized species of air-breathing land snail, a terrestrial pulmonate gastropod mollusc
White-lipped Snake (Drysdalia coronoides), a small species of elapid snake that is restricted to south-eastern mainland Australia and Tasmania
White-lipped tamarin (Saguinus labiatus), the red-bellied tamarin, a tamarin which lives in the Amazon area of Brazil and Bolivia
White-lipped tree frog (Litoria infrafrenata), the giant tree frog, the world's largest tree frog
See also
White-lipped
|
```go
// Unless explicitly stated otherwise all files in this repository are licensed
// This product includes software developed at Datadog (path_to_url
package marshal
import (
"bytes"
"io"
model "github.com/DataDog/agent-payload/v5/process"
"github.com/DataDog/datadog-agent/pkg/network"
"github.com/DataDog/datadog-agent/pkg/network/protocols/redis"
"github.com/DataDog/datadog-agent/pkg/network/types"
)
type redisEncoder struct {
redisAggregationsBuilder *model.DatabaseAggregationsBuilder
byConnection *USMConnectionIndex[redis.Key, *redis.RequestStat]
}
func newRedisEncoder(redisPayloads map[redis.Key]*redis.RequestStat) *redisEncoder {
if len(redisPayloads) == 0 {
return nil
}
return &redisEncoder{
redisAggregationsBuilder: model.NewDatabaseAggregationsBuilder(nil),
byConnection: GroupByConnection("redis", redisPayloads, func(key redis.Key) types.ConnectionKey {
return key.ConnectionKey
}),
}
}
func (e *redisEncoder) WriteRedisAggregations(c network.ConnectionStats, builder *model.ConnectionBuilder) uint64 {
if e == nil {
return 0
}
connectionData := e.byConnection.Find(c)
if connectionData == nil || len(connectionData.Data) == 0 || connectionData.IsPIDCollision(c) {
return 0
}
staticTags := uint64(0)
builder.SetDatabaseAggregations(func(b *bytes.Buffer) {
staticTags |= e.encodeData(connectionData, b)
})
return staticTags
}
func (e *redisEncoder) encodeData(connectionData *USMConnectionData[redis.Key, *redis.RequestStat], w io.Writer) uint64 {
var staticTags uint64
e.redisAggregationsBuilder.Reset(w)
for range connectionData.Data {
e.redisAggregationsBuilder.AddAggregations(func(builder *model.DatabaseStatsBuilder) {
builder.SetRedis(func(*model.RedisStatsBuilder) {})
})
}
return staticTags
}
func (e *redisEncoder) Close() {
if e == nil {
return
}
e.byConnection.Close()
}
```
|
```go
/*
path_to_url
Unless required by applicable law or agreed to in writing, software
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
package agent
import (
"encoding/json"
"fmt"
"github.com/openark/golib/log"
"github.com/openark/orchestrator/go/inst"
)
func SyncReplicaRelayLogs(instance, otherInstance *inst.Instance) (*inst.Instance, error) {
var err error
var found bool
var nextCoordinates *inst.BinlogCoordinates
var content string
onResponse := func(contentBytes []byte) {
json.Unmarshal(contentBytes, &content)
}
log.Debugf("SyncReplicaRelayLogs: stopping replication")
if !instance.ReplicationThreadsStopped() {
return instance, log.Errorf("SyncReplicaRelayLogs: replication on %+v must not run", instance.Key)
}
if !otherInstance.ReplicationThreadsStopped() {
return instance, log.Errorf("SyncReplicaRelayLogs: replication on %+v must not run", otherInstance.Key)
}
log.Debugf("SyncReplicaRelayLogs: correlating coordinates of %+v on %+v", instance.Key, otherInstance.Key)
_, _, nextCoordinates, found, err = inst.CorrelateRelaylogCoordinates(instance, nil, otherInstance)
if err != nil {
goto Cleanup
}
if !found {
goto Cleanup
}
log.Debugf("SyncReplicaRelayLogs: correlated next-coordinates are %+v", *nextCoordinates)
InitHttpClient()
if _, err := RelaylogContentsTail(otherInstance.Key.Hostname, nextCoordinates, &onResponse); err != nil {
goto Cleanup
}
log.Debugf("SyncReplicaRelayLogs: got content (%d bytes)", len(content))
if _, err := ApplyRelaylogContents(instance.Key.Hostname, content); err != nil {
goto Cleanup
}
log.Debugf("SyncReplicaRelayLogs: applied content (%d bytes)", len(content))
instance, err = inst.ChangeMasterTo(&instance.Key, &otherInstance.MasterKey, &otherInstance.ExecBinlogCoordinates, false, inst.GTIDHintNeutral)
if err != nil {
goto Cleanup
}
Cleanup:
if err != nil {
return instance, log.Errore(err)
}
// and we're done (pending deferred functions)
inst.AuditOperation("align-via-relaylogs", &instance.Key, fmt.Sprintf("aligned %+v by relaylogs from %+v", instance.Key, otherInstance.Key))
return instance, err
}
```
|
```java
/*
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
package org.apache.beam.runners.jet;
import org.apache.beam.runners.core.construction.SerializablePipelineOptions;
import org.apache.beam.sdk.coders.Coder;
import org.apache.beam.sdk.util.WindowedValue;
import org.apache.beam.sdk.values.PCollection;
import org.apache.beam.sdk.values.WindowingStrategy;
class JetTranslationContext {
private final SerializablePipelineOptions options;
private final DAGBuilder dagBuilder;
JetTranslationContext(JetPipelineOptions options) {
this.options = new SerializablePipelineOptions(options);
this.dagBuilder = new DAGBuilder(options);
}
SerializablePipelineOptions getOptions() {
return options;
}
DAGBuilder getDagBuilder() {
return dagBuilder;
}
<T> WindowedValue.FullWindowedValueCoder<T> getTypeInfo(PCollection<T> collection) {
return getTypeInfo(collection.getCoder(), collection.getWindowingStrategy());
}
<T> WindowedValue.FullWindowedValueCoder<T> getTypeInfo(
Coder<T> coder, WindowingStrategy<?, ?> windowingStrategy) {
return WindowedValue.getFullCoder(coder, windowingStrategy.getWindowFn().windowCoder());
}
}
```
|
```turing
BEGIN {
use File::Spec::Functions ':ALL';
@INC = map { rel2abs($_) }
(qw| ./lib ./t/lib ../../lib |);
}
use strict;
use warnings;
use Test::More;
use Testing qw( setup_testing_dir xconvert );
use Cwd;
use Pod::Html::Util qw(
unixify
);
my $debug = 0;
my $startdir = cwd();
END { chdir($startdir) or die("Cannot change back to $startdir: $!"); }
my $args;
my $tdir = setup_testing_dir( {
debug => $debug,
} );
my $cwd = unixify(Cwd::cwd());
my $infile = catfile('t', 'cache.pod');
my $outfile = "cacheout.html";
my $cachefile = "pod2htmd.tmp";
my $tcachefile = catfile('t', 'pod2htmd.tmp');
unlink $cachefile, $tcachefile;
is(-f $cachefile, undef, "No cache file to start");
is(-f $tcachefile, undef, "No cache file to start");
# test podpath and podroot
Pod::Html::pod2html(
"--infile=$infile",
"--outfile=$outfile",
"--podpath=scooby:shaggy:fred:velma:daphne",
"--podroot=$cwd",
);
is(-f $cachefile, 1, "Cache created");
open(my $cache, '<', $cachefile) or die "Cannot open cache file: $!";
chomp(my $podpath = <$cache>);
chomp(my $podroot = <$cache>);
close $cache;
is($podpath, "scooby:shaggy:fred:velma:daphne", "podpath");
is($podroot, "$cwd", "podroot");
# test cache contents
Pod::Html::pod2html(
"--infile=$infile",
"--outfile=$outfile",
"--cachedir=t",
"--podpath=t",
"--htmldir=$cwd",
);
is(-f $tcachefile, 1, "Cache created");
open($cache, '<', $tcachefile) or die "Cannot open cache file: $!";
chomp($podpath = <$cache>);
chomp($podroot = <$cache>);
is($podpath, "t", "podpath");
my %pages;
while (<$cache>) {
/(.*?) (.*)$/;
$pages{$1} = $2;
}
chdir("t");
my %expected_pages =
# chop off the .pod and set the path
map { my $f = substr($_, 0, -4); $f => "t/$f" }
<*.pod>;
chdir($cwd);
is_deeply(\%pages, \%expected_pages, "cache contents");
close $cache;
1 while unlink $outfile;
1 while unlink $cachefile;
1 while unlink $tcachefile;
is(-f $cachefile, undef, "No cache file to end");
is(-f $tcachefile, undef, "No cache file to end");
done_testing;
```
|
Events from the year 1661 in Ireland.
Incumbent
Monarch: Charles II
Events
April 23 – Charles II of England, Ireland and Scotland receives his second crowning, in Westminster Abbey.
The Earldom of Drogheda is created in the Peerage of Ireland.
The Bishopric of Limerick in the Church of Ireland is combined with Ardfert and Aghadoe to form the united bishopric of Limerick, Ardfert and Aghadoe, Edward Synge being the first bishop.
The Book of Kells is presented to Trinity College Dublin.
Dromore Cathedral is rebuilt.
The witch trial against Florence Newton.
Births
Deaths
References
1660s in Ireland
Ireland
Years of the 17th century in Ireland
|
The 2010–11 Belgian Elite League pitted eight Belgian rugby teams. It starts on 12 September 2010 and ending with a final game on 7 May 2011 in the King Baudouin Stadium. The Royal Kituro Rugby Club won the competition by defeating the defending champion, Boitsfort Rugby Club, with a score of 13-8.
Season table
{| class="wikitable" width="450px" style="float:left; font-size:95%; margin-left:15px;"
| colspan="2" style="text-align:center; background:#fff;" cellpadding="0" cellspacing="0"|Key to colours
|-
| style="background: #3fff00;" |
| Champions
|-
| style="background:#ccf;"|
|Participants in Championship Playoffs
|-
| style="background: #ff79B4;" |
|Bottom team is relegated to Division 2.
|}
Championship playoffs
External links
2010–11
2010–11 in European rugby union leagues
|
Cathrine Instebø (born 28 November 1973) is a Norwegian former professional tennis player.
Instebø, the first professional tennis player to come from Bergen, reached career best world rankings of 632 in singles and 579 in doubles. A five-time national singles champion, she competed for the Norway Federation Cup team from 1990 to 1993. She later played collegiate tennis for the University of Florida.
References
External links
1973 births
Living people
Norwegian female tennis players
Florida Gators women's tennis players
|
```makefile
libavutil/base64.o: libavutil/base64.c libavutil/common.h \
libavutil/attributes.h libavutil/macros.h libavutil/version.h \
libavutil/avconfig.h config.h libavutil/intmath.h libavutil/mem.h \
libavutil/error.h libavutil/avutil.h libavutil/rational.h \
libavutil/mathematics.h libavutil/intfloat.h libavutil/log.h \
libavutil/pixfmt.h libavutil/internal.h libavutil/timer.h \
libavutil/cpu.h libavutil/dict.h libavutil/libm.h libavutil/base64.h \
libavutil/intreadwrite.h libavutil/bswap.h
```
|
```glsl
#version 310 es
// comments note the 16b alignment boundaries (see GL spec 7.6.2.2 Standard Uniform Block Layout)
layout(std140, binding = 0) uniform UBO
{
// 16b boundary
vec4 A;
// 16b boundary
vec2 B0;
vec2 B1;
// 16b boundary
float C0;
// 16b boundary (vec3 is aligned to 16b)
vec3 C1;
// 16b boundary
vec3 D0;
float D1;
// 16b boundary
float E0;
float E1;
float E2;
float E3;
// 16b boundary
float F0;
vec2 F1;
// 16b boundary (vec2 before us is aligned to 8b)
float F2;
};
layout(location = 0) out vec4 oA;
layout(location = 1) out vec4 oB;
layout(location = 2) out vec4 oC;
layout(location = 3) out vec4 oD;
layout(location = 4) out vec4 oE;
layout(location = 5) out vec4 oF;
void main()
{
gl_Position = vec4(0.0);
oA = A;
oB = vec4(B0, B1);
oC = vec4(C0, C1);
oD = vec4(D0, D1);
oE = vec4(E0, E1, E2, E3);
oF = vec4(F0, F1, F2);
}
```
|
```ruby
class Ydiff < Formula
include Language::Python::Virtualenv
desc "View colored diff with side by side and auto pager support"
homepage "path_to_url"
url "path_to_url"
sha256 your_sha256_hash
license "BSD-3-Clause"
bottle do
sha256 cellar: :any_skip_relocation, arm64_sonoma: your_sha256_hash
sha256 cellar: :any_skip_relocation, arm64_ventura: your_sha256_hash
sha256 cellar: :any_skip_relocation, arm64_monterey: your_sha256_hash
sha256 cellar: :any_skip_relocation, sonoma: your_sha256_hash
sha256 cellar: :any_skip_relocation, ventura: your_sha256_hash
sha256 cellar: :any_skip_relocation, monterey: your_sha256_hash
sha256 cellar: :any_skip_relocation, x86_64_linux: your_sha256_hash
end
depends_on "python@3.12"
def install
virtualenv_install_with_resources
end
test do
diff_fixture = test_fixtures("test.diff").read
assert_equal diff_fixture,
pipe_output("#{bin}/ydiff -cnever", diff_fixture)
end
end
```
|
Chrysosporide is a cyclic pentapeptide. It is isolated from the mycoparasitic fungus Sepedonium chrysospermum, found in New Zealand.
References
Cyclic peptides
Pentapeptides
|
Barns on the Palouse are popular with photographers and artists. Many of the barns on the Palouse are considered heritage barns. These barns are typically over 50 years old and have some historic qualities as determined by the Washington State Department of Archaeology and Historic Preservation.
Barns
Washington barns
The Heritage Barn Advisory Committee report includes the Northwest and Southwest counties of Washington, and the Palouse area, which covers the easternmost portion of the Northeast and Southwest counties of Washington. In its 2010 report, the Heritage Barn Advisory Committee registered over 400 barns from across the state. The Washington state government established a funding program that provided grants to Heritage Barn owners to meet emergency needs for stabilizing and rehabilitating their barn structures. The funding prioritized agricultural use, and the criteria for funding included urgency of repairs, public visibility, and longterm upkeep. These grant funds were designed to keep these barns functional and in good working condition. Each recipient of a registered heritage barn receives a sign that displays the Heritage Barn logo as well as their barn's construction date. These metal placards are created by prisoners in the Washington State Penitentiary in Walla Walla.
Historic structures
One Palouse barn, the Bradley Barn near Spokane, Washington, was built to house 40 milk cows in 1904. The vertical support posts of this barn feature the names of 40 women in the community at that time. A Colville, Washington, barn, the Han Shan Barn, is a log barn. One of the oldest barns in Washington is the Dooley Barn in Walla Walla. The U.S. Government built this barn in the 1860s to shelter cavalry horses and mules that transported goods to various forts across the Washington Territory. The T.A. Leonard Barn is one of 20 round barns built between 1890 and 1920 and one of the 14 round barns still standing in Washington. The roof of this dairy barn is three times larger than its foundation.
Idaho barns
In the 1860s to 1870s, the area around Latah County shifted from a ranching economy to farming one. The Homestead Act of 1862 allowed settlers to claim 160 acres of public land, and the Timber Culture Act of 1873 granted land to settlers who cultivated and took care of trees on part of their acreage. Barns built prior to 1955 serve as the single most omnipresent agricultural structure in Latah County with many people investing money in rehabbing these vestiges of their families' farming history. Existing barns and other outbuildings on these pioneer subsistence farmsteads are eligible for registry on the National Register of Historic Places as long as they retain most of their original features, roof and siding notwithstanding. Most barns in Latah County have a rectangular design and were built to store hay or house dairy cows with some offering dual purposes. Some barns sheltered draft horses that helped plow fields. Palouse barns are 20-feet wider and longer than typical American barns to accommodate the high number of horses required for this agricultural work.
Adaptive reuse
Some barns on the Palouse have experienced a second, contemporary use. Red Barn Farms in Colton, Washington, was built by the Meyer family in 1903. Four generations later, the barn and grounds are still in use but now as a wedding venue. The Dahmen Barn in Uniontown, Washington, was built in 1935 by Frank Wolf. Wolf built the barn for Jack Dahmen and his family for their commercial dairy farm. In 1953, it was purchased by Dahmen's nephew Steve and his wife Junette who had an appreciation for the arts. The art around the barn began with the construction of a wagon wheel fence and various metal sculptures. Volunteers with the Uniontown Community Development Association turned the barn into a multi-use space for artisans at work, a retail store, educational center, and performance venue.
References
Barns in Idaho
Barns in Washington (state)
|
Phthalane is a bicyclic aromatic organic compound. It is also known as isocoumaran, or 1,3-dihydro-2-benzofuran. One of derivatives of it is citalopram. It can be oxidised to phthalic acid.
Isobenzofurans
|
```python
import sys
# to work well inside config module or outsize config module
sys.path.append('..')
sys.path.append('.')
from db.tables import *
from db.basic import metadata
def create_all_table():
metadata.create_all()
if __name__ == "__main__":
create_all_table()
```
|
Comanche: Maximum Overkill is a video game developed and published by NovaLogic for DOS in 1992. Two expansion packs were released: Mission Disk 1 and Over the Edge. A compilation titled Comanche CD was released in 1994. It included the main game and the two expansions. A Mac OS port of the compilation was released in 1995 as Comanche Mac.
A port of the game was in development for the Super NES using the Super FX powered GSU-2, and was exhibited at E3 1995, but was eventually cancelled. A Nintendo spokesperson said that the project was aborted because of unresolvable difficulties with the game's graphics and speed.
Gameplay
Comanche: Maximum Overkill is a game in which the player can pilot the Comanche RAH-66.
Reception
Computer Gaming Worlds Bryan Walker said: "Some flight-sim veterans might sneer at CMO’s limited scope and casual approach to technical detail. These same gamers may also be the ones most impressed with the new technology CMO delivers. While the sedate flight characteristics and simple controls are more suited to beginning players, nearly everyone will find something in CMO to enjoy. Hopefully, NovaLogic will work to fix the flaws and fulfill the awesome potential of this game. Even as it stands, cutting-edge graphics firepower gives Comanche Maximum Overkill the edge it needs to sweep more than a couple of competitors off the battlefield."
References
External links
1992 video games
Cancelled Super Nintendo Entertainment System games
Combat flight simulators
DOS games
Helicopter video games
MacOS games
NovaLogic games
Single-player video games
Video games developed in the United States
Video games with expansion packs
Video games with voxel graphics
|
Alistair Richard Hinton (born 6 October 1950) is a Scottish composer and musicologist with a focus on the works of his friend Kaikhosru Shapurji Sorabji. He is the curator of the Sorabji Archive.
Career and works
Hinton, a native of Dunfermline, Fife, began studying music at the age of eleven; and following the advice of Benjamin Britten, he studied at the Royal College of Music, where Humphrey Searle and Stephen Savage were among his teachers. Although he began composing at an early age, he later destroyed most of his pre-1985 output.
His Op. 1 was a piano sonata (1962); although part of it was lost soon after it was written, the composer responded to a private request in 2020 to reconstruct it. His other compositions include sonatas, variations and other works for piano, a violin concerto (dedicated to Jane Manning), songs (amongst them settings of Rabindranath Tagore, Hinton's Opp. 7 and 9), works for the organ, a string quintet (for two violins, viola, cello, double-bass and soprano, and lasting for 2 hours and 45 minutes in performance), and a Sinfonietta. They include homages to Karol Szymanowski (Szymanowski-Etiud, Op. 32, for 18 wind instruments), Richard Strauss (Passeggiata Straussiana, for euphonium and piano, Op. 39), and Charles-Valentin Alkan in the Piano Sonata no. 5, which has a substantial passage marked "Alkanique". The latter influenced Marc-André Hamelin in composing his own Étude no. 4.
Among those who have performed and recorded Hinton's works are Donna Amato, Jonathan Powell, Yonty Solomon and Kevin Bowyer.
Personal life
In 2014, Hinton and his wife Terry were responsible for a petition to the British government to remove the statutory immunity it gives to the Financial Conduct Authority (FCA) so it is not liable for damages.
He currently lives with his wife in Hereford.
Sorabji
In 1969, Hinton came across a copy of the four-hour Opus clavicembalisticum of the reclusive composer Kaikhosru Shapurji Sorabji (1892–1988), which greatly impressed him. In 1976, he persuaded the composer to relax the ban he had placed on unauthorised performance of his music in the 1930s. Hinton subsequently founded the Sorabji Archive, which publishes Sorabji's writings and compositions and maintains a collection of his manuscripts and archival materials; he remains its curator. Hinton contributed two chapters to the 1992 book, Sorabji: A Critical Celebration. He was the dedicatee of eight works by Sorabji, and was the sole heir of his oeuvre.
References
Sources
Hamelin, Marc-André (2005). Étude No. IV: Étude à mouvement perpétuellement semblable (d'après Alkan). Portland, Oregon: Pelisorius Editions.
Rapoport, Paul (ed.) (1992). Sorabji: A Critical Celebration, Farnham: Ashgate. .
External links
Official biography
List of works by Alistair Hinton
1950 births
20th-century classical composers
21st-century classical composers
Living people
Scottish classical composers
British male classical composers
20th-century Scottish musicians
20th-century British composers
20th-century British male musicians
21st-century British male musicians
|
```sqlpl
DROP TABLE IF EXISTS ipv4_test;
-- Only valid values for IPv4
CREATE TABLE ipv4_test (ipv4_ IPv4) ENGINE = Memory;
-- ipv4_ column shoud have type 'IPv4'
SHOW CREATE TABLE ipv4_test;
INSERT INTO ipv4_test (ipv4_) VALUES ('0.0.0.0'), ('255.255.255.255'), ('192.168.0.91'), ('127.0.0.1'), ('8.8.8.8');
SELECT ipv4_, hex(ipv4_) FROM ipv4_test ORDER BY ipv4_;
SELECT '< 127.0.0.1', ipv4_ FROM ipv4_test
WHERE ipv4_ < toIPv4('127.0.0.1')
ORDER BY ipv4_;
SELECT '> 127.0.0.1', ipv4_ FROM ipv4_test
WHERE ipv4_ > toIPv4('127.0.0.1')
ORDER BY ipv4_;
SELECT '= 127.0.0.1', ipv4_ FROM ipv4_test
WHERE ipv4_ = toIPv4('127.0.0.1')
ORDER BY ipv4_;
-- TODO: Assert that invalid values can't be inserted into IPv4 column.
DROP TABLE IF EXISTS ipv4_test;
select 'euqality of IPv4-mapped IPv6 value and IPv4 promoted to IPv6 with function:', toIPv6('::ffff:127.0.0.1') = IPv4ToIPv6(toIPv4('127.0.0.1'));
DROP TABLE IF EXISTS ipv6_test;
-- Only valid values for IPv6
CREATE TABLE ipv6_test (ipv6_ IPv6) ENGINE = Memory;
-- ipv6_ column shoud have type 'IPv6'
SHOW CREATE TABLE ipv6_test;
INSERT INTO ipv6_test VALUES ('::'), ('0:0:0:0:0:0:0:0'), ('FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF'), ('2001:0DB8:AC10:FE01:FEED:BABE:CAFE:F00D'), ('0000:0000:0000:0000:0000:FFFF:C1FC:110A'), ('::ffff:127.0.0.1'), ('::ffff:8.8.8.8');
SELECT ipv6_, hex(ipv6_) FROM ipv6_test ORDER BY ipv6_;
SELECT '< 127.0.0.1', ipv6_ FROM ipv6_test
WHERE ipv6_ < IPv4ToIPv6(toIPv4('127.0.0.1'))
ORDER BY ipv6_;
SELECT '> 127.0.0.1', ipv6_ FROM ipv6_test
WHERE ipv6_ > IPv4ToIPv6(toIPv4('127.0.0.1'))
ORDER BY ipv6_;
SELECT '= 127.0.0.1', ipv6_ FROM ipv6_test
WHERE ipv6_ = IPv4ToIPv6(toIPv4('127.0.0.1'))
ORDER BY ipv6_;
-- TODO: Assert that invalid values can't be inserted into IPv6 column.
DROP TABLE IF EXISTS ipv6_test;
SELECT '0.0.0.0 is ipv4 string: ', isIPv4String('0.0.0.0');
SELECT '255.255.255.255 is ipv4 string: ', isIPv4String('255.255.255.255');
SELECT '192.168.0.91 is ipv4 string: ', isIPv4String('192.168.0.91');
SELECT '127.0.0.1 is ipv4 string: ', isIPv4String('127.0.0.1');
SELECT '8.8.8.8 is ipv4 string: ', isIPv4String('8.8.8.8');
SELECT 'hello is ipv4 string: ', isIPv4String('hello');
SELECT '0:0:0:0:0:0:0:0 is ipv4 string: ', isIPv4String('0:0:0:0:0:0:0:0');
SELECT '0000:0000:0000:0000:0000:FFFF:C1FC:110A is ipv4 string: ', isIPv4String('0000:0000:0000:0000:0000:FFFF:C1FC:110A');
SELECT 'FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF is ipv4 string: ', isIPv4String('FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF');
SELECT '::ffff:127.0.0.1 is ipv4 string: ', isIPv4String('::ffff:127.0.0.1');
SELECT '::ffff:8.8.8.8 is ipv4 string: ', isIPv4String('::ffff:8.8.8.8');
SELECT '2001:0DB8:AC10:FE01:FEED:BABE:CAFE:F00D is ipv4 string: ', isIPv4String('2001:0DB8:AC10:FE01:FEED:BABE:CAFE:F00D');
SELECT '0.0.0.0 is ipv6 string: ', isIPv6String('0.0.0.0');
SELECT '255.255.255.255 is ipv6 string: ', isIPv6String('255.255.255.255');
SELECT '192.168.0.91 is ipv6 string: ', isIPv6String('192.168.0.91');
SELECT '127.0.0.1 is ipv6 string: ', isIPv6String('127.0.0.1');
SELECT '8.8.8.8 is ipv6 string: ', isIPv6String('8.8.8.8');
SELECT 'hello is ipv6 string: ', isIPv6String('hello');
SELECT '0:0:0:0:0:0:0:0 is ipv6 string: ', isIPv6String('0:0:0:0:0:0:0:0');
SELECT '0000:0000:0000:0000:0000:FFFF:C1FC:110A is ipv6 string: ', isIPv6String('0000:0000:0000:0000:0000:FFFF:C1FC:110A');
SELECT 'FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF is ipv6 string: ', isIPv6String('FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF');
SELECT '::ffff:127.0.0.1 is ipv6 string: ', isIPv6String('::ffff:127.0.0.1');
SELECT '::ffff:8.8.8.8 is ipv6 string: ', isIPv6String('::ffff:8.8.8.8');
SELECT '2001:0DB8:AC10:FE01:FEED:BABE:CAFE:F00D is ipv6 string: ', isIPv6String('2001:0DB8:AC10:FE01:FEED:BABE:CAFE:F00D');
-- IPV6 functions parse IPv4 addresses.
SELECT toIPv6('0.0.0.0');
SELECT toIPv6('127.0.0.1');
SELECT cutIPv6(IPv6StringToNum('127.0.0.1'), 0, 0);
SELECT toIPv6('127.0.0.' || toString(number)) FROM numbers(13);
```
|
```asciidoc
[[events]]
= EVENT Basics - Event Types
Zalandos architecture centers around decoupled microservices and in
that context we favour asynchronous event driven approaches. The
guidelines focus on how to design and publish events
intended to be shared for others to consume.
Events are defined using an item called an _Event Type_. The Event Type
allows events to have their structure declared with a schema by
producers and understood by consumers. An Event Type declares standard
information, such as a name, an owning application (and by implication,
an owning team), a schema defining the event's custom data, and a
compatibility mode declaring how the schema will be evolved. Event Types
also allow the declaration of validation and enrichment strategies for
events, along with supplemental information such as how events can be
partitioned in an event stream.
Event Types belong to a well known _Event Category_ (such as a data
change category), which provides extra information that is common to
that kind of event.
Event Types can be published and made available as API resources for
teams to use, typically in an _Event Type Registry_. Each event
published can then be validated against the overall structure of its
event type and the schema for its custom data.
The basic model described above was originally developed in the
path_to_url project], which acts as a
reference implementation (see also {nakadi-api}[Nakadi API (internal_link)])
of the event type registry, and as a validating
publish/subscribe broker for event producers and consumers.
[#208]
== {MUST} define events compliant with overall API guidelines
Events must be consistent with other API data and the API Guidelines in
general (as far as applicable).
Everything expressed in the <<introduction>> to
these Guidelines is applicable to event data interchange between
services. This is because our events, just like our APIs, represent a
commitment to express what our systems do and designing high-quality,
useful events allows us to develop new and interesting products and
services.
What distinguishes events from other kinds of data is the delivery style
used, asynchronous publish-subscribe messaging. But there is no reason
why they could not be made available using a REST API, for example via a
search request or as a paginated feed, and it will be common to base
events on the models created for the services REST API.
The following existing guideline sections are applicable to events:
* <<general-guidelines>>
* <<data-formats>>
* <<json-guidelines>>
* <<hypermedia>>
[#194]
== {MUST} treat events as part of the service interface
Events are part of a services interface to the outside world equivalent
in standing to a services REST API. Services publishing data for
integration must treat their events as a first class design concern,
just as they would an API. For example this means approaching events
with the "API first" principle in mind as described in the <<introduction>>.
[#195]
== {MUST} make event schema available for review
Services publishing event data for use by others must make the event
schema as well as the event type definition available for review.
[#197]
== {MUST} specify and register events as event types
In Zalando's architecture, events are registered using a structure
called an _Event Type_. The Event Type declares standard information as
follows:
* A well known event category, such as a general or data change
category.
* The name of the event type.
* The definition of the <<219,event target audience>>.
* An owning application, and by implication, an owning team.
* A schema defining the event payload.
* The compatibility mode for the type.
Event Types allow easier discovery of event information and ensure that
information is well-structured, consistent, and can be validated.
The core Event Type structure is shown below as an OpenAPI object
definition:
[source,yaml]
----
EventType:
description: |
An event type defines the schema and its runtime properties. The required
fields are the minimum set the creator of an event type is expected to
supply.
required:
- name
- category
- owning_application
- schema
properties:
name:
description: |
Name of this EventType. The name must follow the functional naming
pattern `<functional-name>.<event-name>` to preserve global
uniqueness and readability.
type: string
pattern: '[a-z][a-z0-9-]*\.[a-z][a-z0-9-]*(\.[Vv][0-9.]+)?'
example: |
transactions-order.order-cancelled
customer-personal-data.email-changed.v2
audience:
type: string
x-extensible-enum:
- component-internal
- business-unit-internal
- company-internal
- external-partner
- external-public
description: |
Intended target audience of the event type, analogue to audience definition for REST APIs
in rule #219 -- see path_to_url#219
owning_application:
description: |
Name of the application (eg, as would be used in infrastructure
application or service registry) owning this `EventType`.
type: string
example: price-service
category:
description: Defines the category of this EventType.
type: string
x-extensible-enum:
- data
- general
compatibility_mode:
description: |
The compatibility mode to evolve the schema.
type: string
x-extensible-enum:
- compatible
- forward
- none
default: forward
schema:
description: The most recent payload schema for this EventType.
type: object
properties:
version:
description: Values are based on semantic versioning (eg "1.2.1").
type: string
default: '1.0.0'
created_at:
description: Creation timestamp of the schema.
type: string
readOnly: true
format: date-time
example: '1996-12-19T16:39:57-08:00'
type:
description: |
The schema language of schema definition. Currently only
json_schema (JSON Schema v04) syntax is defined, but in the
future there could be others.
type: string
x-extensible-enum:
- json_schema
schema:
description: |
The schema as string in the syntax defined in the field type.
type: string
required:
- type
- schema
ordering_key_fields:
type: array
description: |
Indicates which field is used for application level ordering of events.
It is typically a single field, but also multiple fields for compound
ordering key are supported (first item is most significant).
This is an informational only event type attribute for specification of
application level ordering. Nakadi transportation layer is not affected,
where events are delivered to consumers in the order they were published.
Scope of the ordering is all events (of all partitions), unless it is
restricted to data instance scope in combination with
`ordering_instance_ids` attribute below.
This field can be modified at any moment, but event type owners are
expected to notify consumer in advance about the change.
*Background:* Event ordering is often created on application level using
ascending counters, and data providers/consumers do not need to rely on the
event publication order. A typical example are data instance change events
used to keep a data store replica in sync. Here you have an order
defined per instance using data object change counters (aka row update
version) and the order of event publication is not relevant, because
consumers for data synchronization skip older instance versions when they
reconstruct the data object replica state.
items:
type: string
description: |
Indicates a single ordering field. This is a JsonPointer, which is applied
onto the whole event object, including the contained metadata and data (in
case of a data change event) objects. It must point to a field of type
string or number/integer (as for those the ordering is obvious).
Indicates a single ordering field. It is a simple path (dot separated) to
the JSON leaf element of the whole event object, including the contained metadata and data (in
case of a data change event) objects. It must point to a field of type
string or number/integer (as for those the ordering is obvious), and must be
present in the schema.
example: "data.order_change_counter"
ordering_instance_ids:
type: array
description: |
Indicates which field represents the data instance identifier and scope in
which ordering_key_fields provides a strict order. It is typically a single
field, but multiple fields for compound identifier keys are also supported.
This is an informational only event type attribute without specific Nakadi
semantics for specification of application level ordering. It only can be
used in combination with `ordering_key_fields`.
This field can be modified at any moment, but event type owners are expected
to notify consumer in advance about the change.
items:
type: string
description: |
Indicates a single key field. It is a simple path (dot separated) to the JSON
leaf element of the whole event object, including the contained metadata and
data (in case of a data change event) objects, and it must be present in the
schema.
example: "data.order_number"
created_at:
description: When this event type was created.
type: string
pattern: date-time
updated_at:
description: When this event type was last updated.
type: string
pattern: date-time
----
APIs such as registries supporting event types, may extend the model,
including the set of supported categories and schema formats. For
example the Nakadi API's event category registration also allows the
declaration of validation and enrichment strategies for events, along
with supplemental information, such as how events are partitioned in the
stream (see <<204>>).
[#213]
== {MUST} follow naming convention for event type names
Event type names must (or should, see <<223>> for details and definition)
conform to the functional naming depending on the <<219, audience>> as follows:
[source,bnf]
----
<event-type-name> ::= <functional-event-name> | <application-event-name>
<functional-event-name> ::= <functional-name>.<event-name>[.<version>]
<event-name> ::= [a-z][a-z0-9-]* -- free event name (functional name)
<version> ::= [Vv][0-9.]* -- major version of non compatible schemas
----
*Hint:* The following convention (e.g. used by legacy STUPS infrastructure) is deprecated
and *only* allowed for <<223, internal>> event type names:
[source,bnf]
----
<application-event-name> ::= [<organization-id>.]<application-id>.<event-name>
<organization-id> ::= [a-z][a-z0-9-]* -- organization identifier, e.g. team identifier
<application-id> ::= [a-z][a-z0-9-]* -- application identifier
----
**Note:** consistent naming should be used whenever the same entity is exposed
by a data change event and a RESTful API.
[#207]
== {MUST} indicate ownership of event types
Event definitions must have clear ownership - this can be indicated via
the `owning_application` field of the EventType.
Typically there is one producer application, which owns the EventType
and is responsible for its definition, akin to how RESTful API
definitions are managed. However, the owner may also be a particular
service from a set of multiple services that are producing the same kind
of event.
[#245]
== {MUST} carefully define the compatibility mode
Event type owners must pay attention to the choice of compatibility
mode. The mode provides a means to evolve the schema. The range of
modes are designed to be flexible enough so that producers can evolve
schemas while not inadvertently breaking existing consumers:
* `none`: Any schema modification is accepted, even if it might break
existing producers or consumers. When validating events, undefined
properties are accepted unless declared in the schema.
* `forward`: A schema `S1` is forward compatible if the previously
registered schema, `S0` can read events defined by `S1` - that is,
consumers can read events tagged with the latest schema version using
the previous version as long as consumers follow the robustness
principle described in the guideline's <<api-design-principles>>.
* `compatible`: This means changes are fully compatible. A new schema,
`S1`, is fully compatible when every event published since the first
schema version will validate against the latest schema. In compatible
mode, only the addition of new optional properties and definitions to an
existing schema is allowed. Other changes are forbidden.
[#196]
== {MUST} ensure event schema conforms to OpenAPI schema object
To align the event schema specifications to API specifications, we use
the Schema Object as defined by the OpenAPI Specifications to define event
schemas. This is particularly useful for events that represent data changes
about resources also used in other APIs.
The path_to_url#schemaObject[OpenAPI Schema Object]
is an **extended subset** of
path_to_url Schema Draft 4]. For convenience,
we highlight some important differences below. Please refer to the
path_to_url#schemaObject[OpenAPI Schema Object specification]
for details.
As the OpenAPI Schema Object specification _removes_ some JSON Schema
keywords, the following properties *must not* be used in event schemas:
* `additionalItems`
* `contains`
* `patternProperties`
* `dependencies`
* `propertyNames`
* `const`
* `not`
* `oneOf`
On the other side Schema Object _redefines_ some JSON Schema keywords:
* `additionalProperties`: For event types that declare compatibility
guarantees, there are recommended constraints around the use of this
field. See the guideline <<210>> for details.
Finally, the Schema Object _extends_ JSON Schema with some keywords:
* `readOnly`: events are logically immutable, so `readOnly` can be
considered redundant, but harmless.
* `discriminator`: to support polymorphism, as an alternative to `oneOf`.
* `^x-`: patterned objects in the form of
path_to_url#vendorExtensions[vendor
extensions] can be used in event type schema, but it might be the case
that general purpose validators do not understand them to enforce a
validation check, and fall back to must-ignore processing. A future
version of the guidelines may define well known vendor extensions for
events.
[#210]
== {SHOULD} avoid `additionalProperties` in event type schemas
Event type schema should avoid using `additionalProperties`
declarations, in order to support schema evolution.
Events are often intermediated by publish/subscribe systems and are
commonly captured in logs or long term storage to be read later. In
particular, the schemas used by publishers and consumers can +
drift over time. As a result, compatibility and extensibility issues
that happen less frequently with client-server style APIs become
important and regular considerations for event design. The guidelines
recommend the following to enable event schema evolution:
* Publishers who intend to provide compatibility and allow their schemas
to evolve safely over time *must not* declare an `additionalProperties`
field with a value of `true` (i.e., a wildcard extension point). Instead
they must define new optional fields and update their schemas in advance
of publishing those fields.
* Consumers *must* ignore fields they cannot process and not raise
errors. This can happen if they are processing events with an older copy
of the event schema than the one containing the new definitions
specified by the publishers.
The above constraint does not mean fields can never be added in future
revisions of an event type schema - additive compatible changes are
allowed, only that the new schema for an event type must define the
field first before it is published within an event. By the same turn the
consumer must ignore fields it does not know about from its copy of the
schema, just as they would as an API client - that is, they cannot treat
the absence of an `additionalProperties` field as though the event type
schema was closed for extension.
Requiring event publishers to define their fields ahead of publishing
avoids the problem of _field redefinition_. This is when a publisher
defines a field to be of a different type that was already being
emitted, or, is changing the type of an undefined field. Both of these
are prevented by not using `additionalProperties`.
See also rule <<111>> in the <<compatibility>> section for further guidelines
on the use of `additionalProperties`.
[#246]
== {MUST} use semantic versioning of event type schemas
Event schemas must be versioned -- analog to <<116>> for REST API definitions.
The compatibility mode interact with revision numbers in the schema
`version` field, which follows semantic versioning (MAJOR.MINOR.PATCH):
* Changing an event type with compatibility mode `compatible` or `forward`
can lead to a PATCH or MINOR version revision.
MAJOR breaking changes are not allowed.
* Changing an event type with compatibility mode `none` can lead to
PATCH, MINOR or MAJOR level changes.
The following examples illustrate these relations:
* Changes to the event type's `title` or `description` are considered
PATCH level.
* Adding new optional fields to an event type's schema is considered a
MINOR level change.
* All other changes are considered MAJOR level, such as renaming or
removing fields, or adding new required fields.
//========================================================================================
[[event-categories]]
= EVENT Basics - Event Categories
An _event category_ describes a generic class of event types. The
guidelines define two such categories:
* General Event: a general purpose category.
* Data Change Event: a category to inform about data entity changes
and used e.g. for data replication based data integration.
[#198]
== {MUST} ensure that events conform to an event category
A category describes a predefined structure (e.g. including event
metadata as part of the event payload) that event publishers must
conform to along with standard information specific for the event category
(e.g. the operation for data change events).
=== The general event category
The structure of the _General Event Category_ is shown below as an OpenAPI
Schema Object definition:
[source,yaml]
----
GeneralEvent:
description: |
A general kind of event. Event kinds based on this event define their
custom schema payload as the top level of the document, with the
"metadata" field being required and reserved for standard metadata. An
instance of an event based on the event type thus conforms to both the
EventMetadata definition and the custom schema definition.
Hint: In earlier versions this category was called the Business Category.
required:
- metadata
properties:
metadata:
$ref: '#/definitions/EventMetadata'
----
Event types based on the General Event Category define their custom
schema payload at the top-level of the document, with the
<<event-metadata,metadata>> field being reserved for standard
information (the contents of <<event-metadata,metadata>> are
described further down in this section).
*Note:*
* The General Event was called a _Business Event_ in earlier versions of
the guidelines. Implementation experience has shown that the
category's structure gets used for other kinds of events, hence the name
has been generalized to reflect how teams are using it.
* The General Event is still useful and recommended for the purpose of
defining events that drive a business process.
* The Nakadi broker still refers to the General Category as the Business
Category and uses the keyword `business` for event type registration.
Other than that, the JSON structures are identical.
See <<201>> for more guidance on how to use the category.
=== The data change event category
The _Data Change Event Category_ structure is shown below as an OpenAPI
Schema Object:
[source,yaml]
----
DataChangeEvent:
description: |
Represents a change to an entity. The required fields are those
expected to be sent by the producer, other fields may be added
by intermediaries such as a publish/subscribe broker. An instance
of an event based on the event type conforms to both the
DataChangeEvent's definition and the custom schema definition.
required:
- metadata
- data_op
- data_type
- data
properties:
metadata:
description: The metadata for this event.
$ref: '#/definitions/EventMetadata'
data:
description: |
Contains custom payload for the event type. The payload must conform
to a schema associated with the event type declared in the metadata
object's `event_type` field.
type: object
data_type:
description: name of the (business) data entity that has been mutated
type: string
example: 'sales_order.order'
data_op:
type: string
enum: ['C', 'U', 'D', 'S']
description: |
The type of operation executed on the entity:
- C: Creation of an entity
- U: An update to an entity.
- D: Deletion of an entity.
- S: A snapshot of an entity at a point in time.
----
The Data Change Event Category is structurally different to the General Event Category
by defining a field called `data` as container for the custom payload, as well as
specific information related to data changes in the `data_op`.
The following guidelines specifically apply to Data Change Events:
* <<202>>
* <<242>>
* <<205>>
* <<204>>
[#event-metadata]
=== Event metadata
[#247]
== {MUST} provide mandatory event metadata
The General and Data Change event categories share a common structure for _metadata_
representing generic event information. Parts of the metadata is provided by the
Nakadi event messaging platform, but event identifier (eid) and event creation
timestamp (occurred_at) have to be provided by the event producers.
The metadata structure is defined below as an OpenAPI Schema Object:
[source,yaml]
----
EventMetadata:
type: object
description: |
Carries metadata for an Event along with common fields. The required
fields are those expected to be sent by the producer, other fields may be
added by intermediaries such as publish/subscribe broker.
required:
- eid
- occurred_at
properties:
eid:
description: Identifier of this event.
type: string
format: uuid
example: '105a76d8-db49-4144-ace7-e683e8f4ba46'
event_type:
description: The name of the EventType of this Event.
type: string
example: 'example.important-business-event'
occurred_at:
description: |
Technical timestamp of when the event object was created during processing
of the business event by the producer application. Note, it may differ from
the timestamp when the related real-world business event happened (e.g. when
the packet was handed over to the customer), which should be passed separately
via an event type specific attribute.
Depending on the producer implementation, the timestamp is typically some
milliseconds earlier than when the event is published and received by the
API event post endpoint server -- see below.
type: string
format: date-time
example: '1996-12-19T16:39:57-08:00'
received_at:
description: |
Timestamp of when the event was received via the API event post endpoints.
It is automatically enriched, and events will be rejected if set by the
event producer.
type: string
readOnly: true
format: date-time
example: '1996-12-19T16:39:57-08:00'
version:
description: |
Version of the schema used for validating this event. This may be
enriched upon reception by intermediaries. This string uses semantic
versioning.
type: string
readOnly: true
parent_eids:
description: |
Event identifiers of the Event that caused the generation of
this Event. Set by the producer.
type: array
items:
type: string
format: uuid
example: '105a76d8-db49-4144-ace7-e683e8f4ba46'
flow_id:
description: |
A flow-id for this event (corresponds to the X-Flow-Id HTTP header).
type: string
example: 'JAh6xH4OQhCJ9PutIV_RYw'
partition:
description: |
Indicates the partition assigned to this Event. Used for systems
where an event type's events can be sub-divided into partitions.
type: string
example: '0'
----
Please note that intermediaries acting between the producer of an event
and its ultimate consumers, may perform operations like validation of
events and enrichment of an event's <<event-metadata,metadata>>. For
example brokers such as Nakadi, can validate and enrich events with
arbitrary additional fields that are not specified here and may set default
or other values, if some of the specified fields are not supplied. How
such systems work is outside the scope of these guidelines but producers
and consumers working with such systems should look into their documentation
for additional information.
[#211]
== {MUST} provide unique event identifiers
Event publishers must provide the `eid` (event identifier) as a standard
event object field and part of the event <<metadata,metadata>>.
The `eid` must be a unique identifier for the event in the scope of the
event type / stream lifetime.
Event producers must use the same `eid` when publishing the same event object
multiple times. For instance, producers must ensure that publish event
retries -- e.g. due to temporary Nakadi or network failures or fail-overs -- use
the same `eid` value as the initial (possibly failed) attempt.
The `eid` supports event consumers in detecting and being robust against
event duplicates -- see <<214>>.
*Hint:* Using the same eid for retries can be ensured, for instance, by
generating a UUID either (i) as part of the event object construction and
using some form of intermediate persistence, like an event publish retry
queue, or (ii) via a deterministic function that computes the UUID value
from the event fields as input (without random salt).
[#201]
== {MUST} use general events to signal steps in business processes
When publishing events that represent steps in a business process, event
types *must* be based on the General Event category.
All your events of a single business process will conform to the
following rules:
* Business events must contain a specific identifier field (a business
process id or "bp-id") similar to flow-id to allow for efficient
aggregation of all events in a business process execution.
* Business events must contain a means to correctly order events in a
business process execution. In distributed settings where monotonically
increasing values (such as a high precision timestamp that is assured to
move forwards) cannot be obtained, the `parent_eids` data structure
allows causal relationships to be declared between events.
* Business events should only contain information that is new to the
business process execution at the specific step/arrival point.
* Each business process sequence should be started by a business event
containing all relevant context information.
* Business events must be published reliably by the service.
At the moment we cannot state whether it's best practice to publish all
the events for a business process using a single event type and
represent the specific steps with a state field, or whether to use
multiple event types to represent each step. For now we suggest
assessing each option and sticking to one for a given business process.
[#203]
== {SHOULD} provide explicit event ordering for general events
Event processing consumer applications need the order information to
reconstruct the business event stream, for instance, in order to replay
events in error situations, or to execute analytical use cases
outside the context of the original event stream consumption.
All general events (fka business events) *should* be provided with the explicit
information about the business ordering of the events. To accomplish this
event ordering the event type definition
* *must* specify a the `ordering_key_fields` property to indicate which
field(s) contain the ordering key, and
* *should* specify the `ordering_instance_ids` property to define which
field(s) represents the business entity instance identifier.
*Note:* The `ordering_instance_ids` restrict the scope in which the
`ordering_key_fields` provide the strict order. If undefined, the ordering is
assumed to be provided in scope of all events.
The business ordering information can be provided among other ways by maintaining...
* a strictly monotonically increasing version of entity instances (e.g. created as
row update counter by a database), or
* a strictly monotonically increasing sequence counter (maintained per partition
or event type).
*Hint:* timestamps are often a bad choice, since in distributed systems events
may occur at the same time, or clocks are not exactly synchronized, or
jump forward and backward to compensate drifts or leap-seconds. If you use anyway
timestamps to indicate event ordering, you _must_ carefully ensure that the designated
event order is not messed up by these effects and use UTC time zone format.
*Note:* The `received_at` and `partition_offset` metadata set by Nakadi typically is
different from the business event ordering, since (1) Nakadi is a distributed concurrent
system without atomic, ordered event creation and (2) the application's implementation
of event publishing may not exactly reflect the business order. The business ordering
information is application knowledge, and implemented in the scope of event
partitions or specific entities, but may also comprise all events, if scaling
requirements are low.
[#202]
== {MUST} use data change events to signal mutations
You *must* use data change events to signal changes of stored entity instances
and facilitate e.g. change data capture (CDC). Event sourced change data capture
is crucial for our data integration architecture as it supports the logical
replication (and reconstruction) of the application datastores
to the data analytics and AI platform as transactional source datasets.
* Change events must be provided when publishing events that represent created,
updated, or deleted data.
* Change events must provide the complete entity data including the identifier of
the changed instance to allow aggregation of all related events for the entity.
* Change events <<242>>.
* Change events must be published reliably by the service.
[#242]
== {MUST} provide explicit event ordering for data change events
While the order information is recommended for business events, it *must* be
provided for data change events. The ordering information defines the (create,
update, delete) change order of the data entity instances managed via the
application's transactional datastore. It is needed for change data capture
to keep transactional dataset replicas in sync as source for data analytics.
For details about how to provide the data change ordering information,
please check <<203>>.
*Exception*: In situations where the transactional data is 'append only',
i.e. entity instances are only created, but never updated or deleted, the
ordering information may not be provided.
[#204]
== {SHOULD} use the hash partition strategy for data change events
The `hash` partition strategy allows a producer to define which fields
in an event are used as input to compute a logical partition the event
should be added to. Partitions are useful as they allow supporting
systems to scale their throughput while provide local ordering for event
entities.
The `hash` option is particularly useful for data changes as it allows
all related events for an entity to be consistently assigned to a
partition, providing a relative ordered stream of events for that
entity. This is because while each partition has a total ordering,
ordering across partitions is not assured by a supporting system, thus
it is possible for events sent across partitions to appear in a
different order to consumers that the order they arrived at the server.
When using the `hash` strategy the partition key in almost all cases
should represent the entity being changed and not a per event or change
identifier such as the `eid` field or a timestamp. This ensures data
changes arrive at the same partition for a given entity and can be
consumed effectively by clients.
There may be exceptional cases where data change events could have their
partition strategy set to be the producer defined or random options, but
generally `hash` is the right option - that is while the guidelines here
are a "should", they can be read as "must, unless you have a very good
reason".
//========================================================================================
[[events-design]]
= EVENT Design
[#200]
== {SHOULD} avoid writing sensitive data to events
Event data security is supported by Nakadi Event Bus mechanisms for access
control and authorization of publishing or consuming events. However, we avoid
writing sensitive data (e.g. personal data like e-mail or address) to events unless
it is needed for the business. Sensitive data create additional obligations for
access control and compliance and generally increases data protection risks.
[#214]
== {MUST} be robust against duplicates when consuming events
Duplicate events are multiple occurrences of the same event object representing
the same (business or data change) event instance.
Event consumers must be robust against duplicate events. Depending on the use case,
being robust implies that event consumers need to _deduplicate events_, i.e. to ignore
duplicates in event processing. For instance, for accounting reporting a high accuracy
is required by the business, and duplicates need to be explicitly ignored, whereas
customer behavior reporting (click rates) might not care about event duplicates
since accuracy in per-mille range is not needed.
*Hint:* Event consumers are supported in deduplication:
* Deduplication can be based on the `eid` as mandatory standard for all events -- see <<211>>.
* Processing data change events to replay data changes and keep transactional
data copies in sync (CDC) is robust against duplicates because it is based on
data keys and change ordering -- see <<202>> and <<242>>.
* Data analytics users of the Data Lake are well advised to use curated data as a
source for analytics. Raw event datasets materialized in the lake are typically
cleaned-up (including deduplication and data synchronization) and provided as
transactional data copy or curated data products, for instance
path_to_url product data [internal link]] or
path_to_url sales data [internal link]].
*Context:* One _source of duplicate events_ are the event producers, for instance,
due to publish call retries or publisher client failovers. Another source is
Nakadi's 'at-least-once' delivery promise (like provided by most message broker
distributed systems). It also currently applies to the Data Lake event materialization
as raw event datasets (in Delta or JSON format) for Data Analytics.
From an event consumer point of view, duplicate events may also be created when
consumers reprocess parts of the event stream, for instance, due to inaccurate
continuation after failures. Event publishers and infrastructure systems should
keep event duplication at a minimum typically below per-mille range.
(In Nov. 2022, for instance, we observed <0.2 daily event duplicate
rate (95th percentile) for high volume events.)
[#212]
== {SHOULD} design for idempotent out-of-order processing
Events that are designed for <<149,idempotent>> out-of-order
processing allow for extremely resilient systems: If processing an event
fails, consumers and producers can skip/delay/retry it without stopping
the world or corrupting the processing result.
To enable this freedom of processing, you must explicitly design for
idempotent out-of-order processing: Either your events must contain
enough information to infer their original order during consumption or
your domain must be designed in a way that order becomes irrelevant.
As common example similar to data change events, idempotent out-of-order
processing can be supported by sending the following information:
* the process/resource/entity identifier,
* a <<203,monotonically increasing ordering key>> and
* the process/resource state after the change.
A receiver that is interested in the current state can then ignore
events that are older than the last processed event of each resource. A
receiver interested in the history of a resource can use the ordering
key to recreate a (partially) ordered sequence of events.
[#199]
== {MUST} ensure that events define useful business resources
Events are intended to be used by other services including business
process/data analytics and monitoring. They should be based around the
resources and business processes you have defined for your service
domain and adhere to its natural lifecycle (see also <<139>> and <<140>>).
As there is a cost in creating an explosion of event types and topics,
prefer to define event types that are abstract/generic enough to be
valuable for multiple use cases, and avoid publishing event types
without a clear need.
[#205]
== {SHOULD} ensure that data change events match the APIs resources
A data change event's representation of an entity should correspond to
the REST API representation.
There's value in having the fewest number of published structures for a
service. Consumers of the service will be working with fewer
representations, and the service owners will have less API surface to
maintain. In particular, you should only publish events that are
interesting in the domain and abstract away from implementation or local
details - there's no need to reflect every change that happens within
your system.
There are cases where it could make sense to define data change events
that don't directly correspond to your API resource representations.
Some examples are -
* Where the API resource representations are very different from the
datastore representation, but the physical data are easier to reliably
process for data integration.
* Publishing aggregated data. For example a data change to an individual
entity might cause an event to be published that contains a coarser
representation than that defined for an API
* Events that are the result of a computation, such as a matching
algorithm, or the generation of enriched data, and which might not be
stored as entity by the service.
[#209]
== {MUST} maintain backwards compatibility for events
Changes to events must be based around making additive and backward
compatible changes. This follows the guideline, "Must: Dont Break
Backward Compatibility" from the <<compatibility>> guidelines.
In the context of events, compatibility issues are complicated by the
fact that producers and consumers of events are highly asynchronous and
cant use content-negotiation techniques that are available to REST
style clients and servers. This places a higher bar on producers to
maintain compatibility as they will not be in a position to serve
versioned media types on demand.
For event schema, these are considered backward compatible changes, as
seen by consumers -
* Adding new optional fields to JSON objects.
* Changing the order of fields (field order in objects is arbitrary).
* Changing the order of values with same type in an array.
* Removing optional fields.
* Removing an individual value from an enumeration.
* Adding new value to a {x-extensible-enum} field (see <<112, rule 112>> and <<108, rule 108>>).
These are considered backwards-incompatible changes, as seen by
consumers -
* Removing required fields from JSON objects.
* Changing the default value of a field.
* Changing the type of a field, object, enum or array.
* Changing the order of values with different type in an array (also
known as a tuple).
* Adding a new optional field to redefine the meaning of an existing
field (also known as a co-occurrence constraint).
* Adding a value to an enumeration. Instead, you <<112>>.
```
|
```yaml
include: sensor-device.yaml
properties:
irq-gpios:
type: phandle-array
description: IRQ pin
This pin defaults to active high when produced by the sensor.
The property value should ensure the flags properly describe
the signal that is presented to the driver.
single-mode:
type: boolean
description: |
Set to config the sensor in single measurement mode. Leave
unset to configure the sensor in continuous measurement mode.
cancel-offset:
type: boolean
description: |
Set to enable the offset cancellation. Otherwise it would be
disabled as default.
```
|
QuickCam is a line of webcam video camera products by Logitech.
The original QuickCam was developed by Connectix in 1994 for nationwide commercial sale and was the first widely marketed webcam-like device, although its original advertising did not use the term "webcam" or refer to the World Wide Web, then in its infancy. Video conferencing via computers already existed at the time, and client-server based video conferencing software such as CU-SeeMe was gaining popularity. Eventually, it evolved from an RS-422 connector to a parallel connector then eventually to a USB connection. It is now considered one of the top gadgets of all time.
The initial model was available only for the Apple Macintosh, connecting to it via the serial port. It produced 16 shades of gray at a resolution of 320×240 pixels, and could record video at about 15 frames per second; it cost $100.
The software that originally shipped with the camera included QuickMovie for recording motion pictures and QuickPICT for capturing still images.
The QuickCam product line was acquired by Logitech in August 1998. The company has gradually decreased support for the Macintosh platform, with only one current model officially supporting Mac or including Mac drivers. This could largely be the result of Apple building webcams into their laptop and desktop computers, negating the need for external third party devices . Many recent models implement the USB video device class standard and work under Mac OS without additional drivers.
Today, Logitech QuickCam is one of the world's most recognized webcam brands.
In October 2010, QuickCam was elected to Time Magazine's Top 100 Gadgets of all Time
Cameras
This list is non-exhaustive.
See also
History of videotelephony
List of video telecommunication services and product brands
Videoconferencing
References
External links
Logitech's home page
Macam project at SourceForge.net
Connectix QuickCam - All-TIME 100 Gadgets - TIME
Steves Ant Farm Cam home page
Logitech product numbers and driver support
Webcams
Teleconferencing
Videotelephony
Products introduced in 1994
Logitech products
|
```c++
// Boost.Geometry (aka GGL, Generic Geometry Library)
//
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// path_to_url
//
//
#ifndef RAPIDXML_UTIL_HPP
#define RAPIDXML_UTIL_HPP
#include <string>
#include <rapidxml.hpp>
class xml_doc : public rapidxml::xml_document<>
{
public :
xml_doc(const char* xml)
{
// Make a copy because rapidxml destructs string
m_copy = new char[strlen(xml) + 1];
strcpy(m_copy, xml);
this->parse<0>(m_copy);
};
virtual ~xml_doc()
{
delete[] m_copy;
}
private :
char* m_copy;
};
inline std::string get_attribute(rapidxml::xml_node<>* node, const char* name)
{
rapidxml::xml_attribute<> *attr = node->first_attribute(name);
std::string value;
if (attr)
{
value = attr->value();
}
return value;
}
inline void get_contents(rapidxml::xml_node<>* node, std::string& contents)
{
if (node != NULL)
{
if (node->type() == rapidxml::node_element)
{
//std::cout << "ELEMENT: " << node->name() << "=" << node->value() << std::endl;
}
else if (node->type() == rapidxml::node_data)
{
contents += node->value();
//std::cout << "DATA: " << node->name() << "=" << node->value() << std::endl;
}
else
{
//std::cout << "OTHER: " << node->name() << "=" << node->value() << std::endl;
}
get_contents(node->first_node(), contents);
get_contents(node->next_sibling(), contents);
}
}
#endif // RAPIDXML_UTIL_HPP
```
|
Cophixalus linnaeus is a species of frog in the family Microhylidae, the binomial honours Swedish botanist Carl Linnaeus. It is found in New Guinea.
References
· Kraus, F. & A. Allison. 2009: New species of Cophixalus (Anura: Microhylidae) from Papua New Guinea. Zootaxa, 2128: 1–38.
linnaeus
Amphibians of New Guinea
|
Un re in ascolto (A King Listens) is an opera by Luciano Berio, who also wrote the Italian libretto. It is based on a short story from the collection Under the Jaguar Sun by Italo Calvino, but incorporates excerpts from Friedrich Einsiedel's 1778 libretto (as reworked by Friedrich Wilhelm Gotter between 1790 and 1791) for an opera based on Shakespeare's The Tempest. This became Die Geisterinsel in 1798, set to music written by Friedrich Fleischmann. In addition, W. H. Auden's The Sea and the Mirror: A Commentary on Shakespeare's The Tempest was a source.
Berio himself described the work as an azione musicale (musical action) rather than an opera. It falls into 19 sections grouped into two parts. The work was written from 1981 to 1983 and it received its premiere at the Kleines Festspielhaus in Salzburg on 7 August 1984, conducted by Lorin Maazel, directed by Götz Friedrich, with set designs by Günther Schneider-Siemssen. The London premiere took place on 9 February 1989 at the Royal Opera House, Covent Garden. The American premiere was at Lyric Opera of Chicago on 9 November 1996, conducted by Dennis Russell Davies.
Roles
Synopsis
The opera does not have a conventional linear narrative.
A king of a mythical kingdom lives detached from his realm where his only contact with his kingdom is through overhearing conversations. A traveling theatrical troupe arrives to stage a performance of The Tempest. As the king overhears the auditions and the rehearsals, he begins to imagine himself as Prospero from the play and he begins to equate these with the happenings in his kingdom, blurring the two worlds. Eventually, he undergoes a psychological collapse, the rehearsed production of The Tempest never occurs, and the theatrical troupe departs. The king has a vision of the future as he moves towards his own death.
Recording
Luciano Berio: Un re in ascolto (Theo Adam, Heinz Zednik, Sylvia Greenberg, Gabriele Sima, Helmut Wildhaber, Patricia Wise, Karan Armstrong, Rohangiz Yachmi, Anna Gonda, Helmuth Lohner; Vienna Philharmonic; Conductor: Lorin Maazel) CD 1999. Label: Col Legno 20005 Libretto can be found in the link: http://www.dicoseunpo.it/B_files/Re_in_ascolto.pdf
References
Notes
Sources
Holden, Amanda (Ed.), The New Penguin Opera Guide, New York: Penguin Putnam, 2001.
The publisher's description — Universal Edition
Wilson, Robert J. (1998), "Shakespeare, William" in Stanley Sadie, (Ed.), The New Grove Dictionary of Opera, Vol. Four. London: Macmillan Publishers, Inc. 1998
1984 operas
Operas
Operas by Luciano Berio
Adaptations of works by Italo Calvino
Italian-language operas
|
Madhya Pradesh Day is a state holiday which is celebrated in 1 November on the occasion of formation of Madhya Pradesh.
History
It was started from 1 November 1956 when Central Provinces and Berar, Madhya Bharat, Vindhya Pradesh and Bhopal joined and formed Madhya Pradesh. At the time of 1st Madhya Pradesh Foundation Day, Bhopal was chosen as capital of Madhya Pradesh. In 2022, Madhya Pradesh celebrated 67th Madhya Pradesh Foundation Day at Lal Parade Ground, Bhopal. It celebrates this day with Chhattisgarh, Karnataka, Kerala, Punjab and Haryana. 2022 or 67th Madhya Pradesh Day was celebrated as Jan Utsav or festival.
Programs and celebration
In Madhya Pradesh Day various programs and celebration are organized from 1 November to 7 November, including:
Ladli Laxmi Yojana
Sports
Cuisine competitions
Drama
Painting competition
Folk dance
References
Indian state foundation days
Observances in India
|
Henry Richard Fotheringham (born 4 April 1953) is a retired South African cricketer.
Fotheringham lived in Swaziland and Rhodesia as a child, and attended Ruzawi School and Michaelhouse. He represented Natal Schools at the 1969–70 Nuffield Week, and South African Schools at the 1970–71 Nuffield Week, and played rugby union, hockey, tennis, and squash at age group level.
Originally a right-handed middle-order batsman, Fotheringham made his first-class debut for Natal B against Transvaal B in section B of the Currie Cup in December 1971, and in section A for Natal a month later in January 1972 against Rhodesia. His List A debut came for Natal in February 1974, in a Gillette Cup match against Rhodesia.
Fotheringham moved to Transvaal ahead of the 1978–79 season, where he moved up the order and formed a prolific opening partnership with Jimmy Cook in a period when Transvaal dominated South African domestic cricket, before returning to play for Natal for the 1989–90 season. His final appearance for Natal came in the Benson & Hedges Series in March 1990. He also played two Second XI Championship matches for Gloucestershire in 1977. During his career Fotheringham scored 7,981 runs in the Currie Cup, the fifth-highest career runs total in the history of the tournament.
Due to the sporting boycott of South Africa during apartheid, Fotheringham never played an official Test match or One Day International for South Africa. However, he played in seven unofficial Test matches and fifteen unofficial One Day Internationals during the South African rebel tours, making his debut against the West Indies XI during their 1983–84 tour. His final first-class appearance came in the unofficial Test against the England XI during the 1989–90 rebel tour.
References
External links
1953 births
Living people
Gauteng cricketers
KwaZulu-Natal cricketers
South African cricketers
South African people of British descent
South African people of Scottish descent
White South African people
Alumni of Michaelhouse
People from Empangeni
|
The 40th Virginia Cavalry Battalion was a cavalry battalion which served in the Confederate States Army during the American Civil War. It was organized in July 1863 with six companies and served in the Department of Richmond. In September it was merged with 32nd Virginia Cavalry Battalion to form the 42nd Virginia Cavalry Battalion.
See also
List of Virginia Civil War units
Sources
40th Virginia Cavalry Battalion page
Units and formations of the Confederate States Army from Virginia
1863 establishments in Virginia
Military units and formations established in 1863
1865 disestablishments in Virginia
Military units and formations disestablished in 1865
|
Puentes Viejas ("Old Bridges") is a municipality of the Community of Madrid, Spain. In 2022 it had a population of 697.
Puentes Viejas was formed in 1975 by combining together three existing municipalities: Manjirón (which absorbed the Cinco Villas municipality in 1850), Paredes de Buitrago and Serrada de la Fuente. The name of the newly created municipality came from the nearby reservoir called Puentes Viejas.
References
Municipalities in the Community of Madrid
|
```objective-c
// Distributed under the MIT software license, see the accompanying
// file COPYING or path_to_url
#ifndef VERGE_CRYPTO_SIPHASH_H
#define VERGE_CRYPTO_SIPHASH_H
#include <stdint.h>
#include <uint256.h>
/** SipHash-2-4 */
class CSipHasher
{
private:
uint64_t v[4];
uint64_t tmp;
int count;
public:
/** Construct a SipHash calculator initialized with 128-bit key (k0, k1) */
CSipHasher(uint64_t k0, uint64_t k1);
/** Hash a 64-bit integer worth of data
* It is treated as if this was the little-endian interpretation of 8 bytes.
* This function can only be used when a multiple of 8 bytes have been written so far.
*/
CSipHasher& Write(uint64_t data);
/** Hash arbitrary bytes. */
CSipHasher& Write(const unsigned char* data, size_t size);
/** Compute the 64-bit SipHash-2-4 of the data written so far. The object remains untouched. */
uint64_t Finalize() const;
};
/** Optimized SipHash-2-4 implementation for uint256.
*
* It is identical to:
* SipHasher(k0, k1)
* .Write(val.GetUint64(0))
* .Write(val.GetUint64(1))
* .Write(val.GetUint64(2))
* .Write(val.GetUint64(3))
* .Finalize()
*/
uint64_t SipHashUint256(uint64_t k0, uint64_t k1, const uint256& val);
uint64_t SipHashUint256Extra(uint64_t k0, uint64_t k1, const uint256& val, uint32_t extra);
#endif // VERGE_CRYPTO_SIPHASH_H
```
|
```javascript
import Icon from '../components/Icon.vue'
Icon.register({
gamepad: {
width: 640,
height: 512,
paths: [
{
d: 'M480.1 96c88.3 0 159.9 71.7 159.9 160 0 88.3-71.7 160-160 160-44.7 0-85.2-18.4-114.2-48h-91.5c-29 29.6-69.5 48-114.2 48-88.3 0-160-71.7-160-160s71.7-160 160-160h320.1zM248 268v-24c0-6.6-5.4-12-12-12h-52v-52c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v52h-52c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12h52v52c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12v-52h52c6.6 0 12-5.4 12-12zM464 344c22.1 0 40-17.9 40-40s-17.9-40-40-40-40 17.9-40 40 17.9 40 40 40zM528 248c22.1 0 40-17.9 40-40s-17.9-40-40-40-40 17.9-40 40 17.9 40 40 40z'
}
]
}
})
```
|
Stuart Patrick King (22 April 1906 – 28 February 1943) was an Australian sportsman who played first-class cricket for Victoria and Australian rules football for Victorian Football League club St Kilda.
Family
The son of David James King (1873-), and Emily Mary King, née Matthews, later Mrs. Edwards, Stuart Patrick King was born in Ararat, Victoria on 22 April 1906.
He married Kathleen Patricia Lightfoot (1911-) at Newman College's chapel on 14 January 1935. They had two children: Gerald and Diana.
Education
Educated at the University of Melbourne, he graduated Bachelor of Laws (LL.B.) in 1930, and was admitted to the bar on 1 May 1931.
Cricket
Born in Ararat, Victoria, King started his cricket career first, debuting for Victoria in the 1926/27 Sheffield Shield season, on 17 December 1926, at the Melbourne Cricket Ground, against Queensland. He was a right-handed wicket-keeper batsman and batted in the middle order. The last of his 12 first-class matches was played in 1932/33 and he finished with 417 runs at 27.80. His claim to fame as a cricketer was scoring seven of Victoria's world record 1107 runs against New South Wales in his debut summer.
Football
Having been recruited from the University Blacks, King played his first VFL match for St Kilda in 1931 and the following year was appointed club captain. When Charlie Hardy left the Saints seven games into the 1932 season he acted as a caretaker coach for the rest of the year. King played mostly as a defender and in his three seasons managed 43 games.
Military service
Already a well-established barrister and solicitor, King enlisted in the Royal Australian Air Force on 30 March 1942 as an intelligence officer, and was posted to 20 Squadron, gaining the rank of Flying Officer.
Death
He was killed as a result of a aircraft crash off the coast of Queensland on 28 February 1943. King wasn't a member of the crew - he went along as a 'supernumerary' person to observe the mission.
See also
List of Australian rules football and cricket players
List of Victoria first-class cricketers
List of Victorian Football League players who died in active service
Footnotes
References
World War II Service Record: Flying Officer Stuart Patrick King (255266), (Part One), National Archives of Australia.
World War II Service Record: Flying Officer Stuart Patrick King (255266), (Part Two), National Archives of Australia.
World War II Nominal Roll: Flying Officer Stuart Patrick King (255266).
Roll of Honour: Flying Officer Stuart Patrick King (255266), Australian War Memorial.
Commonwealth War Graves Commission: Flying Officer Stuart Patrick King (255266).
McCrery, N., The Coming Storm: Test and First-Class Cricketers Killed in World War Two, Pen and Sword, (Barnesley), 2017.
External links
Cricinfo profile
Scorecard of World Record 1107 game
Project PRIAM: F/O Stuart Patrick King Profile
St Kilda Football Club coaches
1906 births
1943 deaths
Australian rules footballers from Victoria (state)
St Kilda Football Club players
University Blacks Football Club players
Australian cricketers
Victoria cricketers
Royal Australian Air Force officers
Royal Australian Air Force personnel of World War II
Australian military personnel killed in World War II
People from Ararat, Victoria
Cricketers from Victoria (state)
|
```perl6
package TAP::Parser::SourceHandler;
use strict;
use warnings;
use TAP::Parser::Iterator ();
use base 'TAP::Object';
=head1 NAME
TAP::Parser::SourceHandler - Base class for different TAP source handlers
=head1 VERSION
Version 3.44
=cut
our $VERSION = '3.44';
=head1 SYNOPSIS
# abstract class - don't use directly!
# see TAP::Parser::IteratorFactory for general usage
# must be sub-classed for use
package MySourceHandler;
use base 'TAP::Parser::SourceHandler';
sub can_handle { return $confidence_level }
sub make_iterator { return $iterator }
# see example below for more details
=head1 DESCRIPTION
This is an abstract base class for L<TAP::Parser::Source> handlers / handlers.
A C<TAP::Parser::SourceHandler> does whatever is necessary to produce & capture
a stream of TAP from the I<raw> source, and package it up in a
L<TAP::Parser::Iterator> for the parser to consume.
C<SourceHandlers> must implement the I<source detection & handling> interface
used by L<TAP::Parser::IteratorFactory>. At 2 methods, the interface is pretty
simple: L</can_handle> and L</make_source>.
Unless you're writing a new L<TAP::Parser::SourceHandler>, a plugin, or
subclassing L<TAP::Parser>, you probably won't need to use this module directly.
=head1 METHODS
=head2 Class Methods
=head3 C<can_handle>
I<Abstract method>.
my $vote = $class->can_handle( $source );
C<$source> is a L<TAP::Parser::Source>.
Returns a number between C<0> & C<1> reflecting how confidently the raw source
can be handled. For example, C<0> means the source cannot handle it, C<0.5>
means it may be able to, and C<1> means it definitely can. See
L<TAP::Parser::IteratorFactory/detect_source> for details on how this is used.
=cut
sub can_handle {
my ( $class, $args ) = @_;
$class->_croak(
"Abstract method 'can_handle' not implemented for $class!");
return;
}
=head3 C<make_iterator>
I<Abstract method>.
my $iterator = $class->make_iterator( $source );
C<$source> is a L<TAP::Parser::Source>.
Returns a new L<TAP::Parser::Iterator> object for use by the L<TAP::Parser>.
C<croak>s on error.
=cut
sub make_iterator {
my ( $class, $args ) = @_;
$class->_croak(
"Abstract method 'make_iterator' not implemented for $class!");
return;
}
1;
__END__
=head1 SUBCLASSING
Please see L<TAP::Parser/SUBCLASSING> for a subclassing overview, and any
of the subclasses that ship with this module as an example. What follows is
a quick overview.
Start by familiarizing yourself with L<TAP::Parser::Source> and
L<TAP::Parser::IteratorFactory>. L<TAP::Parser::SourceHandler::RawTAP> is
the easiest sub-class to use as an example.
It's important to point out that if you want your subclass to be automatically
used by L<TAP::Parser> you'll have to and make sure it gets loaded somehow.
If you're using L<prove> you can write an L<App::Prove> plugin. If you're
using L<TAP::Parser> or L<TAP::Harness> directly (e.g. through a custom script,
L<ExtUtils::MakeMaker>, or L<Module::Build>) you can use the C<config> option
which will cause L<TAP::Parser::IteratorFactory/load_sources> to load your
subclass).
Don't forget to register your class with
L<TAP::Parser::IteratorFactory/register_handler>.
=head2 Example
package MySourceHandler;
use strict;
use MySourceHandler; # see TAP::Parser::SourceHandler
use TAP::Parser::IteratorFactory;
use base 'TAP::Parser::SourceHandler';
TAP::Parser::IteratorFactory->register_handler( __PACKAGE__ );
sub can_handle {
my ( $class, $src ) = @_;
my $meta = $src->meta;
my $config = $src->config_for( $class );
if ($config->{accept_all}) {
return 1.0;
} elsif (my $file = $meta->{file}) {
return 0.0 unless $file->{exists};
return 1.0 if $file->{lc_ext} eq '.tap';
return 0.9 if $file->{shebang} && $file->{shebang} =~ /^#!.+tap/;
return 0.5 if $file->{text};
return 0.1 if $file->{binary};
} elsif ($meta->{scalar}) {
return 0.8 if $$raw_source_ref =~ /\d\.\.\d/;
return 0.6 if $meta->{has_newlines};
} elsif ($meta->{array}) {
return 0.8 if $meta->{size} < 5;
return 0.6 if $raw_source_ref->[0] =~ /foo/;
return 0.5;
} elsif ($meta->{hash}) {
return 0.6 if $raw_source_ref->{foo};
return 0.2;
}
return 0;
}
sub make_iterator {
my ($class, $source) = @_;
# this is where you manipulate the source and
# capture the stream of TAP in an iterator
# either pick a TAP::Parser::Iterator::* or write your own...
my $iterator = TAP::Parser::Iterator::Array->new([ 'foo', 'bar' ]);
return $iterator;
}
1;
=head1 AUTHORS
TAPx Developers.
Source detection stuff added by Steve Purkis
=head1 SEE ALSO
L<TAP::Object>,
L<TAP::Parser>,
L<TAP::Parser::Source>,
L<TAP::Parser::Iterator>,
L<TAP::Parser::IteratorFactory>,
L<TAP::Parser::SourceHandler::Executable>,
L<TAP::Parser::SourceHandler::Perl>,
L<TAP::Parser::SourceHandler::File>,
L<TAP::Parser::SourceHandler::Handle>,
L<TAP::Parser::SourceHandler::RawTAP>
=cut
```
|
Bolinda is a locality north of Melbourne, Australia on the Melbourne-Lancefield Road. It is 6 km. south of Romsey, within the Shire of Macedon Ranges.
John Brock, one of the first British settlers in the Bolinda district, named his station Bullando Vale. However, it is not clear whether this is connected in any way to the present name.
Rupert Clarke owned a property named Bolinda Vale, near Romsey which had been in his family, as squatters, from 1860 or earlier.
Bolinda Post Office opened on 12 June 1879 and closed in 1980.
The community today is centred on the primary school (established 1870), community hall and recreation reserve.
Bolinda was an intermediate stopping point on the Clarkefield-Lancefield railway which operated between 1881 and 1956.
References
Towns in Victoria (state)
Shire of Macedon Ranges
|
```java
//
//
// path_to_url
//
// Unless required by applicable law or agreed to in writing, software
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
package google.registry.tools.server;
import static com.google.common.truth.Truth.assertThat;
import static jakarta.servlet.http.HttpServletResponse.SC_OK;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.verifyNoMoreInteractions;
import static org.mockito.Mockito.when;
import google.registry.groups.DirectoryGroupsConnection;
import google.registry.groups.GroupsConnection.Role;
import google.registry.testing.FakeResponse;
import google.registry.tools.server.UpdateUserGroupAction.Mode;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
/** Unit tests for {@link google.registry.tools.server.UpdateUserGroupAction}. */
class UpdateUserGroupActionTest {
private final DirectoryGroupsConnection connection = mock(DirectoryGroupsConnection.class);
private final FakeResponse response = new FakeResponse();
private final UpdateUserGroupAction action = new UpdateUserGroupAction();
private final String userEmailAddress = "user@example.com";
private final String groupEmailAddress = "group@example.com";
@BeforeEach
void beforeEach() {
action.groupsConnection = connection;
action.response = response;
action.userEmailAddress = userEmailAddress;
action.groupEmailAddress = groupEmailAddress;
action.mode = Mode.ADD;
}
@Test
void testSuccess_addMember() throws Exception {
action.run();
assertThat(response.getStatus()).isEqualTo(SC_OK);
verify(connection).addMemberToGroup(groupEmailAddress, userEmailAddress, Role.MEMBER);
verifyNoMoreInteractions(connection);
}
@Test
void testSuccess_removeMember() throws Exception {
action.mode = Mode.REMOVE;
when(connection.isMemberOfGroup(userEmailAddress, groupEmailAddress)).thenReturn(true);
action.run();
assertThat(response.getStatus()).isEqualTo(SC_OK);
verify(connection).isMemberOfGroup(userEmailAddress, groupEmailAddress);
verify(connection).removeMemberFromGroup(groupEmailAddress, userEmailAddress);
verifyNoMoreInteractions(connection);
}
@Test
void testSuccess_removeMember_notAMember() throws Exception {
action.mode = Mode.REMOVE;
when(connection.isMemberOfGroup(userEmailAddress, groupEmailAddress)).thenReturn(false);
action.run();
assertThat(response.getStatus()).isEqualTo(SC_OK);
verify(connection).isMemberOfGroup(userEmailAddress, groupEmailAddress);
verifyNoMoreInteractions(connection);
}
}
```
|
Gamma Geminorum (γ Geminorum, abbreviated Gamma Gem, γ Gem), formally named Alhena , is the third-brightest object in the constellation of Gemini. It has an apparent visual magnitude of 1.9, making it easily visible to the naked eye even in urban regions. Based upon parallax measurements with the Hipparcos satellite, it is located at a distance of roughly from the Sun.
Properties
Alhena is an evolving star that is exhausting the supply of hydrogen at its core and has entered the subgiant stage. The spectrum matches a stellar classification of A0 IV. Compared to the Sun it has 2.8 times the mass and 3.3 times the radius. It is radiating around 123 times the luminosity of the Sun from its outer envelope at an effective temperature of 9,260 K. This gives it a white hue typical of an A-class star.
Alhena is a spectroscopic binary system with a period of 12.6 years (4,614.51 days) in a highly eccentric Keplerian orbit. The secondary, with 1.07 times the mass of the Sun, is likely a G-type main-sequence star.
Etymology
γ Geminorum (Latinised to Gamma Geminorum) is the star's Bayer designation. The traditional name Alhena is derived from the Arabic الهنعة Al Han'ah, 'the brand' (on the neck of the camel), whilst the alternate name Almeisan is from the Arabic المیسان Al Maisan, 'the shining one.' Al Hanʽah was the name of star association consisting of this star, along with Mu Geminorum (Tejat Posterior), Nu Geminorum, Eta Geminorum (Tejat Prior) and Xi Geminorum (Alzirr). They also were associated in Al Nuḥātai, the dual form of Al Nuḥāt, 'a Camel's Hump'. In 2016, the International Astronomical Union organized a Working Group on Star Names (WGSN) to catalog and standardize proper names for stars. The WGSN's first bulletin of July 2016 included a table of the first two batches of names approved by the WGSN; which included Alhena for this star.
In the catalogue of stars in the Calendarium of Al Achsasi Al Mouakket, this star was designated Nir al Henat, which was translated into Latin as Prima του al Henat, meaning 'the brightest of Al Henat'.
In Chinese, (), meaning Well (asterism), refers to an asterism consisting of γ Geminorum, ε Geminorum, ζ Geminorum, λ Geminorum, μ Geminorum, ν Geminorum, ξ Geminorum and 36 Geminorum. Consequently, γ Geminorum itself is known as (, .)
Conjunctions
Gamma Geminorum is 6° south of the ecliptic, far enough so that the Moon never occults it. Similarly, planets in conjunction with this star almost always pass several degrees to the north, but Venus will have a series of close conjunctions with Gamma Geminorum starting in August 2143, and continuing every eight years after over the remainder of that century.
The Sun passes Gamma Geminorum on or around June 30 every year.
In culture
Alhena was the name of a Dutch ship that rescued many people from an Italian cruise liner, the SS Principessa Mafalda, in October 1927. In addition, the American attack cargo ship was named after the star.
References
Geminorum, Gamma
Geminorum, 24
Gemini (constellation)
A-type subgiants
Spectroscopic binaries
Alhena
2421
047105
031681
Durchmusterung objects
|
```php
<?php
/*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
*/
namespace Google\Service\CloudSourceRepositories;
class MirrorConfig extends \Google\Model
{
/**
* @var string
*/
public $deployKeyId;
/**
* @var string
*/
public $url;
/**
* @var string
*/
public $webhookId;
/**
* @param string
*/
public function setDeployKeyId($deployKeyId)
{
$this->deployKeyId = $deployKeyId;
}
/**
* @return string
*/
public function getDeployKeyId()
{
return $this->deployKeyId;
}
/**
* @param string
*/
public function setUrl($url)
{
$this->url = $url;
}
/**
* @return string
*/
public function getUrl()
{
return $this->url;
}
/**
* @param string
*/
public function setWebhookId($webhookId)
{
$this->webhookId = $webhookId;
}
/**
* @return string
*/
public function getWebhookId()
{
return $this->webhookId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(MirrorConfig::class, 'Google_Service_CloudSourceRepositories_MirrorConfig');
```
|
USS Thorn (DD-647), a , was the first ship of the United States Navy to be named for Jonathan Thorn.
Thorn was laid down on 15 November 1942 at Kearny, New Jersey, by the Federal Shipbuilding and Drydock Co.; sponsored by Mrs. Beatrice Fox Palmer and launched on 28 February 1943. The ship was commissioned on 1 April 1943 at the Brooklyn Navy Yard.
Service history
Atlantic service, May 1943 – January 1944
Following shakedown and trials out of Casco Bay, Maine, Thorn joined Destroyer Squadron 19 (DesRon 19). Between 28 May 1943 and 2 January 1944, the destroyer conducted four round-trip convoy escort mission signs on the New York–Norfolk–Casablanca route — the first trip as part of Task Force 69 (TF69) and the other three as part of TF64. On her last convoy run, she escorted two oilers to Ponta Delgada, in the Azores, in company with — the first ships to enter the port under the terms of the new agreement between the Allies and the government of Portugal.
On 3 January 1944, the day after Thorn arrived back in New York harbor, blew up and sank in Ambrose Channel, astern of Thorn. Calling away the ship's motor whaleboat, Thorn sent: a rescue party to try to recover survivors. Lt. James P. Drake, USNR, and Boatswain's Mate, First Class, E. Wells were awarded Navy and Marine Corps Medals for their bravery in the rescue of three Turner survivors, and three other men received commendation bars for their part in the operation.
Southwest Pacific service, February – September 1944
Late in January, Thorn sailed for the Pacific and transited the Panama Canal on 29 January. Ordered to report to relieve DesRon 1 in New Guinea waters, the destroyer and her sisters of Destroyer Division 37 (DesDiv 37) headed for the southwest Pacific. Thorn was detoured to Guadalcanal and Rendova Islands to escort a detached oiler group. She finally arrived at Milne Bay, New Guinea, on 29 February.
Thorn moved directly from there to Cape Sudest where, on 4 March, the destroyer embarked troops and supplies of the Army's 7th Cavalry and immediately proceeded to Los Negros Island for the invasion of the Admiralties. In addition to making three additional escort trips between Cape Sudest and Seeadler Harbor, Thorn participated in two shore bombardments of Pityilu Island, conducted antisubmarine patrols north of the Admiralties, and acted as a fighter director vessel.
On 10 April — while making a practice torpedo run during preparations for forthcoming Allied landings at Hollandia — Thorn struck an uncharted reef. Damage to her screws and shafts forced the ship back to the West Coast for an overhaul. En route home, she escorted the battleship to Bremerton, Washington. She subsequently escorted the escort carrier from the Puget Sound Navy Yard to San Francisco, California, where she eventually arrived on 22 May.
After completing her overhaul at the Hunter's Point Navy Yard, Thorn conducted refresher training and then escorted the battleship to Hawaii. She arrived at Pearl Harbor on 11 August. She then escorted the battleship to Purvis Bay, Solomon Islands, where she joined escort carrier Task Unit 32.7.1 (TU 32.7.1) and proceeded to the Palaus for the landings on 15 September. During this deployment as screen and plane guard, Thorn rescued the crews of three Grumman TBM Avenger torpedo bombers which had "ditched."
Philippines service, October – December 1944
Detached from escort duty at the end of September, Thorn joined the U.S. Seventh Fleet at Manus Island, in the Admiralties, on 3 October. As American forces massed for the initial assaults on the Japanese-occupied Philippine Islands, Thorn joined the fire support screen for TF 77. She entered Leyte Gulf on the night of 18 October and screened battleships and cruisers during their early shore bombardments.
As Allied troops swarmed ashore two days later, the destroyer provided interdiction fire at Abuyog, south of the Leyte beaches, and patrolled the southern end of Leyte Gulf for the following week. At dawn on 21 October, Thorns gunners opened fire on a Japanese Aichi D3A and sent the enemy dive bomber splashing into the sea near the transport area. On 22 October, the destroyer and the cruiser splashed another enemy aircraft.
During the fierce night action at Surigao Strait, Thorn screened the American battleships as they mauled the Japanese force coming through the strait. Originally ordered to conduct a torpedo attack on the Japanese battle line, Thorn and her mates were recalled as the Japanese retreated back south through Surigao Strait. She then formed up with the lefthand flank of cruisers and destroyers and headed south to polish off the cripples from the Japanese force. The American ships came across one Japanese destroyer and smothered it with fire which summarily dispatched it to the depths. During her 17 salvoes, Thorn observed 12 hits.
On the evening of 25 October, Thorns division received orders to lie-to off Homonhon Island, on the east side of Leyte Gulf, to conduct a torpedo attack on a Japanese force expected from the eastward. The enemy, however, had already retired into the San Bernardino Strait that afternoon, and the American destroyer unit was recalled on the 26th.
Ordered to Ulithi, Thorn departed Philippine waters to rejoin the U.S. Third Fleet in the Carolines, for duty with the Fast Carrier Task Force (then designated TF38). From 6 to 24 November Thorn participated in TF 38's strikes against Japanese targets in the Philippines, screening and planeguarding for the fast carriers. She returned to Ulithi with TG 30.8 for duty with a logistics support group. She subsequently resumed planeguarding, this time standing by escort carriers. She assisted during Typhoon Cobra on 18 December. Following this heavy storm — which sank three destroyers — Thorn searched for survivors in the storm area.
Off Japan, January – October 1945
During the carrier strikes on Lingayen in early January 1945 and the subsequent carrier raids on Japanese shipping in the South China Sea, Thorn escorted a fast oiler group for replenishment evolutions with the aircraft carriers. While returning to the Carolines, via Leyte Gulf and the Mindoro Strait, Thorn rescued the crew of a downed TBM and the pilot of a crashed fighter before arriving at Ulithi on 27 January. The destroyer again screened oilers during the operations against Iwo Jima and also entered waters near the strategic island to screen heavy fire support units. On 21 February, Thorn and learned that the escort carrier had been struck by two Japanese kamikazes, and they rushed to aid the stricken ship. However, when they searched the scene the escort carrier had already gone to the bottom.
Two days in Ulithi followed the ship's return, and, on 13 March, Thorn reformed with the U.S. 5th Fleet support group built around the cruiser for the Ryūkyū operations. On 25 March, Thorn and made depth charge attacks on a sonar contact and observed an oil slick after the last drop. They conducted a retirement search before rejoining the formation on 26 March, but could not verify that the contact had actually been a submarine.
Thorn subsequently conducted four escort missions with the replenishment group, escorting oilers into Kerama Retto to fuel the fire support ships off Okinawa and making her first run on 1 April. On the second run, Thorn observed two enemy planes splashing into the sea, victims of combat air patrol (CAP) fighters and ship gunfire. On the third, a kamikaze hit , two miles (3.7 km) astern, while another enemy kamikaze splashed alongside a nearby small patrol craft.
The destroyer then spent two weeks at Ulithi, replenishing for further operations with the logistics support group. She rejoined the oilers and supply ships at sea on 28 May. On 5 June, Thorn rode out her second major typhoon, steaming through the eye of the storm at 05:30. Two days later, she joined a group of four damaged escort aircraft carriers which were retiring to Guam.
On 4 July, soon after screening the CVEs out of the "front lines" for repairs, Thorn resumed work with the replenishment and support group and continued screening and supporting it through the surrender of Japan. During this period, she sank seven drifting mines.
Following Japan's surrender, Thorn steamed off Tokyo Bay until 9 September, when the entire group entered Sagami Wan. The next day, the support group's base was established at the Yokosuka Naval Base, where Thorn remained through the end of September.
Streaming her homeward-bound pennant, Thorn, in company with DesRon 19, steamed out of Tokyo Bay on 8 October and joined the battleships and off Wakayama the following day. On 15 October, the group sailed on the first leg of their homeward bound voyage, subsequently stopping at Singapore, Colombo, and Cape Town. The destroyer eventually arrived in New York on 7 December 1945, via St. Helena and Ascension Islands in the Atlantic. After a month's overhaul, she proceeded to Charleston, South Carolina, where she was decommissioned and placed in reserve on 6 May 1946.
Reserve and disposal
Thorn lay in reserve through the late 1940s, 1950s, and 1960s. Struck from the Navy list on 1 July 1971, the ship's hulk was authorized for use as a target and was sunk by aircraft from the aircraft carrier on 22 August 1974, approximately 75 miles (140 km) east of Jacksonville, Florida.
Several veterans of Thorn were invited to observe the SinkEx, including George D. Bailey, who had worked on Thorn'''s construction before enlisting in the Navy, and then served in her throughout the war; he observed, “I was at the birth and death of the old 647.”Thorn'' received seven battle stars for her World War II service.
References
External links
navsource.org: USS Thorn
hazegray.org: USS Thorn
USS Thorn Association website
World War II destroyers of the United States
Ships built in Kearny, New Jersey
1943 ships
Gleaves-class destroyers of the United States Navy
Ships sunk as targets
Maritime incidents in 1974
Shipwrecks in the Atlantic Ocean
|
```c#
@using System.Globalization
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling
```
|
Sarmujawa is a village of Budhimai Municipality in Rautahat District in the Madhesh Province of south-eastern Nepal. At the time of the 1991 Nepal census it had a population of 5896 people living in 1069 individual households.
References
Populated places in Rautahat District
|
Rasul Guliyev (; born 10 December 1947) was Speaker of the National Assembly of Azerbaijan from 1993 to 1996.
Biography details
Early years
Guliyev was born on December 10, 1947 in the Gazanchy village of the Nakhchivan Autonomous Republic of Azerbaijan. After completing his secondary education in 1965, he entered the Chemistry-Technology faculty of the Oil And Chemistry Institute of Azerbaijan, graduating in 1970 and gaining the profession of a technologist-engineer.
He then started working for Chemistry Plants of Azerbaijan in Sumgait. From 1971 to 1992, Guliyev worked in the Baku Oil Refinery Plant as a technologist, chief of workshop, engineer, chief engineer and the director. At the same time, he was elected a deputy to the Baku Soviet of Deputies, and a deputy to the Supreme Soviet of Azerbaijan SSR in 1990.
He was appointed the vice-president of the State Oil Company of Azerbaijan Republic (SOCAR) and on December 7, 1992 - Chief of the Main Oil and Gas Processing Office.
Political career
From 11 May 1993 to 9 November 1993, Guliyev worked as the Deputy Prime Minister of Azerbaijan. From November 1993 to November 1995, he was the Chairman of the Supreme Soviet of Azerbaijan. In 1995 Guliyev was re-elected a member of the Milli Majlis and speaker of the parliament of Azerbaijan. He resigned from the post of Speaker of Parliament on September 11, 1996.
Guliyev a reformist-democrat in terms of his economic-political views. He emigrated to the United States in 1996.
Rasul Guliyev has presented briefings to United States policy makers in numerous forums, including those sponsored by the National Democratic Institute for International Affairs, the International Republican Institute, the Tom Lantos Human Rights Commission, the Carnegie Endowment for International Peace, and the Kennan Institute of the Woodrow Wilson International Center for Scholars.
He has testified before the Commission on Security and Cooperation in Europe on the issue of Elections, Democratization and Human rights in Azerbaijan.
Prefers peace talks for the resolution of the Nagorno-Karabagh conflict. He is a supporter of defending the rights of free press and free capitalists. He is also a supporter of useful co-operation with close geographic neighbors of Azerbaijan and all countries. He considers democracy a priority in the internal policy of Azerbaijan, and peace and democracy in foreign policy.
Considers guaranteed participation of foreign investment in the Azerbaijani industry both acceptable and necessary. Possesses wide relations in international official political circles. In exile, he has been the leader of Azerbaijan Democratic Party.
During the past several years Rasul Guliyev, has devoted his efforts to writing political and historical books that reveal the realities of life in Azerbaijan today. His books have enjoyed widespread interest in the Azerbaijani diaspora forced to leave their homeland because of political persecution.
He is married and has three children.
Works and awards
Rasul Guliyev is author of a series of inventions and utilisation suggestions and has a master's degree in Technical Sciences. He has been rewarded with the honorary award of the H.Z.Taghiyev Charity Foundation for his charitable work.
Rasul Guliyev is author of the books:
Oil And Politics, U.S. 1997, .
Path To Democracy, 1997, .
Purpose Of Our Struggle.
Against The Tide,2010, , , .
The Cost of Truth 2011, , , .
''A Dissident's Destiny, 2013.
See also
Speaker of the National Assembly of Azerbaijan
Supreme Soviet of Azerbaijan
National Assembly of Azerbaijan
Politics of Azerbaijan
Foreign relations of Azerbaijan
List of political parties in Azerbaijan
References
External links
rasulguliyevblog.com
rasulguliyev.org
rasulbayram.com
acpazerbaycan.com
Chairmen of the National Assembly (Azerbaijan)
People from the Nakhchivan Autonomous Republic
1947 births
Living people
Azerbaijani Muslims
|
```java
/*
*
*
* path_to_url
*
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
*/
package com.haulmont.cuba.web.widgets.addons.dragdroplayouts;
import com.vaadin.event.Transferable;
import com.vaadin.event.dd.DropHandler;
import com.vaadin.event.dd.DropTarget;
import com.vaadin.event.dd.TargetDetails;
import com.vaadin.event.dd.TargetDetailsImpl;
import com.vaadin.server.PaintException;
import com.vaadin.server.PaintTarget;
import com.vaadin.shared.MouseEventDetails;
import com.vaadin.shared.ui.dd.VerticalDropLocation;
import com.vaadin.ui.Component;
import com.vaadin.ui.FormLayout;
import com.vaadin.ui.LegacyComponent;
import com.haulmont.cuba.web.widgets.client.addons.dragdroplayouts.ui.Constants;
import com.haulmont.cuba.web.widgets.client.addons.dragdroplayouts.ui.LayoutDragMode;
import com.haulmont.cuba.web.widgets.client.addons.dragdroplayouts.ui.formlayout.DDFormLayoutState;
import com.haulmont.cuba.web.widgets.addons.dragdroplayouts.events.LayoutBoundTransferable;
import com.haulmont.cuba.web.widgets.addons.dragdroplayouts.interfaces.*;
import java.util.Map;
/**
* Form layout with support for drag and drop
*
* @author John Ahlroos / www.jasoft.fi
* @since 0.8.0
*
*/
public class DDFormLayout extends FormLayout
implements LayoutDragSource, DropTarget, ShimSupport, LegacyComponent,
DragFilterSupport, DragImageReferenceSupport, DragGrabFilterSupport, HasDragCaptionProvider {
/**
* The drop handler which handles dropped components in the layout.
*/
private DropHandler dropHandler;
// A filter for dragging components.
private DragFilter dragFilter = DragFilter.ALL;
private DragGrabFilter dragGrabFilter;
private DragImageProvider dragImageProvider;
private DragCaptionProvider dragCaptionProvider;
@Override
public DragGrabFilter getDragGrabFilter() {
return dragGrabFilter;
}
@Override
public void setDragGrabFilter(DragGrabFilter dragGrabFilter) {
this.dragGrabFilter = dragGrabFilter;
}
@Override
public void setDragCaptionProvider(DragCaptionProvider provider) {
this.dragCaptionProvider = provider;
}
@Override
public DragCaptionProvider getDragCaptionProvider() {
return dragCaptionProvider;
}
/**
* Contains the component over which the drop was made and the index on
* which the drop was made.
*/
public class FormLayoutTargetDetails extends TargetDetailsImpl {
private Component over;
private int index = -1;
protected FormLayoutTargetDetails(Map<String, Object> rawDropData) {
super(rawDropData, DDFormLayout.this);
// Get over which component (if any) the drop was made and the
// index of it
if (getData(Constants.DROP_DETAIL_TO) != null) {
index = Integer
.valueOf(getData(Constants.DROP_DETAIL_TO).toString());
if (index >= 0 && index < components.size()) {
over = components.get(index);
}
}
// Was the drop over no specific cell
if (over == null) {
over = DDFormLayout.this;
}
}
/**
* The component over which the drop was made.
*
* @return Null if the drop was not over a component, else the component
*/
public Component getOverComponent() {
return over;
}
/**
* The index over which the drop was made. If the drop was not made over
* any component then it returns -1.
*
* @return The index of the component or -1 if over no component.
*/
public int getOverIndex() {
return index;
}
/**
* Some details about the mouse event
*
* @return details about the actual event that caused the event details.
* Practically mouse move or mouse up.
*/
public MouseEventDetails getMouseEvent() {
return MouseEventDetails.deSerialize(
(String) getData(Constants.DROP_DETAIL_MOUSE_EVENT));
}
/**
* Get the horizontal position of the dropped component within the
* underlying cell.
*
* @return The drop location
*/
public VerticalDropLocation getDropLocation() {
return VerticalDropLocation.valueOf((String) getData(
Constants.DROP_DETAIL_VERTICAL_DROP_LOCATION));
}
@Override
public Object getData(String key) {
// TODO Auto-generated method stub
return super.getData(key);
}
}
/**
* Construct a new form layout
*/
public DDFormLayout() {
super();
}
/**
* Construct a new form layout with children
*
* @param components
* the child components of the layout
*/
public DDFormLayout(Component... components) {
super(components);
}
/*
* (non-Javadoc)
*
* @see
* com.vaadin.ui.AbstractOrderedLayout#translateDropTargetDetails(java.util
* .Map)
*/
public void paintContent(PaintTarget target) throws PaintException {
if (dropHandler != null && isEnabled()) {
dropHandler.getAcceptCriterion().paint(target);
}
}
public TargetDetails translateDropTargetDetails(
Map<String, Object> clientVariables) {
return new FormLayoutTargetDetails(clientVariables);
}
/**
* Get the transferable created by a drag event.
*/
public Transferable getTransferable(Map<String, Object> rawVariables) {
return new LayoutBoundTransferable(this, rawVariables);
}
/**
* Returns the drop handler which handles drop events from dropping
* components on the layout. Returns Null if dropping is disabled.
*/
public DropHandler getDropHandler() {
return dropHandler;
}
/**
* Sets the current handler which handles dropped components on the layout.
* By setting a drop handler dropping components on the layout is enabled.
* By setting the dropHandler to null dropping is disabled.
*
* @param dropHandler
* The drop handler to handle drop events or null to disable
* dropping
*/
public void setDropHandler(DropHandler dropHandler) {
DDUtil.verifyHandlerType(this, dropHandler);
if (this.dropHandler != dropHandler) {
this.dropHandler = dropHandler;
markAsDirty();
}
}
/**
* Returns the mode of which dragging is visualized.
*
* @return
*/
public LayoutDragMode getDragMode() {
return getState().ddState.dragMode;
}
/**
* Enables dragging components from the layout.
*
* @param mode
* The mode of which how the dragging should be visualized.
*/
public void setDragMode(LayoutDragMode mode) {
getState().ddState.dragMode = mode;
}
/**
* Sets the ratio which determines how a cell is divided into drop zones.
* The ratio is measured from the top and bottom borders. For example,
* setting the ratio to 0.3 will divide the drop zone in three equal parts
* (left,middle,right). Setting the ratio to 0.5 will disable dropping in
* the middle and setting it to 0 will disable dropping at the sides.
*
* @param ratio
* A ratio between 0 and 0.5. Default is 0.2
*/
public void setComponentVerticalDropRatio(float ratio) {
if (getState().cellTopBottomDropRatio != ratio) {
if (ratio >= 0 && ratio <= 0.5) {
getState().cellTopBottomDropRatio = ratio;
} else {
throw new IllegalArgumentException(
"Ratio must be between 0 and 0.5");
}
}
}
/**
* {@inheritDoc}
*/
public void setShim(boolean shim) {
getState().ddState.iframeShims = shim;
}
/**
* {@inheritDoc}
*/
public boolean isShimmed() {
return getState().ddState.iframeShims;
}
/**
* {@inheritDoc}
*/
public DragFilter getDragFilter() {
return dragFilter;
}
/**
* {@inheritDoc}
*/
public void setDragFilter(DragFilter dragFilter) {
this.dragFilter = dragFilter;
}
@Override
public DDFormLayoutState getState() {
return (DDFormLayoutState) super.getState();
}
@Override
public void beforeClientResponse(boolean initial) {
super.beforeClientResponse(initial);
DDUtil.onBeforeClientResponse(this, getState());
}
@Override
public void changeVariables(Object source, Map<String, Object> variables) {
// TODO Auto-generated method stub
}
@Override
public void setDragImageProvider(DragImageProvider provider) {
this.dragImageProvider = provider;
markAsDirty();
}
@Override
public DragImageProvider getDragImageProvider() {
return this.dragImageProvider;
}
}
```
|
René Auguste Émile Boutegourd (1858-1932) was a French brigadier general of World War I. He commanded the 51st Reserve Division throughout the war, notably leading the division at the First Battle of the Marne.
Family
René Boutegourd was born in on 20 September 1858. His father, Jean-Baptiste Boutegourd was a native of Landunvez, had a brilliant career in the Imperial French Navy, a master gunner for line crews, military medalist, and a knight of the Legion of Honor. His grandfather was a recipient of the Saint Helena Medal. His mother was Françoise Bernicot, who was a native of Lambézellec, with her parents coming from Landéda and Bourg-Blanc. René's three brothers and sister died in infancy.
Early military career
Inspired by family tradition, René chose a military career, but unlike his father, he joined the French Army. He enlisted at the age of 18 in Brest in the 2nd Marine Infantry Regiment, which in 1901 became the 2nd Colonial Infantry Regiment. Boutegourd was promoted to corporal on 3 April 1877, with enough ambition to study at the École spéciale militaire de Saint-Cyr the same year, from which he graduated as second lieutenant on 10 October 1879. He was promoted to lieutenant in 1882.
Cochinchina Campaigns
At the beginning of the 1880s, Cochinchina was a French possession where the indigenous population retained a certain autonomy. During these years, France sought to consolidate its positions more deeply towards the interior of the country which would form the future French Indochina, which caused the French to enlist marine regiments to expand further inland. It was therefore with the 2nd Marine Infantry Regiment that he distinguished himself in the Far East between 1881 and 1886, notably by leading a column in Cambodia. In 1883, he was a lieutenant in the regiment of Tirailleurs indochinois.
He was then promoted to captain on 18 April 1885, but was wounded in action on 14 December. During the years 1886–1887, he was still in Cochinchina with the 2nd Marine Infantry Regiment. In 1890, he was transferred to Senegal to the general staff, attached to the 3rd Marine Infantry Regiment. He was made a Knight of the Legion of Honor on 20 December 1886, and an Officer of the Royal Order of Cambodia on 25 July 1887, with the latter personally awarded by King Norodom of Cambodia. Boutegourd also received the Tonkin Expedition commemorative medal during this period.
African Colonial Campaigns
He then served in Dahomey during the First Franco-Dahomean War as a member of the French chief of staff. At the end of the 19th century, the great European powers participated in the Scramble for Africa. The armies met the resistance of the indigenous populations, with the French colonial infantry engaging in these confrontations. From 1890 to 1891 he was sent and transferred to Algeria with the 3rd Marine Infantry Regiment.
By 1891, he was at the headquarters of the colonial forces at Senegal and in 1892, he was promoted to Chef de Bataillon. In 1900, he was promoted lieutenant-colonel to the . In 1904, he was promoted to colonel in the 1st Foreign Regiment in Casablanca. By 20 March 1914 he was promoted to general inspector of the 1st Military Region.
World War I
After the outbreak of World War I, on 2 August 1914, Boutegourd was given command of the 51st Infantry Division. On 7 September 1914, seven soldiers of the 327th Infantry Regiment were condemned for having abandoned their post. By the order of Brigadier General René Boutegourd, without carrying out a real investigation, the following were ordered to be executed: Barbieux, Clément (deceased on September 9 "from his wounds"), Caffiaux, Désiré Hubert (rehabilitated twelve years later and listed on the war memorial of the town of Trith-Saint-Léger, Nord), Delsarte, Dufour and Waterlot. The latter emerged unscathed from the shooting and died on the forehead on 10 June 1915. The so-called "327th arrondissement" case was the subject of a major rehabilitation campaign by the League for Human Rights, but it was unsuccessful.
In 1919, he was assigned to the 9th Military Region at Tours. He died on 3 April 1932 in Brest.
Awards
Legion of Honor
Knight (20 December 1886)
Officer (19 April 1906)
Commander (11 July 1914)
Grand Officer (6 July 1919)
Royal Order of Cambodia, Officer (25 July 1887)
Order of the Black Star, Commander
References
Bibliography
.
1858 births
1932 deaths
French military personnel of World War I
People from Finistère
French generals
Grand Officers of the Legion of Honour
Commanders of the Legion of Honour
Officers of the Legion of Honour
Knights of the Legion of Honour
|
Adoration of the Magi is a c.1516-1519 painting by Cesare da Sesto, produced during his stay in Messina. It was commissioned by the Congrega di San Niccolò dei Gentiluomini as the high altarpiece for that church. After the church was suppressed at the end of the 18th century, it joined the Bourbon collections and was taken to Naples, where it was displayed in the Quadreria of the Palazzo di Capodimonte and later the Real Museo in the former Palazzo degli Studi. It is now in the National Museum of Capodimonte in Naples.
Sources
Caio Domenico Gallo, "Annali della citta di Messina ... dal giorno di sua fondazione sino a tempi presenti" [1], Tomo I, Messina, Francesco Gaipa, 1756, p225
Giuseppe Fiumara, "Guida per la città di Messina" [2], Messina, 1841, p23
Pierluigi De Vecchi ed Elda Cerchiari, I tempi dell'arte, volume 2, Bompiani, Milano 1999.
1519 paintings
Paintings in the Museo di Capodimonte
Sesto
Italian paintings
|
```json5
{
item: {
__typename: "RelationalPost",
parent: {
__typename: "RelationalTopic",
id: 2,
author: {
__typename: "Person",
username: "Alice",
},
},
id: 15,
},
}
```
|
```c++
//
//
// path_to_url
//
// Unless required by applicable law or agreed to in writing, software
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#include "VkSurfaceKHR.hpp"
#include "Vulkan/VkDestroy.hpp"
#include "Vulkan/VkStringify.hpp"
#include <algorithm>
namespace {
static const VkSurfaceFormatKHR surfaceFormats[] = {
{ VK_FORMAT_B8G8R8A8_UNORM, VK_COLOR_SPACE_SRGB_NONLINEAR_KHR },
{ VK_FORMAT_B8G8R8A8_SRGB, VK_COLOR_SPACE_SRGB_NONLINEAR_KHR },
};
static const VkPresentModeKHR presentModes[] = {
// FIXME(b/124265819): Make present modes behave correctly. Currently we use XPutImage
// with no synchronization, which behaves more like VK_PRESENT_MODE_IMMEDIATE_KHR. We
// should convert to using the Present extension, which allows us to request presentation
// at particular msc values. Will need a similar solution on Windows - possibly interact
// with DXGI directly.
VK_PRESENT_MODE_FIFO_KHR,
VK_PRESENT_MODE_MAILBOX_KHR,
};
} // namespace
namespace vk {
VkResult PresentImage::createImage(VkDevice device, const VkImageCreateInfo &createInfo)
{
VkImage image;
VkResult status = vkCreateImage(device, &createInfo, nullptr, &image);
if(status != VK_SUCCESS)
{
return status;
}
this->image = Cast(image);
return status;
}
VkResult PresentImage::allocateAndBindImageMemory(VkDevice device, const VkMemoryAllocateInfo &allocateInfo)
{
ASSERT(image);
VkDeviceMemory deviceMemory;
VkResult status = vkAllocateMemory(device, &allocateInfo, nullptr, &deviceMemory);
if(status != VK_SUCCESS)
{
release();
return status;
}
imageMemory = Cast(deviceMemory);
vkBindImageMemory(device, *image, deviceMemory, 0);
imageStatus = AVAILABLE;
return VK_SUCCESS;
}
void PresentImage::release()
{
if(imageMemory)
{
vk::destroy(static_cast<VkDeviceMemory>(*imageMemory), nullptr);
imageMemory = nullptr;
}
if(image)
{
vk::destroy(static_cast<VkImage>(*image), nullptr);
image = nullptr;
}
imageStatus = NONEXISTENT;
}
VkImage PresentImage::asVkImage() const
{
return image ? static_cast<VkImage>(*image) : VkImage({ VK_NULL_HANDLE });
}
uint32_t SurfaceKHR::getSurfaceFormatsCount(const void *pSurfaceInfoPNext) const
{
return static_cast<uint32_t>(sizeof(surfaceFormats) / sizeof(surfaceFormats[0]));
}
VkResult SurfaceKHR::getSurfaceFormats(const void *pSurfaceInfoPNext, uint32_t *pSurfaceFormatCount, VkSurfaceFormat2KHR *pSurfaceFormats) const
{
uint32_t count = getSurfaceFormatsCount(pSurfaceInfoPNext);
uint32_t i;
for(i = 0; i < std::min(*pSurfaceFormatCount, count); i++)
{
pSurfaceFormats[i].surfaceFormat = surfaceFormats[i];
}
*pSurfaceFormatCount = i;
if(*pSurfaceFormatCount < count)
{
return VK_INCOMPLETE;
}
return VK_SUCCESS;
}
uint32_t SurfaceKHR::getPresentModeCount() const
{
return static_cast<uint32_t>(sizeof(presentModes) / sizeof(presentModes[0]));
}
VkResult SurfaceKHR::getPresentModes(uint32_t *pPresentModeCount, VkPresentModeKHR *pPresentModes) const
{
uint32_t count = getPresentModeCount();
uint32_t i;
for(i = 0; i < std::min(*pPresentModeCount, count); i++)
{
pPresentModes[i] = presentModes[i];
}
*pPresentModeCount = i;
if(*pPresentModeCount < count)
{
return VK_INCOMPLETE;
}
return VK_SUCCESS;
}
void SurfaceKHR::associateSwapchain(SwapchainKHR *swapchain)
{
associatedSwapchain = swapchain;
}
void SurfaceKHR::disassociateSwapchain()
{
associatedSwapchain = nullptr;
}
bool SurfaceKHR::hasAssociatedSwapchain()
{
return (associatedSwapchain != nullptr);
}
VkResult SurfaceKHR::getPresentRectangles(uint32_t *pRectCount, VkRect2D *pRects) const
{
if(!pRects)
{
*pRectCount = 1;
return VK_SUCCESS;
}
if(*pRectCount < 1)
{
return VK_INCOMPLETE;
}
VkSurfaceCapabilitiesKHR capabilities;
getSurfaceCapabilities(nullptr, &capabilities, nullptr);
pRects[0].offset = { 0, 0 };
pRects[0].extent = capabilities.currentExtent;
*pRectCount = 1;
return VK_SUCCESS;
}
void SurfaceKHR::setCommonSurfaceCapabilities(const void *pSurfaceInfoPNext, VkSurfaceCapabilitiesKHR *pSurfaceCapabilities, void *pSurfaceCapabilitiesPNext)
{
pSurfaceCapabilities->minImageCount = 1;
pSurfaceCapabilities->maxImageCount = 0;
pSurfaceCapabilities->maxImageArrayLayers = 1;
pSurfaceCapabilities->supportedTransforms = VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR;
pSurfaceCapabilities->currentTransform = VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR;
pSurfaceCapabilities->supportedCompositeAlpha = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR;
pSurfaceCapabilities->supportedUsageFlags =
VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT |
VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT |
VK_IMAGE_USAGE_TRANSFER_SRC_BIT |
VK_IMAGE_USAGE_TRANSFER_DST_BIT |
VK_IMAGE_USAGE_SAMPLED_BIT |
VK_IMAGE_USAGE_STORAGE_BIT;
auto *extInfo = reinterpret_cast<VkBaseOutStructure *>(pSurfaceCapabilitiesPNext);
while(extInfo)
{
switch(extInfo->sType)
{
case VK_STRUCTURE_TYPE_SURFACE_PRESENT_SCALING_CAPABILITIES_EXT:
{
// Supported scaling is per present mode, but currently that's identical for all present modes.
ASSERT(vk::GetExtendedStruct<VkSurfacePresentModeEXT>(pSurfaceInfoPNext, VK_STRUCTURE_TYPE_SURFACE_PRESENT_MODE_EXT) != nullptr);
VkSurfacePresentScalingCapabilitiesEXT *presentScalingCapabilities = reinterpret_cast<VkSurfacePresentScalingCapabilitiesEXT *>(extInfo);
presentScalingCapabilities->supportedPresentScaling = 0;
presentScalingCapabilities->supportedPresentGravityX = 0;
presentScalingCapabilities->supportedPresentGravityY = 0;
presentScalingCapabilities->minScaledImageExtent = pSurfaceCapabilities->minImageExtent;
presentScalingCapabilities->maxScaledImageExtent = pSurfaceCapabilities->maxImageExtent;
break;
}
case VK_STRUCTURE_TYPE_SURFACE_PRESENT_MODE_COMPATIBILITY_EXT:
{
VkSurfacePresentModeCompatibilityEXT *presentModeCompatibility = reinterpret_cast<VkSurfacePresentModeCompatibilityEXT *>(extInfo);
const auto *presentMode = vk::GetExtendedStruct<VkSurfacePresentModeEXT>(pSurfaceInfoPNext, VK_STRUCTURE_TYPE_SURFACE_PRESENT_MODE_EXT);
ASSERT(presentMode != nullptr);
// Present mode is ignored, so FIFO and MAILBOX are compatible.
if(presentModeCompatibility->pPresentModes == nullptr)
{
presentModeCompatibility->presentModeCount = 2;
}
else if(presentModeCompatibility->presentModeCount == 1)
{
presentModeCompatibility->pPresentModes[0] = presentMode->presentMode;
presentModeCompatibility->presentModeCount = 1;
}
else if(presentModeCompatibility->presentModeCount > 1)
{
presentModeCompatibility->pPresentModes[0] = presentModes[0];
presentModeCompatibility->pPresentModes[1] = presentModes[1];
presentModeCompatibility->presentModeCount = 2;
}
break;
}
default:
UNSUPPORTED("pSurfaceCapabilities->pNext sType = %s", vk::Stringify(extInfo->sType).c_str());
break;
}
extInfo = extInfo->pNext;
}
}
} // namespace vk
```
|
Carlos Avery (1868–1930), was an American newspaper publisher and politician in the state of Minnesota. Avery is best remembered as a longtime chief of the Minnesota Game and Fish Commission and was named the first Commissioner of the Game and Fish Commission when that position was created in August 1915. He is the namesake of the Carlos Avery Wildlife Management Area in that state.
Briefly serving as mayor of his hometown of Hutchinson, Minnesota, during the first decade of the 20th century, Avery was several times an unsuccessful candidate for high political office, losing in bids for the Minnesota State Senate in 1902, United States Congress in 1914, and for Governor of Minnesota in 1924, running as the nominee of the Democratic Party in each instance.
Biography
Early years
Carlos Avery was born in Minooka, Grundy County, Illinois on January 25, 1868. He was raised on a farm near Hutchinson, Minnesota, and attended Hutchinson High School, from which he graduated in 1887. He was the son of Franklin Carlos Avery (1846–1915), an owner of harness racing horses who was murdered by a stable boy in Florida in December 1915.
After graduation, Avery became the editor of the Hutchinson Leader, a weekly newspaper established in 1881 with a pronounced Democratic Party political orientation. Avery was not squeamish about employment of his paper as a political foil, actively participating in the Third Congressional District Editorial Association with likeminded others as early as 1898. By 1903 Avery's paper had a circulation of about 2,200 copies, earning honors from the New York City trade publication Printers' Ink as one of the best country newspapers in the United States.
The young newspaper publisher emerged as a prominent business leader in Hutchinson, helping to establish the town's first telephone company in 1897.
Avery was married to the former Emma Irene Pennoyer (1869-1962), with whom he had two children.
Democratic activist
Avery was an activist in the Minnesota Democratic Party, elected in 1898 as a vice president of the League of Democratic Clubs of Minnesota, the group's chief representative in Minnesota's 3rd Congressional District. He was a delegate from McLeod County to the June 1898 fusion convention of the Democratic Party and the Peoples Party (Populists) which nominated John Lind for Governor of Minnesota.
In November 1902, Avery ran as a Democrat in a race for a seat in the Minnesota State Senate.
Avery was elected as mayor of Hutchinson in the civic election held in April 1905.
Minnesota Game and Fish Commission chief
In January 1907, Minnesota's Democratic Governor John Albert Johnson promoted Avery from his place on the board of the Minnesota Game and Fish Commission to the role of executive agent of that body, replacing former head Sam F. Fullerton. Avery retained Fullerton in the position of superintendent of fisheries, a position recently created by the Minnesota legislature,<ref>"News in Minnesota," Mower County Transcript," Feb. 20, 1907, pg. 6.</ref> overseeing operations of the state's two fish hatcheries.
Under Avery's watch as executive agent, the Minnesota Game and Fish Commission for the first time collected data for a census of the population and distribution of deer, moose, caribou, and other big game in the state. Such information was to be put to use both for conservation and hunting purposes, according to Avery, helping to put management of the state's game population on a scientific basis. Avery also bolstered his conservationist credentials by actively seeking the construction of fish ladders at Minnesota's dams, in accordance with state law, and was aggressive in the prosecution of illegal fishermen.
Avery's term as executive agent ended at the end of 1909, and he announced that he would not seek reappointment. In his last year at the helm of the Game and Fish Commission, Avery noted that some 450 convictions were obtained for violations of the state's fish and game laws, leading to 1,365 days in jail and more than $7,200 in fines.
Avery returned for a second stint as executive agent of the Minnesota Game and Fish Commission in January 1915, appointed to the position by new Democratic Governor Winfield Scott Hammond. When the position of Commission of the Minnesota Game and Fish Commission was created by the state legislature, the new post to be launched effective August 1, 1915, Avery was appointed to a two-year term in that position by Governor Hammond. As Game and Fish Commissioner, Avery oversaw the establishment of Minnesota's first game refuges, called for by an act of the legislature, including a 20-acre parcel just north of Bemidji.
As Game and Fish Commissioner Avery also sought to bolster Minnesota's sport fisheries with the establishment of a third trout hatchery in 1915, aimed at the replenishment of dwindling natural stocks of fish in the rivers and streams of Northern Minnesota.
Political candidate
In 1914, Avery made a bid for election to United States Congress in Minnesota's 3rd Congressional District, challenging incumbent Representative Charles R. Davis. His effort proved unsuccessful, and he was appointed to a second stint at the helm of the Game and Fish Commission following his electoral defeat.
In June 1924, Avery was nominated by the Democratic Party of Minnesota as its candidate for Governor of Minnesota, heading the state party ticket. He finished a distant third, behind Republican Theodore Christianson and Farmer-Labor Party candidate Floyd B. Olson.
Later years
During his later years, Avery moved to Long Island, New York, and took a position as head of the American Game Protective and Propagation Association, with a national office in New York City. He remained at that post until the time of his death.
Death and legacy
Carlos Avery died October 4, 1930, at the age of 62.
Avery's pioneering efforts in conservation in the Upper Midwest led to President Franklin Roosevelt's designation for the Superior Forest reserve as a national game refuge in the 1930s. The Carlos Avery Wildlife Management Area, located thirty miles north of Minneapolis-St. Paul, was originally purchased by the Minnesota Conservation Commission in 1933 and was established as a WMA to support wildlife and public hunting.
See also
Carlos Avery Wildlife Management Area
Footnotes
Works
Personal and Public Record of Peter M. Ringdal, Crookston, Minn.: Democratic Candidate for Governor of Minnesota. St. Paul, MN: Carlos Avery, n.d. [1912].
"Minnesota Lakes are 'Helping Hoover' : Conservation Methods Used in Fish Production and Propagation," Western Magazine, vol. 10, no. 5 (Nov. 1917), pp. 132–137.
"Preservation and Proper Use of Our Lakes and Streams: One Important Feature of Reclamation and Conservation is Here Discussed," Western Magazine, vol. 11, no. 2 (Feb. 1918), pp. 55–65.
"Minnesota's Experiment in State Fishing," Transactions of the American Fisheries Society, vol. 48, no. 1 (1918), pp. 57–54.
"The Preservation of Wild Life," The Rotarian, vol. 18, no. 5 (May 1921), pp. 232, 286.
"In Behalf of Our Waterfowl." n.c.: n.p., 1923.
Further reading
Donald H. Ledin, The Carlos Avery Story.'' n.c.: [Carlos Avery Wildlife Refuge?], 1964.
External links
Hutchinson Leader official website
1868 births
1930 deaths
People from Hutchinson, Minnesota
American newspaper editors
Minnesota Democrats
Mayors of places in Minnesota
People from Grundy County, Illinois
|
The 2018 División Profesional season (officially the Copa de Primera TIGO-Visión Banco 2018 for sponsorship reasons) was the 84th season of top-flight professional football in Paraguay. The season began on 2 February and ended on 8 December. Cerro Porteño were the defending champions.
In the Torneo Apertura, Olimpia won their forty-first league title with two matches to spare following a 2–1 win over Libertad on 30 May. Olimpia also clinched their forty-second league title in the Torneo Clausura with two matches to spare after beating Guaraní 4–1 on 28 November.
Teams
Stadia and locations
Note: Teams occasionally play their home games at Estadio Defensores del Chaco in Asunción. Derbies between Cerro Porteño and Olimpia are also played at this stadium.
a: Deportivo Santaní played their Torneo Apertura home match against Olimpia at Estadio Antonio Aranda in Ciudad del Este instead of their regular stadium Estadio Juan José Vázquez in San Estanislao.
b: Guaraní played their home games at Estadio Defensores del Chaco in Asunción until mid-May while their regular stadium Estadio Rogelio Livieres underwent maintenance works. Guaraní played their Torneo Apertura home match against Olimpia at Estadio Antonio Aranda in Ciudad del Este.
Managerial changes
Torneo Apertura
The Campeonato de Apertura, named "Centenario del Estadio Defensores del Chaco", was the 117th official championship of the Primera División and the first championship of the 2018 season. It started on February 2 and concluded on June 10.
Standings
Results
Top goalscorers
Source: APF, Soccerway
Torneo Clausura
The Campeonato de Clausura, named "Dr. Gerónimo Angulo Gastón", was the 118th official championship of the Primera División and the second championship of the 2018 season. It started on July 17 and concluded on December 8.
Standings
Results
Top goalscorers
Source: APF , Soccerway
Aggregate table
Relegation
Relegation is determined at the end of the season by computing an average of the number of points earned per game over the past three seasons. The two teams with the lowest average were relegated to the División Intermedia for the following season.
Source: APF
References
External links
APF's official website
Paraguay
1
Paraguayan Primera División seasons
|
```go
// +build linux,!appengine
package dns
// See:
// * path_to_url and
// * path_to_url
//
// Why do we need this: When listening on 0.0.0.0 with UDP so kernel decides what is the outgoing
// interface, this might not always be the correct one. This code will make sure the egress
// packet's interface matched the ingress' one.
import (
"net"
"syscall"
)
// setUDPSocketOptions sets the UDP socket options.
// This function is implemented on a per platform basis. See udp_*.go for more details
func setUDPSocketOptions(conn *net.UDPConn) error {
sa, err := getUDPSocketName(conn)
if err != nil {
return err
}
switch sa.(type) {
case *syscall.SockaddrInet6:
v6only, err := getUDPSocketOptions6Only(conn)
if err != nil {
return err
}
setUDPSocketOptions6(conn)
if !v6only {
setUDPSocketOptions4(conn)
}
case *syscall.SockaddrInet4:
setUDPSocketOptions4(conn)
}
return nil
}
// setUDPSocketOptions4 prepares the v4 socket for sessions.
func setUDPSocketOptions4(conn *net.UDPConn) error {
file, err := conn.File()
if err != nil {
return err
}
if err := syscall.SetsockoptInt(int(file.Fd()), syscall.IPPROTO_IP, syscall.IP_PKTINFO, 1); err != nil {
file.Close()
return err
}
// Calling File() above results in the connection becoming blocking, we must fix that.
// See path_to_url
err = syscall.SetNonblock(int(file.Fd()), true)
if err != nil {
file.Close()
return err
}
file.Close()
return nil
}
// setUDPSocketOptions6 prepares the v6 socket for sessions.
func setUDPSocketOptions6(conn *net.UDPConn) error {
file, err := conn.File()
if err != nil {
return err
}
if err := syscall.SetsockoptInt(int(file.Fd()), syscall.IPPROTO_IPV6, syscall.IPV6_RECVPKTINFO, 1); err != nil {
file.Close()
return err
}
err = syscall.SetNonblock(int(file.Fd()), true)
if err != nil {
file.Close()
return err
}
file.Close()
return nil
}
// getUDPSocketOption6Only return true if the socket is v6 only and false when it is v4/v6 combined
// (dualstack).
func getUDPSocketOptions6Only(conn *net.UDPConn) (bool, error) {
file, err := conn.File()
if err != nil {
return false, err
}
// dual stack. See path_to_url
v6only, err := syscall.GetsockoptInt(int(file.Fd()), syscall.IPPROTO_IPV6, syscall.IPV6_V6ONLY)
if err != nil {
file.Close()
return false, err
}
file.Close()
return v6only == 1, nil
}
func getUDPSocketName(conn *net.UDPConn) (syscall.Sockaddr, error) {
file, err := conn.File()
if err != nil {
return nil, err
}
defer file.Close()
return syscall.Getsockname(int(file.Fd()))
}
```
|
```smalltalk
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Input.StateChanges.Events;
namespace osu.Framework.Input.StateChanges
{
/// <summary>
/// Denotes an input which was sourced from a touch event.
/// Generally used to mark when an alternate input was triggered from a touch source (ie. touch being emulated as a mouse).
/// </summary>
public interface ISourcedFromTouch : IInput
{
/// <summary>
/// The source touch event.
/// </summary>
TouchStateChangeEvent TouchEvent { get; }
}
}
```
|
```xml
export { KVMControl } from './KVMControl';
```
|
Mirror of the Polish Crown () (full title Mirror of the Polish Crown expressing the profound insults and great anxieties it receives from the Jews) is an antisemitic pamphlet published in 1618 by Sebastian Miczyński, professor of philosophy at Cracow Jagellonian University. Because this pamphlet was one of the causes of the anti-Jewish riots in Cracow, to the petition from local Jews, it was censored by Sigismund III Vasa. Despite this, the book run through numerous reprints.
In this pamphlet Jews were accused of political treachery, robbery, swindling, murder, witchcraft, and sacrilege; however religious accusations are of secondary importance. The pamphlet mainly focuses on the economic activities of the Jews and advocates the expulsion of the Jews from Poland.
References
External links
Online scanned book
Jewish Polish history
Antisemitic publications
Antisemitism in Poland
Censored books
|
```html
<html lang="en">
<head>
<title>Concept Index - GNU Compiler Collection (GCC) Internals</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="GNU Compiler Collection (GCC) Internals">
<meta name="generator" content="makeinfo 4.8">
<link title="Top" rel="start" href="index.html#Top">
<link rel="prev" href="Option-Index.html#Option-Index" title="Option Index">
<link href="path_to_url" rel="generator-home" title="Texinfo Homepage">
<!--
Permission is granted to copy, distribute and/or modify this document
any later version published by the Free Software Foundation; with the
Invariant Sections being ``Funding Free Software'', the Front-Cover
Texts being (a) (see below), and with the Back-Cover Texts being (b)
(see below). A copy of the license is included in the section entitled
(a) The FSF's Front-Cover Text is:
A GNU Manual
(b) The FSF's Back-Cover Text is:
You have freedom to copy and modify this GNU Manual, like GNU
software. Copies published by the Free Software Foundation raise
funds for GNU development.-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<p>
<a name="Concept-Index"></a>
Previous: <a rel="previous" accesskey="p" href="Option-Index.html#Option-Index">Option Index</a>,
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
<hr>
</div>
<h2 class="unnumbered">Concept Index</h2>
<ul class="index-cp" compact>
<li><a href="Multi_002dAlternative.html#index-g_t_0040samp_007b_0021_007d-in-constraint-3344">`<samp><span class="samp">!</span></samp>' in constraint</a>: <a href="Multi_002dAlternative.html#Multi_002dAlternative">Multi-Alternative</a></li>
<li><a href="Modifiers.html#index-g_t_0040samp_007b_0023_007d-in-constraint-3360">`<samp><span class="samp">#</span></samp>' in constraint</a>: <a href="Modifiers.html#Modifiers">Modifiers</a></li>
<li><a href="Output-Template.html#index-g_t_0040code_007b_0023_007d-in-template-3269"><code>#</code> in template</a>: <a href="Output-Template.html#Output-Template">Output Template</a></li>
<li><a href="Misc.html#index-g_t_0023pragma-4919"><code>#pragma</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Multi_002dAlternative.html#index-g_t_0040samp_007b_0024_007d-in-constraint-3348">`<samp><span class="samp">$</span></samp>' in constraint</a>: <a href="Multi_002dAlternative.html#Multi_002dAlternative">Multi-Alternative</a></li>
<li><a href="Modifiers.html#index-g_t_0040samp_007b_0025_007d-in-constraint-3359">`<samp><span class="samp">%</span></samp>' in constraint</a>: <a href="Modifiers.html#Modifiers">Modifiers</a></li>
<li><a href="GTY-Options.html#index-g_t_0025-in-GTY-option-5075">% in GTY option</a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Output-Template.html#index-g_t_0040samp_007b_0025_007d-in-template-3264">`<samp><span class="samp">%</span></samp>' in template</a>: <a href="Output-Template.html#Output-Template">Output Template</a></li>
<li><a href="Modifiers.html#index-g_t_0040samp_007b_0026_007d-in-constraint-3357">`<samp><span class="samp">&</span></samp>' in constraint</a>: <a href="Modifiers.html#Modifiers">Modifiers</a></li>
<li><a href="GIMPLE-API.html#index-g_t_0028-5119"><code>(</code></a>: <a href="GIMPLE-API.html#GIMPLE-API">GIMPLE API</a></li>
<li><a href="RTL-Objects.html#index-g_t_0028nil_0029-2547">(nil)</a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="Modifiers.html#index-g_t_0040samp_007b_002a_007d-in-constraint-3361">`<samp><span class="samp">*</span></samp>' in constraint</a>: <a href="Modifiers.html#Modifiers">Modifiers</a></li>
<li><a href="Output-Statement.html#index-g_t_0040code_007b_002a_007d-in-template-3273"><code>*</code> in template</a>: <a href="Output-Statement.html#Output-Statement">Output Statement</a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fasm_005fvec-2204"><code>*gimple_build_asm_vec</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fassign-2220"><code>*gimple_build_assign</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fbind-2239"><code>*gimple_build_bind</code></a>: <a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e"><code>GIMPLE_BIND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fcall-2250"><code>*gimple_build_call</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fcall_005ffrom_005ftree-2251"><code>*gimple_build_call_from_tree</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fcall_005fvec-2252"><code>*gimple_build_call_vec</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fcatch-2272"><code>*gimple_build_catch</code></a>: <a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e"><code>GIMPLE_CATCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fcond-2279"><code>*gimple_build_cond</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fcond_005ffrom_005ftree-2280"><code>*gimple_build_cond_from_tree</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fdebug_005fbind-2295"><code>*gimple_build_debug_bind</code></a>: <a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e"><code>GIMPLE_DEBUG</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005feh_005ffilter-2304"><code>*gimple_build_eh_filter</code></a>: <a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e"><code>GIMPLE_EH_FILTER</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fgoto-2317"><code>*gimple_build_goto</code></a>: <a href="_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e"><code>GIMPLE_GOTO</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005flabel-2313"><code>*gimple_build_label</code></a>: <a href="_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e"><code>GIMPLE_LABEL</code></a></li>
<li><a href=your_sha256_hash03e.html#index-g_t_002agimple_005fbuild_005fomp_005fatomic_005fload-2324"><code>*gimple_build_omp_atomic_load</code></a>: <a href=your_sha256_hash03e.html#your_sha256_hashe_003e"><code>GIMPLE_OMP_ATOMIC_LOAD</code></a></li>
<li><a href=your_sha256_hash003e.html#your_sha256_hash><code>*gimple_build_omp_atomic_store</code></a>: <a href=your_sha256_hash003e.html#your_sha256_hashde_003e"><code>GIMPLE_OMP_ATOMIC_STORE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fomp_005fcontinue-2334"><code>*gimple_build_omp_continue</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e"><code>GIMPLE_OMP_CONTINUE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fomp_005fcritical-2342"><code>*gimple_build_omp_critical</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e"><code>GIMPLE_OMP_CRITICAL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fomp_005ffor-2347"><code>*gimple_build_omp_for</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fomp_005fparallel-2372"><code>*gimple_build_omp_parallel</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fomp_005fsections-2395"><code>*gimple_build_omp_sections</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e"><code>GIMPLE_OMP_SECTIONS</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fomp_005fsingle-2404"><code>*gimple_build_omp_single</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e"><code>GIMPLE_OMP_SINGLE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fresx-2417"><code>*gimple_build_resx</code></a>: <a href="_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e"><code>GIMPLE_RESX</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005freturn-2421"><code>*gimple_build_return</code></a>: <a href="_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e"><code>GIMPLE_RETURN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005fswitch-2425"><code>*gimple_build_switch</code></a>: <a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e"><code>GIMPLE_SWITCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#index-g_t_002agimple_005fbuild_005ftry-2435"><code>*gimple_build_try</code></a>: <a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e"><code>GIMPLE_TRY</code></a></li>
<li><a href="Modifiers.html#index-g_t_0040samp_007b_002b_007d-in-constraint-3356">`<samp><span class="samp">+</span></samp>' in constraint</a>: <a href="Modifiers.html#Modifiers">Modifiers</a></li>
<li><a href="Anchored-Addresses.html#index-g_t_0040option_007b_002dfsection_002danchors_007d-4422"><samp><span class="option">-fsection-anchors</span></samp></a>: <a href="Anchored-Addresses.html#Anchored-Addresses">Anchored Addresses</a></li>
<li><a href="Special-Accessors.html#index-g_t_0040option_007b_002dfsection_002danchors_007d-2597"><samp><span class="option">-fsection-anchors</span></samp></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Flags.html#index-g_t_0040samp_007b_002fc_007d-in-RTL-dump-2713">`<samp><span class="samp">/c</span></samp>' in RTL dump</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-g_t_0040samp_007b_002ff_007d-in-RTL-dump-2715">`<samp><span class="samp">/f</span></samp>' in RTL dump</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-g_t_0040samp_007b_002fi_007d-in-RTL-dump-2719">`<samp><span class="samp">/i</span></samp>' in RTL dump</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-g_t_0040samp_007b_002fj_007d-in-RTL-dump-2721">`<samp><span class="samp">/j</span></samp>' in RTL dump</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-g_t_0040samp_007b_002fs_007d-in-RTL-dump-2717">`<samp><span class="samp">/s</span></samp>' in RTL dump</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-g_t_0040samp_007b_002fu_007d-in-RTL-dump-2723">`<samp><span class="samp">/u</span></samp>' in RTL dump</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-g_t_0040samp_007b_002fv_007d-in-RTL-dump-2726">`<samp><span class="samp">/v</span></samp>' in RTL dump</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007b0_007d-in-constraint-3328">`<samp><span class="samp">0</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007b_003c_007d-in-constraint-3313">`<samp><span class="samp"><</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Modifiers.html#index-g_t_0040samp_007b_003d_007d-in-constraint-3355">`<samp><span class="samp">=</span></samp>' in constraint</a>: <a href="Modifiers.html#Modifiers">Modifiers</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007b_003e_007d-in-constraint-3314">`<samp><span class="samp">></span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Multi_002dAlternative.html#index-g_t_0040samp_007b_003f_007d-in-constraint-3342">`<samp><span class="samp">?</span></samp>' in constraint</a>: <a href="Multi_002dAlternative.html#Multi_002dAlternative">Multi-Alternative</a></li>
<li><a href="Output-Template.html#index-g_t_005c-3266">\</a>: <a href="Output-Template.html#Output-Template">Output Template</a></li>
<li><a href="Multi_002dAlternative.html#index-g_t_0040samp_007b_005e_007d-in-constraint-3346">`<samp><span class="samp">^</span></samp>' in constraint</a>: <a href="Multi_002dAlternative.html#Multi_002dAlternative">Multi-Alternative</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fabsvdi2-50"><code>__absvdi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fabsvsi2-49"><code>__absvsi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005faddda3-388"><code>__addda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fadddf3-80"><code>__adddf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fadddq3-381"><code>__adddq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005faddha3-386"><code>__addha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005faddhq3-379"><code>__addhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005faddqq3-378"><code>__addqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005faddsa3-387"><code>__addsa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005faddsf3-79"><code>__addsf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005faddsq3-380"><code>__addsq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005faddta3-389"><code>__addta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005faddtf3-81"><code>__addtf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fadduda3-392"><code>__adduda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005faddudq3-385"><code>__addudq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fadduha3-390"><code>__adduha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fadduhq3-383"><code>__adduhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fadduqq3-382"><code>__adduqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005faddusa3-391"><code>__addusa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005faddusq3-384"><code>__addusq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fadduta3-393"><code>__adduta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005faddvdi3-52"><code>__addvdi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005faddvsi3-51"><code>__addvsi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005faddxf3-82"><code>__addxf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashlda3-548"><code>__ashlda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fashldi3-18"><code>__ashldi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashldq3-541"><code>__ashldq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashlha3-546"><code>__ashlha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashlhq3-539"><code>__ashlhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashlqq3-538"><code>__ashlqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashlsa3-547"><code>__ashlsa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fashlsi3-17"><code>__ashlsi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashlsq3-540"><code>__ashlsq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashlta3-549"><code>__ashlta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fashlti3-19"><code>__ashlti3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashluda3-552"><code>__ashluda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashludq3-545"><code>__ashludq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashluha3-550"><code>__ashluha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashluhq3-543"><code>__ashluhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashluqq3-542"><code>__ashluqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashlusa3-551"><code>__ashlusa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashlusq3-544"><code>__ashlusq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashluta3-553"><code>__ashluta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashrda3-560"><code>__ashrda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fashrdi3-21"><code>__ashrdi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashrdq3-557"><code>__ashrdq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashrha3-558"><code>__ashrha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashrhq3-555"><code>__ashrhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashrqq3-554"><code>__ashrqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashrsa3-559"><code>__ashrsa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fashrsi3-20"><code>__ashrsi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashrsq3-556"><code>__ashrsq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fashrta3-561"><code>__ashrta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fashrti3-22"><code>__ashrti3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fadddd3-198"><code>__bid_adddd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005faddsd3-196"><code>__bid_addsd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005faddtd3-200"><code>__bid_addtd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fdivdd3-216"><code>__bid_divdd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fdivsd3-214"><code>__bid_divsd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fdivtd3-218"><code>__bid_divtd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005feqdd2-342"><code>__bid_eqdd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005feqsd2-340"><code>__bid_eqsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005feqtd2-344"><code>__bid_eqtd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendddtd2-230"><code>__bid_extendddtd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendddtf-272"><code>__bid_extendddtf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendddxf-266"><code>__bid_extendddxf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextenddfdd-276"><code>__bid_extenddfdd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextenddftd-242"><code>__bid_extenddftd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendsddd2-226"><code>__bid_extendsddd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendsddf-260"><code>__bid_extendsddf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendsdtd2-228"><code>__bid_extendsdtd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendsdtf-270"><code>__bid_extendsdtf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendsdxf-264"><code>__bid_extendsdxf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendsfdd-238"><code>__bid_extendsfdd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendsfsd-274"><code>__bid_extendsfsd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendsftd-240"><code>__bid_extendsftd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendtftd-278"><code>__bid_extendtftd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fextendxftd-244"><code>__bid_extendxftd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixdddi-294"><code>__bid_fixdddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixddsi-288"><code>__bid_fixddsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixsddi-292"><code>__bid_fixsddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixsdsi-286"><code>__bid_fixsdsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixtddi-296"><code>__bid_fixtddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixtdsi-290"><code>__bid_fixtdsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixunsdddi-306"><code>__bid_fixunsdddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixunsddsi-300"><code>__bid_fixunsddsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixunssddi-304"><code>__bid_fixunssddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixunssdsi-298"><code>__bid_fixunssdsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixunstddi-308"><code>__bid_fixunstddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffixunstdsi-302"><code>__bid_fixunstdsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatdidd-318"><code>__bid_floatdidd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatdisd-316"><code>__bid_floatdisd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatditd-320"><code>__bid_floatditd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatsidd-312"><code>__bid_floatsidd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatsisd-310"><code>__bid_floatsisd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatsitd-314"><code>__bid_floatsitd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatunsdidd-330"><code>__bid_floatunsdidd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatunsdisd-328"><code>__bid_floatunsdisd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatunsditd-332"><code>__bid_floatunsditd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatunssidd-324"><code>__bid_floatunssidd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatunssisd-322"><code>__bid_floatunssisd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ffloatunssitd-326"><code>__bid_floatunssitd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fgedd2-354"><code>__bid_gedd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fgesd2-352"><code>__bid_gesd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fgetd2-356"><code>__bid_getd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fgtdd2-372"><code>__bid_gtdd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fgtsd2-370"><code>__bid_gtsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fgttd2-374"><code>__bid_gttd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fledd2-366"><code>__bid_ledd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005flesd2-364"><code>__bid_lesd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fletd2-368"><code>__bid_letd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fltdd2-360"><code>__bid_ltdd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fltsd2-358"><code>__bid_ltsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005flttd2-362"><code>__bid_lttd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fmuldd3-210"><code>__bid_muldd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fmulsd3-208"><code>__bid_mulsd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fmultd3-212"><code>__bid_multd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fnedd2-348"><code>__bid_nedd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fnegdd2-222"><code>__bid_negdd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fnegsd2-220"><code>__bid_negsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fnegtd2-224"><code>__bid_negtd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fnesd2-346"><code>__bid_nesd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fnetd2-350"><code>__bid_netd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fsubdd3-204"><code>__bid_subdd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fsubsd3-202"><code>__bid_subsd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005fsubtd3-206"><code>__bid_subtd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftruncdddf-282"><code>__bid_truncdddf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftruncddsd2-232"><code>__bid_truncddsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftruncddsf-256"><code>__bid_truncddsf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftruncdfsd-246"><code>__bid_truncdfsd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftruncsdsf-280"><code>__bid_truncsdsf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftrunctddd2-236"><code>__bid_trunctddd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftrunctddf-262"><code>__bid_trunctddf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftrunctdsd2-234"><code>__bid_trunctdsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftrunctdsf-258"><code>__bid_trunctdsf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftrunctdtf-284"><code>__bid_trunctdtf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftrunctdxf-268"><code>__bid_trunctdxf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftrunctfdd-254"><code>__bid_trunctfdd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftrunctfsd-250"><code>__bid_trunctfsd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftruncxfdd-252"><code>__bid_truncxfdd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005ftruncxfsd-248"><code>__bid_truncxfsd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005funorddd2-336"><code>__bid_unorddd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005funordsd2-334"><code>__bid_unordsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fbid_005funordtd2-338"><code>__bid_unordtd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fbswapdi2-74"><code>__bswapdi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fbswapsi2-73"><code>__bswapsi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Varargs.html#index-g_t_005f_005fbuiltin_005fclassify_005ftype-4330"><code>__builtin_classify_type</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Varargs.html#index-g_t_005f_005fbuiltin_005fnext_005farg-4329"><code>__builtin_next_arg</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Varargs.html#index-g_t_005f_005fbuiltin_005fsaveregs-4328"><code>__builtin_saveregs</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Misc.html#index-g_t_005f_005fchkp_005fbndcl-4949"><code>__chkp_bndcl</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-g_t_005f_005fchkp_005fbndcu-4950"><code>__chkp_bndcu</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-g_t_005f_005fchkp_005fbndldx-4948"><code>__chkp_bndldx</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-g_t_005f_005fchkp_005fbndmk-4946"><code>__chkp_bndmk</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-g_t_005f_005fchkp_005fbndret-4951"><code>__chkp_bndret</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-g_t_005f_005fchkp_005fbndstx-4947"><code>__chkp_bndstx</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-g_t_005f_005fchkp_005fintersect-4952"><code>__chkp_intersect</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-g_t_005f_005fchkp_005fnarrow-4953"><code>__chkp_narrow</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-g_t_005f_005fchkp_005fsizeof-4954"><code>__chkp_sizeof</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Miscellaneous-routines.html#index-g_t_005f_005fclear_005fcache-1657"><code>__clear_cache</code></a>: <a href="Miscellaneous-routines.html#Miscellaneous-routines">Miscellaneous routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fclzdi2-60"><code>__clzdi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fclzsi2-59"><code>__clzsi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fclzti2-61"><code>__clzti2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpda2-595"><code>__cmpda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fcmpdf2-158"><code>__cmpdf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fcmpdi2-45"><code>__cmpdi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpdq2-588"><code>__cmpdq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpha2-593"><code>__cmpha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmphq2-586"><code>__cmphq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpqq2-585"><code>__cmpqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpsa2-594"><code>__cmpsa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fcmpsf2-157"><code>__cmpsf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpsq2-587"><code>__cmpsq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpta2-596"><code>__cmpta2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fcmptf2-159"><code>__cmptf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fcmpti2-46"><code>__cmpti2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpuda2-599"><code>__cmpuda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpudq2-592"><code>__cmpudq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpuha2-597"><code>__cmpuha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpuhq2-590"><code>__cmpuhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpuqq2-589"><code>__cmpuqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpusa2-598"><code>__cmpusa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmpusq2-591"><code>__cmpusq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fcmputa2-600"><code>__cmputa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Initialization.html#index-g_t_005f_005fCTOR_005fLIST_005f_005f-4668"><code>__CTOR_LIST__</code></a>: <a href="Initialization.html#Initialization">Initialization</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fctzdi2-63"><code>__ctzdi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fctzsi2-62"><code>__ctzsi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fctzti2-64"><code>__ctzti2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fdivda3-480"><code>__divda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fdivdc3-190"><code>__divdc3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fdivdf3-92"><code>__divdf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fdivdi3-24"><code>__divdi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fdivdq3-477"><code>__divdq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fdivha3-478"><code>__divha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fdivhq3-475"><code>__divhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fdivqq3-474"><code>__divqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fdivsa3-479"><code>__divsa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fdivsc3-189"><code>__divsc3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fdivsf3-91"><code>__divsf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fdivsi3-23"><code>__divsi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fdivsq3-476"><code>__divsq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fdivta3-481"><code>__divta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fdivtc3-191"><code>__divtc3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fdivtf3-93"><code>__divtf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fdivti3-25"><code>__divti3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fdivxc3-192"><code>__divxc3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fdivxf3-94"><code>__divxf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fadddd3-197"><code>__dpd_adddd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005faddsd3-195"><code>__dpd_addsd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005faddtd3-199"><code>__dpd_addtd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fdivdd3-215"><code>__dpd_divdd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fdivsd3-213"><code>__dpd_divsd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fdivtd3-217"><code>__dpd_divtd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005feqdd2-341"><code>__dpd_eqdd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005feqsd2-339"><code>__dpd_eqsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005feqtd2-343"><code>__dpd_eqtd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendddtd2-229"><code>__dpd_extendddtd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendddtf-271"><code>__dpd_extendddtf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendddxf-265"><code>__dpd_extendddxf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextenddfdd-275"><code>__dpd_extenddfdd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextenddftd-241"><code>__dpd_extenddftd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendsddd2-225"><code>__dpd_extendsddd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendsddf-259"><code>__dpd_extendsddf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendsdtd2-227"><code>__dpd_extendsdtd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendsdtf-269"><code>__dpd_extendsdtf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendsdxf-263"><code>__dpd_extendsdxf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendsfdd-237"><code>__dpd_extendsfdd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendsfsd-273"><code>__dpd_extendsfsd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendsftd-239"><code>__dpd_extendsftd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendtftd-277"><code>__dpd_extendtftd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fextendxftd-243"><code>__dpd_extendxftd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixdddi-293"><code>__dpd_fixdddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixddsi-287"><code>__dpd_fixddsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixsddi-291"><code>__dpd_fixsddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixsdsi-285"><code>__dpd_fixsdsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixtddi-295"><code>__dpd_fixtddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixtdsi-289"><code>__dpd_fixtdsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixunsdddi-305"><code>__dpd_fixunsdddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixunsddsi-299"><code>__dpd_fixunsddsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixunssddi-303"><code>__dpd_fixunssddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixunssdsi-297"><code>__dpd_fixunssdsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixunstddi-307"><code>__dpd_fixunstddi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffixunstdsi-301"><code>__dpd_fixunstdsi</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatdidd-317"><code>__dpd_floatdidd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatdisd-315"><code>__dpd_floatdisd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatditd-319"><code>__dpd_floatditd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatsidd-311"><code>__dpd_floatsidd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatsisd-309"><code>__dpd_floatsisd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatsitd-313"><code>__dpd_floatsitd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatunsdidd-329"><code>__dpd_floatunsdidd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatunsdisd-327"><code>__dpd_floatunsdisd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatunsditd-331"><code>__dpd_floatunsditd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatunssidd-323"><code>__dpd_floatunssidd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatunssisd-321"><code>__dpd_floatunssisd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ffloatunssitd-325"><code>__dpd_floatunssitd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fgedd2-353"><code>__dpd_gedd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fgesd2-351"><code>__dpd_gesd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fgetd2-355"><code>__dpd_getd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fgtdd2-371"><code>__dpd_gtdd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fgtsd2-369"><code>__dpd_gtsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fgttd2-373"><code>__dpd_gttd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fledd2-365"><code>__dpd_ledd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005flesd2-363"><code>__dpd_lesd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fletd2-367"><code>__dpd_letd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fltdd2-359"><code>__dpd_ltdd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fltsd2-357"><code>__dpd_ltsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005flttd2-361"><code>__dpd_lttd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fmuldd3-209"><code>__dpd_muldd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fmulsd3-207"><code>__dpd_mulsd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fmultd3-211"><code>__dpd_multd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fnedd2-347"><code>__dpd_nedd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fnegdd2-221"><code>__dpd_negdd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fnegsd2-219"><code>__dpd_negsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fnegtd2-223"><code>__dpd_negtd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fnesd2-345"><code>__dpd_nesd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fnetd2-349"><code>__dpd_netd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fsubdd3-203"><code>__dpd_subdd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fsubsd3-201"><code>__dpd_subsd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005fsubtd3-205"><code>__dpd_subtd3</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftruncdddf-281"><code>__dpd_truncdddf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftruncddsd2-231"><code>__dpd_truncddsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftruncddsf-255"><code>__dpd_truncddsf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftruncdfsd-245"><code>__dpd_truncdfsd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftruncsdsf-279"><code>__dpd_truncsdsf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftrunctddd2-235"><code>__dpd_trunctddd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftrunctddf-261"><code>__dpd_trunctddf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftrunctdsd2-233"><code>__dpd_trunctdsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftrunctdsf-257"><code>__dpd_trunctdsf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftrunctdtf-283"><code>__dpd_trunctdtf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftrunctdxf-267"><code>__dpd_trunctdxf</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftrunctfdd-253"><code>__dpd_trunctfdd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftrunctfsd-249"><code>__dpd_trunctfsd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftruncxfdd-251"><code>__dpd_truncxfdd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005ftruncxfsd-247"><code>__dpd_truncxfsd</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005funorddd2-335"><code>__dpd_unorddd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005funordsd2-333"><code>__dpd_unordsd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Decimal-float-library-routines.html#index-g_t_005f_005fdpd_005funordtd2-337"><code>__dpd_unordtd2</code></a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Initialization.html#index-g_t_005f_005fDTOR_005fLIST_005f_005f-4669"><code>__DTOR_LIST__</code></a>: <a href="Initialization.html#Initialization">Initialization</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005feqdf2-164"><code>__eqdf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005feqsf2-163"><code>__eqsf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005feqtf2-165"><code>__eqtf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fextenddftf2-102"><code>__extenddftf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fextenddfxf2-103"><code>__extenddfxf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fextendsfdf2-99"><code>__extendsfdf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fextendsftf2-100"><code>__extendsftf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fextendsfxf2-101"><code>__extendsfxf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fffsdi2-65"><code>__ffsdi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fffsti2-66"><code>__ffsti2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixdfdi-114"><code>__fixdfdi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixdfsi-110"><code>__fixdfsi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixdfti-118"><code>__fixdfti</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixsfdi-113"><code>__fixsfdi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixsfsi-109"><code>__fixsfsi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixsfti-117"><code>__fixsfti</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixtfdi-115"><code>__fixtfdi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixtfsi-111"><code>__fixtfsi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixtfti-119"><code>__fixtfti</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunsdfdi-126"><code>__fixunsdfdi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunsdfsi-122"><code>__fixunsdfsi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunsdfti-130"><code>__fixunsdfti</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunssfdi-125"><code>__fixunssfdi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunssfsi-121"><code>__fixunssfsi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunssfti-129"><code>__fixunssfti</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunstfdi-127"><code>__fixunstfdi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunstfsi-123"><code>__fixunstfsi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunstfti-131"><code>__fixunstfti</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunsxfdi-128"><code>__fixunsxfdi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunsxfsi-124"><code>__fixunsxfsi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixunsxfti-132"><code>__fixunsxfti</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixxfdi-116"><code>__fixxfdi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixxfsi-112"><code>__fixxfsi</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffixxfti-120"><code>__fixxfti</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatdidf-138"><code>__floatdidf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatdisf-137"><code>__floatdisf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatditf-139"><code>__floatditf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatdixf-140"><code>__floatdixf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatsidf-134"><code>__floatsidf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatsisf-133"><code>__floatsisf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatsitf-135"><code>__floatsitf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatsixf-136"><code>__floatsixf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloattidf-142"><code>__floattidf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloattisf-141"><code>__floattisf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloattitf-143"><code>__floattitf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloattixf-144"><code>__floattixf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatundidf-150"><code>__floatundidf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatundisf-149"><code>__floatundisf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatunditf-151"><code>__floatunditf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatundixf-152"><code>__floatundixf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatunsidf-146"><code>__floatunsidf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatunsisf-145"><code>__floatunsisf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatunsitf-147"><code>__floatunsitf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatunsixf-148"><code>__floatunsixf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatuntidf-154"><code>__floatuntidf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatuntisf-153"><code>__floatuntisf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatuntitf-155"><code>__floatuntitf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ffloatuntixf-156"><code>__floatuntixf</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdadf-754"><code>__fractdadf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdadi-751"><code>__fractdadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdadq-736"><code>__fractdadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdaha2-737"><code>__fractdaha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdahi-749"><code>__fractdahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdahq-734"><code>__fractdahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdaqi-748"><code>__fractdaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdaqq-733"><code>__fractdaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdasa2-738"><code>__fractdasa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdasf-753"><code>__fractdasf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdasi-750"><code>__fractdasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdasq-735"><code>__fractdasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdata2-739"><code>__fractdata2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdati-752"><code>__fractdati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdauda-746"><code>__fractdauda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdaudq-743"><code>__fractdaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdauha-744"><code>__fractdauha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdauhq-741"><code>__fractdauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdauqq-740"><code>__fractdauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdausa-745"><code>__fractdausa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdausq-742"><code>__fractdausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdauta-747"><code>__fractdauta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfda-1055"><code>__fractdfda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfdq-1052"><code>__fractdfdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfha-1053"><code>__fractdfha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfhq-1050"><code>__fractdfhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfqq-1049"><code>__fractdfqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfsa-1054"><code>__fractdfsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfsq-1051"><code>__fractdfsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfta-1056"><code>__fractdfta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfuda-1063"><code>__fractdfuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfudq-1060"><code>__fractdfudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfuha-1061"><code>__fractdfuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfuhq-1058"><code>__fractdfuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfuqq-1057"><code>__fractdfuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfusa-1062"><code>__fractdfusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfusq-1059"><code>__fractdfusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdfuta-1064"><code>__fractdfuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdida-1007"><code>__fractdida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdidq-1004"><code>__fractdidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdiha-1005"><code>__fractdiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdihq-1002"><code>__fractdihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdiqq-1001"><code>__fractdiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdisa-1006"><code>__fractdisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdisq-1003"><code>__fractdisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdita-1008"><code>__fractdita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdiuda-1015"><code>__fractdiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdiudq-1012"><code>__fractdiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdiuha-1013"><code>__fractdiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdiuhq-1010"><code>__fractdiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdiuqq-1009"><code>__fractdiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdiusa-1014"><code>__fractdiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdiusq-1011"><code>__fractdiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdiuta-1016"><code>__fractdiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqda-672"><code>__fractdqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqdf-688"><code>__fractdqdf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqdi-685"><code>__fractdqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqha-670"><code>__fractdqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqhi-683"><code>__fractdqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqhq2-668"><code>__fractdqhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqqi-682"><code>__fractdqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqqq2-667"><code>__fractdqqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqsa-671"><code>__fractdqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqsf-687"><code>__fractdqsf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqsi-684"><code>__fractdqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqsq2-669"><code>__fractdqsq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqta-673"><code>__fractdqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqti-686"><code>__fractdqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdquda-680"><code>__fractdquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqudq-677"><code>__fractdqudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdquha-678"><code>__fractdquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdquhq-675"><code>__fractdquhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdquqq-674"><code>__fractdquqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqusa-679"><code>__fractdqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdqusq-676"><code>__fractdqusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractdquta-681"><code>__fractdquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthada2-694"><code>__fracthada2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthadf-710"><code>__fracthadf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthadi-707"><code>__fracthadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthadq-692"><code>__fracthadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthahi-705"><code>__fracthahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthahq-690"><code>__fracthahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthaqi-704"><code>__fracthaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthaqq-689"><code>__fracthaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthasa2-693"><code>__fracthasa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthasf-709"><code>__fracthasf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthasi-706"><code>__fracthasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthasq-691"><code>__fracthasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthata2-695"><code>__fracthata2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthati-708"><code>__fracthati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthauda-702"><code>__fracthauda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthaudq-699"><code>__fracthaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthauha-700"><code>__fracthauha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthauhq-697"><code>__fracthauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthauqq-696"><code>__fracthauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthausa-701"><code>__fracthausa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthausq-698"><code>__fracthausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthauta-703"><code>__fracthauta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthida-975"><code>__fracthida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthidq-972"><code>__fracthidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthiha-973"><code>__fracthiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthihq-970"><code>__fracthihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthiqq-969"><code>__fracthiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthisa-974"><code>__fracthisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthisq-971"><code>__fracthisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthita-976"><code>__fracthita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthiuda-983"><code>__fracthiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthiudq-980"><code>__fracthiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthiuha-981"><code>__fracthiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthiuhq-978"><code>__fracthiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthiuqq-977"><code>__fracthiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthiusa-982"><code>__fracthiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthiusq-979"><code>__fracthiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthiuta-984"><code>__fracthiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqda-628"><code>__fracthqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqdf-644"><code>__fracthqdf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqdi-641"><code>__fracthqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqdq2-625"><code>__fracthqdq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqha-626"><code>__fracthqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqhi-639"><code>__fracthqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqqi-638"><code>__fracthqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqqq2-623"><code>__fracthqqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqsa-627"><code>__fracthqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqsf-643"><code>__fracthqsf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqsi-640"><code>__fracthqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqsq2-624"><code>__fracthqsq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqta-629"><code>__fracthqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqti-642"><code>__fracthqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthquda-636"><code>__fracthquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqudq-633"><code>__fracthqudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthquha-634"><code>__fracthquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthquhq-631"><code>__fracthquhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthquqq-630"><code>__fracthquqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqusa-635"><code>__fracthqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthqusq-632"><code>__fracthqusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracthquta-637"><code>__fracthquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqida-959"><code>__fractqida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqidq-956"><code>__fractqidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqiha-957"><code>__fractqiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqihq-954"><code>__fractqihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqiqq-953"><code>__fractqiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqisa-958"><code>__fractqisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqisq-955"><code>__fractqisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqita-960"><code>__fractqita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqiuda-967"><code>__fractqiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqiudq-964"><code>__fractqiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqiuha-965"><code>__fractqiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqiuhq-962"><code>__fractqiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqiuqq-961"><code>__fractqiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqiusa-966"><code>__fractqiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqiusq-963"><code>__fractqiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqiuta-968"><code>__fractqiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqda-606"><code>__fractqqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqdf-622"><code>__fractqqdf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqdi-619"><code>__fractqqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqdq2-603"><code>__fractqqdq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqha-604"><code>__fractqqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqhi-617"><code>__fractqqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqhq2-601"><code>__fractqqhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqqi-616"><code>__fractqqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqsa-605"><code>__fractqqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqsf-621"><code>__fractqqsf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqsi-618"><code>__fractqqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqsq2-602"><code>__fractqqsq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqta-607"><code>__fractqqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqti-620"><code>__fractqqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqquda-614"><code>__fractqquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqudq-611"><code>__fractqqudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqquha-612"><code>__fractqquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqquhq-609"><code>__fractqquhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqquqq-608"><code>__fractqquqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqusa-613"><code>__fractqqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqqusq-610"><code>__fractqqusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractqquta-615"><code>__fractqquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsada2-716"><code>__fractsada2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsadf-732"><code>__fractsadf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsadi-729"><code>__fractsadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsadq-714"><code>__fractsadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsaha2-715"><code>__fractsaha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsahi-727"><code>__fractsahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsahq-712"><code>__fractsahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsaqi-726"><code>__fractsaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsaqq-711"><code>__fractsaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsasf-731"><code>__fractsasf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsasi-728"><code>__fractsasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsasq-713"><code>__fractsasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsata2-717"><code>__fractsata2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsati-730"><code>__fractsati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsauda-724"><code>__fractsauda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsaudq-721"><code>__fractsaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsauha-722"><code>__fractsauha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsauhq-719"><code>__fractsauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsauqq-718"><code>__fractsauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsausa-723"><code>__fractsausa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsausq-720"><code>__fractsausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsauta-725"><code>__fractsauta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfda-1039"><code>__fractsfda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfdq-1036"><code>__fractsfdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfha-1037"><code>__fractsfha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfhq-1034"><code>__fractsfhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfqq-1033"><code>__fractsfqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfsa-1038"><code>__fractsfsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfsq-1035"><code>__fractsfsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfta-1040"><code>__fractsfta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfuda-1047"><code>__fractsfuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfudq-1044"><code>__fractsfudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfuha-1045"><code>__fractsfuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfuhq-1042"><code>__fractsfuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfuqq-1041"><code>__fractsfuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfusa-1046"><code>__fractsfusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfusq-1043"><code>__fractsfusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsfuta-1048"><code>__fractsfuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsida-991"><code>__fractsida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsidq-988"><code>__fractsidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsiha-989"><code>__fractsiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsihq-986"><code>__fractsihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsiqq-985"><code>__fractsiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsisa-990"><code>__fractsisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsisq-987"><code>__fractsisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsita-992"><code>__fractsita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsiuda-999"><code>__fractsiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsiudq-996"><code>__fractsiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsiuha-997"><code>__fractsiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsiuhq-994"><code>__fractsiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsiuqq-993"><code>__fractsiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsiusa-998"><code>__fractsiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsiusq-995"><code>__fractsiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsiuta-1000"><code>__fractsiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqda-650"><code>__fractsqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqdf-666"><code>__fractsqdf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqdi-663"><code>__fractsqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqdq2-647"><code>__fractsqdq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqha-648"><code>__fractsqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqhi-661"><code>__fractsqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqhq2-646"><code>__fractsqhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqqi-660"><code>__fractsqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqqq2-645"><code>__fractsqqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqsa-649"><code>__fractsqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqsf-665"><code>__fractsqsf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqsi-662"><code>__fractsqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqta-651"><code>__fractsqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqti-664"><code>__fractsqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsquda-658"><code>__fractsquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqudq-655"><code>__fractsqudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsquha-656"><code>__fractsquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsquhq-653"><code>__fractsquhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsquqq-652"><code>__fractsquqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqusa-657"><code>__fractsqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsqusq-654"><code>__fractsqusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractsquta-659"><code>__fractsquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttada2-761"><code>__fracttada2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttadf-776"><code>__fracttadf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttadi-773"><code>__fracttadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttadq-758"><code>__fracttadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttaha2-759"><code>__fracttaha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttahi-771"><code>__fracttahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttahq-756"><code>__fracttahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttaqi-770"><code>__fracttaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttaqq-755"><code>__fracttaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttasa2-760"><code>__fracttasa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttasf-775"><code>__fracttasf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttasi-772"><code>__fracttasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttasq-757"><code>__fracttasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttati-774"><code>__fracttati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttauda-768"><code>__fracttauda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttaudq-765"><code>__fracttaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttauha-766"><code>__fracttauha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttauhq-763"><code>__fracttauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttauqq-762"><code>__fracttauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttausa-767"><code>__fracttausa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttausq-764"><code>__fracttausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttauta-769"><code>__fracttauta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttida-1023"><code>__fracttida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttidq-1020"><code>__fracttidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttiha-1021"><code>__fracttiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttihq-1018"><code>__fracttihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttiqq-1017"><code>__fracttiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttisa-1022"><code>__fracttisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttisq-1019"><code>__fracttisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttita-1024"><code>__fracttita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttiuda-1031"><code>__fracttiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttiudq-1028"><code>__fracttiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttiuha-1029"><code>__fracttiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttiuhq-1026"><code>__fracttiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttiuqq-1025"><code>__fracttiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttiusa-1030"><code>__fracttiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttiusq-1027"><code>__fracttiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffracttiuta-1032"><code>__fracttiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudada-915"><code>__fractudada</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudadf-930"><code>__fractudadf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudadi-927"><code>__fractudadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudadq-912"><code>__fractudadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudaha-913"><code>__fractudaha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudahi-925"><code>__fractudahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudahq-910"><code>__fractudahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudaqi-924"><code>__fractudaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudaqq-909"><code>__fractudaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudasa-914"><code>__fractudasa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudasf-929"><code>__fractudasf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudasi-926"><code>__fractudasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudasq-911"><code>__fractudasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudata-916"><code>__fractudata</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudati-928"><code>__fractudati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudaudq-920"><code>__fractudaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudauha2-921"><code>__fractudauha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudauhq-918"><code>__fractudauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudauqq-917"><code>__fractudauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudausa2-922"><code>__fractudausa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudausq-919"><code>__fractudausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudauta2-923"><code>__fractudauta2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqda-849"><code>__fractudqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqdf-864"><code>__fractudqdf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqdi-861"><code>__fractudqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqdq-846"><code>__fractudqdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqha-847"><code>__fractudqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqhi-859"><code>__fractudqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqhq-844"><code>__fractudqhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqqi-858"><code>__fractudqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqqq-843"><code>__fractudqqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqsa-848"><code>__fractudqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqsf-863"><code>__fractudqsf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqsi-860"><code>__fractudqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqsq-845"><code>__fractudqsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqta-850"><code>__fractudqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqti-862"><code>__fractudqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudquda-856"><code>__fractudquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudquha-854"><code>__fractudquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudquhq2-852"><code>__fractudquhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudquqq2-851"><code>__fractudquqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqusa-855"><code>__fractudqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudqusq2-853"><code>__fractudqusq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractudquta-857"><code>__fractudquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhada-871"><code>__fractuhada</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhadf-886"><code>__fractuhadf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhadi-883"><code>__fractuhadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhadq-868"><code>__fractuhadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhaha-869"><code>__fractuhaha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhahi-881"><code>__fractuhahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhahq-866"><code>__fractuhahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhaqi-880"><code>__fractuhaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhaqq-865"><code>__fractuhaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhasa-870"><code>__fractuhasa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhasf-885"><code>__fractuhasf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhasi-882"><code>__fractuhasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhasq-867"><code>__fractuhasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhata-872"><code>__fractuhata</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhati-884"><code>__fractuhati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhauda2-878"><code>__fractuhauda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhaudq-876"><code>__fractuhaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhauhq-874"><code>__fractuhauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhauqq-873"><code>__fractuhauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhausa2-877"><code>__fractuhausa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhausq-875"><code>__fractuhausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhauta2-879"><code>__fractuhauta2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqda-805"><code>__fractuhqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqdf-820"><code>__fractuhqdf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqdi-817"><code>__fractuhqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqdq-802"><code>__fractuhqdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqha-803"><code>__fractuhqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqhi-815"><code>__fractuhqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqhq-800"><code>__fractuhqhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqqi-814"><code>__fractuhqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqqq-799"><code>__fractuhqqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqsa-804"><code>__fractuhqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqsf-819"><code>__fractuhqsf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqsi-816"><code>__fractuhqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqsq-801"><code>__fractuhqsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqta-806"><code>__fractuhqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqti-818"><code>__fractuhqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhquda-812"><code>__fractuhquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqudq2-809"><code>__fractuhqudq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhquha-810"><code>__fractuhquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhquqq2-807"><code>__fractuhquqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqusa-811"><code>__fractuhqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhqusq2-808"><code>__fractuhqusq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuhquta-813"><code>__fractuhquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdadi-1450"><code>__fractunsdadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdahi-1448"><code>__fractunsdahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdaqi-1447"><code>__fractunsdaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdasi-1449"><code>__fractunsdasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdati-1451"><code>__fractunsdati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdida-1551"><code>__fractunsdida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdidq-1548"><code>__fractunsdidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdiha-1549"><code>__fractunsdiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdihq-1546"><code>__fractunsdihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdiqq-1545"><code>__fractunsdiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdisa-1550"><code>__fractunsdisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdisq-1547"><code>__fractunsdisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdita-1552"><code>__fractunsdita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdiuda-1559"><code>__fractunsdiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdiudq-1556"><code>__fractunsdiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdiuha-1557"><code>__fractunsdiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdiuhq-1554"><code>__fractunsdiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdiuqq-1553"><code>__fractunsdiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdiusa-1558"><code>__fractunsdiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdiusq-1555"><code>__fractunsdiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdiuta-1560"><code>__fractunsdiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdqdi-1435"><code>__fractunsdqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdqhi-1433"><code>__fractunsdqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdqqi-1432"><code>__fractunsdqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdqsi-1434"><code>__fractunsdqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsdqti-1436"><code>__fractunsdqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshadi-1440"><code>__fractunshadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshahi-1438"><code>__fractunshahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshaqi-1437"><code>__fractunshaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshasi-1439"><code>__fractunshasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshati-1441"><code>__fractunshati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshida-1519"><code>__fractunshida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshidq-1516"><code>__fractunshidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshiha-1517"><code>__fractunshiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshihq-1514"><code>__fractunshihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshiqq-1513"><code>__fractunshiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshisa-1518"><code>__fractunshisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshisq-1515"><code>__fractunshisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshita-1520"><code>__fractunshita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshiuda-1527"><code>__fractunshiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshiudq-1524"><code>__fractunshiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshiuha-1525"><code>__fractunshiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshiuhq-1522"><code>__fractunshiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshiuqq-1521"><code>__fractunshiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshiusa-1526"><code>__fractunshiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshiusq-1523"><code>__fractunshiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshiuta-1528"><code>__fractunshiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshqdi-1425"><code>__fractunshqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshqhi-1423"><code>__fractunshqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshqqi-1422"><code>__fractunshqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshqsi-1424"><code>__fractunshqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunshqti-1426"><code>__fractunshqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqida-1503"><code>__fractunsqida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqidq-1500"><code>__fractunsqidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqiha-1501"><code>__fractunsqiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqihq-1498"><code>__fractunsqihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqiqq-1497"><code>__fractunsqiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqisa-1502"><code>__fractunsqisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqisq-1499"><code>__fractunsqisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqita-1504"><code>__fractunsqita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqiuda-1511"><code>__fractunsqiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqiudq-1508"><code>__fractunsqiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqiuha-1509"><code>__fractunsqiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqiuhq-1506"><code>__fractunsqiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqiuqq-1505"><code>__fractunsqiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqiusa-1510"><code>__fractunsqiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqiusq-1507"><code>__fractunsqiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqiuta-1512"><code>__fractunsqiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqqdi-1420"><code>__fractunsqqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqqhi-1418"><code>__fractunsqqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqqqi-1417"><code>__fractunsqqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqqsi-1419"><code>__fractunsqqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsqqti-1421"><code>__fractunsqqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssadi-1445"><code>__fractunssadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssahi-1443"><code>__fractunssahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssaqi-1442"><code>__fractunssaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssasi-1444"><code>__fractunssasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssati-1446"><code>__fractunssati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssida-1535"><code>__fractunssida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssidq-1532"><code>__fractunssidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssiha-1533"><code>__fractunssiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssihq-1530"><code>__fractunssihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssiqq-1529"><code>__fractunssiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssisa-1534"><code>__fractunssisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssisq-1531"><code>__fractunssisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssita-1536"><code>__fractunssita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssiuda-1543"><code>__fractunssiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssiudq-1540"><code>__fractunssiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssiuha-1541"><code>__fractunssiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssiuhq-1538"><code>__fractunssiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssiuqq-1537"><code>__fractunssiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssiusa-1542"><code>__fractunssiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssiusq-1539"><code>__fractunssiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssiuta-1544"><code>__fractunssiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssqdi-1430"><code>__fractunssqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssqhi-1428"><code>__fractunssqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssqqi-1427"><code>__fractunssqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssqsi-1429"><code>__fractunssqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunssqti-1431"><code>__fractunssqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstadi-1455"><code>__fractunstadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstahi-1453"><code>__fractunstahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstaqi-1452"><code>__fractunstaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstasi-1454"><code>__fractunstasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstati-1456"><code>__fractunstati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstida-1567"><code>__fractunstida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstidq-1564"><code>__fractunstidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstiha-1565"><code>__fractunstiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstihq-1562"><code>__fractunstihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstiqq-1561"><code>__fractunstiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstisa-1566"><code>__fractunstisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstisq-1563"><code>__fractunstisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstita-1568"><code>__fractunstita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstiuda-1575"><code>__fractunstiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstiudq-1572"><code>__fractunstiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstiuha-1573"><code>__fractunstiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstiuhq-1570"><code>__fractunstiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstiuqq-1569"><code>__fractunstiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstiusa-1574"><code>__fractunstiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstiusq-1571"><code>__fractunstiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunstiuta-1576"><code>__fractunstiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsudadi-1490"><code>__fractunsudadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsudahi-1488"><code>__fractunsudahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsudaqi-1487"><code>__fractunsudaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsudasi-1489"><code>__fractunsudasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsudati-1491"><code>__fractunsudati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsudqdi-1475"><code>__fractunsudqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsudqhi-1473"><code>__fractunsudqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsudqqi-1472"><code>__fractunsudqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsudqsi-1474"><code>__fractunsudqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsudqti-1476"><code>__fractunsudqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuhadi-1480"><code>__fractunsuhadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuhahi-1478"><code>__fractunsuhahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuhaqi-1477"><code>__fractunsuhaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuhasi-1479"><code>__fractunsuhasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuhati-1481"><code>__fractunsuhati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuhqdi-1465"><code>__fractunsuhqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuhqhi-1463"><code>__fractunsuhqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuhqqi-1462"><code>__fractunsuhqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuhqsi-1464"><code>__fractunsuhqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuhqti-1466"><code>__fractunsuhqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuqqdi-1460"><code>__fractunsuqqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuqqhi-1458"><code>__fractunsuqqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuqqqi-1457"><code>__fractunsuqqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuqqsi-1459"><code>__fractunsuqqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsuqqti-1461"><code>__fractunsuqqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsusadi-1485"><code>__fractunsusadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsusahi-1483"><code>__fractunsusahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsusaqi-1482"><code>__fractunsusaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsusasi-1484"><code>__fractunsusasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsusati-1486"><code>__fractunsusati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsusqdi-1470"><code>__fractunsusqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsusqhi-1468"><code>__fractunsusqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsusqqi-1467"><code>__fractunsusqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsusqsi-1469"><code>__fractunsusqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsusqti-1471"><code>__fractunsusqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsutadi-1495"><code>__fractunsutadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsutahi-1493"><code>__fractunsutahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsutaqi-1492"><code>__fractunsutaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsutasi-1494"><code>__fractunsutasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractunsutati-1496"><code>__fractunsutati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqda-783"><code>__fractuqqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqdf-798"><code>__fractuqqdf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqdi-795"><code>__fractuqqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqdq-780"><code>__fractuqqdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqha-781"><code>__fractuqqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqhi-793"><code>__fractuqqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqhq-778"><code>__fractuqqhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqqi-792"><code>__fractuqqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqqq-777"><code>__fractuqqqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqsa-782"><code>__fractuqqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqsf-797"><code>__fractuqqsf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqsi-794"><code>__fractuqqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqsq-779"><code>__fractuqqsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqta-784"><code>__fractuqqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqti-796"><code>__fractuqqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqquda-790"><code>__fractuqquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqudq2-787"><code>__fractuqqudq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqquha-788"><code>__fractuqquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqquhq2-785"><code>__fractuqquhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqusa-789"><code>__fractuqqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqqusq2-786"><code>__fractuqqusq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractuqquta-791"><code>__fractuqquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusada-893"><code>__fractusada</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusadf-908"><code>__fractusadf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusadi-905"><code>__fractusadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusadq-890"><code>__fractusadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusaha-891"><code>__fractusaha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusahi-903"><code>__fractusahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusahq-888"><code>__fractusahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusaqi-902"><code>__fractusaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusaqq-887"><code>__fractusaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusasa-892"><code>__fractusasa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusasf-907"><code>__fractusasf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusasi-904"><code>__fractusasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusasq-889"><code>__fractusasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusata-894"><code>__fractusata</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusati-906"><code>__fractusati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusauda2-900"><code>__fractusauda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusaudq-898"><code>__fractusaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusauha2-899"><code>__fractusauha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusauhq-896"><code>__fractusauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusauqq-895"><code>__fractusauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusausq-897"><code>__fractusausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusauta2-901"><code>__fractusauta2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqda-827"><code>__fractusqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqdf-842"><code>__fractusqdf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqdi-839"><code>__fractusqdi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqdq-824"><code>__fractusqdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqha-825"><code>__fractusqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqhi-837"><code>__fractusqhi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqhq-822"><code>__fractusqhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqqi-836"><code>__fractusqqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqqq-821"><code>__fractusqqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqsa-826"><code>__fractusqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqsf-841"><code>__fractusqsf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqsi-838"><code>__fractusqsi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqsq-823"><code>__fractusqsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqta-828"><code>__fractusqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqti-840"><code>__fractusqti</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusquda-834"><code>__fractusquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqudq2-831"><code>__fractusqudq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusquha-832"><code>__fractusquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusquhq2-830"><code>__fractusquhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusquqq2-829"><code>__fractusquqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusqusa-833"><code>__fractusqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractusquta-835"><code>__fractusquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutada-937"><code>__fractutada</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutadf-952"><code>__fractutadf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutadi-949"><code>__fractutadi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutadq-934"><code>__fractutadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutaha-935"><code>__fractutaha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutahi-947"><code>__fractutahi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutahq-932"><code>__fractutahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutaqi-946"><code>__fractutaqi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutaqq-931"><code>__fractutaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutasa-936"><code>__fractutasa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutasf-951"><code>__fractutasf</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutasi-948"><code>__fractutasi</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutasq-933"><code>__fractutasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutata-938"><code>__fractutata</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutati-950"><code>__fractutati</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutauda2-945"><code>__fractutauda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutaudq-942"><code>__fractutaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutauha2-943"><code>__fractutauha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutauhq-940"><code>__fractutauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutauqq-939"><code>__fractutauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutausa2-944"><code>__fractutausa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005ffractutausq-941"><code>__fractutausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fgedf2-170"><code>__gedf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fgesf2-169"><code>__gesf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fgetf2-171"><code>__getf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fgtdf2-179"><code>__gtdf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fgtsf2-178"><code>__gtsf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fgttf2-180"><code>__gttf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fledf2-176"><code>__ledf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005flesf2-175"><code>__lesf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fletf2-177"><code>__letf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005flshrdi3-27"><code>__lshrdi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005flshrsi3-26"><code>__lshrsi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005flshrti3-28"><code>__lshrti3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005flshruda3-568"><code>__lshruda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005flshrudq3-565"><code>__lshrudq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005flshruha3-566"><code>__lshruha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005flshruhq3-563"><code>__lshruhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005flshruqq3-562"><code>__lshruqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005flshrusa3-567"><code>__lshrusa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005flshrusq3-564"><code>__lshrusq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005flshruta3-569"><code>__lshruta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fltdf2-173"><code>__ltdf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fltsf2-172"><code>__ltsf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005flttf2-174"><code>__lttf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Collect2.html#index-g_t_005f_005fmain-5071"><code>__main</code></a>: <a href="Collect2.html#Collect2">Collect2</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fmoddi3-30"><code>__moddi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fmodsi3-29"><code>__modsi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fmodti3-31"><code>__modti3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Miscellaneous-routines.html#index-g_t_005f_005fmorestack_005fcurrent_005fsegment-1660"><code>__morestack_current_segment</code></a>: <a href="Miscellaneous-routines.html#Miscellaneous-routines">Miscellaneous routines</a></li>
<li><a href="Miscellaneous-routines.html#index-g_t_005f_005fmorestack_005finitial_005fsp-1661"><code>__morestack_initial_sp</code></a>: <a href="Miscellaneous-routines.html#Miscellaneous-routines">Miscellaneous routines</a></li>
<li><a href="Miscellaneous-routines.html#index-g_t_005f_005fmorestack_005fsegments-1659"><code>__morestack_segments</code></a>: <a href="Miscellaneous-routines.html#Miscellaneous-routines">Miscellaneous routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmulda3-452"><code>__mulda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fmuldc3-186"><code>__muldc3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fmuldf3-88"><code>__muldf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fmuldi3-33"><code>__muldi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmuldq3-445"><code>__muldq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmulha3-450"><code>__mulha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmulhq3-443"><code>__mulhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmulqq3-442"><code>__mulqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmulsa3-451"><code>__mulsa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fmulsc3-185"><code>__mulsc3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fmulsf3-87"><code>__mulsf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fmulsi3-32"><code>__mulsi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmulsq3-444"><code>__mulsq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmulta3-453"><code>__multa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fmultc3-187"><code>__multc3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fmultf3-89"><code>__multf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fmulti3-34"><code>__multi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmuluda3-456"><code>__muluda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmuludq3-449"><code>__muludq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmuluha3-454"><code>__muluha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmuluhq3-447"><code>__muluhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmuluqq3-446"><code>__muluqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmulusa3-455"><code>__mulusa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmulusq3-448"><code>__mulusq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fmuluta3-457"><code>__muluta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fmulvdi3-54"><code>__mulvdi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fmulvsi3-53"><code>__mulvsi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fmulxc3-188"><code>__mulxc3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fmulxf3-90"><code>__mulxf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fnedf2-167"><code>__nedf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fnegda2-516"><code>__negda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fnegdf2-96"><code>__negdf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fnegdi2-35"><code>__negdi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fnegdq2-509"><code>__negdq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fnegha2-514"><code>__negha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fneghq2-507"><code>__neghq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fnegqq2-506"><code>__negqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fnegsa2-515"><code>__negsa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fnegsf2-95"><code>__negsf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fnegsq2-508"><code>__negsq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fnegta2-517"><code>__negta2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fnegtf2-97"><code>__negtf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fnegti2-36"><code>__negti2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fneguda2-520"><code>__neguda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fnegudq2-513"><code>__negudq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fneguha2-518"><code>__neguha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fneguhq2-511"><code>__neguhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fneguqq2-510"><code>__neguqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fnegusa2-519"><code>__negusa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fnegusq2-512"><code>__negusq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fneguta2-521"><code>__neguta2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fnegvdi2-56"><code>__negvdi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fnegvsi2-55"><code>__negvsi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fnegxf2-98"><code>__negxf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fnesf2-166"><code>__nesf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fnetf2-168"><code>__netf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fparitydi2-68"><code>__paritydi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fparitysi2-67"><code>__paritysi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fparityti2-69"><code>__parityti2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fpopcountdi2-71"><code>__popcountdi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fpopcountsi2-70"><code>__popcountsi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fpopcountti2-72"><code>__popcountti2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fpowidf2-182"><code>__powidf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fpowisf2-181"><code>__powisf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fpowitf2-183"><code>__powitf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fpowixf2-184"><code>__powixf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdadq-1158"><code>__satfractdadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdaha2-1159"><code>__satfractdaha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdahq-1156"><code>__satfractdahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdaqq-1155"><code>__satfractdaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdasa2-1160"><code>__satfractdasa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdasq-1157"><code>__satfractdasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdata2-1161"><code>__satfractdata2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdauda-1168"><code>__satfractdauda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdaudq-1165"><code>__satfractdaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdauha-1166"><code>__satfractdauha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdauhq-1163"><code>__satfractdauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdauqq-1162"><code>__satfractdauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdausa-1167"><code>__satfractdausa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdausq-1164"><code>__satfractdausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdauta-1169"><code>__satfractdauta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfda-1407"><code>__satfractdfda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfdq-1404"><code>__satfractdfdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfha-1405"><code>__satfractdfha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfhq-1402"><code>__satfractdfhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfqq-1401"><code>__satfractdfqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfsa-1406"><code>__satfractdfsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfsq-1403"><code>__satfractdfsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfta-1408"><code>__satfractdfta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfuda-1415"><code>__satfractdfuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfudq-1412"><code>__satfractdfudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfuha-1413"><code>__satfractdfuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfuhq-1410"><code>__satfractdfuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfuqq-1409"><code>__satfractdfuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfusa-1414"><code>__satfractdfusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfusq-1411"><code>__satfractdfusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdfuta-1416"><code>__satfractdfuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdida-1359"><code>__satfractdida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdidq-1356"><code>__satfractdidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdiha-1357"><code>__satfractdiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdihq-1354"><code>__satfractdihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdiqq-1353"><code>__satfractdiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdisa-1358"><code>__satfractdisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdisq-1355"><code>__satfractdisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdita-1360"><code>__satfractdita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdiuda-1367"><code>__satfractdiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdiudq-1364"><code>__satfractdiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdiuha-1365"><code>__satfractdiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdiuhq-1362"><code>__satfractdiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdiuqq-1361"><code>__satfractdiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdiusa-1366"><code>__satfractdiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdiusq-1363"><code>__satfractdiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdiuta-1368"><code>__satfractdiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdqda-1115"><code>__satfractdqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdqha-1113"><code>__satfractdqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdqhq2-1111"><code>__satfractdqhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdqqq2-1110"><code>__satfractdqqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdqsa-1114"><code>__satfractdqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdqsq2-1112"><code>__satfractdqsq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdqta-1116"><code>__satfractdqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdquda-1123"><code>__satfractdquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdqudq-1120"><code>__satfractdqudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdquha-1121"><code>__satfractdquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdquhq-1118"><code>__satfractdquhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdquqq-1117"><code>__satfractdquqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdqusa-1122"><code>__satfractdqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdqusq-1119"><code>__satfractdqusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractdquta-1124"><code>__satfractdquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthada2-1130"><code>__satfracthada2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthadq-1128"><code>__satfracthadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthahq-1126"><code>__satfracthahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthaqq-1125"><code>__satfracthaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthasa2-1129"><code>__satfracthasa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthasq-1127"><code>__satfracthasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthata2-1131"><code>__satfracthata2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthauda-1138"><code>__satfracthauda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthaudq-1135"><code>__satfracthaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthauha-1136"><code>__satfracthauha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthauhq-1133"><code>__satfracthauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthauqq-1132"><code>__satfracthauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthausa-1137"><code>__satfracthausa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthausq-1134"><code>__satfracthausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthauta-1139"><code>__satfracthauta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthida-1327"><code>__satfracthida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthidq-1324"><code>__satfracthidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthiha-1325"><code>__satfracthiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthihq-1322"><code>__satfracthihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthiqq-1321"><code>__satfracthiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthisa-1326"><code>__satfracthisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthisq-1323"><code>__satfracthisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthita-1328"><code>__satfracthita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthiuda-1335"><code>__satfracthiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthiudq-1332"><code>__satfracthiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthiuha-1333"><code>__satfracthiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthiuhq-1330"><code>__satfracthiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthiuqq-1329"><code>__satfracthiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthiusa-1334"><code>__satfracthiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthiusq-1331"><code>__satfracthiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthiuta-1336"><code>__satfracthiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthqda-1085"><code>__satfracthqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthqdq2-1082"><code>__satfracthqdq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthqha-1083"><code>__satfracthqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthqqq2-1080"><code>__satfracthqqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthqsa-1084"><code>__satfracthqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthqsq2-1081"><code>__satfracthqsq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthqta-1086"><code>__satfracthqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthquda-1093"><code>__satfracthquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthqudq-1090"><code>__satfracthqudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthquha-1091"><code>__satfracthquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthquhq-1088"><code>__satfracthquhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthquqq-1087"><code>__satfracthquqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthqusa-1092"><code>__satfracthqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthqusq-1089"><code>__satfracthqusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracthquta-1094"><code>__satfracthquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqida-1311"><code>__satfractqida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqidq-1308"><code>__satfractqidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqiha-1309"><code>__satfractqiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqihq-1306"><code>__satfractqihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqiqq-1305"><code>__satfractqiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqisa-1310"><code>__satfractqisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqisq-1307"><code>__satfractqisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqita-1312"><code>__satfractqita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqiuda-1319"><code>__satfractqiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqiudq-1316"><code>__satfractqiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqiuha-1317"><code>__satfractqiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqiuhq-1314"><code>__satfractqiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqiuqq-1313"><code>__satfractqiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqiusa-1318"><code>__satfractqiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqiusq-1315"><code>__satfractqiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqiuta-1320"><code>__satfractqiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqqda-1070"><code>__satfractqqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqqdq2-1067"><code>__satfractqqdq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqqha-1068"><code>__satfractqqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqqhq2-1065"><code>__satfractqqhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqqsa-1069"><code>__satfractqqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqqsq2-1066"><code>__satfractqqsq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqqta-1071"><code>__satfractqqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqquda-1078"><code>__satfractqquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqqudq-1075"><code>__satfractqqudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqquha-1076"><code>__satfractqquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqquhq-1073"><code>__satfractqquhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqquqq-1072"><code>__satfractqquqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqqusa-1077"><code>__satfractqqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqqusq-1074"><code>__satfractqqusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractqquta-1079"><code>__satfractqquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsada2-1145"><code>__satfractsada2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsadq-1143"><code>__satfractsadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsaha2-1144"><code>__satfractsaha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsahq-1141"><code>__satfractsahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsaqq-1140"><code>__satfractsaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsasq-1142"><code>__satfractsasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsata2-1146"><code>__satfractsata2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsauda-1153"><code>__satfractsauda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsaudq-1150"><code>__satfractsaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsauha-1151"><code>__satfractsauha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsauhq-1148"><code>__satfractsauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsauqq-1147"><code>__satfractsauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsausa-1152"><code>__satfractsausa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsausq-1149"><code>__satfractsausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsauta-1154"><code>__satfractsauta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfda-1391"><code>__satfractsfda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfdq-1388"><code>__satfractsfdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfha-1389"><code>__satfractsfha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfhq-1386"><code>__satfractsfhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfqq-1385"><code>__satfractsfqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfsa-1390"><code>__satfractsfsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfsq-1387"><code>__satfractsfsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfta-1392"><code>__satfractsfta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfuda-1399"><code>__satfractsfuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfudq-1396"><code>__satfractsfudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfuha-1397"><code>__satfractsfuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfuhq-1394"><code>__satfractsfuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfuqq-1393"><code>__satfractsfuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfusa-1398"><code>__satfractsfusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfusq-1395"><code>__satfractsfusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsfuta-1400"><code>__satfractsfuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsida-1343"><code>__satfractsida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsidq-1340"><code>__satfractsidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsiha-1341"><code>__satfractsiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsihq-1338"><code>__satfractsihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsiqq-1337"><code>__satfractsiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsisa-1342"><code>__satfractsisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsisq-1339"><code>__satfractsisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsita-1344"><code>__satfractsita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsiuda-1351"><code>__satfractsiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsiudq-1348"><code>__satfractsiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsiuha-1349"><code>__satfractsiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsiuhq-1346"><code>__satfractsiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsiuqq-1345"><code>__satfractsiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsiusa-1350"><code>__satfractsiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsiusq-1347"><code>__satfractsiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsiuta-1352"><code>__satfractsiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsqda-1100"><code>__satfractsqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsqdq2-1097"><code>__satfractsqdq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsqha-1098"><code>__satfractsqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsqhq2-1096"><code>__satfractsqhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsqqq2-1095"><code>__satfractsqqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsqsa-1099"><code>__satfractsqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsqta-1101"><code>__satfractsqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsquda-1108"><code>__satfractsquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsqudq-1105"><code>__satfractsqudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsquha-1106"><code>__satfractsquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsquhq-1103"><code>__satfractsquhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsquqq-1102"><code>__satfractsquqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsqusa-1107"><code>__satfractsqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsqusq-1104"><code>__satfractsqusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractsquta-1109"><code>__satfractsquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttada2-1176"><code>__satfracttada2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttadq-1173"><code>__satfracttadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttaha2-1174"><code>__satfracttaha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttahq-1171"><code>__satfracttahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttaqq-1170"><code>__satfracttaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttasa2-1175"><code>__satfracttasa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttasq-1172"><code>__satfracttasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttauda-1183"><code>__satfracttauda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttaudq-1180"><code>__satfracttaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttauha-1181"><code>__satfracttauha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttauhq-1178"><code>__satfracttauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttauqq-1177"><code>__satfracttauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttausa-1182"><code>__satfracttausa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttausq-1179"><code>__satfracttausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttauta-1184"><code>__satfracttauta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttida-1375"><code>__satfracttida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttidq-1372"><code>__satfracttidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttiha-1373"><code>__satfracttiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttihq-1370"><code>__satfracttihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttiqq-1369"><code>__satfracttiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttisa-1374"><code>__satfracttisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttisq-1371"><code>__satfracttisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttita-1376"><code>__satfracttita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttiuda-1383"><code>__satfracttiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttiudq-1380"><code>__satfracttiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttiuha-1381"><code>__satfracttiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttiuhq-1378"><code>__satfracttiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttiuqq-1377"><code>__satfracttiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttiusa-1382"><code>__satfracttiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttiusq-1379"><code>__satfracttiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfracttiuta-1384"><code>__satfracttiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudada-1281"><code>__satfractudada</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudadq-1278"><code>__satfractudadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudaha-1279"><code>__satfractudaha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudahq-1276"><code>__satfractudahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudaqq-1275"><code>__satfractudaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudasa-1280"><code>__satfractudasa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudasq-1277"><code>__satfractudasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudata-1282"><code>__satfractudata</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudaudq-1286"><code>__satfractudaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudauha2-1287"><code>__satfractudauha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudauhq-1284"><code>__satfractudauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudauqq-1283"><code>__satfractudauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudausa2-1288"><code>__satfractudausa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudausq-1285"><code>__satfractudausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudauta2-1289"><code>__satfractudauta2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudqda-1236"><code>__satfractudqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudqdq-1233"><code>__satfractudqdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudqha-1234"><code>__satfractudqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudqhq-1231"><code>__satfractudqhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudqqq-1230"><code>__satfractudqqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudqsa-1235"><code>__satfractudqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudqsq-1232"><code>__satfractudqsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudqta-1237"><code>__satfractudqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudquda-1243"><code>__satfractudquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudquha-1241"><code>__satfractudquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudquhq2-1239"><code>__satfractudquhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudquqq2-1238"><code>__satfractudquqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudqusa-1242"><code>__satfractudqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudqusq2-1240"><code>__satfractudqusq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractudquta-1244"><code>__satfractudquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhada-1251"><code>__satfractuhada</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhadq-1248"><code>__satfractuhadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhaha-1249"><code>__satfractuhaha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhahq-1246"><code>__satfractuhahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhaqq-1245"><code>__satfractuhaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhasa-1250"><code>__satfractuhasa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhasq-1247"><code>__satfractuhasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhata-1252"><code>__satfractuhata</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhauda2-1258"><code>__satfractuhauda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhaudq-1256"><code>__satfractuhaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhauhq-1254"><code>__satfractuhauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhauqq-1253"><code>__satfractuhauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhausa2-1257"><code>__satfractuhausa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhausq-1255"><code>__satfractuhausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhauta2-1259"><code>__satfractuhauta2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhqda-1206"><code>__satfractuhqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhqdq-1203"><code>__satfractuhqdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhqha-1204"><code>__satfractuhqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhqhq-1201"><code>__satfractuhqhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhqqq-1200"><code>__satfractuhqqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhqsa-1205"><code>__satfractuhqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhqsq-1202"><code>__satfractuhqsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhqta-1207"><code>__satfractuhqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhquda-1213"><code>__satfractuhquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhqudq2-1210"><code>__satfractuhqudq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhquha-1211"><code>__satfractuhquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhquqq2-1208"><code>__satfractuhquqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhqusa-1212"><code>__satfractuhqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhqusq2-1209"><code>__satfractuhqusq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuhquta-1214"><code>__satfractuhquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdida-1631"><code>__satfractunsdida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdidq-1628"><code>__satfractunsdidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdiha-1629"><code>__satfractunsdiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdihq-1626"><code>__satfractunsdihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdiqq-1625"><code>__satfractunsdiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdisa-1630"><code>__satfractunsdisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdisq-1627"><code>__satfractunsdisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdita-1632"><code>__satfractunsdita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdiuda-1639"><code>__satfractunsdiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdiudq-1636"><code>__satfractunsdiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdiuha-1637"><code>__satfractunsdiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdiuhq-1634"><code>__satfractunsdiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdiuqq-1633"><code>__satfractunsdiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdiusa-1638"><code>__satfractunsdiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdiusq-1635"><code>__satfractunsdiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsdiuta-1640"><code>__satfractunsdiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshida-1599"><code>__satfractunshida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshidq-1596"><code>__satfractunshidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshiha-1597"><code>__satfractunshiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshihq-1594"><code>__satfractunshihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshiqq-1593"><code>__satfractunshiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshisa-1598"><code>__satfractunshisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshisq-1595"><code>__satfractunshisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshita-1600"><code>__satfractunshita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshiuda-1607"><code>__satfractunshiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshiudq-1604"><code>__satfractunshiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshiuha-1605"><code>__satfractunshiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshiuhq-1602"><code>__satfractunshiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshiuqq-1601"><code>__satfractunshiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshiusa-1606"><code>__satfractunshiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshiusq-1603"><code>__satfractunshiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunshiuta-1608"><code>__satfractunshiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqida-1583"><code>__satfractunsqida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqidq-1580"><code>__satfractunsqidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqiha-1581"><code>__satfractunsqiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqihq-1578"><code>__satfractunsqihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqiqq-1577"><code>__satfractunsqiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqisa-1582"><code>__satfractunsqisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqisq-1579"><code>__satfractunsqisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqita-1584"><code>__satfractunsqita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqiuda-1591"><code>__satfractunsqiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqiudq-1588"><code>__satfractunsqiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqiuha-1589"><code>__satfractunsqiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqiuhq-1586"><code>__satfractunsqiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqiuqq-1585"><code>__satfractunsqiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqiusa-1590"><code>__satfractunsqiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqiusq-1587"><code>__satfractunsqiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunsqiuta-1592"><code>__satfractunsqiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssida-1615"><code>__satfractunssida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssidq-1612"><code>__satfractunssidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssiha-1613"><code>__satfractunssiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssihq-1610"><code>__satfractunssihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssiqq-1609"><code>__satfractunssiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssisa-1614"><code>__satfractunssisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssisq-1611"><code>__satfractunssisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssita-1616"><code>__satfractunssita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssiuda-1623"><code>__satfractunssiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssiudq-1620"><code>__satfractunssiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssiuha-1621"><code>__satfractunssiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssiuhq-1618"><code>__satfractunssiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssiuqq-1617"><code>__satfractunssiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssiusa-1622"><code>__satfractunssiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssiusq-1619"><code>__satfractunssiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunssiuta-1624"><code>__satfractunssiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstida-1647"><code>__satfractunstida</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstidq-1644"><code>__satfractunstidq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstiha-1645"><code>__satfractunstiha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstihq-1642"><code>__satfractunstihq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstiqq-1641"><code>__satfractunstiqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstisa-1646"><code>__satfractunstisa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstisq-1643"><code>__satfractunstisq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstita-1648"><code>__satfractunstita</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstiuda-1655"><code>__satfractunstiuda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstiudq-1652"><code>__satfractunstiudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstiuha-1653"><code>__satfractunstiuha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstiuhq-1650"><code>__satfractunstiuhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstiuqq-1649"><code>__satfractunstiuqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstiusa-1654"><code>__satfractunstiusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstiusq-1651"><code>__satfractunstiusq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractunstiuta-1656"><code>__satfractunstiuta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqqda-1191"><code>__satfractuqqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqqdq-1188"><code>__satfractuqqdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqqha-1189"><code>__satfractuqqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqqhq-1186"><code>__satfractuqqhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqqqq-1185"><code>__satfractuqqqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqqsa-1190"><code>__satfractuqqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqqsq-1187"><code>__satfractuqqsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqqta-1192"><code>__satfractuqqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqquda-1198"><code>__satfractuqquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqqudq2-1195"><code>__satfractuqqudq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqquha-1196"><code>__satfractuqquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqquhq2-1193"><code>__satfractuqquhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqqusa-1197"><code>__satfractuqqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqqusq2-1194"><code>__satfractuqqusq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractuqquta-1199"><code>__satfractuqquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusada-1266"><code>__satfractusada</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusadq-1263"><code>__satfractusadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusaha-1264"><code>__satfractusaha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusahq-1261"><code>__satfractusahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusaqq-1260"><code>__satfractusaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusasa-1265"><code>__satfractusasa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusasq-1262"><code>__satfractusasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusata-1267"><code>__satfractusata</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusauda2-1273"><code>__satfractusauda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusaudq-1271"><code>__satfractusaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusauha2-1272"><code>__satfractusauha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusauhq-1269"><code>__satfractusauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusauqq-1268"><code>__satfractusauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusausq-1270"><code>__satfractusausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusauta2-1274"><code>__satfractusauta2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusqda-1221"><code>__satfractusqda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusqdq-1218"><code>__satfractusqdq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusqha-1219"><code>__satfractusqha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusqhq-1216"><code>__satfractusqhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusqqq-1215"><code>__satfractusqqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusqsa-1220"><code>__satfractusqsa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusqsq-1217"><code>__satfractusqsq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusqta-1222"><code>__satfractusqta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusquda-1228"><code>__satfractusquda</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusqudq2-1225"><code>__satfractusqudq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusquha-1226"><code>__satfractusquha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusquhq2-1224"><code>__satfractusquhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusquqq2-1223"><code>__satfractusquqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusqusa-1227"><code>__satfractusqusa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractusquta-1229"><code>__satfractusquta</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutada-1296"><code>__satfractutada</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutadq-1293"><code>__satfractutadq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutaha-1294"><code>__satfractutaha</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutahq-1291"><code>__satfractutahq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutaqq-1290"><code>__satfractutaqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutasa-1295"><code>__satfractutasa</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutasq-1292"><code>__satfractutasq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutata-1297"><code>__satfractutata</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutauda2-1304"><code>__satfractutauda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutaudq-1301"><code>__satfractutaudq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutauha2-1302"><code>__satfractutauha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutauhq-1299"><code>__satfractutauhq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutauqq-1298"><code>__satfractutauqq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutausa2-1303"><code>__satfractutausa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsatfractutausq-1300"><code>__satfractutausq</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Miscellaneous-routines.html#index-g_t_005f_005fsplitstack_005ffind-1658"><code>__splitstack_find</code></a>: <a href="Miscellaneous-routines.html#Miscellaneous-routines">Miscellaneous routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssaddda3-400"><code>__ssaddda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssadddq3-397"><code>__ssadddq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssaddha3-398"><code>__ssaddha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssaddhq3-395"><code>__ssaddhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssaddqq3-394"><code>__ssaddqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssaddsa3-399"><code>__ssaddsa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssaddsq3-396"><code>__ssaddsq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssaddta3-401"><code>__ssaddta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssashlda3-575"><code>__ssashlda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssashldq3-572"><code>__ssashldq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssashlha3-573"><code>__ssashlha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssashlhq3-570"><code>__ssashlhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssashlsa3-574"><code>__ssashlsa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssashlsq3-571"><code>__ssashlsq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssashlta3-576"><code>__ssashlta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssdivda3-496"><code>__ssdivda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssdivdq3-493"><code>__ssdivdq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssdivha3-494"><code>__ssdivha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssdivhq3-491"><code>__ssdivhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssdivqq3-490"><code>__ssdivqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssdivsa3-495"><code>__ssdivsa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssdivsq3-492"><code>__ssdivsq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssdivta3-497"><code>__ssdivta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssmulda3-464"><code>__ssmulda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssmuldq3-461"><code>__ssmuldq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssmulha3-462"><code>__ssmulha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssmulhq3-459"><code>__ssmulhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssmulqq3-458"><code>__ssmulqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssmulsa3-463"><code>__ssmulsa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssmulsq3-460"><code>__ssmulsq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssmulta3-465"><code>__ssmulta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssnegda2-528"><code>__ssnegda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssnegdq2-525"><code>__ssnegdq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssnegha2-526"><code>__ssnegha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssneghq2-523"><code>__ssneghq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssnegqq2-522"><code>__ssnegqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssnegsa2-527"><code>__ssnegsa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssnegsq2-524"><code>__ssnegsq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fssnegta2-529"><code>__ssnegta2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsssubda3-432"><code>__sssubda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsssubdq3-429"><code>__sssubdq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsssubha3-430"><code>__sssubha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsssubhq3-427"><code>__sssubhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsssubqq3-426"><code>__sssubqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsssubsa3-431"><code>__sssubsa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsssubsq3-428"><code>__sssubsq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsssubta3-433"><code>__sssubta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubda3-420"><code>__subda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fsubdf3-84"><code>__subdf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubdq3-413"><code>__subdq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubha3-418"><code>__subha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubhq3-411"><code>__subhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubqq3-410"><code>__subqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubsa3-419"><code>__subsa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fsubsf3-83"><code>__subsf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubsq3-412"><code>__subsq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubta3-421"><code>__subta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fsubtf3-85"><code>__subtf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubuda3-424"><code>__subuda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubudq3-417"><code>__subudq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubuha3-422"><code>__subuha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubuhq3-415"><code>__subuhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubuqq3-414"><code>__subuqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubusa3-423"><code>__subusa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubusq3-416"><code>__subusq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fsubuta3-425"><code>__subuta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fsubvdi3-58"><code>__subvdi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fsubvsi3-57"><code>__subvsi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005fsubxf3-86"><code>__subxf3</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ftruncdfsf2-108"><code>__truncdfsf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ftrunctfdf2-105"><code>__trunctfdf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ftrunctfsf2-107"><code>__trunctfsf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ftruncxfdf2-104"><code>__truncxfdf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005ftruncxfsf2-106"><code>__truncxfsf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fucmpdi2-47"><code>__ucmpdi2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fucmpti2-48"><code>__ucmpti2</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fudivdi3-38"><code>__udivdi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fudivmoddi4-40"><code>__udivmoddi4</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fudivmodti4-41"><code>__udivmodti4</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fudivsi3-37"><code>__udivsi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fudivti3-39"><code>__udivti3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fudivuda3-488"><code>__udivuda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fudivudq3-485"><code>__udivudq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fudivuha3-486"><code>__udivuha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fudivuhq3-483"><code>__udivuhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fudivuqq3-482"><code>__udivuqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fudivusa3-487"><code>__udivusa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fudivusq3-484"><code>__udivusq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fudivuta3-489"><code>__udivuta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fumoddi3-43"><code>__umoddi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fumodsi3-42"><code>__umodsi3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Integer-library-routines.html#index-g_t_005f_005fumodti3-44"><code>__umodti3</code></a>: <a href="Integer-library-routines.html#Integer-library-routines">Integer library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005funorddf2-161"><code>__unorddf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005funordsf2-160"><code>__unordsf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Soft-float-library-routines.html#index-g_t_005f_005funordtf2-162"><code>__unordtf2</code></a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusadduda3-408"><code>__usadduda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusaddudq3-405"><code>__usaddudq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusadduha3-406"><code>__usadduha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusadduhq3-403"><code>__usadduhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusadduqq3-402"><code>__usadduqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusaddusa3-407"><code>__usaddusa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusaddusq3-404"><code>__usaddusq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusadduta3-409"><code>__usadduta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusashluda3-583"><code>__usashluda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusashludq3-580"><code>__usashludq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusashluha3-581"><code>__usashluha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusashluhq3-578"><code>__usashluhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusashluqq3-577"><code>__usashluqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusashlusa3-582"><code>__usashlusa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusashlusq3-579"><code>__usashlusq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusashluta3-584"><code>__usashluta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusdivuda3-504"><code>__usdivuda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusdivudq3-501"><code>__usdivudq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusdivuha3-502"><code>__usdivuha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusdivuhq3-499"><code>__usdivuhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusdivuqq3-498"><code>__usdivuqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusdivusa3-503"><code>__usdivusa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusdivusq3-500"><code>__usdivusq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusdivuta3-505"><code>__usdivuta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusmuluda3-472"><code>__usmuluda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusmuludq3-469"><code>__usmuludq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusmuluha3-470"><code>__usmuluha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusmuluhq3-467"><code>__usmuluhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusmuluqq3-466"><code>__usmuluqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusmulusa3-471"><code>__usmulusa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusmulusq3-468"><code>__usmulusq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusmuluta3-473"><code>__usmuluta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusneguda2-536"><code>__usneguda2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusnegudq2-533"><code>__usnegudq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusneguha2-534"><code>__usneguha2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusneguhq2-531"><code>__usneguhq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusneguqq2-530"><code>__usneguqq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusnegusa2-535"><code>__usnegusa2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusnegusq2-532"><code>__usnegusq2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fusneguta2-537"><code>__usneguta2</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fussubuda3-440"><code>__ussubuda3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fussubudq3-437"><code>__ussubudq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fussubuha3-438"><code>__ussubuha3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fussubuhq3-435"><code>__ussubuhq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fussubuqq3-434"><code>__ussubuqq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fussubusa3-439"><code>__ussubusa3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fussubusq3-436"><code>__ussubusq3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-g_t_005f_005fussubuta3-441"><code>__ussubuta3</code></a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Portability.html#index-abort-6"><code>abort</code></a>: <a href="Portability.html#Portability">Portability</a></li>
<li><a href="Arithmetic.html#index-abs-2964"><code>abs</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007babs_007d-and-attributes-3751"><code>abs</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-ABS_005fEXPR-1849"><code>ABS_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Processor-pipeline-description.html#index-absence_005fset-3811"><code>absence_set</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3512"><code>abs</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Arithmetic.html#index-absolute-value-2966">absolute value</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Accessors.html#index-access-to-operands-2558">access to operands</a>: <a href="Accessors.html#Accessors">Accessors</a></li>
<li><a href="Special-Accessors.html#index-access-to-special-operands-2567">access to special operands</a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Accessors.html#index-accessors-2557">accessors</a>: <a href="Accessors.html#Accessors">Accessors</a></li>
<li><a href="Type-Layout.html#index-ACCUM_005fTYPE_005fSIZE-3997"><code>ACCUM_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Stack-Arguments.html#index-ACCUMULATE_005fOUTGOING_005fARGS-4221"><code>ACCUMULATE_OUTGOING_ARGS</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Function-Entry.html#your_sha256_hash-stack-frames-4303"><code>ACCUMULATE_OUTGOING_ARGS</code> and stack frames</a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Type-Layout.html#index-ADA_005fLONG_005fTYPE_005fSIZE-3985"><code>ADA_LONG_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Adding-a-new-GIMPLE-statement-code.html#index-Adding-a-new-GIMPLE-statement-code-2500">Adding a new GIMPLE statement code</a>: <a href="Adding-a-new-GIMPLE-statement-code.html#Adding-a-new-GIMPLE-statement-code">Adding a new GIMPLE statement code</a></li>
<li><a href="Instruction-Output.html#index-ADDITIONAL_005fREGISTER_005fNAMES-4688"><code>ADDITIONAL_REGISTER_NAMES</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3400"><code>add</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashion-pattern-3572"><code>add</code><var>mode</var><code>cc</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashon-pattern-3424"><code>addptr</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Side-Effects.html#index-addr_005fdiff_005fvec-3050"><code>addr_diff_vec</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Insn-Lengths.html#your_sha256_hash-3773"><code>addr_diff_vec</code>, length of</a>: <a href="Insn-Lengths.html#Insn-Lengths">Insn Lengths</a></li>
<li><a href="Storage-References.html#index-ADDR_005fEXPR-1841"><code>ADDR_EXPR</code></a>: <a href="Storage-References.html#Storage-References">Storage References</a></li>
<li><a href="Side-Effects.html#index-addr_005fvec-3049"><code>addr_vec</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Insn-Lengths.html#index-g_t_0040code_007baddr_005fvec_007d_002c-length-of-3772"><code>addr_vec</code>, length of</a>: <a href="Insn-Lengths.html#Insn-Lengths">Insn Lengths</a></li>
<li><a href="Simple-Constraints.html#index-address-constraints-3334">address constraints</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Simple-Constraints.html#index-address_005foperand-3336"><code>address_operand</code></a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-address_005foperand-3292"><code>address_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Addressing-Modes.html#index-addressing-modes-4370">addressing modes</a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3420"><code>addv</code><var>m</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Storage-Layout.html#index-ADJUST_005fFIELD_005fALIGN-3949"><code>ADJUST_FIELD_ALIGN</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Insn-Lengths.html#index-ADJUST_005fINSN_005fLENGTH-3774"><code>ADJUST_INSN_LENGTH</code></a>: <a href="Insn-Lengths.html#Insn-Lengths">Insn Lengths</a></li>
<li><a href="Allocation-Order.html#index-ADJUST_005fREG_005fALLOC_005fORDER-4075"><code>ADJUST_REG_ALLOC_ORDER</code></a>: <a href="Allocation-Order.html#Allocation-Order">Allocation Order</a></li>
<li><a href="Aggregate-Return.html#index-aggregates-as-return-values-4279">aggregates as return values</a>: <a href="Aggregate-Return.html#Aggregate-Return">Aggregate Return</a></li>
<li><a href="Alias-analysis.html#index-alias-2530">alias</a>: <a href="Alias-analysis.html#Alias-analysis">Alias analysis</a></li>
<li><a href="Register-Classes.html#index-ALL_005fREGS-4100"><code>ALL_REGS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Standard-Names.html#your_sha256_hashrn-3600"><code>allocate_stack</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Insns.html#index-alternate-entry-points-3084">alternate entry points</a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Anchored-Addresses.html#index-anchored-addresses-4421">anchored addresses</a>: <a href="Anchored-Addresses.html#Anchored-Addresses">Anchored Addresses</a></li>
<li><a href="Arithmetic.html#index-and-2939"><code>and</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007band_007d-and-attributes-3734"><code>and</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Insn-Canonicalizations.html#index-g_t_0040code_007band_007d_002c-canonicalization-of-3688"><code>and</code>, canonicalization of</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3417"><code>and</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-ANNOTATE_005fEXPR-1921"><code>ANNOTATE_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Annotations.html#index-annotations-2507">annotations</a>: <a href="Annotations.html#Annotations">Annotations</a></li>
<li><a href="Scalar-Return.html#index-APPLY_005fRESULT_005fSIZE-4276"><code>APPLY_RESULT_SIZE</code></a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Frame-Layout.html#index-ARG_005fPOINTER_005fCFA_005fOFFSET-4166"><code>ARG_POINTER_CFA_OFFSET</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Frame-Registers.html#index-ARG_005fPOINTER_005fREGNUM-4190"><code>ARG_POINTER_REGNUM</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hashal-registers-2853"><code>ARG_POINTER_REGNUM</code> and virtual registers</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Frame-Registers.html#index-arg_005fpointer_005frtx-4199"><code>arg_pointer_rtx</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Frame-Layout.html#index-ARGS_005fGROW_005fDOWNWARD-4148"><code>ARGS_GROW_DOWNWARD</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Interface.html#index-argument-passing-14">argument passing</a>: <a href="Interface.html#Interface">Interface</a></li>
<li><a href="Register-Arguments.html#index-arguments-in-registers-4228">arguments in registers</a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Stack-Arguments.html#index-arguments-on-stack-4213">arguments on stack</a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Soft-float-library-routines.html#index-arithmetic-library-76">arithmetic library</a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Arithmetic.html#index-arithmetic-shift-2953">arithmetic shift</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-arithmetic-shift-with-signed-saturation-2954">arithmetic shift with signed saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-arithmetic-shift-with-unsigned-saturation-2955">arithmetic shift with unsigned saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-arithmetic_002c-in-RTL-2881">arithmetic, in RTL</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Types-for-C_002b_002b.html#index-ARITHMETIC_005fTYPE_005fP-2025"><code>ARITHMETIC_TYPE_P</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-array-1746">array</a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Storage-References.html#index-ARRAY_005fRANGE_005fREF-1845"><code>ARRAY_RANGE_REF</code></a>: <a href="Storage-References.html#Storage-References">Storage References</a></li>
<li><a href="Storage-References.html#index-ARRAY_005fREF-1844"><code>ARRAY_REF</code></a>: <a href="Storage-References.html#Storage-References">Storage References</a></li>
<li><a href="Types.html#index-ARRAY_005fTYPE-1760"><code>ARRAY_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Driver.html#index-AS_005fNEEDS_005fDASH_005fFOR_005fPIPED_005fINPUT-3867"><code>AS_NEEDS_DASH_FOR_PIPED_INPUT</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Arithmetic.html#index-ashift-2948"><code>ashift</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bashift_007d-and-attributes-3753"><code>ashift</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Arithmetic.html#index-ashiftrt-2958"><code>ashiftrt</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bashiftrt_007d-and-attributes-3755"><code>ashiftrt</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3495"><code>ashl</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3498"><code>ashr</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="File-Framework.html#index-ASM_005fAPP_005fOFF-4568"><code>ASM_APP_OFF</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="File-Framework.html#index-ASM_005fAPP_005fON-4567"><code>ASM_APP_ON</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="File-Framework.html#index-ASM_005fCOMMENT_005fSTART-4566"><code>ASM_COMMENT_START</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Label-Output.html#index-ASM_005fDECLARE_005fFUNCTION_005fNAME-4628"><code>ASM_DECLARE_FUNCTION_NAME</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fDECLARE_005fFUNCTION_005fSIZE-4629"><code>ASM_DECLARE_FUNCTION_SIZE</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fDECLARE_005fOBJECT_005fNAME-4630"><code>ASM_DECLARE_OBJECT_NAME</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fDECLARE_005fREGISTER_005fGLOBAL-4632"><code>ASM_DECLARE_REGISTER_GLOBAL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Driver.html#index-ASM_005fFINAL_005fSPEC-3866"><code>ASM_FINAL_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Label-Output.html#index-ASM_005fFINISH_005fDECLARE_005fOBJECT-4633"><code>ASM_FINISH_DECLARE_OBJECT</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fFORMAT_005fPRIVATE_005fNAME-4656"><code>ASM_FORMAT_PRIVATE_NAME</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Instruction-Output.html#index-asm_005ffprintf-4702"><code>asm_fprintf</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Instruction-Output.html#index-ASM_005fFPRINTF_005fEXTENSIONS-4707"><code>ASM_FPRINTF_EXTENSIONS</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fGENERATE_005fINTERNAL_005fLABEL-4655"><code>ASM_GENERATE_INTERNAL_LABEL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Side-Effects.html#index-asm_005finput-3046"><code>asm_input</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Flags.html#your_sha256_hashfv_007d-2647"><code>asm_input</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Exception-Handling.html#your_sha256_hash><code>ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX</code></a>: <a href="Exception-Handling.html#Exception-Handling">Exception Handling</a></li>
<li><a href="Alignment-Output.html#index-ASM_005fNO_005fSKIP_005fIN_005fTEXT-4746"><code>ASM_NO_SKIP_IN_TEXT</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="Insns.html#index-asm_005fnoperands-3106"><code>asm_noperands</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#your_sha256_hash002fv_007d-2648"><code>asm_operands</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Sharing.html#your_sha256_hash49"><code>asm_operands</code>, RTL sharing</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Assembler.html#index-g_t_0040code_007basm_005foperands_007d_002c-usage-3063"><code>asm_operands</code>, usage</a>: <a href="Assembler.html#Assembler">Assembler</a></li>
<li><a href="Dispatch-Tables.html#index-ASM_005fOUTPUT_005fADDR_005fDIFF_005fELT-4712"><code>ASM_OUTPUT_ADDR_DIFF_ELT</code></a>: <a href="Dispatch-Tables.html#Dispatch-Tables">Dispatch Tables</a></li>
<li><a href="Dispatch-Tables.html#index-ASM_005fOUTPUT_005fADDR_005fVEC_005fELT-4713"><code>ASM_OUTPUT_ADDR_VEC_ELT</code></a>: <a href="Dispatch-Tables.html#Dispatch-Tables">Dispatch Tables</a></li>
<li><a href="Alignment-Output.html#index-ASM_005fOUTPUT_005fALIGN-4747"><code>ASM_OUTPUT_ALIGN</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="Alignment-Output.html#index-ASM_005fOUTPUT_005fALIGN_005fWITH_005fNOP-4748"><code>ASM_OUTPUT_ALIGN_WITH_NOP</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="Uninitialized-Data.html#index-ASM_005fOUTPUT_005fALIGNED_005fBSS-4611"><code>ASM_OUTPUT_ALIGNED_BSS</code></a>: <a href="Uninitialized-Data.html#Uninitialized-Data">Uninitialized Data</a></li>
<li><a href="Uninitialized-Data.html#index-ASM_005fOUTPUT_005fALIGNED_005fCOMMON-4609"><code>ASM_OUTPUT_ALIGNED_COMMON</code></a>: <a href="Uninitialized-Data.html#Uninitialized-Data">Uninitialized Data</a></li>
<li><a href="Uninitialized-Data.html#index-ASM_005fOUTPUT_005fALIGNED_005fDECL_005fCOMMON-4610"><code>ASM_OUTPUT_ALIGNED_DECL_COMMON</code></a>: <a href="Uninitialized-Data.html#Uninitialized-Data">Uninitialized Data</a></li>
<li><a href="Uninitialized-Data.html#index-ASM_005fOUTPUT_005fALIGNED_005fDECL_005fLOCAL-4614"><code>ASM_OUTPUT_ALIGNED_DECL_LOCAL</code></a>: <a href="Uninitialized-Data.html#Uninitialized-Data">Uninitialized Data</a></li>
<li><a href="Uninitialized-Data.html#index-ASM_005fOUTPUT_005fALIGNED_005fLOCAL-4613"><code>ASM_OUTPUT_ALIGNED_LOCAL</code></a>: <a href="Uninitialized-Data.html#Uninitialized-Data">Uninitialized Data</a></li>
<li><a href="Data-Output.html#index-ASM_005fOUTPUT_005fASCII-4593"><code>ASM_OUTPUT_ASCII</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Dispatch-Tables.html#index-ASM_005fOUTPUT_005fCASE_005fEND-4715"><code>ASM_OUTPUT_CASE_END</code></a>: <a href="Dispatch-Tables.html#Dispatch-Tables">Dispatch Tables</a></li>
<li><a href="Dispatch-Tables.html#index-ASM_005fOUTPUT_005fCASE_005fLABEL-4714"><code>ASM_OUTPUT_CASE_LABEL</code></a>: <a href="Dispatch-Tables.html#Dispatch-Tables">Dispatch Tables</a></li>
<li><a href="Uninitialized-Data.html#index-ASM_005fOUTPUT_005fCOMMON-4608"><code>ASM_OUTPUT_COMMON</code></a>: <a href="Uninitialized-Data.html#Uninitialized-Data">Uninitialized Data</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fDEBUG_005fLABEL-4654"><code>ASM_OUTPUT_DEBUG_LABEL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fDEF-4657"><code>ASM_OUTPUT_DEF</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fDEF_005fFROM_005fDECLS-4659"><code>ASM_OUTPUT_DEF_FROM_DECLS</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="SDB-and-DWARF.html#index-ASM_005fOUTPUT_005fDWARF_005fDELTA-4792"><code>ASM_OUTPUT_DWARF_DELTA</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="SDB-and-DWARF.html#index-ASM_005fOUTPUT_005fDWARF_005fOFFSET-4794"><code>ASM_OUTPUT_DWARF_OFFSET</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="SDB-and-DWARF.html#index-ASM_005fOUTPUT_005fDWARF_005fPCREL-4795"><code>ASM_OUTPUT_DWARF_PCREL</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="SDB-and-DWARF.html#index-ASM_005fOUTPUT_005fDWARF_005fTABLE_005fREF-4796"><code>ASM_OUTPUT_DWARF_TABLE_REF</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="SDB-and-DWARF.html#index-ASM_005fOUTPUT_005fDWARF_005fVMS_005fDELTA-4793"><code>ASM_OUTPUT_DWARF_VMS_DELTA</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fEXTERNAL-4646"><code>ASM_OUTPUT_EXTERNAL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Data-Output.html#index-ASM_005fOUTPUT_005fFDESC-4594"><code>ASM_OUTPUT_FDESC</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fFUNCTION_005fLABEL-4617"><code>ASM_OUTPUT_FUNCTION_LABEL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fINTERNAL_005fLABEL-4619"><code>ASM_OUTPUT_INTERNAL_LABEL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fLABEL-4616"><code>ASM_OUTPUT_LABEL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fLABEL_005fREF-4652"><code>ASM_OUTPUT_LABEL_REF</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fLABELREF-4649"><code>ASM_OUTPUT_LABELREF</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Uninitialized-Data.html#index-ASM_005fOUTPUT_005fLOCAL-4612"><code>ASM_OUTPUT_LOCAL</code></a>: <a href="Uninitialized-Data.html#Uninitialized-Data">Uninitialized Data</a></li>
<li><a href="Alignment-Output.html#index-ASM_005fOUTPUT_005fMAX_005fSKIP_005fALIGN-4749"><code>ASM_OUTPUT_MAX_SKIP_ALIGN</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fMEASURED_005fSIZE-4622"><code>ASM_OUTPUT_MEASURED_SIZE</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Instruction-Output.html#index-ASM_005fOUTPUT_005fOPCODE-4690"><code>ASM_OUTPUT_OPCODE</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Data-Output.html#index-ASM_005fOUTPUT_005fPOOL_005fEPILOGUE-4598"><code>ASM_OUTPUT_POOL_EPILOGUE</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-ASM_005fOUTPUT_005fPOOL_005fPROLOGUE-4596"><code>ASM_OUTPUT_POOL_PROLOGUE</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Instruction-Output.html#index-ASM_005fOUTPUT_005fREG_005fPOP-4710"><code>ASM_OUTPUT_REG_POP</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Instruction-Output.html#index-ASM_005fOUTPUT_005fREG_005fPUSH-4709"><code>ASM_OUTPUT_REG_PUSH</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fSIZE_005fDIRECTIVE-4621"><code>ASM_OUTPUT_SIZE_DIRECTIVE</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Alignment-Output.html#index-ASM_005fOUTPUT_005fSKIP-4745"><code>ASM_OUTPUT_SKIP</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="File-Framework.html#index-ASM_005fOUTPUT_005fSOURCE_005fFILENAME-4569"><code>ASM_OUTPUT_SOURCE_FILENAME</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Data-Output.html#index-ASM_005fOUTPUT_005fSPECIAL_005fPOOL_005fENTRY-4597"><code>ASM_OUTPUT_SPECIAL_POOL_ENTRY</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fSYMBOL_005fREF-4651"><code>ASM_OUTPUT_SYMBOL_REF</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fTYPE_005fDIRECTIVE-4627"><code>ASM_OUTPUT_TYPE_DIRECTIVE</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fWEAK_005fALIAS-4662"><code>ASM_OUTPUT_WEAK_ALIAS</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fOUTPUT_005fWEAKREF-4639"><code>ASM_OUTPUT_WEAKREF</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Exception-Handling.html#index-ASM_005fPREFERRED_005fEH_005fDATA_005fFORMAT-4174"><code>ASM_PREFERRED_EH_DATA_FORMAT</code></a>: <a href="Exception-Handling.html#Exception-Handling">Exception Handling</a></li>
<li><a href="Driver.html#index-ASM_005fSPEC-3865"><code>ASM_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="DBX-Options.html#index-ASM_005fSTABD_005fOP-4759"><code>ASM_STABD_OP</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-ASM_005fSTABN_005fOP-4760"><code>ASM_STABN_OP</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-ASM_005fSTABS_005fOP-4758"><code>ASM_STABS_OP</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="Label-Output.html#index-ASM_005fWEAKEN_005fDECL-4638"><code>ASM_WEAKEN_DECL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-ASM_005fWEAKEN_005fLABEL-4637"><code>ASM_WEAKEN_LABEL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-assemble_005fname-4615"><code>assemble_name</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-assemble_005fname_005fraw-4618"><code>assemble_name_raw</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="File-Framework.html#index-assembler-format-4555">assembler format</a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Assembler.html#index-assembler-instructions-in-RTL-3062">assembler instructions in RTL</a>: <a href="Assembler.html#Assembler">Assembler</a></li>
<li><a href="Instruction-Output.html#index-ASSEMBLER_005fDIALECT-4708"><code>ASSEMBLER_DIALECT</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Tagging-Insns.html#index-assigning-attribute-values-to-insns-3761">assigning attribute values to insns</a>: <a href="Tagging-Insns.html#Tagging-Insns">Tagging Insns</a></li>
<li><a href="Frame-Registers.html#index-ASSUME_005fEXTENDED_005fUNWIND_005fCONTEXT-4206"><code>ASSUME_EXTENDED_UNWIND_CONTEXT</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Output-Statement.html#index-asterisk-in-template-3274">asterisk in template</a>: <a href="Output-Statement.html#Output-Statement">Output Statement</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3522"><code>atan2</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="GTY-Options.html#index-atomic-5091"><code>atomic</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3657"><code>atomic_add_fetch</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-instruction-pattern-3645"><code>atomic_add</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3660"><code>atomic_and_fetch</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-instruction-pattern-3648"><code>atomic_and</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashar_007bmode_007d_007d-instruction-pattern-3641"><code>atomic_compare_and_swap</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d-instruction-pattern-3644"><code>atomic_exchange</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3651"><code>atomic_fetch_add</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3654"><code>atomic_fetch_and</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashe_007d_007d-instruction-pattern-3656"><code>atomic_fetch_nand</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash007d_007d-instruction-pattern-3653"><code>atomic_fetch_or</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3652"><code>atomic_fetch_sub</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3655"><code>atomic_fetch_xor</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd-instruction-pattern-3642"><code>atomic_load</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashe_007d_007d-instruction-pattern-3662"><code>atomic_nand_fetch</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd-instruction-pattern-3650"><code>atomic_nand</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash007d_007d-instruction-pattern-3659"><code>atomic_or_fetch</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashinstruction-pattern-3647"><code>atomic_or</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d-instruction-pattern-3643"><code>atomic_store</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3658"><code>atomic_sub_fetch</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-instruction-pattern-3646"><code>atomic_sub</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashruction-pattern-3663"><code>atomic_test_and_set</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3661"><code>atomic_xor_fetch</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-instruction-pattern-3649"><code>atomic_xor</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Expressions.html#index-attr-3759"><code>attr</code></a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Tagging-Insns.html#index-attr-3764"><code>attr</code></a>: <a href="Tagging-Insns.html#Tagging-Insns">Tagging Insns</a></li>
<li><a href="Expressions.html#index-attr_005fflag-3758"><code>attr_flag</code></a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Expressions.html#index-attribute-expressions-3726">attribute expressions</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Attr-Example.html#index-attribute-specifications-3767">attribute specifications</a>: <a href="Attr-Example.html#Attr-Example">Attr Example</a></li>
<li><a href="Attr-Example.html#index-attribute-specifications-example-3766">attribute specifications example</a>: <a href="Attr-Example.html#Attr-Example">Attr Example</a></li>
<li><a href="Storage-Layout.html#index-ATTRIBUTE_005fALIGNED_005fVALUE-3946"><code>ATTRIBUTE_ALIGNED_VALUE</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Attributes.html#index-attributes-1817">attributes</a>: <a href="Attributes.html#Attributes">Attributes</a></li>
<li><a href="Defining-Attributes.html#index-attributes_002c-defining-3722">attributes, defining</a>: <a href="Defining-Attributes.html#Defining-Attributes">Defining Attributes</a></li>
<li><a href="Target-Attributes.html#index-attributes_002c-target_002dspecific-4829">attributes, target-specific</a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Portability.html#index-autoincrement-addressing_002c-availability-5">autoincrement addressing, availability</a>: <a href="Portability.html#Portability">Portability</a></li>
<li><a href="Simple-Constraints.html#index-autoincrement_002fdecrement-addressing-3311">autoincrement/decrement addressing</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Processor-pipeline-description.html#index-automata_005foption-3815"><code>automata_option</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Processor-pipeline-description.html#index-automaton-based-pipeline-description-3787">automaton based pipeline description</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Processor-pipeline-description.html#index-automaton-based-scheduler-3790">automaton based scheduler</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Values-in-Registers.html#index-AVOID_005fCCMODE_005fCOPIES-4087"><code>AVOID_CCMODE_COPIES</code></a>: <a href="Values-in-Registers.html#Values-in-Registers">Values in Registers</a></li>
<li><a href="Output-Template.html#index-backslash-3267">backslash</a>: <a href="Output-Template.html#Output-Template">Output Template</a></li>
<li><a href="Insns.html#index-barrier-3086"><code>barrier</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#your_sha256_hashd-2669"><code>barrier</code> and `<samp><span class="samp">/f</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashd-2626"><code>barrier</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Register-Classes.html#index-BASE_005fREG_005fCLASS-4108"><code>BASE_REG_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Basic-Blocks.html#index-basic-block-3154">basic block</a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Basic-Statements.html#index-Basic-Statements-1937">Basic Statements</a>: <a href="Basic-Statements.html#Basic-Statements">Basic Statements</a></li>
<li><a href="Control-Flow.html#index-basic_002dblock_002eh-3153"><code>basic-block.h</code></a>: <a href="Control-Flow.html#Control-Flow">Control Flow</a></li>
<li><a href="Basic-Blocks.html#index-BASIC_005fBLOCK-3157"><code>BASIC_BLOCK</code></a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Basic-Blocks.html#index-basic_005fblock-3155"><code>basic_block</code></a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Maintaining-the-CFG.html#index-BB_005fHEAD_002c-BB_005fEND-3216"><code>BB_HEAD, BB_END</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="GIMPLE-sequences.html#index-bb_005fseq-2462"><code>bb_seq</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="Storage-Layout.html#index-BIGGEST_005fALIGNMENT-3943"><code>BIGGEST_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Storage-Layout.html#index-BIGGEST_005fFIELD_005fALIGNMENT-3948"><code>BIGGEST_FIELD_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Machine-Modes.html#index-BImode-2730"><code>BImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-BIND_005fEXPR-1912"><code>BIND_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Classes.html#index-BINFO_005fTYPE-2044"><code>BINFO_TYPE</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Bit_002dFields.html#index-bit_002dfields-3001">bit-fields</a>: <a href="Bit_002dFields.html#Bit_002dFields">Bit-Fields</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-BIT_005fAND_005fEXPR-1871"><code>BIT_AND_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-BIT_005fIOR_005fEXPR-1869"><code>BIT_IOR_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-BIT_005fNOT_005fEXPR-1850"><code>BIT_NOT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-BIT_005fXOR_005fEXPR-1870"><code>BIT_XOR_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Storage-Layout.html#index-BITFIELD_005fNBYTES_005fLIMITED-3965"><code>BITFIELD_NBYTES_LIMITED</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Storage-Layout.html#index-BITS_005fBIG_005fENDIAN-3925"><code>BITS_BIG_ENDIAN</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Bit_002dFields.html#your_sha256_hashon-_0040code_007bsign_005fextract_007d-3003"><code>BITS_BIG_ENDIAN</code>, effect on <code>sign_extract</code></a>: <a href="Bit_002dFields.html#Bit_002dFields">Bit-Fields</a></li>
<li><a href="Machine-Modes.html#index-BITS_005fPER_005fUNIT-2815"><code>BITS_PER_UNIT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Storage-Layout.html#index-BITS_005fPER_005fWORD-3930"><code>BITS_PER_WORD</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Arithmetic.html#index-bitwise-complement-2938">bitwise complement</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-bitwise-exclusive_002dor-2947">bitwise exclusive-or</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-bitwise-inclusive_002dor-2944">bitwise inclusive-or</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-bitwise-logical_002dand-2941">bitwise logical-and</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Machine-Modes.html#index-BLKmode-2769"><code>BLKmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Calls.html#your_sha256_hashues-3135"><code>BLKmode</code>, and function return values</a>: <a href="Calls.html#Calls">Calls</a></li>
<li><a href="Maintaining-the-CFG.html#index-BLOCK_005fFOR_005fINSN_002c-gimple_005fbb-3206"><code>BLOCK_FOR_INSN, gimple_bb</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Register-Arguments.html#index-BLOCK_005fREG_005fPADDING-4250"><code>BLOCK_REG_PADDING</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bblockage_007d-instruction-pattern-3618"><code>blockage</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Blocks.html#index-Blocks-1938">Blocks</a>: <a href="Blocks.html#Blocks">Blocks</a></li>
<li><a href="Machine-Modes.html#index-BND32mode-2783"><code>BND32mode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-BND64mode-2784"><code>BND64mode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Misc.html#index-bool-4990"><code>bool</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Type-Layout.html#index-BOOL_005fTYPE_005fSIZE-3988"><code>BOOL_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Types.html#index-BOOLEAN_005fTYPE-1755"><code>BOOLEAN_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Profile-information.html#index-branch-prediction-3197">branch prediction</a>: <a href="Profile-information.html#Profile-information">Profile information</a></li>
<li><a href="Costs.html#index-BRANCH_005fCOST-4449"><code>BRANCH_COST</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Addressing-Modes.html#index-break_005fout_005fmemory_005frefs-4389"><code>break_out_memory_refs</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-BREAK_005fSTMT-2092"><code>BREAK_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Sections.html#index-BSS_005fSECTION_005fASM_005fOP-4520"><code>BSS_SECTION_ASM_OP</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Arithmetic.html#index-bswap-2975"><code>bswap</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3507"><code>bswap</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashon-pattern-3524"><code>btrunc</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Macros-and-Functions.html#index-build0-1719"><code>build0</code></a>: <a href="Macros-and-Functions.html#Macros-and-Functions">Macros and Functions</a></li>
<li><a href="Macros-and-Functions.html#index-build1-1720"><code>build1</code></a>: <a href="Macros-and-Functions.html#Macros-and-Functions">Macros and Functions</a></li>
<li><a href="Macros-and-Functions.html#index-build2-1721"><code>build2</code></a>: <a href="Macros-and-Functions.html#Macros-and-Functions">Macros and Functions</a></li>
<li><a href="Macros-and-Functions.html#index-build3-1722"><code>build3</code></a>: <a href="Macros-and-Functions.html#Macros-and-Functions">Macros and Functions</a></li>
<li><a href="Macros-and-Functions.html#index-build4-1723"><code>build4</code></a>: <a href="Macros-and-Functions.html#Macros-and-Functions">Macros and Functions</a></li>
<li><a href="Macros-and-Functions.html#index-build5-1724"><code>build5</code></a>: <a href="Macros-and-Functions.html#Macros-and-Functions">Macros and Functions</a></li>
<li><a href="Macros-and-Functions.html#index-build6-1725"><code>build6</code></a>: <a href="Macros-and-Functions.html#Macros-and-Functions">Macros and Functions</a></li>
<li><a href="Standard-Names.html#your_sha256_hashern-3609"><code>builtin_longjmp</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashruction-pattern-3608"><code>builtin_setjmp_receiver</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashtion-pattern-3607"><code>builtin_setjmp_setup</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Machine-Modes.html#index-byte_005fmode-2818"><code>byte_mode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Storage-Layout.html#index-BYTES_005fBIG_005fENDIAN-3926"><code>BYTES_BIG_ENDIAN</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hash-on-_0040code_007bsubreg_007d-2865"><code>BYTES_BIG_ENDIAN</code>, effect on <code>subreg</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Output-Statement.html#index-C-statements-for-assembler-output-3271">C statements for assembler output</a>: <a href="Output-Statement.html#Output-Statement">Output Statement</a></li>
<li><a href="Run_002dtime-Target.html#index-C_005fCOMMON_005fOVERRIDE_005fOPTIONS-3914"><code>C_COMMON_OVERRIDE_OPTIONS</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Misc.html#index-c_005fregister_005fpragma-4922"><code>c_register_pragma</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-c_005fregister_005fpragma_005fwith_005fexpansion-4923"><code>c_register_pragma_with_expansion</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="GTY-Options.html#index-cache-5082"><code>cache</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Side-Effects.html#index-call-3039"><code>call</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Flags.html#index-call-2712"><code>call</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bcall_007d-instruction-pattern-3576"><code>call</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Calls.html#index-g_t_0040code_007bcall_007d-usage-3134"><code>call</code> usage</a>: <a href="Calls.html#Calls">Calls</a></li>
<li><a href="Flags.html#your_sha256_hashinsn_007d-2614"><code>call</code>, in <code>call_insn</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash2652"><code>call</code>, in <code>mem</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Register-Basics.html#index-call_002dclobbered-register-4054">call-clobbered register</a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Register-Basics.html#index-call_002dsaved-register-4055">call-saved register</a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Register-Basics.html#index-call_002dused-register-4053">call-used register</a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-CALL_005fEXPR-1910"><code>CALL_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Insns.html#index-call_005finsn-3076"><code>call_insn</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#your_sha256_hashfc_007d-2613"><code>call_insn</code> and `<samp><span class="samp">/c</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashff_007d-2667"><code>call_insn</code> and `<samp><span class="samp">/f</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashfi_007d-2608"><code>call_insn</code> and `<samp><span class="samp">/i</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashfj_007d-2685"><code>call_insn</code> and `<samp><span class="samp">/j</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashfs_007d-2632"><code>call_insn</code> and `<samp><span class="samp">/s</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashfu_007d-2617"><code>call_insn</code> and `<samp><span class="samp">/u</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashfu_007d-or-_0040samp_007b_002fi_007d-2611"><code>call_insn</code> and `<samp><span class="samp">/u</span></samp>' or `<samp><span class="samp">/i</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashfv_007d-2622"><code>call_insn</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Insns.html#index-CALL_005fINSN_005fFUNCTION_005fUSAGE-3077"><code>CALL_INSN_FUNCTION_USAGE</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Standard-Names.html#your_sha256_hash8"><code>call_pop</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Stack-Arguments.html#index-CALL_005fPOPS_005fARGS-4227"><code>CALL_POPS_ARGS</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Register-Basics.html#index-CALL_005fREALLY_005fUSED_005fREGISTERS-4052"><code>CALL_REALLY_USED_REGISTERS</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Register-Basics.html#index-CALL_005fUSED_005fREGISTERS-4048"><code>CALL_USED_REGISTERS</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Register-Basics.html#index-call_005fused_005fregs-4061"><code>call_used_regs</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Standard-Names.html#your_sha256_hash577"><code>call_value</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashattern-3579"><code>call_value_pop</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Stack-and-Calling.html#index-calling-conventions-4142">calling conventions</a>: <a href="Stack-and-Calling.html#Stack-and-Calling">Stack and Calling</a></li>
<li><a href="Calls.html#index-calling-functions-in-RTL-3131">calling functions in RTL</a>: <a href="Calls.html#Calls">Calls</a></li>
<li><a href="Standard-Names.html#index-can_005fcreate_005fpseudo_005fp-3384"><code>can_create_pseudo_p</code></a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Basic-Blocks.html#index-can_005ffallthru-3164"><code>can_fallthru</code></a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Configure-Terms.html#index-canadian-1663">canadian</a>: <a href="Configure-Terms.html#Configure-Terms">Configure Terms</a></li>
<li><a href="Register-Classes.html#index-CANNOT_005fCHANGE_005fMODE_005fCLASS-4133"><code>CANNOT_CHANGE_MODE_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hash-and-subreg-semantics-2867"><code>CANNOT_CHANGE_MODE_CLASS</code> and subreg semantics</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Insn-Canonicalizations.html#index-canonicalization-of-instructions-3679">canonicalization of instructions</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Standard-Names.html#your_sha256_hashare_007d-instruction-pattern-3593"><code>canonicalize_funcptr_for_compare</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Multi_002dAlternative.html#index-caret-3347">caret</a>: <a href="Multi_002dAlternative.html#Multi_002dAlternative">Multi-Alternative</a></li>
<li><a href="Misc.html#index-CASE_005fVECTOR_005fMODE-4894"><code>CASE_VECTOR_MODE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-CASE_005fVECTOR_005fPC_005fRELATIVE-4896"><code>CASE_VECTOR_PC_RELATIVE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-CASE_005fVECTOR_005fSHORTEN_005fMODE-4895"><code>CASE_VECTOR_SHORTEN_MODE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bcasesi_007d-instruction-pattern-3588"><code>casesi</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashuction-pattern-3574"><code>cbranch</code><var>mode</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="CC0-Condition-Codes.html#index-cc0-4428"><code>cc0</code></a>: <a href="CC0-Condition-Codes.html#CC0-Condition-Codes">CC0 Condition Codes</a></li>
<li><a href="Regs-and-Memory.html#index-cc0-2872"><code>cc0</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Sharing.html#index-g_t_0040code_007bcc0_007d_002c-RTL-sharing-3143"><code>cc0</code>, RTL sharing</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Regs-and-Memory.html#index-cc0_005frtx-2874"><code>cc0_rtx</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Driver.html#index-CC1_005fSPEC-3863"><code>CC1_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-CC1PLUS_005fSPEC-3864"><code>CC1PLUS_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="CC0-Condition-Codes.html#index-cc_005fstatus-4429"><code>cc_status</code></a>: <a href="CC0-Condition-Codes.html#CC0-Condition-Codes">CC0 Condition Codes</a></li>
<li><a href="CC0-Condition-Codes.html#index-CC_005fSTATUS_005fMDEP-4430"><code>CC_STATUS_MDEP</code></a>: <a href="CC0-Condition-Codes.html#CC0-Condition-Codes">CC0 Condition Codes</a></li>
<li><a href="CC0-Condition-Codes.html#index-CC_005fSTATUS_005fMDEP_005fINIT-4431"><code>CC_STATUS_MDEP_INIT</code></a>: <a href="CC0-Condition-Codes.html#CC0-Condition-Codes">CC0 Condition Codes</a></li>
<li><a href="Machine-Modes.html#index-CCmode-2768"><code>CCmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="MODE_005fCC-Condition-Codes.html#index-CCmode-4433"><code>CCmode</code></a>: <a href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes">MODE_CC Condition Codes</a></li>
<li><a href="Machine-Modes.html#index-CDImode-2780"><code>CDImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-CEIL_005fDIV_005fEXPR-1885"><code>CEIL_DIV_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-CEIL_005fMOD_005fEXPR-1889"><code>CEIL_MOD_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3526"><code>ceil</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Frame-Layout.html#index-CFA_005fFRAME_005fBASE_005fOFFSET-4168"><code>CFA_FRAME_BASE_OFFSET</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Maintaining-the-CFG.html#index-CFG-verification-3226">CFG verification</a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Control-Flow.html#index-CFG_002c-Control-Flow-Graph-3152">CFG, Control Flow Graph</a>: <a href="Control-Flow.html#Control-Flow">Control Flow</a></li>
<li><a href="Maintaining-the-CFG.html#index-cfghooks_002eh-3205"><code>cfghooks.h</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Parsing-pass.html#index-cgraph_005ffinalize_005ffunction-1682"><code>cgraph_finalize_function</code></a>: <a href="Parsing-pass.html#Parsing-pass">Parsing pass</a></li>
<li><a href="GTY-Options.html#index-chain_005fcircular-5089"><code>chain_circular</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="GTY-Options.html#index-chain_005fnext-5087"><code>chain_next</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="GTY-Options.html#index-chain_005fprev-5088"><code>chain_prev</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Standard-Names.html#index-change_005faddress-3382"><code>change_address</code></a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Type-Layout.html#index-CHAR_005fTYPE_005fSIZE-3987"><code>CHAR_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Standard-Names.html#your_sha256_hash3601"><code>check_stack</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Machine-Modes.html#index-CHImode-2778"><code>CHImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Cilk-Plus-Transformation.html#index-CILK_005fPLUS-1683">CILK_PLUS</a>: <a href="Cilk-Plus-Transformation.html#Cilk-Plus-Transformation">Cilk Plus Transformation</a></li>
<li><a href="Register-Classes.html#index-class-definitions_002c-register-4099">class definitions, register</a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Class-Preferences.html#index-class-preference-constraints-3350">class preference constraints</a>: <a href="Class-Preferences.html#Class-Preferences">Class Preferences</a></li>
<li><a href="Classes.html#index-class_002c-scope-2039">class, scope</a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Register-Classes.html#index-CLASS_005fMAX_005fNREGS-4132"><code>CLASS_MAX_NREGS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Types-for-C_002b_002b.html#index-CLASS_005fTYPE_005fP-2026"><code>CLASS_TYPE_P</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="RTL-Classes.html#index-classes-of-RTX-codes-2550">classes of RTX codes</a>: <a href="RTL-Classes.html#RTL-Classes">RTL Classes</a></li>
<li><a href="Classes.html#index-CLASSTYPE_005fDECLARED_005fCLASS-2042"><code>CLASSTYPE_DECLARED_CLASS</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Classes.html#index-CLASSTYPE_005fHAS_005fMUTABLE-2051"><code>CLASSTYPE_HAS_MUTABLE</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Classes.html#index-CLASSTYPE_005fNON_005fPOD_005fP-2053"><code>CLASSTYPE_NON_POD_P</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-CLEANUP_005fDECL-2094"><code>CLEANUP_DECL</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-CLEANUP_005fEXPR-2095"><code>CLEANUP_EXPR</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-CLEANUP_005fPOINT_005fEXPR-1915"><code>CLEANUP_POINT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-CLEANUP_005fSTMT-2093"><code>CLEANUP_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Cleanups.html#index-Cleanups-1942">Cleanups</a>: <a href="Cleanups.html#Cleanups">Cleanups</a></li>
<li><a href="Standard-Names.html#your_sha256_hash3670"><code>clear_cache</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Trampolines.html#index-CLEAR_005fINSN_005fCACHE-4351"><code>CLEAR_INSN_CACHE</code></a>: <a href="Trampolines.html#Trampolines">Trampolines</a></li>
<li><a href="Costs.html#index-CLEAR_005fRATIO-4455"><code>CLEAR_RATIO</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Side-Effects.html#index-clobber-3040"><code>clobber</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Arithmetic.html#index-clrsb-2970"><code>clrsb</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3535"><code>clrsb</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Arithmetic.html#index-clz-2971"><code>clz</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Misc.html#index-CLZ_005fDEFINED_005fVALUE_005fAT_005fZERO-4911"><code>CLZ_DEFINED_VALUE_AT_ZERO</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3536"><code>clz</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3546"><code>cmpmem</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3545"><code>cmpstr</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashon-pattern-3544"><code>cmpstrn</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Expander-Definitions.html#index-code-generation-RTL-sequences-3695">code generation RTL sequences</a>: <a href="Expander-Definitions.html#Expander-Definitions">Expander Definitions</a></li>
<li><a href="Code-Iterators.html#index-code-iterators-in-_0040file_007b_002emd_007d-files-3840">code iterators in <samp><span class="file">.md</span></samp> files</a>: <a href="Code-Iterators.html#Code-Iterators">Code Iterators</a></li>
<li><a href="Insns.html#index-code_005flabel-3078"><code>code_label</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Basic-Blocks.html#index-CODE_005fLABEL-3160"><code>CODE_LABEL</code></a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Flags.html#your_sha256_hash2fi_007d-2635"><code>code_label</code> and `<samp><span class="samp">/i</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash2fv_007d-2624"><code>code_label</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Insns.html#index-CODE_005fLABEL_005fNUMBER-3079"><code>CODE_LABEL_NUMBER</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="RTL-Objects.html#index-codes_002c-RTL-expression-2544">codes, RTL expression</a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="Machine-Modes.html#index-COImode-2782"><code>COImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Host-Misc.html#index-COLLECT2_005fHOST_005fINITIALIZATION-5047"><code>COLLECT2_HOST_INITIALIZATION</code></a>: <a href="Host-Misc.html#Host-Misc">Host Misc</a></li>
<li><a href="Misc.html#index-COLLECT_005fEXPORT_005fLIST-4977"><code>COLLECT_EXPORT_LIST</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Macros-for-Initialization.html#index-COLLECT_005fSHARED_005fFINI_005fFUNC-4675"><code>COLLECT_SHARED_FINI_FUNC</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Macros-for-Initialization.html#index-COLLECT_005fSHARED_005fINIT_005fFUNC-4674"><code>COLLECT_SHARED_INIT_FUNC</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Maintaining-the-CFG.html#index-commit_005fedge_005finsertions-3221"><code>commit_edge_insertions</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Arithmetic.html#index-compare-2899"><code>compare</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Insn-Canonicalizations.html#your_sha256_hash6"><code>compare</code>, canonicalization of</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-comparison_005foperator-3299"><code>comparison_operator</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Passes.html#index-compiler-passes-and-files-1670">compiler passes and files</a>: <a href="Passes.html#Passes">Passes</a></li>
<li><a href="Arithmetic.html#index-complement_002c-bitwise-2937">complement, bitwise</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Constant-expressions.html#index-COMPLEX_005fCST-1836"><code>COMPLEX_CST</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-COMPLEX_005fEXPR-1858"><code>COMPLEX_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Types.html#index-COMPLEX_005fTYPE-1753"><code>COMPLEX_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Storage-References.html#index-COMPONENT_005fREF-1847"><code>COMPONENT_REF</code></a>: <a href="Storage-References.html#Storage-References">Storage References</a></li>
<li><a href="Compound-Expressions.html#index-Compound-Expressions-2141">Compound Expressions</a>: <a href="Compound-Expressions.html#Compound-Expressions">Compound Expressions</a></li>
<li><a href="Compound-Lvalues.html#index-Compound-Lvalues-2142">Compound Lvalues</a>: <a href="Compound-Lvalues.html#Compound-Lvalues">Compound Lvalues</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-COMPOUND_005fEXPR-1908"><code>COMPOUND_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-COMPOUND_005fLITERAL_005fEXPR-1917"><code>COMPOUND_LITERAL_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-COMPOUND_005fLITERAL_005fEXPR_005fDECL-1923"><code>COMPOUND_LITERAL_EXPR_DECL</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-COMPOUND_005fLITERAL_005fEXPR_005fDECL_005fEXPR-1922"><code>COMPOUND_LITERAL_EXPR_DECL_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Edges.html#index-computed-jump-3187">computed jump</a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Insn-Lengths.html#index-computing-the-length-of-an-insn-3769">computing the length of an insn</a>: <a href="Insn-Lengths.html#Insn-Lengths">Insn Lengths</a></li>
<li><a href="Regs-and-Memory.html#index-concat-2879"><code>concat</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Regs-and-Memory.html#index-concatn-2880"><code>concatn</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Comparisons.html#index-cond-3000"><code>cond</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bcond_007d-and-attributes-3730"><code>cond</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Side-Effects.html#index-cond_005fexec-3044"><code>cond_exec</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-COND_005fEXPR-1909"><code>COND_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Regs-and-Memory.html#index-condition-code-register-2873">condition code register</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Condition-Code.html#index-condition-code-status-4427">condition code status</a>: <a href="Condition-Code.html#Condition-Code">Condition Code</a></li>
<li><a href="Comparisons.html#index-condition-codes-2977">condition codes</a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Conditional-Execution.html#index-conditional-execution-3819">conditional execution</a>: <a href="Conditional-Execution.html#Conditional-Execution">Conditional Execution</a></li>
<li><a href="Conditional-Expressions.html#index-Conditional-Expressions-2143">Conditional Expressions</a>: <a href="Conditional-Expressions.html#Conditional-Expressions">Conditional Expressions</a></li>
<li><a href="Patterns.html#index-conditions_002c-in-patterns-3246">conditions, in patterns</a>: <a href="Patterns.html#Patterns">Patterns</a></li>
<li><a href="Filesystem.html#index-configuration-file-5028">configuration file</a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="Host-Misc.html#index-configuration-file-5042">configuration file</a>: <a href="Host-Misc.html#Host-Misc">Host Misc</a></li>
<li><a href="Configure-Terms.html#index-configure-terms-1662">configure terms</a>: <a href="Configure-Terms.html#Configure-Terms">Configure Terms</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-CONJ_005fEXPR-1859"><code>CONJ_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Constants.html#index-const-2839"><code>const</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-CONST0_005fRTX-2841"><code>CONST0_RTX</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-const0_005frtx-2823"><code>const0_rtx</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-const1_005frtx-2824"><code>const1_rtx</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-CONST1_005fRTX-2842"><code>CONST1_RTX</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-const2_005frtx-2825"><code>const2_rtx</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-CONST2_005fRTX-2843"><code>CONST2_RTX</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Declarations.html#index-CONST_005fDECL-1797"><code>CONST_DECL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Constants.html#index-const_005fdouble-2828"><code>const_double</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Sharing.html#your_sha256_hash44"><code>const_double</code>, RTL sharing</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Constants.html#index-CONST_005fDOUBLE_005fLOW-2829"><code>CONST_DOUBLE_LOW</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-const_005fdouble_005foperand-3287"><code>const_double_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Constants.html#index-const_005ffixed-2834"><code>const_fixed</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-const_005fint-2822"><code>const_int</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Expressions.html#your_sha256_hash31"><code>const_int</code> and attribute tests</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bconst_005fint_007d-and-attributes-3727"><code>const_int</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Sharing.html#index-g_t_0040code_007bconst_005fint_007d_002c-RTL-sharing-3141"><code>const_int</code>, RTL sharing</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-const_005fint_005foperand-3286"><code>const_int_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Constants.html#index-const_005fstring-2836"><code>const_string</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Expressions.html#your_sha256_hash><code>const_string</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Constants.html#index-const_005ftrue_005frtx-2827"><code>const_true_rtx</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-const_005fvector-2835"><code>const_vector</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Sharing.html#your_sha256_hash45"><code>const_vector</code>, RTL sharing</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Constants.html#index-CONST_005fWIDE_005fINT-2830"><code>CONST_WIDE_INT</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-CONST_005fWIDE_005fINT_005fELT-2833"><code>CONST_WIDE_INT_ELT</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-CONST_005fWIDE_005fINT_005fNUNITS-2832"><code>CONST_WIDE_INT_NUNITS</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-CONST_005fWIDE_005fINT_005fVEC-2831"><code>CONST_WIDE_INT_VEC</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constant-Attributes.html#index-constant-attributes-3776">constant attributes</a>: <a href="Constant-Attributes.html#Constant-Attributes">Constant Attributes</a></li>
<li><a href="Constant-Definitions.html#index-constant-definitions-3828">constant definitions</a>: <a href="Constant-Definitions.html#Constant-Definitions">Constant Definitions</a></li>
<li><a href="Addressing-Modes.html#index-CONSTANT_005fADDRESS_005fP-4379"><code>CONSTANT_ADDRESS_P</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Storage-Layout.html#index-CONSTANT_005fALIGNMENT-3955"><code>CONSTANT_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Addressing-Modes.html#index-CONSTANT_005fP-4380"><code>CONSTANT_P</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Flags.html#index-CONSTANT_005fPOOL_005fADDRESS_005fP-2601"><code>CONSTANT_POOL_ADDRESS_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Data-Output.html#index-CONSTANT_005fPOOL_005fBEFORE_005fFUNCTION-4595"><code>CONSTANT_POOL_BEFORE_FUNCTION</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Simple-Constraints.html#index-constants-in-constraints-3317">constants in constraints</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Constants.html#index-constm1_005frtx-2826"><code>constm1_rtx</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Modifiers.html#index-constraint-modifier-characters-3354">constraint modifier characters</a>: <a href="Modifiers.html#Modifiers">Modifiers</a></li>
<li><a href="Simple-Constraints.html#index-constraint_002c-matching-3331">constraint, matching</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="C-Constraint-Interface.html#index-constraint_005fnum-3373"><code>constraint_num</code></a>: <a href="C-Constraint-Interface.html#C-Constraint-Interface">C Constraint Interface</a></li>
<li><a href="C-Constraint-Interface.html#index-constraint_005fsatisfied_005fp-3375"><code>constraint_satisfied_p</code></a>: <a href="C-Constraint-Interface.html#C-Constraint-Interface">C Constraint Interface</a></li>
<li><a href="Constraints.html#index-constraints-3305">constraints</a>: <a href="Constraints.html#Constraints">Constraints</a></li>
<li><a href="Define-Constraints.html#index-constraints_002c-defining-3366">constraints, defining</a>: <a href="Define-Constraints.html#Define-Constraints">Define Constraints</a></li>
<li><a href="Machine-Constraints.html#index-constraints_002c-machine-specific-3363">constraints, machine specific</a>: <a href="Machine-Constraints.html#Machine-Constraints">Machine Constraints</a></li>
<li><a href="C-Constraint-Interface.html#index-constraints_002c-testing-3372">constraints, testing</a>: <a href="C-Constraint-Interface.html#C-Constraint-Interface">C Constraint Interface</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-CONSTRUCTOR-1916"><code>CONSTRUCTOR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Collect2.html#index-constructors_002c-automatic-calls-5072">constructors, automatic calls</a>: <a href="Collect2.html#Collect2">Collect2</a></li>
<li><a href="Initialization.html#index-constructors_002c-output-of-4666">constructors, output of</a>: <a href="Initialization.html#Initialization">Initialization</a></li>
<li><a href="Containers.html#index-container-1733">container</a>: <a href="Containers.html#Containers">Containers</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-CONTINUE_005fSTMT-2096"><code>CONTINUE_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Contributors.html#index-contributors-5128">contributors</a>: <a href="Contributors.html#Contributors">Contributors</a></li>
<li><a href="Register-Basics.html#index-controlling-register-usage-4067">controlling register usage</a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Driver.html#index-controlling-the-compilation-driver-3858">controlling the compilation driver</a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Interface.html#index-conventions_002c-run_002dtime-10">conventions, run-time</a>: <a href="Interface.html#Interface">Interface</a></li>
<li><a href="Conversions.html#index-conversions-3010">conversions</a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-CONVERT_005fEXPR-1864"><code>CONVERT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Addressing-Modes.html#index-copy_005frtx-4393"><code>copy_rtx</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Sharing.html#index-copy_005frtx_005fif_005fshared-3151"><code>copy_rtx_if_shared</code></a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Standard-Names.html#your_sha256_hashtion-pattern-3533"><code>copysign</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3516"><code>cos</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Costs.html#index-costs-of-instructions-4442">costs of instructions</a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Types-for-C_002b_002b.html#index-CP_005fINTEGRAL_005fTYPE-2024"><code>CP_INTEGRAL_TYPE</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Namespaces.html#index-cp_005fnamespace_005fdecls-2038"><code>cp_namespace_decls</code></a>: <a href="Namespaces.html#Namespaces">Namespaces</a></li>
<li><a href="Types-for-C_002b_002b.html#index-CP_005fTYPE_005fCONST_005fNON_005fVOLATILE_005fP-2020"><code>CP_TYPE_CONST_NON_VOLATILE_P</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types-for-C_002b_002b.html#index-CP_005fTYPE_005fCONST_005fP-2017"><code>CP_TYPE_CONST_P</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types-for-C_002b_002b.html#index-cp_005ftype_005fquals-1996"><code>cp_type_quals</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types-for-C_002b_002b.html#index-CP_005fTYPE_005fRESTRICT_005fP-2019"><code>CP_TYPE_RESTRICT_P</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types-for-C_002b_002b.html#index-CP_005fTYPE_005fVOLATILE_005fP-2018"><code>CP_TYPE_VOLATILE_P</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Driver.html#index-CPLUSPLUS_005fCPP_005fSPEC-3862"><code>CPLUSPLUS_CPP_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-CPP_005fSPEC-3861"><code>CPP_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Machine-Modes.html#index-CQImode-2777"><code>CQImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Floating-Point.html#index-cross-compilation-and-floating-point-4804">cross compilation and floating point</a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Sections.html#index-CRT_005fCALL_005fSTATIC_005fFUNCTION-4528"><code>CRT_CALL_STATIC_FUNCTION</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Function-Entry.html#index-crtl_002d_003eargs_002epops_005fargs-4300"><code>crtl->args.pops_args</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Function-Entry.html#index-crtl_002d_003eargs_002epretend_005fargs_005fsize-4302"><code>crtl->args.pretend_args_size</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Stack-Arguments.html#index-crtl_002d_003eoutgoing_005fargs_005fsize-4220"><code>crtl->outgoing_args_size</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Target-Fragment.html#index-CRTSTUFF_005fT_005fCFLAGS-5057"><code>CRTSTUFF_T_CFLAGS</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Target-Fragment.html#index-CRTSTUFF_005fT_005fCFLAGS_005fS-5058"><code>CRTSTUFF_T_CFLAGS_S</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Machine-Modes.html#index-CSImode-2779"><code>CSImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Standard-Names.html#your_sha256_hashction-pattern-3573"><code>cstore</code><var>mode</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Machine-Modes.html#index-CTImode-2781"><code>CTImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Standard-Names.html#your_sha256_hashon-pattern-3616"><code>ctrap</code><var>MM</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Arithmetic.html#index-ctz-2972"><code>ctz</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Misc.html#index-CTZ_005fDEFINED_005fVALUE_005fAT_005fZERO-4912"><code>CTZ_DEFINED_VALUE_AT_ZERO</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3537"><code>ctz</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Register-Arguments.html#index-CUMULATIVE_005fARGS-4241"><code>CUMULATIVE_ARGS</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Leaf-Functions.html#index-current_005ffunction_005fis_005fleaf-4092"><code>current_function_is_leaf</code></a>: <a href="Leaf-Functions.html#Leaf-Functions">Leaf Functions</a></li>
<li><a href="Leaf-Functions.html#your_sha256_hash093"><code>current_function_uses_only_leaf_regs</code></a>: <a href="Leaf-Functions.html#Leaf-Functions">Leaf Functions</a></li>
<li><a href="Conditional-Execution.html#index-current_005finsn_005fpredicate-3822"><code>current_insn_predicate</code></a>: <a href="Conditional-Execution.html#Conditional-Execution">Conditional Execution</a></li>
<li><a href="Machine-Modes.html#index-DAmode-2762"><code>DAmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Processor-pipeline-description.html#index-data-bypass-3807">data bypass</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Processor-pipeline-description.html#index-data-dependence-delays-3784">data dependence delays</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Dependency-analysis.html#index-Data-Dependency-Analysis-3239">Data Dependency Analysis</a>: <a href="Dependency-analysis.html#Dependency-analysis">Dependency analysis</a></li>
<li><a href="Per_002dFunction-Data.html#index-data-structures-3921">data structures</a>: <a href="Per_002dFunction-Data.html#Per_002dFunction-Data">Per-Function Data</a></li>
<li><a href="Storage-Layout.html#index-DATA_005fABI_005fALIGNMENT-3954"><code>DATA_ABI_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Storage-Layout.html#index-DATA_005fALIGNMENT-3952"><code>DATA_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Sections.html#index-DATA_005fSECTION_005fASM_005fOP-4517"><code>DATA_SECTION_ASM_OP</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Instruction-Output.html#index-DBR_005fOUTPUT_005fSEQEND-4700"><code>DBR_OUTPUT_SEQEND</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Instruction-Output.html#index-dbr_005fsequence_005flength-4699"><code>dbr_sequence_length</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="DBX-Options.html#index-DBX_005fBLOCKS_005fFUNCTION_005fRELATIVE-4770"><code>DBX_BLOCKS_FUNCTION_RELATIVE</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-DBX_005fCONTIN_005fCHAR-4763"><code>DBX_CONTIN_CHAR</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-DBX_005fCONTIN_005fLENGTH-4762"><code>DBX_CONTIN_LENGTH</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-DBX_005fDEBUGGING_005fINFO-4754"><code>DBX_DEBUGGING_INFO</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-DBX_005fFUNCTION_005fFIRST-4769"><code>DBX_FUNCTION_FIRST</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-DBX_005fLINES_005fFUNCTION_005fRELATIVE-4771"><code>DBX_LINES_FUNCTION_RELATIVE</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-DBX_005fNO_005fXREFS-4761"><code>DBX_NO_XREFS</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="File-Names-and-DBX.html#index-DBX_005fOUTPUT_005fMAIN_005fSOURCE_005fFILE_005fEND-4779"><code>DBX_OUTPUT_MAIN_SOURCE_FILE_END</code></a>: <a href="File-Names-and-DBX.html#File-Names-and-DBX">File Names and DBX</a></li>
<li><a href="File-Names-and-DBX.html#index-DBX_005fOUTPUT_005fMAIN_005fSOURCE_005fFILENAME-4776"><code>DBX_OUTPUT_MAIN_SOURCE_FILENAME</code></a>: <a href="File-Names-and-DBX.html#File-Names-and-DBX">File Names and DBX</a></li>
<li><a href="File-Names-and-DBX.html#your_sha256_hashOURCE_005fFILE_005fEND-4780"><code>DBX_OUTPUT_NULL_N_SO_AT_MAIN_SOURCE_FILE_END</code></a>: <a href="File-Names-and-DBX.html#File-Names-and-DBX">File Names and DBX</a></li>
<li><a href="DBX-Hooks.html#index-DBX_005fOUTPUT_005fSOURCE_005fLINE-4773"><code>DBX_OUTPUT_SOURCE_LINE</code></a>: <a href="DBX-Hooks.html#DBX-Hooks">DBX Hooks</a></li>
<li><a href="All-Debuggers.html#index-DBX_005fREGISTER_005fNUMBER-4750"><code>DBX_REGISTER_NUMBER</code></a>: <a href="All-Debuggers.html#All-Debuggers">All Debuggers</a></li>
<li><a href="DBX-Options.html#index-DBX_005fREGPARM_005fSTABS_005fCODE-4767"><code>DBX_REGPARM_STABS_CODE</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-DBX_005fREGPARM_005fSTABS_005fLETTER-4768"><code>DBX_REGPARM_STABS_LETTER</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-DBX_005fSTATIC_005fCONST_005fVAR_005fCODE-4766"><code>DBX_STATIC_CONST_VAR_CODE</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-DBX_005fSTATIC_005fSTAB_005fDATA_005fSECTION-4764"><code>DBX_STATIC_STAB_DATA_SECTION</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-DBX_005fTYPE_005fDECL_005fSTABS_005fCODE-4765"><code>DBX_TYPE_DECL_STABS_CODE</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="DBX-Options.html#index-DBX_005fUSE_005fBINCL-4772"><code>DBX_USE_BINCL</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="Machine-Modes.html#index-DCmode-2774"><code>DCmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-DDmode-2747"><code>DDmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Insn-Canonicalizations.html#index-De-Morgan_0027s-law-3689">De Morgan's law</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="define_005fpeephole.html#index-dead_005for_005fset_005fp-3715"><code>dead_or_set_p</code></a>: <a href="define_005fpeephole.html#define_005fpeephole">define_peephole</a></li>
<li><a href="Debug-Information.html#index-debug_005fexpr-3066"><code>debug_expr</code></a>: <a href="Debug-Information.html#Debug-Information">Debug Information</a></li>
<li><a href="Declarations.html#index-DEBUG_005fEXPR_005fDECL-1801"><code>DEBUG_EXPR_DECL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Insns.html#index-debug_005finsn-3099"><code>debug_insn</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="DBX-Options.html#index-DEBUG_005fSYMS_005fTEXT-4757"><code>DEBUG_SYMS_TEXT</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="All-Debuggers.html#index-DEBUGGER_005fARG_005fOFFSET-4752"><code>DEBUGGER_ARG_OFFSET</code></a>: <a href="All-Debuggers.html#All-Debuggers">All Debuggers</a></li>
<li><a href="All-Debuggers.html#index-DEBUGGER_005fAUTO_005fOFFSET-4751"><code>DEBUGGER_AUTO_OFFSET</code></a>: <a href="All-Debuggers.html#All-Debuggers">All Debuggers</a></li>
<li><a href="Decimal-float-library-routines.html#index-decimal-float-library-193">decimal float library</a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Declarations.html#index-DECL_005fALIGN-1810"><code>DECL_ALIGN</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fANTICIPATED-2066"><code>DECL_ANTICIPATED</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Function-Basics.html#index-DECL_005fARGUMENTS-1975"><code>DECL_ARGUMENTS</code></a>: <a href="Function-Basics.html#Function-Basics">Function Basics</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fARRAY_005fDELETE_005fOPERATOR_005fP-2090"><code>DECL_ARRAY_DELETE_OPERATOR_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Function-Basics.html#index-DECL_005fARTIFICIAL-1970"><code>DECL_ARTIFICIAL</code></a>: <a href="Function-Basics.html#Function-Basics">Function Basics</a></li>
<li><a href="Working-with-declarations.html#index-DECL_005fARTIFICIAL-1816"><code>DECL_ARTIFICIAL</code></a>: <a href="Working-with-declarations.html#Working-with-declarations">Working with declarations</a></li>
<li><a href="Function-Properties.html#index-DECL_005fARTIFICIAL-1989"><code>DECL_ARTIFICIAL</code></a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Function-Basics.html#index-DECL_005fASSEMBLER_005fNAME-1974"><code>DECL_ASSEMBLER_NAME</code></a>: <a href="Function-Basics.html#Function-Basics">Function Basics</a></li>
<li><a href="Attributes.html#index-DECL_005fATTRIBUTES-1818"><code>DECL_ATTRIBUTES</code></a>: <a href="Attributes.html#Attributes">Attributes</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fBASE_005fCONSTRUCTOR_005fP-2077"><code>DECL_BASE_CONSTRUCTOR_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fCOMPLETE_005fCONSTRUCTOR_005fP-2076"><code>DECL_COMPLETE_CONSTRUCTOR_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fCOMPLETE_005fDESTRUCTOR_005fP-2080"><code>DECL_COMPLETE_DESTRUCTOR_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fCONST_005fMEMFUNC_005fP-2072"><code>DECL_CONST_MEMFUNC_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fCONSTRUCTOR_005fP-2074"><code>DECL_CONSTRUCTOR_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Namespaces.html#index-DECL_005fCONTEXT-2035"><code>DECL_CONTEXT</code></a>: <a href="Namespaces.html#Namespaces">Namespaces</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fCONV_005fFN_005fP-2082"><code>DECL_CONV_FN_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fCOPY_005fCONSTRUCTOR_005fP-2078"><code>DECL_COPY_CONSTRUCTOR_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fDESTRUCTOR_005fP-2079"><code>DECL_DESTRUCTOR_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fEXTERN_005fC_005fFUNCTION_005fP-2067"><code>DECL_EXTERN_C_FUNCTION_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Declarations.html#index-DECL_005fEXTERNAL-1811"><code>DECL_EXTERNAL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Function-Properties.html#index-DECL_005fEXTERNAL-1982"><code>DECL_EXTERNAL</code></a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fFUNCTION_005fMEMBER_005fP-2069"><code>DECL_FUNCTION_MEMBER_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Function-Properties.html#index-DECL_005fFUNCTION_005fSPECIFIC_005fOPTIMIZATION-1991"><code>DECL_FUNCTION_SPECIFIC_OPTIMIZATION</code></a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Function-Basics.html#index-DECL_005fFUNCTION_005fSPECIFIC_005fOPTIMIZATION-1972"><code>DECL_FUNCTION_SPECIFIC_OPTIMIZATION</code></a>: <a href="Function-Basics.html#Function-Basics">Function Basics</a></li>
<li><a href="Function-Properties.html#index-DECL_005fFUNCTION_005fSPECIFIC_005fTARGET-1990"><code>DECL_FUNCTION_SPECIFIC_TARGET</code></a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Function-Basics.html#index-DECL_005fFUNCTION_005fSPECIFIC_005fTARGET-1971"><code>DECL_FUNCTION_SPECIFIC_TARGET</code></a>: <a href="Function-Basics.html#Function-Basics">Function Basics</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fGLOBAL_005fCTOR_005fP-2083"><code>DECL_GLOBAL_CTOR_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fGLOBAL_005fDTOR_005fP-2084"><code>DECL_GLOBAL_DTOR_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Declarations.html#index-DECL_005fINITIAL-1808"><code>DECL_INITIAL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Function-Basics.html#index-DECL_005fINITIAL-1979"><code>DECL_INITIAL</code></a>: <a href="Function-Basics.html#Function-Basics">Function Basics</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fLINKONCE_005fP-2068"><code>DECL_LINKONCE_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fLOCAL_005fFUNCTION_005fP-2065"><code>DECL_LOCAL_FUNCTION_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fMAIN_005fP-2064"><code>DECL_MAIN_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Namespaces.html#index-DECL_005fNAME-2034"><code>DECL_NAME</code></a>: <a href="Namespaces.html#Namespaces">Namespaces</a></li>
<li><a href="Function-Basics.html#index-DECL_005fNAME-1967"><code>DECL_NAME</code></a>: <a href="Function-Basics.html#Function-Basics">Function Basics</a></li>
<li><a href="Working-with-declarations.html#index-DECL_005fNAME-1812"><code>DECL_NAME</code></a>: <a href="Working-with-declarations.html#Working-with-declarations">Working with declarations</a></li>
<li><a href="Namespaces.html#index-DECL_005fNAMESPACE_005fALIAS-2036"><code>DECL_NAMESPACE_ALIAS</code></a>: <a href="Namespaces.html#Namespaces">Namespaces</a></li>
<li><a href="Namespaces.html#index-DECL_005fNAMESPACE_005fSTD_005fP-2037"><code>DECL_NAMESPACE_STD_P</code></a>: <a href="Namespaces.html#Namespaces">Namespaces</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fNON_005fTHUNK_005fFUNCTION_005fP-2086"><code>DECL_NON_THUNK_FUNCTION_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fNONCONVERTING_005fP-2075"><code>DECL_NONCONVERTING_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fNONSTATIC_005fMEMBER_005fFUNCTION_005fP-2071"><code>DECL_NONSTATIC_MEMBER_FUNCTION_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fOVERLOADED_005fOPERATOR_005fP-2081"><code>DECL_OVERLOADED_OPERATOR_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Function-Properties.html#index-DECL_005fPURE_005fP-1987"><code>DECL_PURE_P</code></a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Function-Basics.html#index-DECL_005fRESULT-1976"><code>DECL_RESULT</code></a>: <a href="Function-Basics.html#Function-Basics">Function Basics</a></li>
<li><a href="Function-Basics.html#index-DECL_005fSAVED_005fTREE-1977"><code>DECL_SAVED_TREE</code></a>: <a href="Function-Basics.html#Function-Basics">Function Basics</a></li>
<li><a href="Declarations.html#index-DECL_005fSIZE-1809"><code>DECL_SIZE</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fSTATIC_005fFUNCTION_005fP-2070"><code>DECL_STATIC_FUNCTION_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-DECL_005fSTMT-2097"><code>DECL_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-DECL_005fSTMT_005fDECL-2098"><code>DECL_STMT_DECL</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fTHUNK_005fP-2085"><code>DECL_THUNK_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Function-Properties.html#index-DECL_005fVIRTUAL_005fP-1988"><code>DECL_VIRTUAL_P</code></a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-DECL_005fVOLATILE_005fMEMFUNC_005fP-2073"><code>DECL_VOLATILE_MEMFUNC_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Declarations.html#index-declaration-1793">declaration</a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="RTL-Declarations.html#index-declarations_002c-RTL-3028">declarations, RTL</a>: <a href="RTL-Declarations.html#RTL-Declarations">RTL Declarations</a></li>
<li><a href="Library-Calls.html#index-DECLARE_005fLIBRARY_005fRENAMES-4355"><code>DECLARE_LIBRARY_RENAMES</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Standard-Names.html#your_sha256_hash5fzero_007d-instruction-pattern-3590"><code>decrement_and_branch_until_zero</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="GTY-Options.html#index-default-5081"><code>default</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="File-Framework.html#index-default_005ffile_005fstart-4557"><code>default_file_start</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="DBX-Options.html#index-DEFAULT_005fGDB_005fEXTENSIONS-4756"><code>DEFAULT_GDB_EXTENSIONS</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="Aggregate-Return.html#index-DEFAULT_005fPCC_005fSTRUCT_005fRETURN-4284"><code>DEFAULT_PCC_STRUCT_RETURN</code></a>: <a href="Aggregate-Return.html#Aggregate-Return">Aggregate Return</a></li>
<li><a href="Type-Layout.html#index-DEFAULT_005fSIGNED_005fCHAR-4003"><code>DEFAULT_SIGNED_CHAR</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Define-Constraints.html#index-define_005faddress_005fconstraint-3370"><code>define_address_constraint</code></a>: <a href="Define-Constraints.html#Define-Constraints">Define Constraints</a></li>
<li><a href="Tagging-Insns.html#index-define_005fasm_005fattributes-3765"><code>define_asm_attributes</code></a>: <a href="Tagging-Insns.html#Tagging-Insns">Tagging Insns</a></li>
<li><a href="Defining-Attributes.html#index-define_005fattr-3723"><code>define_attr</code></a>: <a href="Defining-Attributes.html#Defining-Attributes">Defining Attributes</a></li>
<li><a href="Processor-pipeline-description.html#index-define_005fautomaton-3794"><code>define_automaton</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Processor-pipeline-description.html#index-define_005fbypass-3805"><code>define_bypass</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Constant-Definitions.html#index-define_005fc_005fenum-3831"><code>define_c_enum</code></a>: <a href="Constant-Definitions.html#Constant-Definitions">Constant Definitions</a></li>
<li><a href="Code-Iterators.html#index-define_005fcode_005fattr-3842"><code>define_code_attr</code></a>: <a href="Code-Iterators.html#Code-Iterators">Code Iterators</a></li>
<li><a href="Code-Iterators.html#index-define_005fcode_005fiterator-3841"><code>define_code_iterator</code></a>: <a href="Code-Iterators.html#Code-Iterators">Code Iterators</a></li>
<li><a href="Conditional-Execution.html#index-define_005fcond_005fexec-3821"><code>define_cond_exec</code></a>: <a href="Conditional-Execution.html#Conditional-Execution">Conditional Execution</a></li>
<li><a href="Constant-Definitions.html#index-define_005fconstants-3829"><code>define_constants</code></a>: <a href="Constant-Definitions.html#Constant-Definitions">Constant Definitions</a></li>
<li><a href="Define-Constraints.html#index-define_005fconstraint-3368"><code>define_constraint</code></a>: <a href="Define-Constraints.html#Define-Constraints">Define Constraints</a></li>
<li><a href="Processor-pipeline-description.html#index-define_005fcpu_005funit-3796"><code>define_cpu_unit</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Delay-Slots.html#index-define_005fdelay-3779"><code>define_delay</code></a>: <a href="Delay-Slots.html#Delay-Slots">Delay Slots</a></li>
<li><a href="Constant-Definitions.html#index-define_005fenum-3834"><code>define_enum</code></a>: <a href="Constant-Definitions.html#Constant-Definitions">Constant Definitions</a></li>
<li><a href="Defining-Attributes.html#index-define_005fenum_005fattr-3725"><code>define_enum_attr</code></a>: <a href="Defining-Attributes.html#Defining-Attributes">Defining Attributes</a></li>
<li><a href="Constant-Definitions.html#index-define_005fenum_005fattr-3835"><code>define_enum_attr</code></a>: <a href="Constant-Definitions.html#Constant-Definitions">Constant Definitions</a></li>
<li><a href="Expander-Definitions.html#index-define_005fexpand-3697"><code>define_expand</code></a>: <a href="Expander-Definitions.html#Expander-Definitions">Expander Definitions</a></li>
<li><a href="Patterns.html#index-define_005finsn-3244"><code>define_insn</code></a>: <a href="Patterns.html#Patterns">Patterns</a></li>
<li><a href="Example.html#index-g_t_0040code_007bdefine_005finsn_007d-example-3249"><code>define_insn</code> example</a>: <a href="Example.html#Example">Example</a></li>
<li><a href="Insn-Splitting.html#index-define_005finsn_005fand_005fsplit-3705"><code>define_insn_and_split</code></a>: <a href="Insn-Splitting.html#Insn-Splitting">Insn Splitting</a></li>
<li><a href="Processor-pipeline-description.html#index-define_005finsn_005freservation-3800"><code>define_insn_reservation</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Int-Iterators.html#index-define_005fint_005fattr-3845"><code>define_int_attr</code></a>: <a href="Int-Iterators.html#Int-Iterators">Int Iterators</a></li>
<li><a href="Int-Iterators.html#index-define_005fint_005fiterator-3844"><code>define_int_iterator</code></a>: <a href="Int-Iterators.html#Int-Iterators">Int Iterators</a></li>
<li><a href="Define-Constraints.html#index-define_005fmemory_005fconstraint-3369"><code>define_memory_constraint</code></a>: <a href="Define-Constraints.html#Define-Constraints">Define Constraints</a></li>
<li><a href="Substitutions.html#index-define_005fmode_005fattr-3839"><code>define_mode_attr</code></a>: <a href="Substitutions.html#Substitutions">Substitutions</a></li>
<li><a href="Defining-Mode-Iterators.html#index-define_005fmode_005fiterator-3838"><code>define_mode_iterator</code></a>: <a href="Defining-Mode-Iterators.html#Defining-Mode-Iterators">Defining Mode Iterators</a></li>
<li><a href="define_005fpeephole.html#index-define_005fpeephole-3713"><code>define_peephole</code></a>: <a href="define_005fpeephole.html#define_005fpeephole">define_peephole</a></li>
<li><a href="define_005fpeephole2.html#index-define_005fpeephole2-3716"><code>define_peephole2</code></a>: <a href="define_005fpeephole2.html#define_005fpeephole2">define_peephole2</a></li>
<li><a href="Defining-Predicates.html#index-define_005fpredicate-3302"><code>define_predicate</code></a>: <a href="Defining-Predicates.html#Defining-Predicates">Defining Predicates</a></li>
<li><a href="Processor-pipeline-description.html#index-define_005fquery_005fcpu_005funit-3798"><code>define_query_cpu_unit</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Define-Constraints.html#index-define_005fregister_005fconstraint-3367"><code>define_register_constraint</code></a>: <a href="Define-Constraints.html#Define-Constraints">Define Constraints</a></li>
<li><a href="Processor-pipeline-description.html#index-define_005freservation-3804"><code>define_reservation</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Defining-Predicates.html#index-define_005fspecial_005fpredicate-3303"><code>define_special_predicate</code></a>: <a href="Defining-Predicates.html#Defining-Predicates">Defining Predicates</a></li>
<li><a href="Insn-Splitting.html#index-define_005fsplit-3704"><code>define_split</code></a>: <a href="Insn-Splitting.html#Insn-Splitting">Insn Splitting</a></li>
<li><a href="Define-Subst-Output-Template.html#index-define_005fsubst-3827">define_subst</a>: <a href="Define-Subst-Output-Template.html#Define-Subst-Output-Template">Define Subst Output Template</a></li>
<li><a href="Subst-Iterators.html#index-define_005fsubst-3847"><code>define_subst</code></a>: <a href="Subst-Iterators.html#Subst-Iterators">Subst Iterators</a></li>
<li><a href="Define-Subst.html#index-define_005fsubst-3824"><code>define_subst</code></a>: <a href="Define-Subst.html#Define-Subst">Define Subst</a></li>
<li><a href="Define-Subst-Example.html#index-define_005fsubst-3825">define_subst</a>: <a href="Define-Subst-Example.html#Define-Subst-Example">Define Subst Example</a></li>
<li><a href="Define-Subst.html#index-define_005fsubst-3823">define_subst</a>: <a href="Define-Subst.html#Define-Subst">Define Subst</a></li>
<li><a href="Define-Subst-Pattern-Matching.html#index-define_005fsubst-3826">define_subst</a>: <a href="Define-Subst-Pattern-Matching.html#Define-Subst-Pattern-Matching">Define Subst Pattern Matching</a></li>
<li><a href="Subst-Iterators.html#index-define_005fsubst_005fattr-3848"><code>define_subst_attr</code></a>: <a href="Subst-Iterators.html#Subst-Iterators">Subst Iterators</a></li>
<li><a href="Defining-Attributes.html#index-defining-attributes-and-their-values-3721">defining attributes and their values</a>: <a href="Defining-Attributes.html#Defining-Attributes">Defining Attributes</a></li>
<li><a href="Define-Constraints.html#index-defining-constraints-3365">defining constraints</a>: <a href="Define-Constraints.html#Define-Constraints">Define Constraints</a></li>
<li><a href="Jump-Patterns.html#index-defining-jump-instruction-patterns-3676">defining jump instruction patterns</a>: <a href="Jump-Patterns.html#Jump-Patterns">Jump Patterns</a></li>
<li><a href="Looping-Patterns.html#index-defining-looping-instruction-patterns-3678">defining looping instruction patterns</a>: <a href="Looping-Patterns.html#Looping-Patterns">Looping Patterns</a></li>
<li><a href="Peephole-Definitions.html#index-defining-peephole-optimizers-3712">defining peephole optimizers</a>: <a href="Peephole-Definitions.html#Peephole-Definitions">Peephole Definitions</a></li>
<li><a href="Defining-Predicates.html#index-defining-predicates-3301">defining predicates</a>: <a href="Defining-Predicates.html#Defining-Predicates">Defining Predicates</a></li>
<li><a href="Expander-Definitions.html#index-defining-RTL-sequences-for-code-generation-3696">defining RTL sequences for code generation</a>: <a href="Expander-Definitions.html#Expander-Definitions">Expander Definitions</a></li>
<li><a href="Delay-Slots.html#index-delay-slots_002c-defining-3778">delay slots, defining</a>: <a href="Delay-Slots.html#Delay-Slots">Delay Slots</a></li>
<li><a href="GTY-Options.html#index-deletable-5083"><code>deletable</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Filesystem.html#index-DELETE_005fIF_005fORDINARY-5040"><code>DELETE_IF_ORDINARY</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="Dependent-Patterns.html#index-Dependent-Patterns-3673">Dependent Patterns</a>: <a href="Dependent-Patterns.html#Dependent-Patterns">Dependent Patterns</a></li>
<li><a href="GTY-Options.html#index-desc-5079"><code>desc</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Initialization.html#index-destructors_002c-output-of-4667">destructors, output of</a>: <a href="Initialization.html#Initialization">Initialization</a></li>
<li><a href="Processor-pipeline-description.html#index-deterministic-finite-state-automaton-3789">deterministic finite state automaton</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Machine-Modes.html#index-DFmode-2744"><code>DFmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Simple-Constraints.html#index-digits-in-constraint-3329">digits in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Machine-Modes.html#index-DImode-2736"><code>DImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Filesystem.html#index-DIR_005fSEPARATOR-5031"><code>DIR_SEPARATOR</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="Filesystem.html#index-DIR_005fSEPARATOR_005f2-5032"><code>DIR_SEPARATOR_2</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="Including-Patterns.html#index-directory-options-_002emd-3708">directory options .md</a>: <a href="Including-Patterns.html#Including-Patterns">Including Patterns</a></li>
<li><a href="Register-Basics.html#index-disabling-certain-registers-4066">disabling certain registers</a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Dispatch-Tables.html#index-dispatch-table-4711">dispatch table</a>: <a href="Dispatch-Tables.html#Dispatch-Tables">Dispatch Tables</a></li>
<li><a href="Arithmetic.html#index-div-2915"><code>div</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bdiv_007d-and-attributes-3749"><code>div</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Arithmetic.html#index-division-2917">division</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3409"><code>div</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashon-pattern-3493"><code>divmod</code><var>m</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-DO_005fBODY-2100"><code>DO_BODY</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-DO_005fCOND-2101"><code>DO_COND</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-DO_005fSTMT-2099"><code>DO_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Multi_002dAlternative.html#index-dollar-sign-3349">dollar sign</a>: <a href="Multi_002dAlternative.html#Multi_002dAlternative">Multi-Alternative</a></li>
<li><a href="Misc.html#index-DOLLARS_005fIN_005fIDENTIFIERS-4926"><code>DOLLARS_IN_IDENTIFIERS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-3592"><code>doloop_begin</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash591"><code>doloop_end</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Expander-Definitions.html#index-DONE-3698"><code>DONE</code></a>: <a href="Expander-Definitions.html#Expander-Definitions">Expander Definitions</a></li>
<li><a href="Exception-Region-Output.html#index-DONT_005fUSE_005fBUILTIN_005fSETJMP-4728"><code>DONT_USE_BUILTIN_SETJMP</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Type-Layout.html#index-DOUBLE_005fTYPE_005fSIZE-3990"><code>DOUBLE_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Machine-Modes.html#index-DQmode-2753"><code>DQmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Driver.html#index-driver-3857">driver</a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-DRIVER_005fSELF_005fSPECS-3859"><code>DRIVER_SELF_SPECS</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Dump-examples.html#index-dump-examples-1711">dump examples</a>: <a href="Dump-examples.html#Dump-examples">Dump examples</a></li>
<li><a href="Dump-setup.html#index-dump-setup-1696">dump setup</a>: <a href="Dump-setup.html#Dump-setup">Dump setup</a></li>
<li><a href="Dump-types.html#index-dump-types-1706">dump types</a>: <a href="Dump-types.html#Dump-types">Dump types</a></li>
<li><a href="Dump-output-verbosity.html#index-dump-verbosity-1705">dump verbosity</a>: <a href="Dump-output-verbosity.html#Dump-output-verbosity">Dump output verbosity</a></li>
<li><a href="Dump-types.html#index-dump_005fbasic_005fblock-1708"><code>dump_basic_block</code></a>: <a href="Dump-types.html#Dump-types">Dump types</a></li>
<li><a href="Dump-types.html#index-dump_005fgeneric_005fexpr-1709"><code>dump_generic_expr</code></a>: <a href="Dump-types.html#Dump-types">Dump types</a></li>
<li><a href="Dump-types.html#index-dump_005fgimple_005fstmt-1710"><code>dump_gimple_stmt</code></a>: <a href="Dump-types.html#Dump-types">Dump types</a></li>
<li><a href="Dump-types.html#index-dump_005fprintf-1707"><code>dump_printf</code></a>: <a href="Dump-types.html#Dump-types">Dump types</a></li>
<li><a href="Filesystem.html#index-DUMPFILE_005fFORMAT-5039"><code>DUMPFILE_FORMAT</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="SDB-and-DWARF.html#index-DWARF2_005fASM_005fLINE_005fDEBUG_005fINFO-4786"><code>DWARF2_ASM_LINE_DEBUG_INFO</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="SDB-and-DWARF.html#index-DWARF2_005fDEBUGGING_005fINFO-4782"><code>DWARF2_DEBUGGING_INFO</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="SDB-and-DWARF.html#index-DWARF2_005fFRAME_005fINFO-4784"><code>DWARF2_FRAME_INFO</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="Frame-Registers.html#index-DWARF2_005fFRAME_005fREG_005fOUT-4204"><code>DWARF2_FRAME_REG_OUT</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Exception-Region-Output.html#index-DWARF2_005fUNWIND_005fINFO-4725"><code>DWARF2_UNWIND_INFO</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Frame-Layout.html#index-DWARF_005fALT_005fFRAME_005fRETURN_005fCOLUMN-4162"><code>DWARF_ALT_FRAME_RETURN_COLUMN</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Exception-Region-Output.html#index-DWARF_005fCIE_005fDATA_005fALIGNMENT-4730"><code>DWARF_CIE_DATA_ALIGNMENT</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Frame-Registers.html#index-DWARF_005fFRAME_005fREGISTERS-4200"><code>DWARF_FRAME_REGISTERS</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Frame-Registers.html#index-DWARF_005fFRAME_005fREGNUM-4203"><code>DWARF_FRAME_REGNUM</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Frame-Registers.html#index-DWARF_005fREG_005fTO_005fUNWIND_005fCOLUMN-4202"><code>DWARF_REG_TO_UNWIND_COLUMN</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Frame-Layout.html#index-DWARF_005fZERO_005fREG-4163"><code>DWARF_ZERO_REG</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Frame-Layout.html#index-DYNAMIC_005fCHAIN_005fADDRESS-4155"><code>DYNAMIC_CHAIN_ADDRESS</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bE_007d-in-constraint-3321">`<samp><span class="samp">E</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Modifiers.html#index-earlyclobber-operand-3358">earlyclobber operand</a>: <a href="Modifiers.html#Modifiers">Modifiers</a></li>
<li><a href="Edges.html#index-edge-3168"><code>edge</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-edge-in-the-flow-graph-3167">edge in the flow graph</a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-edge-iterators-3169">edge iterators</a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Maintaining-the-CFG.html#index-edge-splitting-3224">edge splitting</a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Edges.html#index-EDGE_005fABNORMAL-3188"><code>EDGE_ABNORMAL</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-EDGE_005fABNORMAL_002c-EDGE_005fABNORMAL_005fCALL-3191"><code>EDGE_ABNORMAL, EDGE_ABNORMAL_CALL</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-EDGE_005fABNORMAL_002c-EDGE_005fEH-3181"><code>EDGE_ABNORMAL, EDGE_EH</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-EDGE_005fABNORMAL_002c-EDGE_005fSIBCALL-3186"><code>EDGE_ABNORMAL, EDGE_SIBCALL</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-EDGE_005fFALLTHRU_002c-force_005fnonfallthru-3179"><code>EDGE_FALLTHRU, force_nonfallthru</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Library-Calls.html#index-g_t_0040code_007bEDOM_007d_002c-implicit-usage-4363"><code>EDOM</code>, implicit usage</a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Exception-Region-Output.html#index-EH_005fFRAME_005fIN_005fDATA_005fSECTION-4722"><code>EH_FRAME_IN_DATA_SECTION</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Exception-Region-Output.html#index-EH_005fFRAME_005fSECTION_005fNAME-4721"><code>EH_FRAME_SECTION_NAME</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Standard-Names.html#your_sha256_hash10"><code>eh_return</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Exception-Handling.html#index-EH_005fRETURN_005fDATA_005fREGNO-4170"><code>EH_RETURN_DATA_REGNO</code></a>: <a href="Exception-Handling.html#Exception-Handling">Exception Handling</a></li>
<li><a href="Exception-Handling.html#index-EH_005fRETURN_005fHANDLER_005fRTX-4172"><code>EH_RETURN_HANDLER_RTX</code></a>: <a href="Exception-Handling.html#Exception-Handling">Exception Handling</a></li>
<li><a href="Exception-Handling.html#index-EH_005fRETURN_005fSTACKADJ_005fRTX-4171"><code>EH_RETURN_STACKADJ_RTX</code></a>: <a href="Exception-Handling.html#Exception-Handling">Exception Handling</a></li>
<li><a href="Exception-Region-Output.html#index-EH_005fTABLES_005fCAN_005fBE_005fREAD_005fONLY-4723"><code>EH_TABLES_CAN_BE_READ_ONLY</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Function-Entry.html#index-EH_005fUSES-4306"><code>EH_USES</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Edges.html#index-ei_005fedge-3176"><code>ei_edge</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-ei_005fend_005fp-3172"><code>ei_end_p</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-ei_005flast-3171"><code>ei_last</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-ei_005fnext-3174"><code>ei_next</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-ei_005fone_005fbefore_005fend_005fp-3173"><code>ei_one_before_end_p</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-ei_005fprev-3175"><code>ei_prev</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-ei_005fsafe_005fsafe-3177"><code>ei_safe_safe</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Edges.html#index-ei_005fstart-3170"><code>ei_start</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Elimination.html#index-ELIMINABLE_005fREGS-4210"><code>ELIMINABLE_REGS</code></a>: <a href="Elimination.html#Elimination">Elimination</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-ELSE_005fCLAUSE-2114"><code>ELSE_CLAUSE</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-Embedded-C-377">Embedded C</a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Empty-Statements.html#index-Empty-Statements-1940">Empty Statements</a>: <a href="Empty-Statements.html#Empty-Statements">Empty Statements</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-EMPTY_005fCLASS_005fEXPR-2102"><code>EMPTY_CLASS_EXPR</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Storage-Layout.html#index-EMPTY_005fFIELD_005fBOUNDARY-3961"><code>EMPTY_FIELD_BOUNDARY</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Emulated-TLS.html#index-Emulated-TLS-4851">Emulated TLS</a>: <a href="Emulated-TLS.html#Emulated-TLS">Emulated TLS</a></li>
<li><a href="Disable-Insn-Alternatives.html#index-enabled-3364">enabled</a>: <a href="Disable-Insn-Alternatives.html#Disable-Insn-Alternatives">Disable Insn Alternatives</a></li>
<li><a href="Driver.html#index-ENDFILE_005fSPEC-3875"><code>ENDFILE_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Portability.html#index-endianness-4">endianness</a>: <a href="Portability.html#Portability">Portability</a></li>
<li><a href="Basic-Blocks.html#index-ENTRY_005fBLOCK_005fPTR_002c-EXIT_005fBLOCK_005fPTR-3156"><code>ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR</code></a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Register-Classes.html#index-enum-reg_005fclass-4103"><code>enum reg_class</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Types.html#index-ENUMERAL_005fTYPE-1754"><code>ENUMERAL_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Constant-Definitions.html#index-enumerations-3830">enumerations</a>: <a href="Constant-Definitions.html#Constant-Definitions">Constant Definitions</a></li>
<li><a href="Function-Entry.html#index-epilogue-4292">epilogue</a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bepilogue_007d-instruction-pattern-3613"><code>epilogue</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Function-Entry.html#index-EPILOGUE_005fUSES-4305"><code>EPILOGUE_USES</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Comparisons.html#index-eq-2978"><code>eq</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007beq_007d-and-attributes-3745"><code>eq</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Expressions.html#index-eq_005fattr-3757"><code>eq_attr</code></a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-EQ_005fEXPR-1896"><code>EQ_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Comparisons.html#index-equal-2979">equal</a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Library-Calls.html#index-g_t_0040code_007berrno_007d_002c-implicit-usage-4366"><code>errno</code>, implicit usage</a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-EXACT_005fDIV_005fEXPR-1891"><code>EXACT_DIV_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="SSA.html#index-examining-SSA_005fNAMEs-2526">examining SSA_NAMEs</a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="Edges.html#index-exception-handling-3180">exception handling</a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Exception-Handling.html#index-exception-handling-4169">exception handling</a>: <a href="Exception-Handling.html#Exception-Handling">Exception Handling</a></li>
<li><a href="Standard-Names.html#your_sha256_hashattern-3606"><code>exception_receiver</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Multi_002dAlternative.html#index-exclamation-point-3345">exclamation point</a>: <a href="Multi_002dAlternative.html#Multi_002dAlternative">Multi-Alternative</a></li>
<li><a href="Processor-pipeline-description.html#index-exclusion_005fset-3808"><code>exclusion_set</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Arithmetic.html#index-exclusive_002dor_002c-bitwise-2946">exclusive-or, bitwise</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-EXIT_005fEXPR-1914"><code>EXIT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Function-Entry.html#index-EXIT_005fIGNORE_005fSTACK-4304"><code>EXIT_IGNORE_STACK</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Expander-Definitions.html#index-expander-definitions-3694">expander definitions</a>: <a href="Expander-Definitions.html#Expander-Definitions">Expander Definitions</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3519"><code>exp</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Working-with-declarations.html#index-EXPR_005fFILENAME-1814"><code>EXPR_FILENAME</code></a>: <a href="Working-with-declarations.html#Working-with-declarations">Working with declarations</a></li>
<li><a href="Working-with-declarations.html#index-EXPR_005fLINENO-1815"><code>EXPR_LINENO</code></a>: <a href="Working-with-declarations.html#Working-with-declarations">Working with declarations</a></li>
<li><a href="Insns.html#index-expr_005flist-3130"><code>expr_list</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-EXPR_005fSTMT-2103"><code>EXPR_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-EXPR_005fSTMT_005fEXPR-2104"><code>EXPR_STMT_EXPR</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Expression-trees.html#index-expression-1820">expression</a>: <a href="Expression-trees.html#Expression-trees">Expression trees</a></li>
<li><a href="RTL-Objects.html#index-expression-codes-2543">expression codes</a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="Standard-Names.html#your_sha256_hash07d2_007d-instruction-pattern-3556"><code>extend</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Simple-Constraints.html#index-extensible-constraints-3338">extensible constraints</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Driver.html#index-EXTRA_005fSPECS-3879"><code>EXTRA_SPECS</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bextv_007d-instruction-pattern-3568"><code>extv</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3562"><code>extv</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashruction-pattern-3563"><code>extvmisalign</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bextzv_007d-instruction-pattern-3569"><code>extzv</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3564"><code>extzv</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashtruction-pattern-3565"><code>extzvmisalign</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bF_007d-in-constraint-3322">`<samp><span class="samp">F</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Expander-Definitions.html#index-FAIL-3699"><code>FAIL</code></a>: <a href="Expander-Definitions.html#Expander-Definitions">Expander Definitions</a></li>
<li><a href="Edges.html#index-fall_002dthru-3178"><code>fall-thru</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Host-Misc.html#index-FATAL_005fEXIT_005fCODE-5044"><code>FATAL_EXIT_CODE</code></a>: <a href="Host-Misc.html#Host-Misc">Host Misc</a></li>
<li><a href="Run_002dtime-Target.html#index-features_002c-optional_002c-in-system-conventions-3905">features, optional, in system conventions</a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Arithmetic.html#index-ffs-2969"><code>ffs</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3534"><code>ffs</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Declarations.html#index-FIELD_005fDECL-1802"><code>FIELD_DECL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="File-Framework.html#index-file_005fend_005findicate_005fexec_005fstack-4562"><code>file_end_indicate_exec_stack</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Passes.html#index-files-and-passes-of-the-compiler-1669">files and passes of the compiler</a>: <a href="Passes.html#Passes">Passes</a></li>
<li><a href="Files.html#index-files_002c-generated-5098">files, generated</a>: <a href="Files.html#Files">Files</a></li>
<li><a href="Processor-pipeline-description.html#index-final_005fabsence_005fset-3812"><code>final_absence_set</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Instruction-Output.html#index-FINAL_005fPRESCAN_005fINSN-4692"><code>FINAL_PRESCAN_INSN</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Processor-pipeline-description.html#index-final_005fpresence_005fset-3810"><code>final_presence_set</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Instruction-Output.html#index-final_005fsequence-4701"><code>final_sequence</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Addressing-Modes.html#index-FIND_005fBASE_005fTERM-4387"><code>FIND_BASE_TERM</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Sections.html#index-FINI_005fARRAY_005fSECTION_005fASM_005fOP-4527"><code>FINI_ARRAY_SECTION_ASM_OP</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Sections.html#index-FINI_005fSECTION_005fASM_005fOP-4525"><code>FINI_SECTION_ASM_OP</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Processor-pipeline-description.html#index-finite-state-automaton-minimization-3818">finite state automaton minimization</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Frame-Layout.html#index-FIRST_005fPARM_005fOFFSET-4152"><code>FIRST_PARM_OFFSET</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hashl-registers-2852"><code>FIRST_PARM_OFFSET</code> and virtual registers</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Register-Basics.html#index-FIRST_005fPSEUDO_005fREGISTER-4045"><code>FIRST_PSEUDO_REGISTER</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Stack-Registers.html#index-FIRST_005fSTACK_005fREG-4096"><code>FIRST_STACK_REG</code></a>: <a href="Stack-Registers.html#Stack-Registers">Stack Registers</a></li>
<li><a href="Regs-and-Memory.html#index-FIRST_005fVIRTUAL_005fREGISTER-2849"><code>FIRST_VIRTUAL_REGISTER</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Conversions.html#index-fix-3021"><code>fix</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-FIX_005fTRUNC_005fEXPR-1856"><code>FIX_TRUNC_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Standard-Names.html#your_sha256_hash007bn_007d2_007d-instruction-pattern-3553"><code>fix_trunc</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Register-Basics.html#index-fixed-register-4047">fixed register</a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-fixed_002dpoint-fractional-library-375">fixed-point fractional library</a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-FIXED_005fCONVERT_005fEXPR-1865"><code>FIXED_CONVERT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Constant-expressions.html#index-FIXED_005fCST-1835"><code>FIXED_CST</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Types.html#index-FIXED_005fPOINT_005fTYPE-1752"><code>FIXED_POINT_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Register-Basics.html#index-FIXED_005fREGISTERS-4046"><code>FIXED_REGISTERS</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Register-Basics.html#index-fixed_005fregs-4060"><code>fixed_regs</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Standard-Names.html#your_sha256_hash2_007d-instruction-pattern-3550"><code>fix</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashar_007bn_007d2_007d-instruction-pattern-3554"><code>fixuns_trunc</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash07d2_007d-instruction-pattern-3551"><code>fixuns</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Flags.html#index-flags-in-RTL-expression-2600">flags in RTL expression</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Conversions.html#index-float-3019"><code>float</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-FLOAT_005fEXPR-1857"><code>FLOAT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Conversions.html#index-float_005fextend-3014"><code>float_extend</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Library-Calls.html#index-FLOAT_005fLIB_005fCOMPARE_005fRETURNS_005fBOOL-4360"><code>FLOAT_LIB_COMPARE_RETURNS_BOOL</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Misc.html#index-FLOAT_005fSTORE_005fFLAG_005fVALUE-4909"><code>FLOAT_STORE_FLAG_VALUE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Conversions.html#index-float_005ftruncate-3018"><code>float_truncate</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Type-Layout.html#index-FLOAT_005fTYPE_005fSIZE-3989"><code>FLOAT_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Storage-Layout.html#index-FLOAT_005fWORDS_005fBIG_005fENDIAN-3929"><code>FLOAT_WORDS_BIG_ENDIAN</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hash02c-_0028lack-of_0029-effect-on-_0040code_007bsubreg_007d-2866"><code>FLOAT_WORDS_BIG_ENDIAN</code>, (lack of) effect on <code>subreg</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Floating-Point.html#index-floating-point-and-cross-compilation-4805">floating point and cross compilation</a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d2_007d-instruction-pattern-3548"><code>float</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d2_007d-instruction-pattern-3549"><code>floatuns</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-FLOOR_005fDIV_005fEXPR-1884"><code>FLOOR_DIV_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-FLOOR_005fMOD_005fEXPR-1888"><code>FLOOR_MOD_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3523"><code>floor</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Alias-analysis.html#index-flow_002dinsensitive-alias-analysis-2532">flow-insensitive alias analysis</a>: <a href="Alias-analysis.html#Alias-analysis">Alias analysis</a></li>
<li><a href="Alias-analysis.html#index-flow_002dsensitive-alias-analysis-2531">flow-sensitive alias analysis</a>: <a href="Alias-analysis.html#Alias-analysis">Alias analysis</a></li>
<li><a href="Arithmetic.html#index-fma-2914"><code>fma</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3425"><code>fma</code><var>m</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3514"><code>fmod</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3426"><code>fms</code><var>m</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3427"><code>fnma</code><var>m</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3428"><code>fnms</code><var>m</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-FOR_005fBODY-2109"><code>FOR_BODY</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-FOR_005fCOND-2107"><code>FOR_COND</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-FOR_005fEXPR-2108"><code>FOR_EXPR</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-FOR_005fINIT_005fSTMT-2106"><code>FOR_INIT_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-FOR_005fSTMT-2105"><code>FOR_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="GTY-Options.html#index-for_005fuser-5078"><code>for_user</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Sections.html#index-FORCE_005fCODE_005fSECTION_005fALIGN-4530"><code>FORCE_CODE_SECTION_ALIGN</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Standard-Names.html#index-force_005freg-3381"><code>force_reg</code></a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Conversions.html#index-fract_005fconvert-3023"><code>fract_convert</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Type-Layout.html#index-FRACT_005fTYPE_005fSIZE-3993"><code>FRACT_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Fixed_002dpoint-fractional-library-routines.html#index-fractional-types-376">fractional types</a>: <a href="Fixed_002dpoint-fractional-library-routines.html#Fixed_002dpoint-fractional-library-routines">Fixed-point fractional library routines</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d2_007d-instruction-pattern-3558"><code>fract</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d2_007d-instruction-pattern-3560"><code>fractuns</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Frame-Layout.html#index-frame-layout-4144">frame layout</a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Frame-Layout.html#index-FRAME_005fADDR_005fRTX-4158"><code>FRAME_ADDR_RTX</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Frame-Layout.html#index-FRAME_005fGROWS_005fDOWNWARD-4147"><code>FRAME_GROWS_DOWNWARD</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hashtual-registers-2855"><code>FRAME_GROWS_DOWNWARD</code> and virtual registers</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Frame-Layout.html#index-FRAME_005fPOINTER_005fCFA_005fOFFSET-4167"><code>FRAME_POINTER_CFA_OFFSET</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Function-Entry.html#index-frame_005fpointer_005fneeded-4295"><code>frame_pointer_needed</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Frame-Registers.html#index-FRAME_005fPOINTER_005fREGNUM-4188"><code>FRAME_POINTER_REGNUM</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hashtual-registers-2857"><code>FRAME_POINTER_REGNUM</code> and virtual registers</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Frame-Registers.html#index-frame_005fpointer_005frtx-4198"><code>frame_pointer_rtx</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Flags.html#index-frame_005frelated-2714"><code>frame_related</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashyour_sha256_hashyour_sha256_hashnd-_0040code_007bset_007d-2671"><code>frame_related</code>, in <code>insn</code>, <code>call_insn</code>, <code>jump_insn</code>, <code>barrier</code>, and <code>set</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash007bmem_007d-2655"><code>frame_related</code>, in <code>mem</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash007breg_007d-2661"><code>frame_related</code>, in <code>reg</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash007bsymbol_005fref_007d-2689"><code>frame_related</code>, in <code>symbol_ref</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Profile-information.html#index-frequency_002c-count_002c-BB_005fFREQ_005fBASE-3199"><code>frequency, count, BB_FREQ_BASE</code></a>: <a href="Profile-information.html#Profile-information">Profile information</a></li>
<li><a href="Standard-Names.html#your_sha256_hashon-pattern-3552"><code>ftrunc</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Functions.html#index-function-1965">function</a>: <a href="Functions.html#Functions">Functions</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-function-2059">function</a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Interface.html#index-function-call-conventions-9">function call conventions</a>: <a href="Interface.html#Interface">Interface</a></li>
<li><a href="Function-Entry.html#index-function-entry-and-exit-4290">function entry and exit</a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Edges.html#your_sha256_hash192">function entry point, alternate function entry point</a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Function-Properties.html#index-function-properties-1980">function properties</a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Calls.html#index-function_002dcall-insns-3133">function-call insns</a>: <a href="Calls.html#Calls">Calls</a></li>
<li><a href="Register-Arguments.html#index-FUNCTION_005fARG_005fOFFSET-4247"><code>FUNCTION_ARG_OFFSET</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Register-Arguments.html#index-FUNCTION_005fARG_005fPADDING-4248"><code>FUNCTION_ARG_PADDING</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Register-Arguments.html#index-FUNCTION_005fARG_005fREGNO_005fP-4253"><code>FUNCTION_ARG_REGNO_P</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Storage-Layout.html#index-FUNCTION_005fBOUNDARY-3942"><code>FUNCTION_BOUNDARY</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Functions.html#index-FUNCTION_005fDECL-1966"><code>FUNCTION_DECL</code></a>: <a href="Functions.html#Functions">Functions</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-FUNCTION_005fDECL-2060"><code>FUNCTION_DECL</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Misc.html#index-FUNCTION_005fMODE-4914"><code>FUNCTION_MODE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Profiling.html#index-FUNCTION_005fPROFILER-4310"><code>FUNCTION_PROFILER</code></a>: <a href="Profiling.html#Profiling">Profiling</a></li>
<li><a href="Types.html#index-FUNCTION_005fTYPE-1758"><code>FUNCTION_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Scalar-Return.html#index-FUNCTION_005fVALUE-4271"><code>FUNCTION_VALUE</code></a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Scalar-Return.html#index-FUNCTION_005fVALUE_005fREGNO_005fP-4274"><code>FUNCTION_VALUE_REGNO_P</code></a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Leaf-Functions.html#index-functions_002c-leaf-4089">functions, leaf</a>: <a href="Leaf-Functions.html#Leaf-Functions">Leaf Functions</a></li>
<li><a href="Types.html#index-fundamental-type-1745">fundamental type</a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bG_007d-in-constraint-3323">`<samp><span class="samp">G</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bg_007d-in-constraint-3326">`<samp><span class="samp">g</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Invoking-the-garbage-collector.html#index-garbage-collector_002c-invocation-5099">garbage collector, invocation</a>: <a href="Invoking-the-garbage-collector.html#Invoking-the-garbage-collector">Invoking the garbage collector</a></li>
<li><a href="Troubleshooting.html#index-garbage-collector_002c-troubleshooting-5101">garbage collector, troubleshooting</a>: <a href="Troubleshooting.html#Troubleshooting">Troubleshooting</a></li>
<li><a href="Portability.html#index-GCC-and-portability-3">GCC and portability</a>: <a href="Portability.html#Portability">Portability</a></li>
<li><a href="Host-Misc.html#index-GCC_005fDRIVER_005fHOST_005fINITIALIZATION-5048"><code>GCC_DRIVER_HOST_INITIALIZATION</code></a>: <a href="Host-Misc.html#Host-Misc">Host Misc</a></li>
<li><a href="Profile-information.html#index-gcov_005ftype-3200"><code>gcov_type</code></a>: <a href="Profile-information.html#Profile-information">Profile information</a></li>
<li><a href="Comparisons.html#index-ge-2991"><code>ge</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bge_007d-and-attributes-3742"><code>ge</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-GE_005fEXPR-1895"><code>GE_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Library-Calls.html#index-GEN_005fERRNO_005fRTX-4367"><code>GEN_ERRNO_RTX</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="RTL-passes.html#index-gencodes-1690"><code>gencodes</code></a>: <a href="RTL-passes.html#RTL-passes">RTL passes</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-general_005foperand-3298"><code>general_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Register-Classes.html#index-GENERAL_005fREGS-4102"><code>GENERAL_REGS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Files.html#index-generated-files-5097">generated files</a>: <a href="Files.html#Files">Files</a></li>
<li><a href="Output-Statement.html#index-generating-assembler-output-3272">generating assembler output</a>: <a href="Output-Statement.html#Output-Statement">Output Statement</a></li>
<li><a href="RTL-Template.html#index-generating-insns-3251">generating insns</a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="GENERIC.html#index-GENERIC-1712">GENERIC</a>: <a href="GENERIC.html#GENERIC">GENERIC</a></li>
<li><a href="Parsing-pass.html#index-GENERIC-1672">GENERIC</a>: <a href="Parsing-pass.html#Parsing-pass">Parsing pass</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-generic-predicates-3284">generic predicates</a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="RTL-passes.html#index-genflags-1689"><code>genflags</code></a>: <a href="RTL-passes.html#RTL-passes">RTL passes</a></li>
<li><a href="Expressions.html#index-get_005fattr-3756"><code>get_attr</code></a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Insn-Lengths.html#index-get_005fattr_005flength-3775"><code>get_attr_length</code></a>: <a href="Insn-Lengths.html#Insn-Lengths">Insn Lengths</a></li>
<li><a href="Machine-Modes.html#index-GET_005fCLASS_005fNARROWEST_005fMODE-2814"><code>GET_CLASS_NARROWEST_MODE</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="RTL-Objects.html#index-GET_005fCODE-2545"><code>GET_CODE</code></a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="Elimination.html#index-get_005fframe_005fsize-4208"><code>get_frame_size</code></a>: <a href="Elimination.html#Elimination">Elimination</a></li>
<li><a href="Insns.html#index-get_005finsns-3071"><code>get_insns</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-get_005flast_005finsn-3072"><code>get_last_insn</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE-2800"><code>GET_MODE</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE_005fALIGNMENT-2811"><code>GET_MODE_ALIGNMENT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE_005fBITSIZE-2807"><code>GET_MODE_BITSIZE</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE_005fCLASS-2804"><code>GET_MODE_CLASS</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE_005fFBIT-2809"><code>GET_MODE_FBIT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE_005fIBIT-2808"><code>GET_MODE_IBIT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE_005fMASK-2810"><code>GET_MODE_MASK</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE_005fNAME-2803"><code>GET_MODE_NAME</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE_005fNUNITS-2813"><code>GET_MODE_NUNITS</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE_005fSIZE-2806"><code>GET_MODE_SIZE</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE_005fUNIT_005fSIZE-2812"><code>GET_MODE_UNIT_SIZE</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-GET_005fMODE_005fWIDER_005fMODE-2805"><code>GET_MODE_WIDER_MODE</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="RTL-Classes.html#index-GET_005fRTX_005fCLASS-2552"><code>GET_RTX_CLASS</code></a>: <a href="RTL-Classes.html#RTL-Classes">RTL Classes</a></li>
<li><a href="RTL-Classes.html#index-GET_005fRTX_005fFORMAT-2556"><code>GET_RTX_FORMAT</code></a>: <a href="RTL-Classes.html#RTL-Classes">RTL Classes</a></li>
<li><a href="RTL-Classes.html#index-GET_005fRTX_005fLENGTH-2555"><code>GET_RTX_LENGTH</code></a>: <a href="RTL-Classes.html#RTL-Classes">RTL Classes</a></li>
<li><a href="Standard-Names.html#your_sha256_hashde_007d_007d-instruction-pattern-3666"><code>get_thread_pointer</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Comparisons.html#index-geu-2993"><code>geu</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bgeu_007d-and-attributes-3743"><code>geu</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Type-Information.html#index-GGC-5073">GGC</a>: <a href="Type-Information.html#Type-Information">Type Information</a></li>
<li><a href="Invoking-the-garbage-collector.html#index-ggc_005fcollect-5100"><code>ggc_collect</code></a>: <a href="Invoking-the-garbage-collector.html#Invoking-the-garbage-collector">Invoking the garbage collector</a></li>
<li><a href="GIMPLE.html#index-GIMPLE-2132">GIMPLE</a>: <a href="GIMPLE.html#GIMPLE">GIMPLE</a></li>
<li><a href="Gimplification-pass.html#index-GIMPLE-1685">GIMPLE</a>: <a href="Gimplification-pass.html#Gimplification-pass">Gimplification pass</a></li>
<li><a href="Parsing-pass.html#index-GIMPLE-1674">GIMPLE</a>: <a href="Parsing-pass.html#Parsing-pass">Parsing pass</a></li>
<li><a href="GIMPLE-API.html#index-GIMPLE-API-5112">GIMPLE API</a>: <a href="GIMPLE-API.html#GIMPLE-API">GIMPLE API</a></li>
<li><a href="Class-hierarchy-of-GIMPLE-statements.html#index-GIMPLE-class-hierarchy-2136">GIMPLE class hierarchy</a>: <a href="Class-hierarchy-of-GIMPLE-statements.html#Class-hierarchy-of-GIMPLE-statements">Class hierarchy of GIMPLE statements</a></li>
<li><a href="GIMPLE-Exception-Handling.html#index-GIMPLE-Exception-Handling-2138">GIMPLE Exception Handling</a>: <a href="GIMPLE-Exception-Handling.html#GIMPLE-Exception-Handling">GIMPLE Exception Handling</a></li>
<li><a href="GIMPLE-instruction-set.html#index-GIMPLE-instruction-set-2137">GIMPLE instruction set</a>: <a href="GIMPLE-instruction-set.html#GIMPLE-instruction-set">GIMPLE instruction set</a></li>
<li><a href="GIMPLE-sequences.html#index-GIMPLE-sequences-2449">GIMPLE sequences</a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="Basic-Blocks.html#index-GIMPLE-statement-iterators-3166">GIMPLE statement iterators</a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Maintaining-the-CFG.html#index-GIMPLE-statement-iterators-3207">GIMPLE statement iterators</a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005faddresses_005ftaken-2185"><code>gimple_addresses_taken</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fASM_007d-2203"><code>GIMPLE_ASM</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005fclobber_005fop-2212"><code>gimple_asm_clobber_op</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005finput_005fop-2208"><code>gimple_asm_input_op</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005fnclobbers-2207"><code>gimple_asm_nclobbers</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005fninputs-2205"><code>gimple_asm_ninputs</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005fnoutputs-2206"><code>gimple_asm_noutputs</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005foutput_005fop-2210"><code>gimple_asm_output_op</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005fset_005fclobber_005fop-2213"><code>gimple_asm_set_clobber_op</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005fset_005finput_005fop-2209"><code>gimple_asm_set_input_op</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005fset_005foutput_005fop-2211"><code>gimple_asm_set_output_op</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005fset_005fvolatile-2216"><code>gimple_asm_set_volatile</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005fstring-2214"><code>gimple_asm_string</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#index-gimple_005fasm_005fvolatile_005fp-2215"><code>gimple_asm_volatile_p</code></a>: <a href="_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASM_003c_002fcode_003e"><code>GIMPLE_ASM</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fASSIGN_007d-2217"><code>GIMPLE_ASSIGN</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005fcast_005fp-2237"><code>gimple_assign_cast_p</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="Logical-Operators.html#index-gimple_005fassign_005fcast_005fp-2160"><code>gimple_assign_cast_p</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005flhs-2225"><code>gimple_assign_lhs</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005flhs_005fptr-2226"><code>gimple_assign_lhs_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005frhs1-2227"><code>gimple_assign_rhs1</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005frhs1_005fptr-2228"><code>gimple_assign_rhs1_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005frhs2-2229"><code>gimple_assign_rhs2</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005frhs2_005fptr-2230"><code>gimple_assign_rhs2_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005frhs3-2231"><code>gimple_assign_rhs3</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005frhs3_005fptr-2232"><code>gimple_assign_rhs3_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005frhs_005fclass-2224"><code>gimple_assign_rhs_class</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005frhs_005fcode-2223"><code>gimple_assign_rhs_code</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005fset_005flhs-2233"><code>gimple_assign_set_lhs</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005fset_005frhs1-2234"><code>gimple_assign_set_rhs1</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005fset_005frhs2-2235"><code>gimple_assign_set_rhs2</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimple_005fassign_005fset_005frhs3-2236"><code>gimple_assign_set_rhs3</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fbb-2165"><code>gimple_bb</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fBIND_007d-2238"><code>GIMPLE_BIND</code></a>: <a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e"><code>GIMPLE_BIND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#index-gimple_005fbind_005fadd_005fseq-2246"><code>gimple_bind_add_seq</code></a>: <a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e"><code>GIMPLE_BIND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#index-gimple_005fbind_005fadd_005fstmt-2245"><code>gimple_bind_add_stmt</code></a>: <a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e"><code>GIMPLE_BIND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#index-gimple_005fbind_005fappend_005fvars-2242"><code>gimple_bind_append_vars</code></a>: <a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e"><code>GIMPLE_BIND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#index-gimple_005fbind_005fblock-2247"><code>gimple_bind_block</code></a>: <a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e"><code>GIMPLE_BIND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#index-gimple_005fbind_005fbody-2243"><code>gimple_bind_body</code></a>: <a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e"><code>GIMPLE_BIND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#index-gimple_005fbind_005fset_005fblock-2248"><code>gimple_bind_set_block</code></a>: <a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e"><code>GIMPLE_BIND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#index-gimple_005fbind_005fset_005fbody-2244"><code>gimple_bind_set_body</code></a>: <a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e"><code>GIMPLE_BIND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#index-gimple_005fbind_005fset_005fvars-2241"><code>gimple_bind_set_vars</code></a>: <a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e"><code>GIMPLE_BIND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#index-gimple_005fbind_005fvars-2240"><code>gimple_bind_vars</code></a>: <a href="_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fBIND_003c_002fcode_003e"><code>GIMPLE_BIND</code></a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fblock-2166"><code>gimple_block</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="GIMPLE-API.html#index-gimple_005fbuild-5122"><code>gimple_build</code></a>: <a href="GIMPLE-API.html#GIMPLE-API">GIMPLE API</a></li>
<li><a href="_003ccode_003eGIMPLE_005fNOP_003c_002fcode_003e.html#index-gimple_005fbuild_005fnop-2321"><code>gimple_build_nop</code></a>: <a href="_003ccode_003eGIMPLE_005fNOP_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fNOP_003c_002fcode_003e"><code>GIMPLE_NOP</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fMASTER_003c_002fcode_003e.html#index-gimple_005fbuild_005fomp_005fmaster-2368"><code>gimple_build_omp_master</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fMASTER_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fMASTER_003c_002fcode_003e"><code>GIMPLE_OMP_MASTER</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fORDERED_003c_002fcode_003e.html#index-gimple_005fbuild_005fomp_005fordered-2370"><code>gimple_build_omp_ordered</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fORDERED_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fORDERED_003c_002fcode_003e"><code>GIMPLE_OMP_ORDERED</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e.html#index-gimple_005fbuild_005fomp_005freturn-2387"><code>gimple_build_omp_return</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e"><code>GIMPLE_OMP_RETURN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e.html#index-gimple_005fbuild_005fomp_005fsection-2391"><code>gimple_build_omp_section</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e"><code>GIMPLE_OMP_SECTION</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#index-gimple_005fbuild_005fomp_005fsections_005fswitch-2396"><code>gimple_build_omp_sections_switch</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e"><code>GIMPLE_OMP_SECTIONS</code></a></li>
<li><a href=your_sha256_hash_003e.html#index-gimple_005fbuild_005fwce-2444"><code>gimple_build_wce</code></a>: <a href=your_sha256_hash_003e.html#your_sha256_hashode_003e"><code>GIMPLE_WITH_CLEANUP_EXPR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fCALL_007d-2249"><code>GIMPLE_CALL</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005farg-2264"><code>gimple_call_arg</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005farg_005fptr-2265"><code>gimple_call_arg_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005fchain-2261"><code>gimple_call_chain</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005fcopy_005fskip_005fargs-2270"><code>gimple_call_copy_skip_args</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005ffn-2256"><code>gimple_call_fn</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005ffndecl-2258"><code>gimple_call_fndecl</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005flhs-2253"><code>gimple_call_lhs</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005flhs_005fptr-2254"><code>gimple_call_lhs_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005fnoreturn_005fp-2269"><code>gimple_call_noreturn_p</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005fnum_005fargs-2263"><code>gimple_call_num_args</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005freturn_005ftype-2260"><code>gimple_call_return_type</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005fset_005farg-2266"><code>gimple_call_set_arg</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005fset_005fchain-2262"><code>gimple_call_set_chain</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005fset_005ffn-2257"><code>gimple_call_set_fn</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005fset_005ffndecl-2259"><code>gimple_call_set_fndecl</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005fset_005flhs-2255"><code>gimple_call_set_lhs</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005fset_005ftail-2267"><code>gimple_call_set_tail</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#index-gimple_005fcall_005ftail_005fp-2268"><code>gimple_call_tail_p</code></a>: <a href="_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCALL_003c_002fcode_003e"><code>GIMPLE_CALL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fCATCH_007d-2271"><code>GIMPLE_CATCH</code></a>: <a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e"><code>GIMPLE_CATCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#index-gimple_005fcatch_005fhandler-2275"><code>gimple_catch_handler</code></a>: <a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e"><code>GIMPLE_CATCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#index-gimple_005fcatch_005fset_005fhandler-2277"><code>gimple_catch_set_handler</code></a>: <a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e"><code>GIMPLE_CATCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#index-gimple_005fcatch_005fset_005ftypes-2276"><code>gimple_catch_set_types</code></a>: <a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e"><code>GIMPLE_CATCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#index-gimple_005fcatch_005ftypes-2273"><code>gimple_catch_types</code></a>: <a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e"><code>GIMPLE_CATCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#index-gimple_005fcatch_005ftypes_005fptr-2274"><code>gimple_catch_types_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCATCH_003c_002fcode_003e"><code>GIMPLE_CATCH</code></a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fcode-2164"><code>gimple_code</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fCOND_007d-2278"><code>GIMPLE_COND</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005fcode-2281"><code>gimple_cond_code</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005ffalse_005flabel-2290"><code>gimple_cond_false_label</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005flhs-2283"><code>gimple_cond_lhs</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005fmake_005ffalse-2291"><code>gimple_cond_make_false</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005fmake_005ftrue-2292"><code>gimple_cond_make_true</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005frhs-2285"><code>gimple_cond_rhs</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005fset_005fcode-2282"><code>gimple_cond_set_code</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005fset_005ffalse_005flabel-2289"><code>gimple_cond_set_false_label</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005fset_005flhs-2284"><code>gimple_cond_set_lhs</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005fset_005frhs-2286"><code>gimple_cond_set_rhs</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005fset_005ftrue_005flabel-2288"><code>gimple_cond_set_true_label</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#index-gimple_005fcond_005ftrue_005flabel-2287"><code>gimple_cond_true_label</code></a>: <a href="_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fCOND_003c_002fcode_003e"><code>GIMPLE_COND</code></a></li>
<li><a href="GIMPLE-API.html#index-gimple_005fconvert-5125"><code>gimple_convert</code></a>: <a href="GIMPLE-API.html#GIMPLE-API">GIMPLE API</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fcopy-2201"><code>gimple_copy</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fDEBUG_007d-2293"><code>GIMPLE_DEBUG</code></a>: <a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e"><code>GIMPLE_DEBUG</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fDEBUG_005fBIND_007d-2294"><code>GIMPLE_DEBUG_BIND</code></a>: <a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e"><code>GIMPLE_DEBUG</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#index-gimple_005fdebug_005fbind_005fget_005fvalue-2297"><code>gimple_debug_bind_get_value</code></a>: <a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e"><code>GIMPLE_DEBUG</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#index-gimple_005fdebug_005fbind_005fget_005fvalue_005fptr-2298"><code>gimple_debug_bind_get_value_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e"><code>GIMPLE_DEBUG</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#index-gimple_005fdebug_005fbind_005fget_005fvar-2296"><code>gimple_debug_bind_get_var</code></a>: <a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e"><code>GIMPLE_DEBUG</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#index-gimple_005fdebug_005fbind_005fhas_005fvalue_005fp-2302"><code>gimple_debug_bind_has_value_p</code></a>: <a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e"><code>GIMPLE_DEBUG</code></a></li>
<li><a href="Logical-Operators.html#index-gimple_005fdebug_005fbind_005fp-2161"><code>gimple_debug_bind_p</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#index-gimple_005fdebug_005fbind_005freset_005fvalue-2301"><code>gimple_debug_bind_reset_value</code></a>: <a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e"><code>GIMPLE_DEBUG</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#index-gimple_005fdebug_005fbind_005fset_005fvalue-2300"><code>gimple_debug_bind_set_value</code></a>: <a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e"><code>GIMPLE_DEBUG</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#index-gimple_005fdebug_005fbind_005fset_005fvar-2299"><code>gimple_debug_bind_set_var</code></a>: <a href="_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fDEBUG_003c_002fcode_003e"><code>GIMPLE_DEBUG</code></a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fdef_005fops-2186"><code>gimple_def_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fEH_005fFILTER_007d-2303"><code>GIMPLE_EH_FILTER</code></a>: <a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e"><code>GIMPLE_EH_FILTER</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#index-gimple_005feh_005ffilter_005ffailure-2307"><code>gimple_eh_filter_failure</code></a>: <a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e"><code>GIMPLE_EH_FILTER</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#index-gimple_005feh_005ffilter_005fset_005ffailure-2309"><code>gimple_eh_filter_set_failure</code></a>: <a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e"><code>GIMPLE_EH_FILTER</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#index-gimple_005feh_005ffilter_005fset_005ftypes-2308"><code>gimple_eh_filter_set_types</code></a>: <a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e"><code>GIMPLE_EH_FILTER</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#index-gimple_005feh_005ffilter_005ftypes-2305"><code>gimple_eh_filter_types</code></a>: <a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e"><code>GIMPLE_EH_FILTER</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#index-gimple_005feh_005ffilter_005ftypes_005fptr-2306"><code>gimple_eh_filter_types_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e"><code>GIMPLE_EH_FILTER</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#index-gimple_005feh_005fmust_005fnot_005fthrow_005ffndecl-2310"><code>gimple_eh_must_not_throw_fndecl</code></a>: <a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e"><code>GIMPLE_EH_FILTER</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#your_sha256_hashl-2311"><code>gimple_eh_must_not_throw_set_fndecl</code></a>: <a href="_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fEH_005fFILTER_003c_002fcode_003e"><code>GIMPLE_EH_FILTER</code></a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fexpr_005fcode-2168"><code>gimple_expr_code</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fexpr_005ftype-2167"><code>gimple_expr_type</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fGOTO_007d-2316"><code>GIMPLE_GOTO</code></a>: <a href="_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e"><code>GIMPLE_GOTO</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e.html#index-gimple_005fgoto_005fdest-2318"><code>gimple_goto_dest</code></a>: <a href="_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e"><code>GIMPLE_GOTO</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e.html#index-gimple_005fgoto_005fset_005fdest-2319"><code>gimple_goto_set_dest</code></a>: <a href="_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fGOTO_003c_002fcode_003e"><code>GIMPLE_GOTO</code></a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fhas_005fmem_005fops-2179"><code>gimple_has_mem_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fhas_005fops-2178"><code>gimple_has_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fhas_005fvolatile_005fops-2197"><code>gimple_has_volatile_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fLABEL_007d-2312"><code>GIMPLE_LABEL</code></a>: <a href="_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e"><code>GIMPLE_LABEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e.html#index-gimple_005flabel_005flabel-2314"><code>gimple_label_label</code></a>: <a href="_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e"><code>GIMPLE_LABEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e.html#index-gimple_005flabel_005fset_005flabel-2315"><code>gimple_label_set_label</code></a>: <a href="_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fLABEL_003c_002fcode_003e"><code>GIMPLE_LABEL</code></a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005floaded_005fsyms-2194"><code>gimple_loaded_syms</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005flocus-2170"><code>gimple_locus</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005flocus_005fempty_005fp-2172"><code>gimple_locus_empty_p</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fmodified_005fp-2196"><code>gimple_modified_p</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fno_005fwarning_005fp-2173"><code>gimple_no_warning_p</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="_003ccode_003eGIMPLE_005fNOP_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fNOP_007d-2320"><code>GIMPLE_NOP</code></a>: <a href="_003ccode_003eGIMPLE_005fNOP_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fNOP_003c_002fcode_003e"><code>GIMPLE_NOP</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fNOP_003c_002fcode_003e.html#index-gimple_005fnop_005fp-2322"><code>gimple_nop_p</code></a>: <a href="_003ccode_003eGIMPLE_005fNOP_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fNOP_003c_002fcode_003e"><code>GIMPLE_NOP</code></a></li>
<li><a href="Logical-Operators.html#index-gimple_005fnum_005fops-2145"><code>gimple_num_ops</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fnum_005fops-2180"><code>gimple_num_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href=your_sha256_hash03e.html#your_sha256_hash323"><code>GIMPLE_OMP_ATOMIC_LOAD</code></a>: <a href=your_sha256_hash03e.html#your_sha256_hashe_003e"><code>GIMPLE_OMP_ATOMIC_LOAD</code></a></li>
<li><a href=your_sha256_hash03e.html#index-gimple_005fomp_005fatomic_005fload_005flhs-2326"><code>gimple_omp_atomic_load_lhs</code></a>: <a href=your_sha256_hash03e.html#your_sha256_hashe_003e"><code>GIMPLE_OMP_ATOMIC_LOAD</code></a></li>
<li><a href=your_sha256_hash03e.html#index-gimple_005fomp_005fatomic_005fload_005frhs-2328"><code>gimple_omp_atomic_load_rhs</code></a>: <a href=your_sha256_hash03e.html#your_sha256_hashe_003e"><code>GIMPLE_OMP_ATOMIC_LOAD</code></a></li>
<li><a href=your_sha256_hash03e.html#index-gimple_005fomp_005fatomic_005fload_005fset_005flhs-2325"><code>gimple_omp_atomic_load_set_lhs</code></a>: <a href=your_sha256_hash03e.html#your_sha256_hashe_003e"><code>GIMPLE_OMP_ATOMIC_LOAD</code></a></li>
<li><a href=your_sha256_hash03e.html#index-gimple_005fomp_005fatomic_005fload_005fset_005frhs-2327"><code>gimple_omp_atomic_load_set_rhs</code></a>: <a href=your_sha256_hash03e.html#your_sha256_hashe_003e"><code>GIMPLE_OMP_ATOMIC_LOAD</code></a></li>
<li><a href=your_sha256_hash003e.html#your_sha256_hash2329"><code>GIMPLE_OMP_ATOMIC_STORE</code></a>: <a href=your_sha256_hash003e.html#your_sha256_hashde_003e"><code>GIMPLE_OMP_ATOMIC_STORE</code></a></li>
<li><a href=your_sha256_hash003e.html#index-gimple_005fomp_005fatomic_005fstore_005fset_005fval-2331"><code>gimple_omp_atomic_store_set_val</code></a>: <a href=your_sha256_hash003e.html#your_sha256_hashde_003e"><code>GIMPLE_OMP_ATOMIC_STORE</code></a></li>
<li><a href=your_sha256_hash003e.html#index-gimple_005fomp_005fatomic_005fstore_005fval-2332"><code>gimple_omp_atomic_store_val</code></a>: <a href=your_sha256_hash003e.html#your_sha256_hashde_003e"><code>GIMPLE_OMP_ATOMIC_STORE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fbody-2375"><code>gimple_omp_body</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fOMP_005fCONTINUE_007d-2333"><code>GIMPLE_OMP_CONTINUE</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e"><code>GIMPLE_OMP_CONTINUE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#index-gimple_005fomp_005fcontinue_005fcontrol_005fdef-2335"><code>gimple_omp_continue_control_def</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e"><code>GIMPLE_OMP_CONTINUE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#your_sha256_hash36"><code>gimple_omp_continue_control_def_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e"><code>GIMPLE_OMP_CONTINUE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#index-gimple_005fomp_005fcontinue_005fcontrol_005fuse-2338"><code>gimple_omp_continue_control_use</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e"><code>GIMPLE_OMP_CONTINUE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#your_sha256_hash39"><code>gimple_omp_continue_control_use_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e"><code>GIMPLE_OMP_CONTINUE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#your_sha256_hash37"><code>gimple_omp_continue_set_control_def</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e"><code>GIMPLE_OMP_CONTINUE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#your_sha256_hash40"><code>gimple_omp_continue_set_control_use</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCONTINUE_003c_002fcode_003e"><code>GIMPLE_OMP_CONTINUE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fOMP_005fCRITICAL_007d-2341"><code>GIMPLE_OMP_CRITICAL</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e"><code>GIMPLE_OMP_CRITICAL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e.html#index-gimple_005fomp_005fcritical_005fname-2343"><code>gimple_omp_critical_name</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e"><code>GIMPLE_OMP_CRITICAL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e.html#index-gimple_005fomp_005fcritical_005fname_005fptr-2344"><code>gimple_omp_critical_name_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e"><code>GIMPLE_OMP_CRITICAL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e.html#index-gimple_005fomp_005fcritical_005fset_005fname-2345"><code>gimple_omp_critical_set_name</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fCRITICAL_003c_002fcode_003e"><code>GIMPLE_OMP_CRITICAL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fOMP_005fFOR_007d-2346"><code>GIMPLE_OMP_FOR</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fclauses-2348"><code>gimple_omp_for_clauses</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fclauses_005fptr-2349"><code>gimple_omp_for_clauses_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fcond-2366"><code>gimple_omp_for_cond</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005ffinal-2357"><code>gimple_omp_for_final</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005ffinal_005fptr-2358"><code>gimple_omp_for_final_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fincr-2360"><code>gimple_omp_for_incr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fincr_005fptr-2361"><code>gimple_omp_for_incr_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005findex-2351"><code>gimple_omp_for_index</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005findex_005fptr-2352"><code>gimple_omp_for_index_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005finitial-2354"><code>gimple_omp_for_initial</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005finitial_005fptr-2355"><code>gimple_omp_for_initial_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fpre_005fbody-2363"><code>gimple_omp_for_pre_body</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fset_005fclauses-2350"><code>gimple_omp_for_set_clauses</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fset_005fcond-2365"><code>gimple_omp_for_set_cond</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fset_005ffinal-2359"><code>gimple_omp_for_set_final</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fset_005fincr-2362"><code>gimple_omp_for_set_incr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fset_005findex-2353"><code>gimple_omp_for_set_index</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fset_005finitial-2356"><code>gimple_omp_for_set_initial</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#index-gimple_005fomp_005ffor_005fset_005fpre_005fbody-2364"><code>gimple_omp_for_set_pre_body</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fFOR_003c_002fcode_003e"><code>GIMPLE_OMP_FOR</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fMASTER_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fOMP_005fMASTER_007d-2367"><code>GIMPLE_OMP_MASTER</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fMASTER_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fMASTER_003c_002fcode_003e"><code>GIMPLE_OMP_MASTER</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fORDERED_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fOMP_005fORDERED_007d-2369"><code>GIMPLE_OMP_ORDERED</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fORDERED_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fORDERED_003c_002fcode_003e"><code>GIMPLE_OMP_ORDERED</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fOMP_005fPARALLEL_007d-2371"><code>GIMPLE_OMP_PARALLEL</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fparallel_005fchild_005ffn-2380"><code>gimple_omp_parallel_child_fn</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fparallel_005fchild_005ffn_005fptr-2381"><code>gimple_omp_parallel_child_fn_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fparallel_005fclauses-2377"><code>gimple_omp_parallel_clauses</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fparallel_005fclauses_005fptr-2378"><code>gimple_omp_parallel_clauses_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fparallel_005fcombined_005fp-2373"><code>gimple_omp_parallel_combined_p</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fparallel_005fdata_005farg-2383"><code>gimple_omp_parallel_data_arg</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fparallel_005fdata_005farg_005fptr-2384"><code>gimple_omp_parallel_data_arg_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fparallel_005fset_005fchild_005ffn-2382"><code>gimple_omp_parallel_set_child_fn</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fparallel_005fset_005fclauses-2379"><code>gimple_omp_parallel_set_clauses</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#your_sha256_hash4"><code>gimple_omp_parallel_set_combined_p</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fparallel_005fset_005fdata_005farg-2385"><code>gimple_omp_parallel_set_data_arg</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fOMP_005fRETURN_007d-2386"><code>GIMPLE_OMP_RETURN</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e"><code>GIMPLE_OMP_RETURN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e.html#index-gimple_005fomp_005freturn_005fnowait_005fp-2389"><code>gimple_omp_return_nowait_p</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e"><code>GIMPLE_OMP_RETURN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e.html#index-gimple_005fomp_005freturn_005fset_005fnowait-2388"><code>gimple_omp_return_set_nowait</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fRETURN_003c_002fcode_003e"><code>GIMPLE_OMP_RETURN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fOMP_005fSECTION_007d-2390"><code>GIMPLE_OMP_SECTION</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e"><code>GIMPLE_OMP_SECTION</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e.html#index-gimple_005fomp_005fsection_005flast_005fp-2392"><code>gimple_omp_section_last_p</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e"><code>GIMPLE_OMP_SECTION</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e.html#index-gimple_005fomp_005fsection_005fset_005flast-2393"><code>gimple_omp_section_set_last</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTION_003c_002fcode_003e"><code>GIMPLE_OMP_SECTION</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fOMP_005fSECTIONS_007d-2394"><code>GIMPLE_OMP_SECTIONS</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e"><code>GIMPLE_OMP_SECTIONS</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#index-gimple_005fomp_005fsections_005fclauses-2400"><code>gimple_omp_sections_clauses</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e"><code>GIMPLE_OMP_SECTIONS</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#index-gimple_005fomp_005fsections_005fclauses_005fptr-2401"><code>gimple_omp_sections_clauses_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e"><code>GIMPLE_OMP_SECTIONS</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#index-gimple_005fomp_005fsections_005fcontrol-2397"><code>gimple_omp_sections_control</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e"><code>GIMPLE_OMP_SECTIONS</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#index-gimple_005fomp_005fsections_005fcontrol_005fptr-2398"><code>gimple_omp_sections_control_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e"><code>GIMPLE_OMP_SECTIONS</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#index-gimple_005fomp_005fsections_005fset_005fclauses-2402"><code>gimple_omp_sections_set_clauses</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e"><code>GIMPLE_OMP_SECTIONS</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#index-gimple_005fomp_005fsections_005fset_005fcontrol-2399"><code>gimple_omp_sections_set_control</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSECTIONS_003c_002fcode_003e"><code>GIMPLE_OMP_SECTIONS</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#index-gimple_005fomp_005fset_005fbody-2376"><code>gimple_omp_set_body</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fPARALLEL_003c_002fcode_003e"><code>GIMPLE_OMP_PARALLEL</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fOMP_005fSINGLE_007d-2403"><code>GIMPLE_OMP_SINGLE</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e"><code>GIMPLE_OMP_SINGLE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e.html#index-gimple_005fomp_005fsingle_005fclauses-2405"><code>gimple_omp_single_clauses</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e"><code>GIMPLE_OMP_SINGLE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e.html#index-gimple_005fomp_005fsingle_005fclauses_005fptr-2406"><code>gimple_omp_single_clauses_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e"><code>GIMPLE_OMP_SINGLE</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e.html#index-gimple_005fomp_005fsingle_005fset_005fclauses-2407"><code>gimple_omp_single_set_clauses</code></a>: <a href="_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fOMP_005fSINGLE_003c_002fcode_003e"><code>GIMPLE_OMP_SINGLE</code></a></li>
<li><a href="Logical-Operators.html#index-gimple_005fop-2146"><code>gimple_op</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fop-2182"><code>gimple_op</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fop_005fptr-2183"><code>gimple_op_ptr</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fops-2181"><code>gimple_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Logical-Operators.html#index-gimple_005fops-2147"><code>gimple_ops</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fPHI_007d-2408"><code>GIMPLE_PHI</code></a>: <a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e"><code>GIMPLE_PHI</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#index-gimple_005fphi_005farg-2414"><code>gimple_phi_arg</code></a>: <a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e"><code>GIMPLE_PHI</code></a></li>
<li><a href="SSA.html#index-gimple_005fphi_005farg-2520"><code>gimple_phi_arg</code></a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="SSA.html#index-gimple_005fphi_005farg_005fdef-2522"><code>gimple_phi_arg_def</code></a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="SSA.html#index-gimple_005fphi_005farg_005fedge-2521"><code>gimple_phi_arg_edge</code></a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#index-gimple_005fphi_005fcapacity-2409"><code>gimple_phi_capacity</code></a>: <a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e"><code>GIMPLE_PHI</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#index-gimple_005fphi_005fnum_005fargs-2410"><code>gimple_phi_num_args</code></a>: <a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e"><code>GIMPLE_PHI</code></a></li>
<li><a href="SSA.html#index-gimple_005fphi_005fnum_005fargs-2519"><code>gimple_phi_num_args</code></a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#index-gimple_005fphi_005fresult-2411"><code>gimple_phi_result</code></a>: <a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e"><code>GIMPLE_PHI</code></a></li>
<li><a href="SSA.html#index-gimple_005fphi_005fresult-2518"><code>gimple_phi_result</code></a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#index-gimple_005fphi_005fresult_005fptr-2412"><code>gimple_phi_result_ptr</code></a>: <a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e"><code>GIMPLE_PHI</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#index-gimple_005fphi_005fset_005farg-2415"><code>gimple_phi_set_arg</code></a>: <a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e"><code>GIMPLE_PHI</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#index-gimple_005fphi_005fset_005fresult-2413"><code>gimple_phi_set_result</code></a>: <a href="_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fPHI_003c_002fcode_003e"><code>GIMPLE_PHI</code></a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fplf-2177"><code>gimple_plf</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fRESX_007d-2416"><code>GIMPLE_RESX</code></a>: <a href="_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e"><code>GIMPLE_RESX</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e.html#index-gimple_005fresx_005fregion-2418"><code>gimple_resx_region</code></a>: <a href="_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e"><code>GIMPLE_RESX</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e.html#index-gimple_005fresx_005fset_005fregion-2419"><code>gimple_resx_set_region</code></a>: <a href="_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fRESX_003c_002fcode_003e"><code>GIMPLE_RESX</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fRETURN_007d-2420"><code>GIMPLE_RETURN</code></a>: <a href="_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e"><code>GIMPLE_RETURN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e.html#index-gimple_005freturn_005fretval-2422"><code>gimple_return_retval</code></a>: <a href="_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e"><code>GIMPLE_RETURN</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e.html#index-gimple_005freturn_005fset_005fretval-2423"><code>gimple_return_set_retval</code></a>: <a href="_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fRETURN_003c_002fcode_003e"><code>GIMPLE_RETURN</code></a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005fadd_005fseq-2451"><code>gimple_seq_add_seq</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005fadd_005fstmt-2450"><code>gimple_seq_add_stmt</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005falloc-2459"><code>gimple_seq_alloc</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005fcopy-2460"><code>gimple_seq_copy</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005fdeep_005fcopy-2452"><code>gimple_seq_deep_copy</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005fempty_005fp-2461"><code>gimple_seq_empty_p</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005ffirst-2454"><code>gimple_seq_first</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005finit-2458"><code>gimple_seq_init</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005flast-2455"><code>gimple_seq_last</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005freverse-2453"><code>gimple_seq_reverse</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005fset_005ffirst-2457"><code>gimple_seq_set_first</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005fset_005flast-2456"><code>gimple_seq_set_last</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="GIMPLE-sequences.html#index-gimple_005fseq_005fsingleton_005fp-2464"><code>gimple_seq_singleton_p</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fset_005fblock-2169"><code>gimple_set_block</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fset_005fdef_005fops-2187"><code>gimple_set_def_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fset_005fhas_005fvolatile_005fops-2198"><code>gimple_set_has_volatile_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fset_005flocus-2171"><code>gimple_set_locus</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fset_005fop-2184"><code>gimple_set_op</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fset_005fplf-2176"><code>gimple_set_plf</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fset_005fuse_005fops-2189"><code>gimple_set_use_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fset_005fvdef_005fops-2193"><code>gimple_set_vdef_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fset_005fvisited-2174"><code>gimple_set_visited</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fset_005fvuse_005fops-2191"><code>gimple_set_vuse_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="GIMPLE-API.html#index-gimple_005fsimplify-5118"><code>gimple_simplify</code></a>: <a href="GIMPLE-API.html#GIMPLE-API">GIMPLE API</a></li>
<li><a href="Tuple-representation.html#index-gimple_005fstatement_005fbase-2134">gimple_statement_base</a>: <a href="Tuple-representation.html#Tuple-representation">Tuple representation</a></li>
<li><a href="Tuple-representation.html#index-gimple_005fstatement_005fwith_005fops-2135">gimple_statement_with_ops</a>: <a href="Tuple-representation.html#Tuple-representation">Tuple representation</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fstored_005fsyms-2195"><code>gimple_stored_syms</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fSWITCH_007d-2424"><code>GIMPLE_SWITCH</code></a>: <a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e"><code>GIMPLE_SWITCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#index-gimple_005fswitch_005fdefault_005flabel-2432"><code>gimple_switch_default_label</code></a>: <a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e"><code>GIMPLE_SWITCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#index-gimple_005fswitch_005findex-2428"><code>gimple_switch_index</code></a>: <a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e"><code>GIMPLE_SWITCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#index-gimple_005fswitch_005flabel-2430"><code>gimple_switch_label</code></a>: <a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e"><code>GIMPLE_SWITCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#index-gimple_005fswitch_005fnum_005flabels-2426"><code>gimple_switch_num_labels</code></a>: <a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e"><code>GIMPLE_SWITCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#index-gimple_005fswitch_005fset_005fdefault_005flabel-2433"><code>gimple_switch_set_default_label</code></a>: <a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e"><code>GIMPLE_SWITCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#index-gimple_005fswitch_005fset_005findex-2429"><code>gimple_switch_set_index</code></a>: <a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e"><code>GIMPLE_SWITCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#index-gimple_005fswitch_005fset_005flabel-2431"><code>gimple_switch_set_label</code></a>: <a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e"><code>GIMPLE_SWITCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#index-gimple_005fswitch_005fset_005fnum_005flabels-2427"><code>gimple_switch_set_num_labels</code></a>: <a href="_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fSWITCH_003c_002fcode_003e"><code>GIMPLE_SWITCH</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#index-g_t_0040code_007bGIMPLE_005fTRY_007d-2434"><code>GIMPLE_TRY</code></a>: <a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e"><code>GIMPLE_TRY</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#index-gimple_005ftry_005fcatch_005fis_005fcleanup-2437"><code>gimple_try_catch_is_cleanup</code></a>: <a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e"><code>GIMPLE_TRY</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#index-gimple_005ftry_005fcleanup-2439"><code>gimple_try_cleanup</code></a>: <a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e"><code>GIMPLE_TRY</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#index-gimple_005ftry_005feval-2438"><code>gimple_try_eval</code></a>: <a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e"><code>GIMPLE_TRY</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#index-gimple_005ftry_005fkind-2436"><code>gimple_try_kind</code></a>: <a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e"><code>GIMPLE_TRY</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#index-gimple_005ftry_005fset_005fcatch_005fis_005fcleanup-2440"><code>gimple_try_set_catch_is_cleanup</code></a>: <a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e"><code>GIMPLE_TRY</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#index-gimple_005ftry_005fset_005fcleanup-2442"><code>gimple_try_set_cleanup</code></a>: <a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e"><code>GIMPLE_TRY</code></a></li>
<li><a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#index-gimple_005ftry_005fset_005feval-2441"><code>gimple_try_set_eval</code></a>: <a href="_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fTRY_003c_002fcode_003e"><code>GIMPLE_TRY</code></a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fuse_005fops-2188"><code>gimple_use_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fvdef_005fops-2192"><code>gimple_vdef_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fvisited_005fp-2175"><code>gimple_visited_p</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-gimple_005fvuse_005fops-2190"><code>gimple_vuse_ops</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href=your_sha256_hash_003e.html#index-gimple_005fwce_005fcleanup-2445"><code>gimple_wce_cleanup</code></a>: <a href=your_sha256_hash_003e.html#your_sha256_hashode_003e"><code>GIMPLE_WITH_CLEANUP_EXPR</code></a></li>
<li><a href=your_sha256_hash_003e.html#index-gimple_005fwce_005fcleanup_005feh_005fonly-2447"><code>gimple_wce_cleanup_eh_only</code></a>: <a href=your_sha256_hash_003e.html#your_sha256_hashode_003e"><code>GIMPLE_WITH_CLEANUP_EXPR</code></a></li>
<li><a href=your_sha256_hash_003e.html#index-gimple_005fwce_005fset_005fcleanup-2446"><code>gimple_wce_set_cleanup</code></a>: <a href=your_sha256_hash_003e.html#your_sha256_hashode_003e"><code>GIMPLE_WITH_CLEANUP_EXPR</code></a></li>
<li><a href=your_sha256_hash_003e.html#index-gimple_005fwce_005fset_005fcleanup_005feh_005fonly-2448"><code>gimple_wce_set_cleanup_eh_only</code></a>: <a href=your_sha256_hash_003e.html#your_sha256_hashode_003e"><code>GIMPLE_WITH_CLEANUP_EXPR</code></a></li>
<li><a href=your_sha256_hash_003e.html#your_sha256_hash-2443"><code>GIMPLE_WITH_CLEANUP_EXPR</code></a>: <a href=your_sha256_hash_003e.html#your_sha256_hashode_003e"><code>GIMPLE_WITH_CLEANUP_EXPR</code></a></li>
<li><a href="Parsing-pass.html#index-gimplification-1675">gimplification</a>: <a href="Parsing-pass.html#Parsing-pass">Parsing pass</a></li>
<li><a href="Gimplification-pass.html#index-gimplification-1684">gimplification</a>: <a href="Gimplification-pass.html#Gimplification-pass">Gimplification pass</a></li>
<li><a href="Parsing-pass.html#index-gimplifier-1676">gimplifier</a>: <a href="Parsing-pass.html#Parsing-pass">Parsing pass</a></li>
<li><a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#index-gimplify_005fassign-2222"><code>gimplify_assign</code></a>: <a href="_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e.html#g_t_003ccode_003eGIMPLE_005fASSIGN_003c_002fcode_003e"><code>GIMPLE_ASSIGN</code></a></li>
<li><a href="Gimplification-pass.html#index-gimplify_005fexpr-1687"><code>gimplify_expr</code></a>: <a href="Gimplification-pass.html#Gimplification-pass">Gimplification pass</a></li>
<li><a href="Gimplification-pass.html#index-gimplify_005ffunction_005ftree-1686"><code>gimplify_function_tree</code></a>: <a href="Gimplification-pass.html#Gimplification-pass">Gimplification pass</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-GLOBAL_005fINIT_005fPRIORITY-2087"><code>GLOBAL_INIT_PRIORITY</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Register-Basics.html#index-global_005fregs-4062"><code>global_regs</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Addressing-Modes.html#your_sha256_hash-4384"><code>GO_IF_LEGITIMATE_ADDRESS</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Comparisons.html#index-greater-than-2992">greater than</a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fafter_005flabels-2475"><code>gsi_after_labels</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fbb-2477"><code>gsi_bb</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Maintaining-the-CFG.html#index-gsi_005fcommit_005fedge_005finserts-3223"><code>gsi_commit_edge_inserts</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fcommit_005fedge_005finserts-2499"><code>gsi_commit_edge_inserts</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fcommit_005fone_005fedge_005finsert-2498"><code>gsi_commit_one_edge_insert</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fend_005fp-2470"><code>gsi_end_p</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Maintaining-the-CFG.html#index-gsi_005fend_005fp-3210"><code>gsi_end_p</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005ffor_005fstmt-2491"><code>gsi_for_stmt</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005finsert_005fafter-2489"><code>gsi_insert_after</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Maintaining-the-CFG.html#index-gsi_005finsert_005fafter-3213"><code>gsi_insert_after</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Maintaining-the-CFG.html#index-gsi_005finsert_005fbefore-3214"><code>gsi_insert_before</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005finsert_005fbefore-2487"><code>gsi_insert_before</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005finsert_005fon_005fedge-2495"><code>gsi_insert_on_edge</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Maintaining-the-CFG.html#index-gsi_005finsert_005fon_005fedge-3222"><code>gsi_insert_on_edge</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005finsert_005fon_005fedge_005fimmediate-2497"><code>gsi_insert_on_edge_immediate</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005finsert_005fseq_005fafter-2490"><code>gsi_insert_seq_after</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005finsert_005fseq_005fbefore-2488"><code>gsi_insert_seq_before</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005finsert_005fseq_005fon_005fedge-2496"><code>gsi_insert_seq_on_edge</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005flast-2468"><code>gsi_last</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Maintaining-the-CFG.html#index-gsi_005flast-3209"><code>gsi_last</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005flast_005fbb-2469"><code>gsi_last_bb</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005flink_005fafter-2483"><code>gsi_link_after</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005flink_005fbefore-2481"><code>gsi_link_before</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005flink_005fseq_005fafter-2482"><code>gsi_link_seq_after</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005flink_005fseq_005fbefore-2480"><code>gsi_link_seq_before</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fmove_005fafter-2492"><code>gsi_move_after</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fmove_005fbefore-2493"><code>gsi_move_before</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fmove_005fto_005fbb_005fend-2494"><code>gsi_move_to_bb_end</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fnext-2472"><code>gsi_next</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Maintaining-the-CFG.html#index-gsi_005fnext-3211"><code>gsi_next</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fone_005fbefore_005fend_005fp-2471"><code>gsi_one_before_end_p</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Maintaining-the-CFG.html#index-gsi_005fprev-3212"><code>gsi_prev</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fprev-2473"><code>gsi_prev</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fremove-2479"><code>gsi_remove</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Maintaining-the-CFG.html#index-gsi_005fremove-3215"><code>gsi_remove</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005freplace-2486"><code>gsi_replace</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fseq-2478"><code>gsi_seq</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fsplit_005fseq_005fafter-2484"><code>gsi_split_seq_after</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fsplit_005fseq_005fbefore-2485"><code>gsi_split_seq_before</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Maintaining-the-CFG.html#index-gsi_005fstart-3208"><code>gsi_start</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fstart-2466"><code>gsi_start</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fstart_005fbb-2467"><code>gsi_start_bb</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fstmt-2474"><code>gsi_stmt</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Sequence-iterators.html#index-gsi_005fstmt_005fptr-2476"><code>gsi_stmt_ptr</code></a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Comparisons.html#index-gt-2982"><code>gt</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bgt_007d-and-attributes-3740"><code>gt</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-GT_005fEXPR-1894"><code>GT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Comparisons.html#index-gtu-2984"><code>gtu</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bgtu_007d-and-attributes-3741"><code>gtu</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Type-Information.html#index-GTY-5074"><code>GTY</code></a>: <a href="Type-Information.html#Type-Information">Type Information</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bH_007d-in-constraint-3324">`<samp><span class="samp">H</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Machine-Modes.html#index-HAmode-2760"><code>HAmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Misc.html#index-HANDLE_005fPRAGMA_005fPACK_005fWITH_005fEXPANSION-4924"><code>HANDLE_PRAGMA_PACK_WITH_EXPANSION</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-HANDLER-2110"><code>HANDLER</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-HANDLER_005fBODY-2126"><code>HANDLER_BODY</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-HANDLER_005fPARMS-2125"><code>HANDLER_PARMS</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Regs-and-Memory.html#index-hard-registers-2847">hard registers</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Frame-Registers.html#your_sha256_hash><code>HARD_FRAME_POINTER_IS_ARG_POINTER</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Frame-Registers.html#your_sha256_hash91"><code>HARD_FRAME_POINTER_IS_FRAME_POINTER</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Frame-Registers.html#index-HARD_005fFRAME_005fPOINTER_005fREGNUM-4189"><code>HARD_FRAME_POINTER_REGNUM</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Register-Basics.html#index-HARD_005fREGNO_005fCALL_005fPART_005fCLOBBERED-4056"><code>HARD_REGNO_CALL_PART_CLOBBERED</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Caller-Saves.html#index-HARD_005fREGNO_005fCALLER_005fSAVE_005fMODE-4289"><code>HARD_REGNO_CALLER_SAVE_MODE</code></a>: <a href="Caller-Saves.html#Caller-Saves">Caller Saves</a></li>
<li><a href="Values-in-Registers.html#index-HARD_005fREGNO_005fMODE_005fOK-4082"><code>HARD_REGNO_MODE_OK</code></a>: <a href="Values-in-Registers.html#Values-in-Registers">Values in Registers</a></li>
<li><a href="Values-in-Registers.html#index-HARD_005fREGNO_005fNREGS-4078"><code>HARD_REGNO_NREGS</code></a>: <a href="Values-in-Registers.html#Values-in-Registers">Values in Registers</a></li>
<li><a href="Values-in-Registers.html#index-HARD_005fREGNO_005fNREGS_005fHAS_005fPADDING-4079"><code>HARD_REGNO_NREGS_HAS_PADDING</code></a>: <a href="Values-in-Registers.html#Values-in-Registers">Values in Registers</a></li>
<li><a href="Values-in-Registers.html#index-HARD_005fREGNO_005fNREGS_005fWITH_005fPADDING-4080"><code>HARD_REGNO_NREGS_WITH_PADDING</code></a>: <a href="Values-in-Registers.html#Values-in-Registers">Values in Registers</a></li>
<li><a href="Values-in-Registers.html#index-HARD_005fREGNO_005fRENAME_005fOK-4084"><code>HARD_REGNO_RENAME_OK</code></a>: <a href="Values-in-Registers.html#Values-in-Registers">Values in Registers</a></li>
<li><a href="Macros-for-Initialization.html#index-HAS_005fINIT_005fSECTION-4671"><code>HAS_INIT_SECTION</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Misc.html#index-HAS_005fLONG_005fCOND_005fBRANCH-4892"><code>HAS_LONG_COND_BRANCH</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-HAS_005fLONG_005fUNCOND_005fBRANCH-4893"><code>HAS_LONG_UNCOND_BRANCH</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Filesystem.html#index-HAVE_005fDOS_005fBASED_005fFILE_005fSYSTEM-5030"><code>HAVE_DOS_BASED_FILE_SYSTEM</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="Addressing-Modes.html#index-HAVE_005fPOST_005fDECREMENT-4374"><code>HAVE_POST_DECREMENT</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-HAVE_005fPOST_005fINCREMENT-4373"><code>HAVE_POST_INCREMENT</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-HAVE_005fPOST_005fMODIFY_005fDISP-4376"><code>HAVE_POST_MODIFY_DISP</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-HAVE_005fPOST_005fMODIFY_005fREG-4378"><code>HAVE_POST_MODIFY_REG</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-HAVE_005fPRE_005fDECREMENT-4372"><code>HAVE_PRE_DECREMENT</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-HAVE_005fPRE_005fINCREMENT-4371"><code>HAVE_PRE_INCREMENT</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-HAVE_005fPRE_005fMODIFY_005fDISP-4375"><code>HAVE_PRE_MODIFY_DISP</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-HAVE_005fPRE_005fMODIFY_005fREG-4377"><code>HAVE_PRE_MODIFY_REG</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Machine-Modes.html#index-HCmode-2772"><code>HCmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-HFmode-2741"><code>HFmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Constants.html#index-high-2840"><code>high</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Machine-Modes.html#index-HImode-2732"><code>HImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Insns.html#your_sha256_hash7d-3102"><code>HImode</code>, in <code>insn</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Allocation-Order.html#index-HONOR_005fREG_005fALLOC_005fORDER-4076"><code>HONOR_REG_ALLOC_ORDER</code></a>: <a href="Allocation-Order.html#Allocation-Order">Allocation Order</a></li>
<li><a href="Host-Config.html#index-host-configuration-5021">host configuration</a>: <a href="Host-Config.html#Host-Config">Host Config</a></li>
<li><a href="Host-Common.html#index-host-functions-5023">host functions</a>: <a href="Host-Common.html#Host-Common">Host Common</a></li>
<li><a href="Host-Common.html#index-host-hooks-5022">host hooks</a>: <a href="Host-Common.html#Host-Common">Host Common</a></li>
<li><a href="Host-Fragment.html#index-host-makefile-fragment-5069">host makefile fragment</a>: <a href="Host-Fragment.html#Host-Fragment">Host Fragment</a></li>
<li><a href="Filesystem.html#index-HOST_005fBIT_005fBUCKET-5037"><code>HOST_BIT_BUCKET</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="Filesystem.html#index-HOST_005fEXECUTABLE_005fSUFFIX-5036"><code>HOST_EXECUTABLE_SUFFIX</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="Host-Common.html#index-HOST_005fHOOKS_005fEXTRA_005fSIGNALS-5024"><code>HOST_HOOKS_EXTRA_SIGNALS</code></a>: <a href="Host-Common.html#Host-Common">Host Common</a></li>
<li><a href="Host-Common.html#your_sha256_hash27"><code>HOST_HOOKS_GT_PCH_ALLOC_GRANULARITY</code></a>: <a href="Host-Common.html#Host-Common">Host Common</a></li>
<li><a href="Host-Common.html#index-HOST_005fHOOKS_005fGT_005fPCH_005fGET_005fADDRESS-5025"><code>HOST_HOOKS_GT_PCH_GET_ADDRESS</code></a>: <a href="Host-Common.html#Host-Common">Host Common</a></li>
<li><a href="Host-Common.html#index-HOST_005fHOOKS_005fGT_005fPCH_005fUSE_005fADDRESS-5026"><code>HOST_HOOKS_GT_PCH_USE_ADDRESS</code></a>: <a href="Host-Common.html#Host-Common">Host Common</a></li>
<li><a href="Filesystem.html#index-HOST_005fLACKS_005fINODE_005fNUMBERS-5041"><code>HOST_LACKS_INODE_NUMBERS</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="Host-Misc.html#index-HOST_005fLONG_005fFORMAT-5050"><code>HOST_LONG_FORMAT</code></a>: <a href="Host-Misc.html#Host-Misc">Host Misc</a></li>
<li><a href="Host-Misc.html#index-HOST_005fLONG_005fLONG_005fFORMAT-5049"><code>HOST_LONG_LONG_FORMAT</code></a>: <a href="Host-Misc.html#Host-Misc">Host Misc</a></li>
<li><a href="Filesystem.html#index-HOST_005fOBJECT_005fSUFFIX-5035"><code>HOST_OBJECT_SUFFIX</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="Host-Misc.html#index-HOST_005fPTR_005fPRINTF-5051"><code>HOST_PTR_PRINTF</code></a>: <a href="Host-Misc.html#Host-Misc">Host Misc</a></li>
<li><a href="Sections.html#index-HOT_005fTEXT_005fSECTION_005fNAME-4515"><code>HOT_TEXT_SECTION_NAME</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Machine-Modes.html#index-HQmode-2751"><code>HQmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bI_007d-in-constraint-3320">`<samp><span class="samp">I</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bi_007d-in-constraint-3318">`<samp><span class="samp">i</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Identifiers.html#index-identifier-1726">identifier</a>: <a href="Identifiers.html#Identifiers">Identifiers</a></li>
<li><a href="Identifiers.html#index-IDENTIFIER_005fLENGTH-1730"><code>IDENTIFIER_LENGTH</code></a>: <a href="Identifiers.html#Identifiers">Identifiers</a></li>
<li><a href="Identifiers.html#index-IDENTIFIER_005fNODE-1728"><code>IDENTIFIER_NODE</code></a>: <a href="Identifiers.html#Identifiers">Identifiers</a></li>
<li><a href="Identifiers.html#index-IDENTIFIER_005fOPNAME_005fP-1731"><code>IDENTIFIER_OPNAME_P</code></a>: <a href="Identifiers.html#Identifiers">Identifiers</a></li>
<li><a href="Identifiers.html#index-IDENTIFIER_005fPOINTER-1729"><code>IDENTIFIER_POINTER</code></a>: <a href="Identifiers.html#Identifiers">Identifiers</a></li>
<li><a href="Identifiers.html#index-IDENTIFIER_005fTYPENAME_005fP-1732"><code>IDENTIFIER_TYPENAME_P</code></a>: <a href="Identifiers.html#Identifiers">Identifiers</a></li>
<li><a href="Decimal-float-library-routines.html#index-IEEE-754_002d2008-194">IEEE 754-2008</a>: <a href="Decimal-float-library-routines.html#Decimal-float-library-routines">Decimal float library routines</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-IF_005fCOND-2112"><code>IF_COND</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-IF_005fSTMT-2111"><code>IF_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Comparisons.html#index-if_005fthen_005felse-2999"><code>if_then_else</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Expressions.html#your_sha256_hash3729"><code>if_then_else</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Side-Effects.html#index-g_t_0040code_007bif_005fthen_005felse_007d-usage-3034"><code>if_then_else</code> usage</a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Misc.html#index-IFCVT_005fMACHDEP_005fINIT-4940"><code>IFCVT_MACHDEP_INIT</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-IFCVT_005fMODIFY_005fCANCEL-4939"><code>IFCVT_MODIFY_CANCEL</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-IFCVT_005fMODIFY_005fFINAL-4938"><code>IFCVT_MODIFY_FINAL</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-IFCVT_005fMODIFY_005fINSN-4937"><code>IFCVT_MODIFY_INSN</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-IFCVT_005fMODIFY_005fMULTIPLE_005fTESTS-4936"><code>IFCVT_MODIFY_MULTIPLE_TESTS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-IFCVT_005fMODIFY_005fTESTS-4935"><code>IFCVT_MODIFY_TESTS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-IMAGPART_005fEXPR-1861"><code>IMAGPART_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="SSA-Operands.html#index-Immediate-Uses-2514">Immediate Uses</a>: <a href="SSA-Operands.html#SSA-Operands">SSA Operands</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-immediate_005foperand-3285"><code>immediate_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Instruction-Output.html#index-IMMEDIATE_005fPREFIX-4706"><code>IMMEDIATE_PREFIX</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Flags.html#index-in_005fstruct-2716"><code>in_struct</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashcode_005flabel_007d-and-_0040code_007bnote_007d-2637"><code>in_struct</code>, in <code>code_label</code> and <code>note</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashyour_sha256_hashbcall_005finsn_007d-2633"><code>in_struct</code>, in <code>insn</code> and <code>jump_insn</code> and <code>call_insn</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashyour_sha256_hashyour_sha256_hash007d-2680"><code>in_struct</code>, in <code>insn</code>, <code>call_insn</code>, <code>jump_insn</code> and <code>jump_table_data</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashsubreg_007d-2700"><code>in_struct</code>, in <code>subreg</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Including-Patterns.html#index-include-3707"><code>include</code></a>: <a href="Including-Patterns.html#Including-Patterns">Including Patterns</a></li>
<li><a href="Driver.html#index-INCLUDE_005fDEFAULTS-3895"><code>INCLUDE_DEFAULTS</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Arithmetic.html#index-inclusive_002dor_002c-bitwise-2943">inclusive-or, bitwise</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Frame-Layout.html#index-INCOMING_005fFRAME_005fSP_005fOFFSET-4165"><code>INCOMING_FRAME_SP_OFFSET</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Stack-Arguments.html#index-INCOMING_005fREG_005fPARM_005fSTACK_005fSPACE-4223"><code>INCOMING_REG_PARM_STACK_SPACE</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Register-Basics.html#index-INCOMING_005fREGNO-4068"><code>INCOMING_REGNO</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Frame-Layout.html#index-INCOMING_005fRETURN_005fADDR_005fRTX-4161"><code>INCOMING_RETURN_ADDR_RTX</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Storage-Layout.html#index-INCOMING_005fSTACK_005fBOUNDARY-3941"><code>INCOMING_STACK_BOUNDARY</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Register-Classes.html#index-INDEX_005fREG_005fCLASS-4112"><code>INDEX_REG_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-3587"><code>indirect_jump</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-indirect_005foperand-3293"><code>indirect_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Storage-References.html#index-INDIRECT_005fREF-1842"><code>INDIRECT_REF</code></a>: <a href="Storage-References.html#Storage-References">Storage References</a></li>
<li><a href="Sections.html#index-INIT_005fARRAY_005fSECTION_005fASM_005fOP-4526"><code>INIT_ARRAY_SECTION_ASM_OP</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Register-Arguments.html#index-INIT_005fCUMULATIVE_005fARGS-4243"><code>INIT_CUMULATIVE_ARGS</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Register-Arguments.html#index-INIT_005fCUMULATIVE_005fINCOMING_005fARGS-4245"><code>INIT_CUMULATIVE_INCOMING_ARGS</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Register-Arguments.html#index-INIT_005fCUMULATIVE_005fLIBCALL_005fARGS-4244"><code>INIT_CUMULATIVE_LIBCALL_ARGS</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Driver.html#index-INIT_005fENVIRONMENT-3892"><code>INIT_ENVIRONMENT</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Per_002dFunction-Data.html#index-INIT_005fEXPANDERS-3922"><code>INIT_EXPANDERS</code></a>: <a href="Per_002dFunction-Data.html#Per_002dFunction-Data">Per-Function Data</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-INIT_005fEXPR-1907"><code>INIT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Per_002dFunction-Data.html#index-init_005fmachine_005fstatus-3923"><code>init_machine_status</code></a>: <a href="Per_002dFunction-Data.html#Per_002dFunction-Data">Per-Function Data</a></li>
<li><a href="Library-Calls.html#index-init_005fone_005flibfunc-4357"><code>init_one_libfunc</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Sections.html#index-INIT_005fSECTION_005fASM_005fOP-4524"><code>INIT_SECTION_ASM_OP</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Macros-for-Initialization.html#index-INIT_005fSECTION_005fASM_005fOP-4670"><code>INIT_SECTION_ASM_OP</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Elimination.html#index-INITIAL_005fELIMINATION_005fOFFSET-4212"><code>INITIAL_ELIMINATION_OFFSET</code></a>: <a href="Elimination.html#Elimination">Elimination</a></li>
<li><a href="Frame-Layout.html#index-INITIAL_005fFRAME_005fADDRESS_005fRTX-4154"><code>INITIAL_FRAME_ADDRESS_RTX</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Elimination.html#index-INITIAL_005fFRAME_005fPOINTER_005fOFFSET-4209"><code>INITIAL_FRAME_POINTER_OFFSET</code></a>: <a href="Elimination.html#Elimination">Elimination</a></li>
<li><a href="Initialization.html#index-initialization-routines-4664">initialization routines</a>: <a href="Initialization.html#Initialization">Initialization</a></li>
<li><a href="Target-Attributes.html#index-inlining-4841">inlining</a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Maintaining-the-CFG.html#index-insert_005finsn_005fon_005fedge-3220"><code>insert_insn_on_edge</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Insns.html#index-insn-3073"><code>insn</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#your_sha256_hash666"><code>insn</code> and `<samp><span class="samp">/f</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash682"><code>insn</code> and `<samp><span class="samp">/j</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash676"><code>insn</code> and `<samp><span class="samp">/s</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash618"><code>insn</code> and `<samp><span class="samp">/u</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash621"><code>insn</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Insn-Attributes.html#index-insn-attributes-3719">insn attributes</a>: <a href="Insn-Attributes.html#Insn-Attributes">Insn Attributes</a></li>
<li><a href="Insn-Canonicalizations.html#index-insn-canonicalization-3680">insn canonicalization</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Including-Patterns.html#index-insn-includes-3706">insn includes</a>: <a href="Including-Patterns.html#Including-Patterns">Including Patterns</a></li>
<li><a href="Insn-Lengths.html#index-insn-lengths_002c-computing-3768">insn lengths, computing</a>: <a href="Insn-Lengths.html#Insn-Lengths">Insn Lengths</a></li>
<li><a href="Basic-Blocks.html#index-insn-notes_002c-notes-3162">insn notes, notes</a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Insn-Splitting.html#index-insn-splitting-3701">insn splitting</a>: <a href="Insn-Splitting.html#Insn-Splitting">Insn Splitting</a></li>
<li><a href="Defining-Attributes.html#index-insn_002dattr_002eh-3724"><code>insn-attr.h</code></a>: <a href="Defining-Attributes.html#Defining-Attributes">Defining Attributes</a></li>
<li><a href="Flags.html#index-INSN_005fANNULLED_005fBRANCH_005fP-2615"><code>INSN_ANNULLED_BRANCH_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Insns.html#index-INSN_005fCODE-3105"><code>INSN_CODE</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#index-INSN_005fDELETED_005fP-2620"><code>INSN_DELETED_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-INSN_005fFROM_005fTARGET_005fP-2629"><code>INSN_FROM_TARGET_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Insns.html#index-insn_005flist-3129"><code>insn_list</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Misc.html#index-INSN_005fREFERENCES_005fARE_005fDELAYED-4928"><code>INSN_REFERENCES_ARE_DELAYED</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-INSN_005fSETS_005fARE_005fDELAYED-4927"><code>INSN_SETS_ARE_DELAYED</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Insns.html#index-INSN_005fUID-3068"><code>INSN_UID</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-INSN_005fVAR_005fLOCATION-3100"><code>INSN_VAR_LOCATION</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-insns-3067">insns</a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="RTL-Template.html#index-insns_002c-generating-3252">insns, generating</a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="RTL-Template.html#index-insns_002c-recognizing-3254">insns, recognizing</a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="Insn-Attributes.html#index-instruction-attributes-3720">instruction attributes</a>: <a href="Insn-Attributes.html#Insn-Attributes">Insn Attributes</a></li>
<li><a href="Processor-pipeline-description.html#index-instruction-latency-time-3782">instruction latency time</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Patterns.html#index-instruction-patterns-3243">instruction patterns</a>: <a href="Patterns.html#Patterns">Patterns</a></li>
<li><a href="Insn-Splitting.html#index-instruction-splitting-3702">instruction splitting</a>: <a href="Insn-Splitting.html#Insn-Splitting">Insn Splitting</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007binsv_007d-instruction-pattern-3570"><code>insv</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3566"><code>insv</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashruction-pattern-3567"><code>insvmisalign</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Int-Iterators.html#index-int-iterators-in-_0040file_007b_002emd_007d-files-3843">int iterators in <samp><span class="file">.md</span></samp> files</a>: <a href="Int-Iterators.html#Int-Iterators">Int Iterators</a></li>
<li><a href="Type-Layout.html#index-INT16_005fTYPE-4015"><code>INT16_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT32_005fTYPE-4016"><code>INT32_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT64_005fTYPE-4017"><code>INT64_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT8_005fTYPE-4014"><code>INT8_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT_005fFAST16_005fTYPE-4031"><code>INT_FAST16_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT_005fFAST32_005fTYPE-4032"><code>INT_FAST32_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT_005fFAST64_005fTYPE-4033"><code>INT_FAST64_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT_005fFAST8_005fTYPE-4030"><code>INT_FAST8_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT_005fLEAST16_005fTYPE-4023"><code>INT_LEAST16_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT_005fLEAST32_005fTYPE-4024"><code>INT_LEAST32_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT_005fLEAST64_005fTYPE-4025"><code>INT_LEAST64_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT_005fLEAST8_005fTYPE-4022"><code>INT_LEAST8_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INT_005fTYPE_005fSIZE-3982"><code>INT_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Constant-expressions.html#index-INTEGER_005fCST-1824"><code>INTEGER_CST</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Types.html#index-INTEGER_005fTYPE-1748"><code>INTEGER_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Dependent-Patterns.html#index-Interdependence-of-Patterns-3674">Interdependence of Patterns</a>: <a href="Dependent-Patterns.html#Dependent-Patterns">Dependent Patterns</a></li>
<li><a href="Interface.html#index-interfacing-to-GCC-output-7">interfacing to GCC output</a>: <a href="Interface.html#Interface">Interface</a></li>
<li><a href="Processor-pipeline-description.html#index-interlock-delays-3783">interlock delays</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Parsing-pass.html#index-intermediate-representation-lowering-1678">intermediate representation lowering</a>: <a href="Parsing-pass.html#Parsing-pass">Parsing pass</a></li>
<li><a href="Type-Layout.html#index-INTMAX_005fTYPE-4011"><code>INTMAX_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-INTPTR_005fTYPE-4038"><code>INTPTR_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="index.html#index-introduction-1">introduction</a>: <a href="index.html#Top">Top</a></li>
<li><a href="Macros-for-Initialization.html#index-INVOKE_005f_005fmain-4676"><code>INVOKE__main</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Arithmetic.html#index-ior-2942"><code>ior</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bior_007d-and-attributes-3733"><code>ior</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Insn-Canonicalizations.html#index-g_t_0040code_007bior_007d_002c-canonicalization-of-3687"><code>ior</code>, canonicalization of</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3418"><code>ior</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Allocation-Order.html#your_sha256_hash7"><code>IRA_HARD_REGNO_ADD_COST_MULTIPLIER</code></a>: <a href="Allocation-Order.html#Allocation-Order">Allocation Order</a></li>
<li><a href="Data-Output.html#index-IS_005fASM_005fLOGICAL_005fLINE_005fSEPARATOR-4599"><code>IS_ASM_LOGICAL_LINE_SEPARATOR</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005faddressable-2149"><code>is_gimple_addressable</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fasm_005fval-2150"><code>is_gimple_asm_val</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fassign-2157"><code>is_gimple_assign</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fcall-2158"><code>is_gimple_call</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fcall_005faddr-2151"><code>is_gimple_call_addr</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fconstant-2153"><code>is_gimple_constant</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fdebug-2159"><code>is_gimple_debug</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fip_005finvariant-2155"><code>is_gimple_ip_invariant</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fip_005finvariant_005faddress-2156"><code>is_gimple_ip_invariant_address</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fmem_005fref_005faddr-2152"><code>is_gimple_mem_ref_addr</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fmin_005finvariant-2154"><code>is_gimple_min_invariant</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fomp-2162"><code>is_gimple_omp</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Logical-Operators.html#index-is_005fgimple_005fval-2148"><code>is_gimple_val</code></a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Iterators.html#index-iterators-in-_0040file_007b_002emd_007d-files-3836">iterators in <samp><span class="file">.md</span></samp> files</a>: <a href="Iterators.html#Iterators">Iterators</a></li>
<li><a href="Scalar-evolutions.html#index-IV-analysis-on-GIMPLE-3236">IV analysis on GIMPLE</a>: <a href="Scalar-evolutions.html#Scalar-evolutions">Scalar evolutions</a></li>
<li><a href="loop_002div.html#index-IV-analysis-on-RTL-3237">IV analysis on RTL</a>: <a href="loop_002div.html#loop_002div">loop-iv</a></li>
<li><a href="Exception-Region-Output.html#index-JMP_005fBUF_005fSIZE-4729"><code>JMP_BUF_SIZE</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Flags.html#index-jump-2720"><code>jump</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bjump_007d-instruction-pattern-3575"><code>jump</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Jump-Patterns.html#index-jump-instruction-patterns-3675">jump instruction patterns</a>: <a href="Jump-Patterns.html#Jump-Patterns">Jump Patterns</a></li>
<li><a href="Side-Effects.html#index-jump-instructions-and-_0040code_007bset_007d-3033">jump instructions and <code>set</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Flags.html#your_sha256_hashinsn_007d-2686"><code>jump</code>, in <code>call_insn</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash-2683"><code>jump</code>, in <code>insn</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash2644"><code>jump</code>, in <code>mem</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Alignment-Output.html#index-JUMP_005fALIGN-4737"><code>JUMP_ALIGN</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="Insns.html#index-jump_005finsn-3074"><code>jump_insn</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#your_sha256_hashff_007d-2668"><code>jump_insn</code> and `<samp><span class="samp">/f</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashfs_007d-2678"><code>jump_insn</code> and `<samp><span class="samp">/s</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashfu_007d-2616"><code>jump_insn</code> and `<samp><span class="samp">/u</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashfv_007d-2623"><code>jump_insn</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Insns.html#index-JUMP_005fLABEL-3075"><code>JUMP_LABEL</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-jump_005ftable_005fdata-3085"><code>jump_table_data</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#your_sha256_hashp_007b_002fs_007d-2679"><code>jump_table_data</code> and `<samp><span class="samp">/s</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashp_007b_002fv_007d-2625"><code>jump_table_data</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Sections.html#index-JUMP_005fTABLES_005fIN_005fTEXT_005fSECTION-4531"><code>JUMP_TABLES_IN_TEXT_SECTION</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Jumps.html#index-Jumps-1941">Jumps</a>: <a href="Jumps.html#Jumps">Jumps</a></li>
<li><a href="Alignment-Output.html#index-LABEL_005fALIGN-4743"><code>LABEL_ALIGN</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="Alignment-Output.html#index-LABEL_005fALIGN_005fAFTER_005fBARRIER-4739"><code>LABEL_ALIGN_AFTER_BARRIER</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="Insns.html#index-LABEL_005fALT_005fENTRY_005fP-3083"><code>LABEL_ALT_ENTRY_P</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Edges.html#index-LABEL_005fALTERNATE_005fNAME-3193"><code>LABEL_ALTERNATE_NAME</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Declarations.html#index-LABEL_005fDECL-1796"><code>LABEL_DECL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Insns.html#index-LABEL_005fKIND-3081"><code>LABEL_KIND</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-LABEL_005fNUSES-3080"><code>LABEL_NUSES</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#index-LABEL_005fPRESERVE_005fP-2634"><code>LABEL_PRESERVE_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Constants.html#index-label_005fref-2838"><code>label_ref</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Flags.html#your_sha256_hashfv_007d-2639"><code>label_ref</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Sharing.html#index-g_t_0040code_007blabel_005fref_007d_002c-RTL-sharing-3146"><code>label_ref</code>, RTL sharing</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Flags.html#index-LABEL_005fREF_005fNONLOCAL_005fP-2638"><code>LABEL_REF_NONLOCAL_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Gimplification-pass.html#index-lang_005fhooks_002egimplify_005fexpr-1688"><code>lang_hooks.gimplify_expr</code></a>: <a href="Gimplification-pass.html#Gimplification-pass">Gimplification pass</a></li>
<li><a href="Parsing-pass.html#index-lang_005fhooks_002eparse_005ffile-1673"><code>lang_hooks.parse_file</code></a>: <a href="Parsing-pass.html#Parsing-pass">Parsing pass</a></li>
<li><a href="Language_002ddependent-trees.html#index-language_002ddependent-trees-1992">language-dependent trees</a>: <a href="Language_002ddependent-trees.html#Language_002ddependent-trees">Language-dependent trees</a></li>
<li><a href="Parsing-pass.html#index-language_002dindependent-intermediate-representation-1677">language-independent intermediate representation</a>: <a href="Parsing-pass.html#Parsing-pass">Parsing pass</a></li>
<li><a href="Aggregate-Return.html#index-large-return-values-4280">large return values</a>: <a href="Aggregate-Return.html#Aggregate-Return">Aggregate Return</a></li>
<li><a href="Stack-Registers.html#index-LAST_005fSTACK_005fREG-4097"><code>LAST_STACK_REG</code></a>: <a href="Stack-Registers.html#Stack-Registers">Stack Registers</a></li>
<li><a href="Regs-and-Memory.html#index-LAST_005fVIRTUAL_005fREGISTER-2850"><code>LAST_VIRTUAL_REGISTER</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d2_007d-3532"><code>lceil</code><var>m</var><var>n</var><code>2</code></a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="LCSSA.html#index-LCSSA-3233">LCSSA</a>: <a href="LCSSA.html#LCSSA">LCSSA</a></li>
<li><a href="Macros-for-Initialization.html#index-LD_005fFINI_005fSWITCH-4673"><code>LD_FINI_SWITCH</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Macros-for-Initialization.html#index-LD_005fINIT_005fSWITCH-4672"><code>LD_INIT_SWITCH</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Macros-for-Initialization.html#index-LDD_005fSUFFIX-4684"><code>LDD_SUFFIX</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Comparisons.html#index-le-2995"><code>le</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007ble_007d-and-attributes-3737"><code>le</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-LE_005fEXPR-1893"><code>LE_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Leaf-Functions.html#index-leaf-functions-4088">leaf functions</a>: <a href="Leaf-Functions.html#Leaf-Functions">Leaf Functions</a></li>
<li><a href="Standard-Names.html#index-leaf_005ffunction_005fp-3584"><code>leaf_function_p</code></a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Leaf-Functions.html#index-LEAF_005fREG_005fREMAP-4091"><code>LEAF_REG_REMAP</code></a>: <a href="Leaf-Functions.html#Leaf-Functions">Leaf Functions</a></li>
<li><a href="Leaf-Functions.html#index-LEAF_005fREGISTERS-4090"><code>LEAF_REGISTERS</code></a>: <a href="Leaf-Functions.html#Leaf-Functions">Leaf Functions</a></li>
<li><a href="Arithmetic.html#index-left-rotate-2961">left rotate</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-left-shift-2951">left shift</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="PIC.html#index-LEGITIMATE_005fPIC_005fOPERAND_005fP-4554"><code>LEGITIMATE_PIC_OPERAND_P</code></a>: <a href="PIC.html#PIC">PIC</a></li>
<li><a href="Addressing-Modes.html#index-LEGITIMIZE_005fRELOAD_005fADDRESS-4390"><code>LEGITIMIZE_RELOAD_ADDRESS</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="GTY-Options.html#index-length-5076"><code>length</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Comparisons.html#index-less-than-2988">less than</a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Comparisons.html#index-less-than-or-equal-2996">less than or equal</a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Comparisons.html#index-leu-2997"><code>leu</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bleu_007d-and-attributes-3738"><code>leu</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Standard-Names.html#your_sha256_hash07d2_007d-3531"><code>lfloor</code><var>m</var><var>n</var><code>2</code></a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Target-Fragment.html#index-LIB2FUNCS_005fEXTRA-5056"><code>LIB2FUNCS_EXTRA</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Driver.html#index-LIB_005fSPEC-3869"><code>LIB_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Scalar-Return.html#index-LIBCALL_005fVALUE-4272"><code>LIBCALL_VALUE</code></a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Library-Calls.html#index-g_t_0040file_007blibgcc_002ea_007d-4354"><samp><span class="file">libgcc.a</span></samp></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Target-Fragment.html#index-LIBGCC2_005fCFLAGS-5055"><code>LIBGCC2_CFLAGS</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Type-Layout.html#index-LIBGCC2_005fGNU_005fPREFIX-4000"><code>LIBGCC2_GNU_PREFIX</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Misc.html#index-LIBGCC2_005fUNWIND_005fATTRIBUTE-5007"><code>LIBGCC2_UNWIND_ATTRIBUTE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Driver.html#index-LIBGCC_005fSPEC-3870"><code>LIBGCC_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Library-Calls.html#index-library-subroutine-names-4353">library subroutine names</a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Misc.html#index-LIBRARY_005fPATH_005fENV-4932"><code>LIBRARY_PATH_ENV</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Classes.html#index-LIMIT_005fRELOAD_005fCLASS-4122"><code>LIMIT_RELOAD_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Driver.html#index-LINK_005fCOMMAND_005fSPEC-3882"><code>LINK_COMMAND_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-LINK_005fEH_005fSPEC-3873"><code>LINK_EH_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-LINK_005fGCC_005fC_005fSEQUENCE_005fSPEC-3881"><code>LINK_GCC_C_SEQUENCE_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-LINK_005fLIBGCC_005fSPECIAL_005f1-3880"><code>LINK_LIBGCC_SPECIAL_1</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-LINK_005fSPEC-3868"><code>LINK_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Containers.html#index-list-1734">list</a>: <a href="Containers.html#Containers">Containers</a></li>
<li><a href="Liveness-information.html#index-Liveness-representation-3227">Liveness representation</a>: <a href="Liveness-information.html#Liveness-information">Liveness information</a></li>
<li><a href="Arithmetic.html#index-lo_005fsum-2891"><code>lo_sum</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Simple-Constraints.html#index-load-address-instruction-3332">load address instruction</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Misc.html#index-LOAD_005fEXTEND_005fOP-4899"><code>LOAD_EXTEND_OP</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-3389"><code>load_multiple</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="RTL-passes.html#index-Local-Register-Allocator-_0028LRA_0029-1694">Local Register Allocator (LRA)</a>: <a href="RTL-passes.html#RTL-passes">RTL passes</a></li>
<li><a href="Storage-Layout.html#index-LOCAL_005fALIGNMENT-3956"><code>LOCAL_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Classes.html#index-LOCAL_005fCLASS_005fP-2048"><code>LOCAL_CLASS_P</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Storage-Layout.html#index-LOCAL_005fDECL_005fALIGNMENT-3959"><code>LOCAL_DECL_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Driver.html#index-LOCAL_005fINCLUDE_005fDIR-3893"><code>LOCAL_INCLUDE_DIR</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Instruction-Output.html#index-LOCAL_005fLABEL_005fPREFIX-4704"><code>LOCAL_LABEL_PREFIX</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Register-Basics.html#index-LOCAL_005fREGNO-4070"><code>LOCAL_REGNO</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Insns.html#index-LOG_005fLINKS-3107"><code>LOG_LINKS</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Logical-Operators.html#index-Logical-Operators-2144">Logical Operators</a>: <a href="Logical-Operators.html#Logical-Operators">Logical Operators</a></li>
<li><a href="Arithmetic.html#index-logical_002dand_002c-bitwise-2940">logical-and, bitwise</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Costs.html#index-LOGICAL_005fOP_005fNON_005fSHORT_005fCIRCUIT-4466"><code>LOGICAL_OP_NON_SHORT_CIRCUIT</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3520"><code>log</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Type-Layout.html#index-LONG_005fACCUM_005fTYPE_005fSIZE-3998"><code>LONG_ACCUM_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-LONG_005fDOUBLE_005fTYPE_005fSIZE-3991"><code>LONG_DOUBLE_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-LONG_005fFRACT_005fTYPE_005fSIZE-3994"><code>LONG_FRACT_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-LONG_005fLONG_005fACCUM_005fTYPE_005fSIZE-3999"><code>LONG_LONG_ACCUM_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-LONG_005fLONG_005fFRACT_005fTYPE_005fSIZE-3995"><code>LONG_LONG_FRACT_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-LONG_005fLONG_005fTYPE_005fSIZE-3986"><code>LONG_LONG_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-LONG_005fTYPE_005fSIZE-3984"><code>LONG_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Interface.html#index-g_t_0040code_007blongjmp_007d-and-automatic-variables-16"><code>longjmp</code> and automatic variables</a>: <a href="Interface.html#Interface">Interface</a></li>
<li><a href="Loop-representation.html#index-Loop-analysis-3230">Loop analysis</a>: <a href="Loop-representation.html#Loop-representation">Loop representation</a></li>
<li><a href="Loop-manipulation.html#index-Loop-manipulation-3232">Loop manipulation</a>: <a href="Loop-manipulation.html#Loop-manipulation">Loop manipulation</a></li>
<li><a href="Loop-querying.html#index-Loop-querying-3231">Loop querying</a>: <a href="Loop-querying.html#Loop-querying">Loop querying</a></li>
<li><a href="Loop-representation.html#index-Loop-representation-3229">Loop representation</a>: <a href="Loop-representation.html#Loop-representation">Loop representation</a></li>
<li><a href="LCSSA.html#index-Loop_002dclosed-SSA-form-3234">Loop-closed SSA form</a>: <a href="LCSSA.html#LCSSA">LCSSA</a></li>
<li><a href="Alignment-Output.html#index-LOOP_005fALIGN-4741"><code>LOOP_ALIGN</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-LOOP_005fEXPR-1913"><code>LOOP_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Looping-Patterns.html#index-looping-instruction-patterns-3677">looping instruction patterns</a>: <a href="Looping-Patterns.html#Looping-Patterns">Looping Patterns</a></li>
<li><a href="Parsing-pass.html#your_sha256_hashtation-1679">lowering, language-dependent intermediate representation</a>: <a href="Parsing-pass.html#Parsing-pass">Parsing pass</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d2_007d-3529"><code>lrint</code><var>m</var><var>n</var><code>2</code></a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash07d2_007d-3530"><code>lround</code><var>m</var><var>n</var><code>2</code></a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-LSHIFT_005fEXPR-1867"><code>LSHIFT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Arithmetic.html#index-lshiftrt-2956"><code>lshiftrt</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007blshiftrt_007d-and-attributes-3754"><code>lshiftrt</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3499"><code>lshr</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Comparisons.html#index-lt-2987"><code>lt</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007blt_007d-and-attributes-3739"><code>lt</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-LT_005fEXPR-1892"><code>LT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-LTGT_005fEXPR-1905"><code>LTGT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="LTO.html#index-lto-5103">lto</a>: <a href="LTO.html#LTO">LTO</a></li>
<li><a href="LTO.html#index-ltrans-5106">ltrans</a>: <a href="LTO.html#LTO">LTO</a></li>
<li><a href="Comparisons.html#index-ltu-2989"><code>ltu</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bm_007d-in-constraint-3307">`<samp><span class="samp">m</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Target-Attributes.html#index-machine-attributes-4828">machine attributes</a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Target-Macros.html#index-machine-description-macros-3850">machine description macros</a>: <a href="Target-Macros.html#Target-Macros">Target Macros</a></li>
<li><a href="Machine-Desc.html#index-machine-descriptions-3241">machine descriptions</a>: <a href="Machine-Desc.html#Machine-Desc">Machine Desc</a></li>
<li><a href="Conversions.html#index-machine-mode-conversions-3011">machine mode conversions</a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Machine-Modes.html#index-machine-modes-2728">machine modes</a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Constraints.html#index-machine-specific-constraints-3362">machine specific constraints</a>: <a href="Machine-Constraints.html#Machine-Constraints">Machine Constraints</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-machine_002dindependent-predicates-3283">machine-independent predicates</a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Machine-Modes.html#index-machine_005fmode-2729"><code>machine_mode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Target-Macros.html#index-macros_002c-target-description-3852">macros, target description</a>: <a href="Target-Macros.html#Target-Macros">Target Macros</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd4_007d-instruction-pattern-3485"><code>madd</code><var>m</var><var>n</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Label-Output.html#index-MAKE_005fDECL_005fONE_005fONLY-4642"><code>MAKE_DECL_ONE_ONLY</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Expander-Definitions.html#index-make_005fsafe_005ffrom-3700"><code>make_safe_from</code></a>: <a href="Expander-Definitions.html#Expander-Definitions">Expander Definitions</a></li>
<li><a href="Fragments.html#index-makefile-fragment-5052">makefile fragment</a>: <a href="Fragments.html#Fragments">Fragments</a></li>
<li><a href="Makefile.html#index-makefile-targets-1664">makefile targets</a>: <a href="Makefile.html#Makefile">Makefile</a></li>
<li><a href="Storage-Layout.html#index-MALLOC_005fABI_005fALIGNMENT-3945"><code>MALLOC_ABI_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-Manipulating-GIMPLE-statements-2163">Manipulating GIMPLE statements</a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="GTY-Options.html#index-mark_005fhook-5084"><code>mark_hook</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="GGC-Roots.html#index-marking-roots-5096">marking roots</a>: <a href="GGC-Roots.html#GGC-Roots">GGC Roots</a></li>
<li><a href="Exception-Region-Output.html#index-MASK_005fRETURN_005fADDR-4724"><code>MASK_RETURN_ADDR</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Match-and-Simplify.html#index-Match-and-Simplify-5111">Match and Simplify</a>: <a href="Match-and-Simplify.html#Match-and-Simplify">Match and Simplify</a></li>
<li><a href="define_005fpeephole2.html#index-match_005fdup-3718"><code>match_dup</code></a>: <a href="define_005fpeephole2.html#define_005fpeephole2">define_peephole2</a></li>
<li><a href="RTL-Template.html#index-match_005fdup-3257"><code>match_dup</code></a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="Insn-Lengths.html#index-g_t_0040code_007bmatch_005fdup_007d-and-attributes-3770"><code>match_dup</code> and attributes</a>: <a href="Insn-Lengths.html#Insn-Lengths">Insn Lengths</a></li>
<li><a href="RTL-Template.html#index-match_005fop_005fdup-3259"><code>match_op_dup</code></a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="RTL-Template.html#index-match_005foperand-3255"><code>match_operand</code></a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="Expressions.html#your_sha256_hash5"><code>match_operand</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="RTL-Template.html#index-match_005foperator-3258"><code>match_operator</code></a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="RTL-Template.html#index-match_005fpar_005fdup-3261"><code>match_par_dup</code></a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="RTL-Template.html#index-match_005fparallel-3260"><code>match_parallel</code></a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="define_005fpeephole2.html#index-match_005fscratch-3717"><code>match_scratch</code></a>: <a href="define_005fpeephole2.html#define_005fpeephole2">define_peephole2</a></li>
<li><a href="RTL-Template.html#index-match_005fscratch-3256"><code>match_scratch</code></a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bmatch_005ftest_007d-and-attributes-3736"><code>match_test</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Simple-Constraints.html#index-matching-constraint-3330">matching constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Output-Template.html#index-matching-operands-3268">matching operands</a>: <a href="Output-Template.html#Output-Template">Output Template</a></li>
<li><a href="Soft-float-library-routines.html#index-math-library-77">math library</a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="Arithmetic.html#index-math_002c-in-RTL-2882">math, in RTL</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Misc.html#index-MATH_005fLIBRARY-4931"><code>MATH_LIBRARY</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Library-Calls.html#index-matherr-4364"><code>matherr</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Storage-Layout.html#index-MAX_005fBITS_005fPER_005fWORD-3931"><code>MAX_BITS_PER_WORD</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Machine-Modes.html#index-MAX_005fBITSIZE_005fMODE_005fANY_005fINT-2816"><code>MAX_BITSIZE_MODE_ANY_INT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MAX_005fBITSIZE_005fMODE_005fANY_005fMODE-2817"><code>MAX_BITSIZE_MODE_ANY_MODE</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Misc.html#index-MAX_005fCONDITIONAL_005fEXECUTE-4934"><code>MAX_CONDITIONAL_EXECUTE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Storage-Layout.html#index-MAX_005fFIXED_005fMODE_005fSIZE-3970"><code>MAX_FIXED_MODE_SIZE</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Misc.html#index-MAX_005fMOVE_005fMAX-4903"><code>MAX_MOVE_MAX</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Storage-Layout.html#index-MAX_005fOFILE_005fALIGNMENT-3951"><code>MAX_OFILE_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Addressing-Modes.html#index-MAX_005fREGS_005fPER_005fADDRESS-4381"><code>MAX_REGS_PER_ADDRESS</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Storage-Layout.html#index-MAX_005fSTACK_005fALIGNMENT-3950"><code>MAX_STACK_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3430"><code>max</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Edges.html#your_sha256_hash><code>may_trap_p, tree_could_trap_p</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="GTY-Options.html#index-maybe_005fundef-5085"><code>maybe_undef</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Profiling.html#index-mcount-4311"><code>mcount</code></a>: <a href="Profiling.html#Profiling">Profiling</a></li>
<li><a href="Driver.html#index-MD_005fEXEC_005fPREFIX-3886"><code>MD_EXEC_PREFIX</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Exception-Handling.html#index-MD_005fFALLBACK_005fFRAME_005fSTATE_005fFOR-4176"><code>MD_FALLBACK_FRAME_STATE_FOR</code></a>: <a href="Exception-Handling.html#Exception-Handling">Exception Handling</a></li>
<li><a href="Exception-Handling.html#index-MD_005fHANDLE_005fUNWABI-4177"><code>MD_HANDLE_UNWABI</code></a>: <a href="Exception-Handling.html#Exception-Handling">Exception Handling</a></li>
<li><a href="Driver.html#index-MD_005fSTARTFILE_005fPREFIX-3890"><code>MD_STARTFILE_PREFIX</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-MD_005fSTARTFILE_005fPREFIX_005f1-3891"><code>MD_STARTFILE_PREFIX_1</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Regs-and-Memory.html#index-mem-2878"><code>mem</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Flags.html#your_sha256_hash51"><code>mem</code> and `<samp><span class="samp">/c</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash54"><code>mem</code> and `<samp><span class="samp">/f</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash43"><code>mem</code> and `<samp><span class="samp">/j</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash73"><code>mem</code> and `<samp><span class="samp">/u</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash46"><code>mem</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Sharing.html#index-g_t_0040code_007bmem_007d_002c-RTL-sharing-3148"><code>mem</code>, RTL sharing</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Special-Accessors.html#index-MEM_005fADDR_005fSPACE-2575"><code>MEM_ADDR_SPACE</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-MEM_005fALIAS_005fSET-2568"><code>MEM_ALIAS_SET</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-MEM_005fALIGN-2574"><code>MEM_ALIGN</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-MEM_005fEXPR-2569"><code>MEM_EXPR</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Flags.html#index-MEM_005fKEEP_005fALIAS_005fSET_005fP-2642"><code>MEM_KEEP_ALIAS_SET_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-MEM_005fNOTRAP_005fP-2650"><code>MEM_NOTRAP_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Special-Accessors.html#index-MEM_005fOFFSET-2571"><code>MEM_OFFSET</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-MEM_005fOFFSET_005fKNOWN_005fP-2570"><code>MEM_OFFSET_KNOWN_P</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Flags.html#index-MEM_005fPOINTER-2653"><code>MEM_POINTER</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-MEM_005fREADONLY_005fP-2672"><code>MEM_READONLY_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Storage-References.html#index-MEM_005fREF-1843"><code>MEM_REF</code></a>: <a href="Storage-References.html#Storage-References">Storage References</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3665"><code>mem_signal_fence</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Special-Accessors.html#index-MEM_005fSIZE-2573"><code>MEM_SIZE</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-MEM_005fSIZE_005fKNOWN_005fP-2572"><code>MEM_SIZE_KNOWN_P</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3664"><code>mem_thread_fence</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Flags.html#index-MEM_005fVOLATILE_005fP-2645"><code>MEM_VOLATILE_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Memory-model.html#index-memory-model-2533">memory model</a>: <a href="Memory-model.html#Memory-model">Memory model</a></li>
<li><a href="Simple-Constraints.html#index-memory-reference_002c-nonoffsettable-3340">memory reference, nonoffsettable</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Simple-Constraints.html#index-memory-references-in-constraints-3308">memory references in constraints</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Standard-Names.html#your_sha256_hashrn-3619"><code>memory_barrier</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Costs.html#index-MEMORY_005fMOVE_005fCOST-4447"><code>MEMORY_MOVE_COST</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-memory_005foperand-3291"><code>memory_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Types.html#index-METHOD_005fTYPE-1759"><code>METHOD_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Storage-Layout.html#index-MIN_005fUNITS_005fPER_005fWORD-3933"><code>MIN_UNITS_PER_WORD</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Storage-Layout.html#index-MINIMUM_005fALIGNMENT-3960"><code>MINIMUM_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Storage-Layout.html#index-MINIMUM_005fATOMIC_005fALIGNMENT-3947"><code>MINIMUM_ATOMIC_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3429"><code>min</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Arithmetic.html#index-minus-2892"><code>minus</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bminus_007d-and-attributes-3747"><code>minus</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Insn-Canonicalizations.html#index-g_t_0040code_007bminus_007d_002c-canonicalization-of-3685"><code>minus</code>, canonicalization of</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-MINUS_005fEXPR-1879"><code>MINUS_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="MIPS-Coprocessors.html#index-MIPS-coprocessor_002ddefinition-macros-4862">MIPS coprocessor-definition macros</a>: <a href="MIPS-Coprocessors.html#MIPS-Coprocessors">MIPS Coprocessors</a></li>
<li><a href="Miscellaneous-Register-Hooks.html#index-miscellaneous-register-hooks-4325">miscellaneous register hooks</a>: <a href="Miscellaneous-Register-Hooks.html#Miscellaneous-Register-Hooks">Miscellaneous Register Hooks</a></li>
<li><a href="Mnemonic-Attribute.html#index-mnemonic-attribute-3777">mnemonic attribute</a>: <a href="Mnemonic-Attribute.html#Mnemonic-Attribute">Mnemonic Attribute</a></li>
<li><a href="Arithmetic.html#index-mod-2925"><code>mod</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bmod_007d-and-attributes-3750"><code>mod</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Machine-Modes.html#index-mode-classes-2785">mode classes</a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Mode-Iterators.html#index-mode-iterators-in-_0040file_007b_002emd_007d-files-3837">mode iterators in <samp><span class="file">.md</span></samp> files</a>: <a href="Mode-Iterators.html#Mode-Iterators">Mode Iterators</a></li>
<li><a href="Mode-Switching.html#index-mode-switching-4818">mode switching</a>: <a href="Mode-Switching.html#Mode-Switching">Mode Switching</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fACCUM-2792"><code>MODE_ACCUM</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Register-Classes.html#index-MODE_005fBASE_005fREG_005fCLASS-4109"><code>MODE_BASE_REG_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-MODE_005fBASE_005fREG_005fREG_005fCLASS-4110"><code>MODE_BASE_REG_REG_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="MODE_005fCC-Condition-Codes.html#index-MODE_005fCC-4434"><code>MODE_CC</code></a>: <a href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes">MODE_CC Condition Codes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fCC-2797"><code>MODE_CC</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Register-Classes.html#index-MODE_005fCODE_005fBASE_005fREG_005fCLASS-4111"><code>MODE_CODE_BASE_REG_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fCOMPLEX_005fFLOAT-2795"><code>MODE_COMPLEX_FLOAT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fCOMPLEX_005fINT-2794"><code>MODE_COMPLEX_INT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fDECIMAL_005fFLOAT-2789"><code>MODE_DECIMAL_FLOAT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fFLOAT-2788"><code>MODE_FLOAT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fFRACT-2790"><code>MODE_FRACT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fFUNCTION-2796"><code>MODE_FUNCTION</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fINT-2786"><code>MODE_INT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fPARTIAL_005fINT-2787"><code>MODE_PARTIAL_INT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fPOINTER_005fBOUNDS-2798"><code>MODE_POINTER_BOUNDS</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fRANDOM-2799"><code>MODE_RANDOM</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fUACCUM-2793"><code>MODE_UACCUM</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-MODE_005fUFRACT-2791"><code>MODE_UFRACT</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Values-in-Registers.html#index-MODES_005fTIEABLE_005fP-4085"><code>MODES_TIEABLE_P</code></a>: <a href="Values-in-Registers.html#Values-in-Registers">Values in Registers</a></li>
<li><a href="Modifiers.html#index-modifiers-in-constraints-3353">modifiers in constraints</a>: <a href="Modifiers.html#Modifiers">Modifiers</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-MODIFY_005fEXPR-1906"><code>MODIFY_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Misc.html#index-MODIFY_005fJNI_005fMETHOD_005fCALL-4978"><code>MODIFY_JNI_METHOD_CALL</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3413"><code>mod</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="RTL-passes.html#index-modulo-scheduling-1691">modulo scheduling</a>: <a href="RTL-passes.html#RTL-passes">RTL passes</a></li>
<li><a href="Misc.html#index-MOVE_005fMAX-4902"><code>MOVE_MAX</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Costs.html#index-MOVE_005fMAX_005fPIECES-4454"><code>MOVE_MAX_PIECES</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Costs.html#index-MOVE_005fRATIO-4452"><code>MOVE_RATIO</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Standard-Names.html#your_sha256_hashattern-3380"><code>mov</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3541"><code>movmem</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashuction-pattern-3388"><code>movmisalign</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashion-pattern-3571"><code>mov</code><var>mode</var><code>cc</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bmovstr_007d-instruction-pattern-3542"><code>movstr</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashtion-pattern-3387"><code>movstrict</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd4_007d-instruction-pattern-3489"><code>msub</code><var>m</var><var>n</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bmulhisi3_007d-instruction-pattern-3474"><code>mulhisi3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3406"><code>mul</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bmulqihi3_007d-instruction-pattern-3475"><code>mulqihi3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bmulsidi3_007d-instruction-pattern-3476"><code>mulsidi3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Arithmetic.html#index-mult-2907"><code>mult</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bmult_007d-and-attributes-3748"><code>mult</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Insn-Canonicalizations.html#index-g_t_0040code_007bmult_007d_002c-canonicalization-of-3683"><code>mult</code>, canonicalization of</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-MULT_005fEXPR-1880"><code>MULT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-MULT_005fHIGHPART_005fEXPR-1881"><code>MULT_HIGHPART_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Target-Fragment.html#index-MULTIARCH_005fDIRNAME-5067"><code>MULTIARCH_DIRNAME</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Driver.html#index-MULTILIB_005fDEFAULTS-3884"><code>MULTILIB_DEFAULTS</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Target-Fragment.html#index-MULTILIB_005fDIRNAMES-5060"><code>MULTILIB_DIRNAMES</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Target-Fragment.html#index-MULTILIB_005fEXCEPTIONS-5062"><code>MULTILIB_EXCEPTIONS</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Target-Fragment.html#index-MULTILIB_005fEXTRA_005fOPTS-5065"><code>MULTILIB_EXTRA_OPTS</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Target-Fragment.html#index-MULTILIB_005fMATCHES-5061"><code>MULTILIB_MATCHES</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Target-Fragment.html#index-MULTILIB_005fOPTIONS-5059"><code>MULTILIB_OPTIONS</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Target-Fragment.html#index-MULTILIB_005fOSDIRNAMES-5066"><code>MULTILIB_OSDIRNAMES</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Target-Fragment.html#index-MULTILIB_005fREQUIRED-5063"><code>MULTILIB_REQUIRED</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Target-Fragment.html#index-MULTILIB_005fREUSE-5064"><code>MULTILIB_REUSE</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Multi_002dAlternative.html#index-multiple-alternative-constraints-3341">multiple alternative constraints</a>: <a href="Multi_002dAlternative.html#Multi_002dAlternative">Multi-Alternative</a></li>
<li><a href="Misc.html#index-MULTIPLE_005fSYMBOL_005fSPACES-4929"><code>MULTIPLE_SYMBOL_SPACES</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Arithmetic.html#index-multiplication-2910">multiplication</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-multiplication-with-signed-saturation-2912">multiplication with signed saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-multiplication-with-unsigned-saturation-2913">multiplication with unsigned saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3422"><code>mulv</code><var>m</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bn_007d-in-constraint-3319">`<samp><span class="samp">n</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Register-Classes.html#index-N_005fREG_005fCLASSES-4104"><code>N_REG_CLASSES</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Identifiers.html#index-name-1727">name</a>: <a href="Identifiers.html#Identifiers">Identifiers</a></li>
<li><a href="Named-Address-Spaces.html#index-named-address-spaces-4883">named address spaces</a>: <a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></li>
<li><a href="Patterns.html#index-named-patterns-and-conditions-3247">named patterns and conditions</a>: <a href="Patterns.html#Patterns">Patterns</a></li>
<li><a href="Standard-Names.html#index-names_002c-pattern-3379">names, pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Namespaces.html#index-namespace_002c-scope-2032">namespace, scope</a>: <a href="Namespaces.html#Namespaces">Namespaces</a></li>
<li><a href="Declarations.html#index-NAMESPACE_005fDECL-1803"><code>NAMESPACE_DECL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Namespaces.html#index-NAMESPACE_005fDECL-2033"><code>NAMESPACE_DECL</code></a>: <a href="Namespaces.html#Namespaces">Namespaces</a></li>
<li><a href="Driver.html#index-NATIVE_005fSYSTEM_005fHEADER_005fCOMPONENT-3894"><code>NATIVE_SYSTEM_HEADER_COMPONENT</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Comparisons.html#index-ne-2980"><code>ne</code></a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bne_007d-and-attributes-3744"><code>ne</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-NE_005fEXPR-1897"><code>NE_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Standard-Names.html#your_sha256_hashction-pattern-3527"><code>nearbyint</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Arithmetic.html#index-neg-2901"><code>neg</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bneg_007d-and-attributes-3752"><code>neg</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Insn-Canonicalizations.html#index-g_t_0040code_007bneg_007d_002c-canonicalization-of-3681"><code>neg</code>, canonicalization of</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-NEGATE_005fEXPR-1848"><code>NEGATE_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Arithmetic.html#index-negation-2904">negation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-negation-with-signed-saturation-2905">negation with signed saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-negation-with-unsigned-saturation-2906">negation with unsigned saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3508"><code>neg</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3511"><code>negv</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Trampolines.html#index-nested-functions_002c-trampolines-for-4344">nested functions, trampolines for</a>: <a href="Trampolines.html#Trampolines">Trampolines</a></li>
<li><a href="GTY-Options.html#index-nested_005fptr-5086"><code>nested_ptr</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Basic-Blocks.html#your_sha256_hash-FOR_005fALL_005fBB-3158"><code>next_bb, prev_bb, FOR_EACH_BB, FOR_ALL_BB</code></a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Insns.html#index-NEXT_005fINSN-3070"><code>NEXT_INSN</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Library-Calls.html#index-NEXT_005fOBJC_005fRUNTIME-4369"><code>NEXT_OBJC_RUNTIME</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="RTL-Objects.html#index-nil-2548">nil</a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="Macros-for-Initialization.html#index-NM_005fFLAGS-4683"><code>NM_FLAGS</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="DBX-Hooks.html#index-NO_005fDBX_005fBNSYM_005fENSYM-4775"><code>NO_DBX_BNSYM_ENSYM</code></a>: <a href="DBX-Hooks.html#DBX-Hooks">DBX Hooks</a></li>
<li><a href="DBX-Hooks.html#index-NO_005fDBX_005fFUNCTION_005fEND-4774"><code>NO_DBX_FUNCTION_END</code></a>: <a href="DBX-Hooks.html#DBX-Hooks">DBX Hooks</a></li>
<li><a href="File-Names-and-DBX.html#index-NO_005fDBX_005fGCC_005fMARKER-4778"><code>NO_DBX_GCC_MARKER</code></a>: <a href="File-Names-and-DBX.html#File-Names-and-DBX">File Names and DBX</a></li>
<li><a href="File-Names-and-DBX.html#index-NO_005fDBX_005fMAIN_005fSOURCE_005fDIRECTORY-4777"><code>NO_DBX_MAIN_SOURCE_DIRECTORY</code></a>: <a href="File-Names-and-DBX.html#File-Names-and-DBX">File Names and DBX</a></li>
<li><a href="Label-Output.html#index-NO_005fDOLLAR_005fIN_005fLABEL-4623"><code>NO_DOLLAR_IN_LABEL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-NO_005fDOT_005fIN_005fLABEL-4624"><code>NO_DOT_IN_LABEL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Costs.html#index-NO_005fFUNCTION_005fCSE-4465"><code>NO_FUNCTION_CSE</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Misc.html#index-NO_005fIMPLICIT_005fEXTERN_005fC-4918"><code>NO_IMPLICIT_EXTERN_C</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Profiling.html#index-NO_005fPROFILE_005fCOUNTERS-4313"><code>NO_PROFILE_COUNTERS</code></a>: <a href="Profiling.html#Profiling">Profiling</a></li>
<li><a href="Register-Classes.html#index-NO_005fREGS-4101"><code>NO_REGS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-NON_005fLVALUE_005fEXPR-1862"><code>NON_LVALUE_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Processor-pipeline-description.html#index-nondeterministic-finite-state-automaton-3817">nondeterministic finite state automaton</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-nonimmediate_005foperand-3297"><code>nonimmediate_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Edges.html#index-nonlocal-goto-handler-3190">nonlocal goto handler</a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-3604"><code>nonlocal_goto</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashuction-pattern-3605"><code>nonlocal_goto_receiver</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-nonmemory_005foperand-3296"><code>nonmemory_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Simple-Constraints.html#index-nonoffsettable-memory-reference-3339">nonoffsettable memory reference</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bnop_007d-instruction-pattern-3586"><code>nop</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-NOP_005fEXPR-1863"><code>NOP_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Predicates.html#index-normal-predicates-3281">normal predicates</a>: <a href="Predicates.html#Predicates">Predicates</a></li>
<li><a href="Arithmetic.html#index-not-2936"><code>not</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bnot_007d-and-attributes-3732"><code>not</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Comparisons.html#index-not-equal-2981">not equal</a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Insn-Canonicalizations.html#index-g_t_0040code_007bnot_007d_002c-canonicalization-of-3682"><code>not</code>, canonicalization of</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Insns.html#index-note-3087"><code>note</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#your_sha256_hash636"><code>note</code> and `<samp><span class="samp">/i</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash627"><code>note</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Basic-Blocks.html#index-NOTE_005fINSN_005fBASIC_005fBLOCK-3163"><code>NOTE_INSN_BASIC_BLOCK</code></a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Insns.html#index-NOTE_005fINSN_005fBLOCK_005fBEG-3092"><code>NOTE_INSN_BLOCK_BEG</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-NOTE_005fINSN_005fBLOCK_005fEND-3093"><code>NOTE_INSN_BLOCK_END</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-NOTE_005fINSN_005fDELETED-3090"><code>NOTE_INSN_DELETED</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-NOTE_005fINSN_005fDELETED_005fLABEL-3091"><code>NOTE_INSN_DELETED_LABEL</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-NOTE_005fINSN_005fEH_005fREGION_005fBEG-3094"><code>NOTE_INSN_EH_REGION_BEG</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-NOTE_005fINSN_005fEH_005fREGION_005fEND-3095"><code>NOTE_INSN_EH_REGION_END</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-NOTE_005fINSN_005fFUNCTION_005fBEG-3096"><code>NOTE_INSN_FUNCTION_BEG</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-NOTE_005fINSN_005fVAR_005fLOCATION-3097"><code>NOTE_INSN_VAR_LOCATION</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-NOTE_005fLINE_005fNUMBER-3088"><code>NOTE_LINE_NUMBER</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-NOTE_005fSOURCE_005fFILE-3089"><code>NOTE_SOURCE_FILE</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-NOTE_005fVAR_005fLOCATION-3098"><code>NOTE_VAR_LOCATION</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="CC0-Condition-Codes.html#index-NOTICE_005fUPDATE_005fCC-4432"><code>NOTICE_UPDATE_CC</code></a>: <a href="CC0-Condition-Codes.html#CC0-Condition-Codes">CC0 Condition Codes</a></li>
<li><a href="Machine-Modes.html#index-NUM_005fMACHINE_005fMODES-2802"><code>NUM_MACHINE_MODES</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Mode-Switching.html#index-NUM_005fMODES_005fFOR_005fMODE_005fSWITCHING-4820"><code>NUM_MODES_FOR_MODE_SWITCHING</code></a>: <a href="Mode-Switching.html#Mode-Switching">Mode Switching</a></li>
<li><a href="Number-of-iterations.html#index-Number-of-iterations-analysis-3238">Number of iterations analysis</a>: <a href="Number-of-iterations.html#Number-of-iterations">Number of iterations</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bo_007d-in-constraint-3310">`<samp><span class="samp">o</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="OpenACC.html#index-OACC_005fCACHE-1955"><code>OACC_CACHE</code></a>: <a href="OpenACC.html#OpenACC">OpenACC</a></li>
<li><a href="OpenACC.html#index-OACC_005fDATA-1956"><code>OACC_DATA</code></a>: <a href="OpenACC.html#OpenACC">OpenACC</a></li>
<li><a href="OpenACC.html#index-OACC_005fDECLARE-1957"><code>OACC_DECLARE</code></a>: <a href="OpenACC.html#OpenACC">OpenACC</a></li>
<li><a href="OpenACC.html#index-OACC_005fENTER_005fDATA-1958"><code>OACC_ENTER_DATA</code></a>: <a href="OpenACC.html#OpenACC">OpenACC</a></li>
<li><a href="OpenACC.html#index-OACC_005fEXIT_005fDATA-1959"><code>OACC_EXIT_DATA</code></a>: <a href="OpenACC.html#OpenACC">OpenACC</a></li>
<li><a href="OpenACC.html#index-OACC_005fHOST_005fDATA-1960"><code>OACC_HOST_DATA</code></a>: <a href="OpenACC.html#OpenACC">OpenACC</a></li>
<li><a href="OpenACC.html#index-OACC_005fKERNELS-1961"><code>OACC_KERNELS</code></a>: <a href="OpenACC.html#OpenACC">OpenACC</a></li>
<li><a href="OpenACC.html#index-OACC_005fLOOP-1962"><code>OACC_LOOP</code></a>: <a href="OpenACC.html#OpenACC">OpenACC</a></li>
<li><a href="OpenACC.html#index-OACC_005fPARALLEL-1963"><code>OACC_PARALLEL</code></a>: <a href="OpenACC.html#OpenACC">OpenACC</a></li>
<li><a href="OpenACC.html#index-OACC_005fUPDATE-1964"><code>OACC_UPDATE</code></a>: <a href="OpenACC.html#OpenACC">OpenACC</a></li>
<li><a href="Label-Output.html#index-OBJC_005fGEN_005fMETHOD_005fLABEL-4663"><code>OBJC_GEN_METHOD_LABEL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Misc.html#index-OBJC_005fJBLEN-5006"><code>OBJC_JBLEN</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Macros-for-Initialization.html#index-OBJECT_005fFORMAT_005fCOFF-4681"><code>OBJECT_FORMAT_COFF</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Types.html#index-OFFSET_005fTYPE-1764"><code>OFFSET_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Simple-Constraints.html#index-offsettable-address-3309">offsettable address</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Machine-Modes.html#index-OImode-2738"><code>OImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Omega.html#index-Omega-a-solver-for-linear-programming-problems-3240">Omega a solver for linear programming problems</a>: <a href="Omega.html#Omega">Omega</a></li>
<li><a href="OpenMP.html#index-OMP_005fATOMIC-1953"><code>OMP_ATOMIC</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="OpenMP.html#index-OMP_005fCLAUSE-1954"><code>OMP_CLAUSE</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="OpenMP.html#index-OMP_005fCONTINUE-1952"><code>OMP_CONTINUE</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="OpenMP.html#index-OMP_005fCRITICAL-1950"><code>OMP_CRITICAL</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="OpenMP.html#index-OMP_005fFOR-1944"><code>OMP_FOR</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="OpenMP.html#index-OMP_005fMASTER-1948"><code>OMP_MASTER</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="OpenMP.html#index-OMP_005fORDERED-1949"><code>OMP_ORDERED</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="OpenMP.html#index-OMP_005fPARALLEL-1943"><code>OMP_PARALLEL</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="OpenMP.html#index-OMP_005fRETURN-1951"><code>OMP_RETURN</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="OpenMP.html#index-OMP_005fSECTION-1947"><code>OMP_SECTION</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="OpenMP.html#index-OMP_005fSECTIONS-1945"><code>OMP_SECTIONS</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="OpenMP.html#index-OMP_005fSINGLE-1946"><code>OMP_SINGLE</code></a>: <a href="OpenMP.html#OpenMP">OpenMP</a></li>
<li><a href="Standard-Names.html#your_sha256_hashtruction-pattern-3540"><code>one_cmpl</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Accessors.html#index-operand-access-2559">operand access</a>: <a href="Accessors.html#Accessors">Accessors</a></li>
<li><a href="SSA-Operands.html#index-Operand-Access-Routines-2513">Operand Access Routines</a>: <a href="SSA-Operands.html#SSA-Operands">SSA Operands</a></li>
<li><a href="Constraints.html#index-operand-constraints-3304">operand constraints</a>: <a href="Constraints.html#Constraints">Constraints</a></li>
<li><a href="SSA-Operands.html#index-Operand-Iterators-2512">Operand Iterators</a>: <a href="SSA-Operands.html#SSA-Operands">SSA Operands</a></li>
<li><a href="Predicates.html#index-operand-predicates-3278">operand predicates</a>: <a href="Predicates.html#Predicates">Predicates</a></li>
<li><a href="Output-Template.html#index-operand-substitution-3263">operand substitution</a>: <a href="Output-Template.html#Output-Template">Output Template</a></li>
<li><a href="Operands.html#index-Operands-2140">Operands</a>: <a href="Operands.html#Operands">Operands</a></li>
<li><a href="SSA-Operands.html#index-operands-2508">operands</a>: <a href="SSA-Operands.html#SSA-Operands">SSA Operands</a></li>
<li><a href="Patterns.html#index-operands-3248"><code>operands</code></a>: <a href="Patterns.html#Patterns">Patterns</a></li>
<li><a href="Predicates.html#index-operator-predicates-3279">operator predicates</a>: <a href="Predicates.html#Predicates">Predicates</a></li>
<li><a href="Options.html#index-g_t_0040samp_007boptc_002dgen_002eawk_007d-1667">`<samp><span class="samp">optc-gen.awk</span></samp>'</a>: <a href="Options.html#Options">Options</a></li>
<li><a href="Optimization-groups.html#index-OPTGROUP_005fALL-1703"><code>OPTGROUP_ALL</code></a>: <a href="Optimization-groups.html#Optimization-groups">Optimization groups</a></li>
<li><a href="Optimization-groups.html#index-OPTGROUP_005fINLINE-1700"><code>OPTGROUP_INLINE</code></a>: <a href="Optimization-groups.html#Optimization-groups">Optimization groups</a></li>
<li><a href="Optimization-groups.html#index-OPTGROUP_005fIPA-1698"><code>OPTGROUP_IPA</code></a>: <a href="Optimization-groups.html#Optimization-groups">Optimization groups</a></li>
<li><a href="Optimization-groups.html#index-OPTGROUP_005fLOOP-1699"><code>OPTGROUP_LOOP</code></a>: <a href="Optimization-groups.html#Optimization-groups">Optimization groups</a></li>
<li><a href="Optimization-groups.html#index-OPTGROUP_005fOTHER-1702"><code>OPTGROUP_OTHER</code></a>: <a href="Optimization-groups.html#Optimization-groups">Optimization groups</a></li>
<li><a href="Optimization-groups.html#index-OPTGROUP_005fVEC-1701"><code>OPTGROUP_VEC</code></a>: <a href="Optimization-groups.html#Optimization-groups">Optimization groups</a></li>
<li><a href="Optimization-info.html#index-optimization-dumps-1695">optimization dumps</a>: <a href="Optimization-info.html#Optimization-info">Optimization info</a></li>
<li><a href="Optimization-groups.html#index-optimization-groups-1697">optimization groups</a>: <a href="Optimization-groups.html#Optimization-groups">Optimization groups</a></li>
<li><a href="Dump-files-and-streams.html#index-optimization-info-file-names-1704">optimization info file names</a>: <a href="Dump-files-and-streams.html#Dump-files-and-streams">Dump files and streams</a></li>
<li><a href="Tree-SSA.html#index-Optimization-infrastructure-for-GIMPLE-2506">Optimization infrastructure for GIMPLE</a>: <a href="Tree-SSA.html#Tree-SSA">Tree SSA</a></li>
<li><a href="Mode-Switching.html#index-OPTIMIZE_005fMODE_005fSWITCHING-4819"><code>OPTIMIZE_MODE_SWITCHING</code></a>: <a href="Mode-Switching.html#Mode-Switching">Mode Switching</a></li>
<li><a href="Options.html#index-option-specification-files-1666">option specification files</a>: <a href="Options.html#Options">Options</a></li>
<li><a href="Driver.html#index-OPTION_005fDEFAULT_005fSPECS-3860"><code>OPTION_DEFAULT_SPECS</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Run_002dtime-Target.html#index-optional-hardware-or-system-features-3904">optional hardware or system features</a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Including-Patterns.html#index-options_002c-directory-search-3709">options, directory search</a>: <a href="Including-Patterns.html#Including-Patterns">Including Patterns</a></li>
<li><a href="Allocation-Order.html#index-order-of-register-allocation-4072">order of register allocation</a>: <a href="Allocation-Order.html#Allocation-Order">Allocation Order</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-ordered_005fcomparison_005foperator-3300"><code>ordered_comparison_operator</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-ORDERED_005fEXPR-1898"><code>ORDERED_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Pattern-Ordering.html#index-Ordering-of-Patterns-3672">Ordering of Patterns</a>: <a href="Pattern-Ordering.html#Pattern-Ordering">Pattern Ordering</a></li>
<li><a href="Special-Accessors.html#index-ORIGINAL_005fREGNO-2576"><code>ORIGINAL_REGNO</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Simple-Constraints.html#index-other-register-constraints-3337">other register constraints</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Stack-Arguments.html#index-outgoing_005fargs_005fsize-4219"><code>outgoing_args_size</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Stack-Arguments.html#index-OUTGOING_005fREG_005fPARM_005fSTACK_005fSPACE-4224"><code>OUTGOING_REG_PARM_STACK_SPACE</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Register-Basics.html#index-OUTGOING_005fREGNO-4069"><code>OUTGOING_REGNO</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="File-Framework.html#index-output-of-assembler-code-4556">output of assembler code</a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Output-Statement.html#index-output-statements-3270">output statements</a>: <a href="Output-Statement.html#Output-Statement">Output Statement</a></li>
<li><a href="Output-Template.html#index-output-templates-3262">output templates</a>: <a href="Output-Template.html#Output-Template">Output Template</a></li>
<li><a href="Output-Statement.html#index-output_005fasm_005finsn-3275"><code>output_asm_insn</code></a>: <a href="Output-Statement.html#Output-Statement">Output Statement</a></li>
<li><a href="File-Framework.html#index-OUTPUT_005fQUOTED_005fSTRING-4572"><code>OUTPUT_QUOTED_STRING</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Instruction-Output.html#index-OVERLAPPING_005fREGISTER_005fNAMES-4689"><code>OVERLAPPING_REGISTER_NAMES</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-OVERLOAD-2061"><code>OVERLOAD</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Register-Arguments.html#index-OVERRIDE_005fABI_005fFORMAT-4242"><code>OVERRIDE_ABI_FORMAT</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-OVL_005fCURRENT-2062"><code>OVL_CURRENT</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-OVL_005fNEXT-2063"><code>OVL_NEXT</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bp_007d-in-constraint-3335">`<samp><span class="samp">p</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Register-Arguments.html#index-PAD_005fVARARGS_005fDOWN-4249"><code>PAD_VARARGS_DOWN</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Side-Effects.html#index-parallel-3042"><code>parallel</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="C_002b_002b-ABI.html#index-parameters_002c-c_002b_002b-abi-4868">parameters, c++ abi</a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="Misc.html#index-parameters_002c-miscellaneous-4891">parameters, miscellaneous</a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="PCH-Target.html#index-parameters_002c-precompiled-headers-4863">parameters, precompiled headers</a>: <a href="PCH-Target.html#PCH-Target">PCH Target</a></li>
<li><a href="Arithmetic.html#index-parity-2974"><code>parity</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hashon-pattern-3539"><code>parity</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Storage-Layout.html#index-PARM_005fBOUNDARY-3938"><code>PARM_BOUNDARY</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Declarations.html#index-PARM_005fDECL-1800"><code>PARM_DECL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Macros-for-Initialization.html#index-PARSE_005fLDD_005fOUTPUT-4685"><code>PARSE_LDD_OUTPUT</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Passes.html#index-pass-dumps-1671">pass dumps</a>: <a href="Passes.html#Passes">Passes</a></li>
<li><a href="Edges.html#index-pass_005fduplicate_005fcomputed_005fgotos-3189"><code>pass_duplicate_computed_gotos</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Passes.html#index-passes-and-files-of-the-compiler-1668">passes and files of the compiler</a>: <a href="Passes.html#Passes">Passes</a></li>
<li><a href="Interface.html#index-passing-arguments-15">passing arguments</a>: <a href="Interface.html#Interface">Interface</a></li>
<li><a href="Filesystem.html#index-PATH_005fSEPARATOR-5033"><code>PATH_SEPARATOR</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="Insns.html#index-PATTERN-3104"><code>PATTERN</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Patterns.html#index-pattern-conditions-3245">pattern conditions</a>: <a href="Patterns.html#Patterns">Patterns</a></li>
<li><a href="Standard-Names.html#index-pattern-names-3378">pattern names</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Pattern-Ordering.html#index-Pattern-Ordering-3671">Pattern Ordering</a>: <a href="Pattern-Ordering.html#Pattern-Ordering">Pattern Ordering</a></li>
<li><a href="Patterns.html#index-patterns-3242">patterns</a>: <a href="Patterns.html#Patterns">Patterns</a></li>
<li><a href="Regs-and-Memory.html#index-pc-2875"><code>pc</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Insn-Lengths.html#index-g_t_0040code_007bpc_007d-and-attributes-3771"><code>pc</code> and attributes</a>: <a href="Insn-Lengths.html#Insn-Lengths">Insn Lengths</a></li>
<li><a href="Sharing.html#index-g_t_0040code_007bpc_007d_002c-RTL-sharing-3142"><code>pc</code>, RTL sharing</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Register-Basics.html#index-PC_005fREGNUM-4071"><code>PC_REGNUM</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Regs-and-Memory.html#index-pc_005frtx-2877"><code>pc_rtx</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Storage-Layout.html#index-PCC_005fBITFIELD_005fTYPE_005fMATTERS-3964"><code>PCC_BITFIELD_TYPE_MATTERS</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Aggregate-Return.html#index-PCC_005fSTATIC_005fSTRUCT_005fRETURN-4286"><code>PCC_STATIC_STRUCT_RETURN</code></a>: <a href="Aggregate-Return.html#Aggregate-Return">Aggregate Return</a></li>
<li><a href="Machine-Modes.html#index-PDImode-2735"><code>PDImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Side-Effects.html#index-peephole-optimization_002c-RTL-representation-3043">peephole optimization, RTL representation</a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Peephole-Definitions.html#index-peephole-optimizer-definitions-3711">peephole optimizer definitions</a>: <a href="Peephole-Definitions.html#Peephole-Definitions">Peephole Definitions</a></li>
<li><a href="Per_002dFunction-Data.html#index-per_002dfunction-data-3920">per-function data</a>: <a href="Per_002dFunction-Data.html#Per_002dFunction-Data">Per-Function Data</a></li>
<li><a href="Output-Template.html#index-percent-sign-3265">percent sign</a>: <a href="Output-Template.html#Output-Template">Output Template</a></li>
<li><a href="SSA.html#index-PHI-nodes-2517">PHI nodes</a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="PIC.html#index-PIC-4551">PIC</a>: <a href="PIC.html#PIC">PIC</a></li>
<li><a href="PIC.html#your_sha256_hash53"><code>PIC_OFFSET_TABLE_REG_CALL_CLOBBERED</code></a>: <a href="PIC.html#PIC">PIC</a></li>
<li><a href="PIC.html#index-PIC_005fOFFSET_005fTABLE_005fREGNUM-4552"><code>PIC_OFFSET_TABLE_REGNUM</code></a>: <a href="PIC.html#PIC">PIC</a></li>
<li><a href="Processor-pipeline-description.html#index-pipeline-hazard-recognizer-3786">pipeline hazard recognizer</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Plugins.html#index-Plugins-5102">Plugins</a>: <a href="Plugins.html#Plugins">Plugins</a></li>
<li><a href="Arithmetic.html#index-plus-2884"><code>plus</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Expressions.html#index-g_t_0040code_007bplus_007d-and-attributes-3746"><code>plus</code> and attributes</a>: <a href="Expressions.html#Expressions">Expressions</a></li>
<li><a href="Insn-Canonicalizations.html#index-g_t_0040code_007bplus_007d_002c-canonicalization-of-3684"><code>plus</code>, canonicalization of</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-PLUS_005fEXPR-1878"><code>PLUS_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Misc.html#index-Pmode-4913"><code>Pmode</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-pmode_005fregister_005foperand-3289"><code>pmode_register_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Types.html#index-pointer-1743">pointer</a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-POINTER_005fPLUS_005fEXPR-1877"><code>POINTER_PLUS_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Storage-Layout.html#index-POINTER_005fSIZE-3934"><code>POINTER_SIZE</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Types.html#index-POINTER_005fTYPE-1756"><code>POINTER_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Storage-Layout.html#index-POINTERS_005fEXTEND_005fUNSIGNED-3935"><code>POINTERS_EXTEND_UNSIGNED</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-pop_005foperand-3295"><code>pop_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Arithmetic.html#index-popcount-2973"><code>popcount</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hashtion-pattern-3538"><code>popcount</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Function-Entry.html#index-pops_005fargs-4299"><code>pops_args</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Portability.html#index-portability-2">portability</a>: <a href="Portability.html#Portability">Portability</a></li>
<li><a href="PIC.html#index-position-independent-code-4550">position independent code</a>: <a href="PIC.html#PIC">PIC</a></li>
<li><a href="Incdec.html#index-post_005fdec-3058"><code>post_dec</code></a>: <a href="Incdec.html#Incdec">Incdec</a></li>
<li><a href="Incdec.html#index-post_005finc-3059"><code>post_inc</code></a>: <a href="Incdec.html#Incdec">Incdec</a></li>
<li><a href="Incdec.html#index-post_005fmodify-3060"><code>post_modify</code></a>: <a href="Incdec.html#Incdec">Incdec</a></li>
<li><a href="Basic-Blocks.html#your_sha256_hashr_005fcompute_002c-walk_005fdominator_005ftree-3159"><code>post_order_compute, inverted_post_order_compute, walk_dominator_tree</code></a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-POSTDECREMENT_005fEXPR-1854"><code>POSTDECREMENT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-POSTINCREMENT_005fEXPR-1855"><code>POSTINCREMENT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Misc.html#index-POWI_005fMAX_005fMULTS-4986"><code>POWI_MAX_MULTS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3521"><code>pow</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Misc.html#index-pragma-4920"><code>pragma</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Incdec.html#index-pre_005fdec-3056"><code>pre_dec</code></a>: <a href="Incdec.html#Incdec">Incdec</a></li>
<li><a href="Frame-Registers.html#index-PRE_005fGCC3_005fDWARF_005fFRAME_005fREGISTERS-4201"><code>PRE_GCC3_DWARF_FRAME_REGISTERS</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Incdec.html#index-pre_005finc-3057"><code>pre_inc</code></a>: <a href="Incdec.html#Incdec">Incdec</a></li>
<li><a href="Incdec.html#index-pre_005fmodify-3061"><code>pre_modify</code></a>: <a href="Incdec.html#Incdec">Incdec</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-PREDECREMENT_005fEXPR-1852"><code>PREDECREMENT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Run_002dtime-Target.html#index-predefined-macros-3897">predefined macros</a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Predicates.html#index-predicates-3277">predicates</a>: <a href="Predicates.html#Predicates">Predicates</a></li>
<li><a href="Predicates.html#index-predicates-and-machine-modes-3280">predicates and machine modes</a>: <a href="Predicates.html#Predicates">Predicates</a></li>
<li><a href="Conditional-Execution.html#index-predication-3820">predication</a>: <a href="Conditional-Execution.html#Conditional-Execution">Conditional Execution</a></li>
<li><a href="Profile-information.html#index-predict_002edef-3198"><code>predict.def</code></a>: <a href="Profile-information.html#Profile-information">Profile information</a></li>
<li><a href="All-Debuggers.html#index-PREFERRED_005fDEBUGGING_005fTYPE-4753"><code>PREFERRED_DEBUGGING_TYPE</code></a>: <a href="All-Debuggers.html#All-Debuggers">All Debuggers</a></li>
<li><a href="Register-Classes.html#index-PREFERRED_005fRELOAD_005fCLASS-4120"><code>PREFERRED_RELOAD_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Storage-Layout.html#index-PREFERRED_005fSTACK_005fBOUNDARY-3940"><code>PREFERRED_STACK_BOUNDARY</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Side-Effects.html#index-prefetch-3051"><code>prefetch</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Flags.html#your_sha256_hash7d-2710"><code>prefetch</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bprefetch_007d-instruction-pattern-3617"><code>prefetch</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Flags.html#index-PREFETCH_005fSCHEDULE_005fBARRIER_005fP-2709"><code>PREFETCH_SCHEDULE_BARRIER_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-PREINCREMENT_005fEXPR-1853"><code>PREINCREMENT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Processor-pipeline-description.html#index-presence_005fset-3809"><code>presence_set</code></a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="SSA.html#index-preserving-SSA-form-2524">preserving SSA form</a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="SSA.html#index-preserving-virtual-SSA-form-2525">preserving virtual SSA form</a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="Function-Entry.html#index-pretend_005fargs_005fsize-4301"><code>pretend_args_size</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="define_005fpeephole.html#index-prev_005factive_005finsn-3714"><code>prev_active_insn</code></a>: <a href="define_005fpeephole.html#define_005fpeephole">define_peephole</a></li>
<li><a href="Insns.html#index-PREV_005fINSN-3069"><code>PREV_INSN</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Instruction-Output.html#index-PRINT_005fOPERAND-4694"><code>PRINT_OPERAND</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Instruction-Output.html#index-PRINT_005fOPERAND_005fADDRESS-4697"><code>PRINT_OPERAND_ADDRESS</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Instruction-Output.html#index-PRINT_005fOPERAND_005fPUNCT_005fVALID_005fP-4696"><code>PRINT_OPERAND_PUNCT_VALID_P</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Standard-Names.html#your_sha256_hash3603"><code>probe_stack</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashion-pattern-3602"><code>probe_stack_address</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Processor-pipeline-description.html#index-processor-functional-units-3781">processor functional units</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Processor-pipeline-description.html#index-processor-pipeline-description-3780">processor pipeline description</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Arithmetic.html#index-product-2911">product</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Profile-information.html#index-profile-feedback-3195">profile feedback</a>: <a href="Profile-information.html#Profile-information">Profile information</a></li>
<li><a href="Profile-information.html#index-profile-representation-3194">profile representation</a>: <a href="Profile-information.html#Profile-information">Profile information</a></li>
<li><a href="Profiling.html#index-PROFILE_005fBEFORE_005fPROLOGUE-4314"><code>PROFILE_BEFORE_PROLOGUE</code></a>: <a href="Profiling.html#Profiling">Profiling</a></li>
<li><a href="Profiling.html#index-PROFILE_005fHOOK-4312"><code>PROFILE_HOOK</code></a>: <a href="Profiling.html#Profiling">Profiling</a></li>
<li><a href="Profiling.html#index-profiling_002c-code-generation-4309">profiling, code generation</a>: <a href="Profiling.html#Profiling">Profiling</a></li>
<li><a href="Regs-and-Memory.html#index-program-counter-2876">program counter</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Function-Entry.html#index-prologue-4291">prologue</a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bprologue_007d-instruction-pattern-3611"><code>prologue</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Storage-Layout.html#index-PROMOTE_005fMODE-3936"><code>PROMOTE_MODE</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Regs-and-Memory.html#index-pseudo-registers-2848">pseudo registers</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Machine-Modes.html#index-PSImode-2733"><code>PSImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Type-Layout.html#index-PTRDIFF_005fTYPE-4007"><code>PTRDIFF_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Maintaining-the-CFG.html#index-purge_005fdead_005fedges-3217"><code>purge_dead_edges</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Edges.html#index-purge_005fdead_005fedges-3182"><code>purge_dead_edges</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Simple-Constraints.html#index-push-address-instruction-3333">push address instruction</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Stack-Arguments.html#index-PUSH_005fARGS-4216"><code>PUSH_ARGS</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Stack-Arguments.html#index-PUSH_005fARGS_005fREVERSED-4217"><code>PUSH_ARGS_REVERSED</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-push_005foperand-3294"><code>push_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Addressing-Modes.html#index-push_005freload-4391"><code>push_reload</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Stack-Arguments.html#index-PUSH_005fROUNDING-4218"><code>PUSH_ROUNDING</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3399"><code>push</code><var>m</var><code>1</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="RTL-Objects.html#index-PUT_005fCODE-2546"><code>PUT_CODE</code></a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="Machine-Modes.html#index-PUT_005fMODE-2801"><code>PUT_MODE</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Insns.html#index-PUT_005fREG_005fNOTE_005fKIND-3110"><code>PUT_REG_NOTE_KIND</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="SDB-and-DWARF.html#index-PUT_005fSDB_005f-4798"><code>PUT_SDB_</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="Machine-Modes.html#index-QCmode-2771"><code>QCmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-QFmode-2740"><code>QFmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-QImode-2731"><code>QImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Insns.html#your_sha256_hash7d-3103"><code>QImode</code>, in <code>insn</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Machine-Modes.html#index-QQmode-2750"><code>QQmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Types.html#index-qualified-type-1770">qualified type</a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-qualified-type-2002">qualified type</a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Processor-pipeline-description.html#index-querying-function-unit-reservations-3799">querying function unit reservations</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Multi_002dAlternative.html#index-question-mark-3343">question mark</a>: <a href="Multi_002dAlternative.html#Multi_002dAlternative">Multi-Alternative</a></li>
<li><a href="Arithmetic.html#index-quotient-2920">quotient</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007br_007d-in-constraint-3315">`<samp><span class="samp">r</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-RDIV_005fEXPR-1882"><code>RDIV_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Sections.html#index-READONLY_005fDATA_005fSECTION_005fASM_005fOP-4519"><code>READONLY_DATA_SECTION_ASM_OP</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="SSA-Operands.html#index-real-operands-2510">real operands</a>: <a href="SSA-Operands.html#SSA-Operands">SSA Operands</a></li>
<li><a href="Floating-Point.html#index-REAL_005fARITHMETIC-4815"><code>REAL_ARITHMETIC</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Constant-expressions.html#index-REAL_005fCST-1834"><code>REAL_CST</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Driver.html#index-REAL_005fLIBGCC_005fSPEC-3871"><code>REAL_LIBGCC_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Macros-for-Initialization.html#index-REAL_005fNM_005fFILE_005fNAME-4682"><code>REAL_NM_FILE_NAME</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Types.html#index-REAL_005fTYPE-1751"><code>REAL_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Floating-Point.html#index-REAL_005fVALUE_005fABS-4817"><code>REAL_VALUE_ABS</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Floating-Point.html#index-REAL_005fVALUE_005fATOF-4811"><code>REAL_VALUE_ATOF</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Floating-Point.html#index-REAL_005fVALUE_005fFIX-4809"><code>REAL_VALUE_FIX</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Floating-Point.html#index-REAL_005fVALUE_005fISINF-4813"><code>REAL_VALUE_ISINF</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Floating-Point.html#index-REAL_005fVALUE_005fISNAN-4814"><code>REAL_VALUE_ISNAN</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Floating-Point.html#index-REAL_005fVALUE_005fNEGATE-4816"><code>REAL_VALUE_NEGATE</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Floating-Point.html#index-REAL_005fVALUE_005fNEGATIVE-4812"><code>REAL_VALUE_NEGATIVE</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Data-Output.html#index-REAL_005fVALUE_005fTO_005fTARGET_005fDECIMAL128-4607"><code>REAL_VALUE_TO_TARGET_DECIMAL128</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-REAL_005fVALUE_005fTO_005fTARGET_005fDECIMAL32-4605"><code>REAL_VALUE_TO_TARGET_DECIMAL32</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-REAL_005fVALUE_005fTO_005fTARGET_005fDECIMAL64-4606"><code>REAL_VALUE_TO_TARGET_DECIMAL64</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-REAL_005fVALUE_005fTO_005fTARGET_005fDOUBLE-4603"><code>REAL_VALUE_TO_TARGET_DOUBLE</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-REAL_005fVALUE_005fTO_005fTARGET_005fLONG_005fDOUBLE-4604"><code>REAL_VALUE_TO_TARGET_LONG_DOUBLE</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-REAL_005fVALUE_005fTO_005fTARGET_005fSINGLE-4602"><code>REAL_VALUE_TO_TARGET_SINGLE</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Floating-Point.html#index-REAL_005fVALUE_005fTYPE-4806"><code>REAL_VALUE_TYPE</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Floating-Point.html#index-REAL_005fVALUE_005fUNSIGNED_005fFIX-4810"><code>REAL_VALUE_UNSIGNED_FIX</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Floating-Point.html#index-REAL_005fVALUES_005fEQUAL-4807"><code>REAL_VALUES_EQUAL</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Floating-Point.html#index-REAL_005fVALUES_005fLESS-4808"><code>REAL_VALUES_LESS</code></a>: <a href="Floating-Point.html#Floating-Point">Floating Point</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-REALPART_005fEXPR-1860"><code>REALPART_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Instruction-Output.html#index-recog_005fdata_002eoperand-4691"><code>recog_data.operand</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="RTL-Template.html#index-recognizing-insns-3253">recognizing insns</a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="Types.html#index-RECORD_005fTYPE-1761"><code>RECORD_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Classes.html#index-RECORD_005fTYPE-2040"><code>RECORD_TYPE</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Profile-information.html#index-redirect_005fedge_005fand_005fbranch-3203"><code>redirect_edge_and_branch</code></a>: <a href="Profile-information.html#Profile-information">Profile information</a></li>
<li><a href="Maintaining-the-CFG.html#your_sha256_hashp-3218"><code>redirect_edge_and_branch, redirect_jump</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Standard-Names.html#your_sha256_hashm_007d_007d-instruction-pattern-3441"><code>reduc_plus_scal_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d-instruction-pattern-3432"><code>reduc_smax_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashm_007d_007d-instruction-pattern-3438"><code>reduc_smax_scal_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d-instruction-pattern-3431"><code>reduc_smin_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashm_007d_007d-instruction-pattern-3437"><code>reduc_smin_scal_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash07d-instruction-pattern-3435"><code>reduc_splus_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d-instruction-pattern-3434"><code>reduc_umax_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashm_007d_007d-instruction-pattern-3440"><code>reduc_umax_scal_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d-instruction-pattern-3433"><code>reduc_umin_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashm_007d_007d-instruction-pattern-3439"><code>reduc_umin_scal_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash07d-instruction-pattern-3436"><code>reduc_uplus_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Types.html#index-reference-1744">reference</a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types.html#index-REFERENCE_005fTYPE-1757"><code>REFERENCE_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Regs-and-Memory.html#index-reg-2846"><code>reg</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Flags.html#your_sha256_hash60"><code>reg</code> and `<samp><span class="samp">/f</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash57"><code>reg</code> and `<samp><span class="samp">/i</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash63"><code>reg</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Sharing.html#index-g_t_0040code_007breg_007d_002c-RTL-sharing-3138"><code>reg</code>, RTL sharing</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Allocation-Order.html#index-REG_005fALLOC_005fORDER-4074"><code>REG_ALLOC_ORDER</code></a>: <a href="Allocation-Order.html#Allocation-Order">Allocation Order</a></li>
<li><a href="Insns.html#index-REG_005fBR_005fPRED-3127"><code>REG_BR_PRED</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-REG_005fBR_005fPROB-3126"><code>REG_BR_PROB</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Profile-information.html#your_sha256_hashc-count-3204"><code>REG_BR_PROB_BASE, BB_FREQ_BASE, count</code></a>: <a href="Profile-information.html#Profile-information">Profile information</a></li>
<li><a href="Profile-information.html#index-REG_005fBR_005fPROB_005fBASE_002c-EDGE_005fFREQUENCY-3201"><code>REG_BR_PROB_BASE, EDGE_FREQUENCY</code></a>: <a href="Profile-information.html#Profile-information">Profile information</a></li>
<li><a href="Insns.html#index-REG_005fCC_005fSETTER-3121"><code>REG_CC_SETTER</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-REG_005fCC_005fUSER-3122"><code>REG_CC_USER</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Register-Basics.html#index-reg_005fclass_005fcontents-4064"><code>reg_class_contents</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Register-Classes.html#index-REG_005fCLASS_005fCONTENTS-4106"><code>REG_CLASS_CONTENTS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="C-Constraint-Interface.html#index-reg_005fclass_005ffor_005fconstraint-3376"><code>reg_class_for_constraint</code></a>: <a href="C-Constraint-Interface.html#C-Constraint-Interface">C Constraint Interface</a></li>
<li><a href="Register-Classes.html#index-REG_005fCLASS_005fNAMES-4105"><code>REG_CLASS_NAMES</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Insns.html#index-REG_005fCROSSING_005fJUMP-3117"><code>REG_CROSSING_JUMP</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-REG_005fDEAD-3111"><code>REG_DEAD</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Liveness-information.html#index-REG_005fDEAD_002c-REG_005fUNUSED-3228"><code>REG_DEAD, REG_UNUSED</code></a>: <a href="Liveness-information.html#Liveness-information">Liveness information</a></li>
<li><a href="Insns.html#index-REG_005fDEP_005fANTI-3125"><code>REG_DEP_ANTI</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-REG_005fDEP_005fOUTPUT-3124"><code>REG_DEP_OUTPUT</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-REG_005fDEP_005fTRUE-3123"><code>REG_DEP_TRUE</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Edges.html#your_sha256_hash><code>REG_EH_REGION, EDGE_ABNORMAL_CALL</code></a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Insns.html#index-REG_005fEQUAL-3120"><code>REG_EQUAL</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-REG_005fEQUIV-3119"><code>REG_EQUIV</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Special-Accessors.html#index-REG_005fEXPR-2577"><code>REG_EXPR</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Insns.html#index-REG_005fFRAME_005fRELATED_005fEXPR-3128"><code>REG_FRAME_RELATED_EXPR</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#index-REG_005fFUNCTION_005fVALUE_005fP-2656"><code>REG_FUNCTION_VALUE_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Insns.html#index-REG_005fINC-3113"><code>REG_INC</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#your_sha256_hashfv_007d-2640"><code>reg_label</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Insns.html#index-REG_005fLABEL_005fOPERAND-3115"><code>REG_LABEL_OPERAND</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-REG_005fLABEL_005fTARGET-3116"><code>REG_LABEL_TARGET</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Instruction-Output.html#index-reg_005fnames-4695"><code>reg_names</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Register-Basics.html#index-reg_005fnames-4063"><code>reg_names</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Insns.html#index-REG_005fNONNEG-3114"><code>REG_NONNEG</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-REG_005fNOTE_005fKIND-3109"><code>REG_NOTE_KIND</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-REG_005fNOTES-3108"><code>REG_NOTES</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Special-Accessors.html#index-REG_005fOFFSET-2578"><code>REG_OFFSET</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Addressing-Modes.html#index-REG_005fOK_005fSTRICT-4385"><code>REG_OK_STRICT</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Stack-Arguments.html#index-REG_005fPARM_005fSTACK_005fSPACE-4222"><code>REG_PARM_STACK_SPACE</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Register-Arguments.html#your_sha256_hashc-and-_0040code_007bTARGET_005fFUNCTION_005fARG_007d-4233"><code>REG_PARM_STACK_SPACE</code>, and <code>TARGET_FUNCTION_ARG</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Flags.html#index-REG_005fPOINTER-2659"><code>REG_POINTER</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Insns.html#index-REG_005fSETJMP-3118"><code>REG_SETJMP</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Insns.html#index-REG_005fUNUSED-3112"><code>REG_UNUSED</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Flags.html#index-REG_005fUSERVAR_005fP-2662"><code>REG_USERVAR_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Frame-Registers.html#index-REG_005fVALUE_005fIN_005fUNWIND_005fCONTEXT-4205"><code>REG_VALUE_IN_UNWIND_CONTEXT</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Storage-Layout.html#index-REG_005fWORDS_005fBIG_005fENDIAN-3928"><code>REG_WORDS_BIG_ENDIAN</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Allocation-Order.html#index-register-allocation-order-4073">register allocation order</a>: <a href="Allocation-Order.html#Allocation-Order">Allocation Order</a></li>
<li><a href="Register-Classes.html#index-register-class-definitions-4098">register class definitions</a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Class-Preferences.html#index-register-class-preference-constraints-3351">register class preference constraints</a>: <a href="Class-Preferences.html#Class-Preferences">Class Preferences</a></li>
<li><a href="Values-in-Registers.html#index-register-pairs-4083">register pairs</a>: <a href="Values-in-Registers.html#Values-in-Registers">Values in Registers</a></li>
<li><a href="RTL.html#index-Register-Transfer-Language-_0028RTL_0029-2536">Register Transfer Language (RTL)</a>: <a href="RTL.html#RTL">RTL</a></li>
<li><a href="Registers.html#index-register-usage-4044">register usage</a>: <a href="Registers.html#Registers">Registers</a></li>
<li><a href="Costs.html#index-REGISTER_005fMOVE_005fCOST-4445"><code>REGISTER_MOVE_COST</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Instruction-Output.html#index-REGISTER_005fNAMES-4687"><code>REGISTER_NAMES</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-register_005foperand-3288"><code>register_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Instruction-Output.html#index-REGISTER_005fPREFIX-4703"><code>REGISTER_PREFIX</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Misc.html#index-REGISTER_005fTARGET_005fPRAGMAS-4921"><code>REGISTER_TARGET_PRAGMAS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Arguments.html#index-registers-arguments-4229">registers arguments</a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Simple-Constraints.html#index-registers-in-constraints-3316">registers in constraints</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Values-in-Registers.html#index-REGMODE_005fNATURAL_005fSIZE-4081"><code>REGMODE_NATURAL_SIZE</code></a>: <a href="Values-in-Registers.html#Values-in-Registers">Values in Registers</a></li>
<li><a href="Register-Classes.html#your_sha256_hash><code>REGNO_MODE_CODE_OK_FOR_BASE_P</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-REGNO_005fMODE_005fOK_005fFOR_005fBASE_005fP-4114"><code>REGNO_MODE_OK_FOR_BASE_P</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-REGNO_005fMODE_005fOK_005fFOR_005fREG_005fBASE_005fP-4115"><code>REGNO_MODE_OK_FOR_REG_BASE_P</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-REGNO_005fOK_005fFOR_005fBASE_005fP-4113"><code>REGNO_OK_FOR_BASE_P</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-REGNO_005fOK_005fFOR_005fINDEX_005fP-4117"><code>REGNO_OK_FOR_INDEX_P</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-REGNO_005fREG_005fCLASS-4107"><code>REGNO_REG_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Function-Entry.html#index-regs_005fever_005flive-4294"><code>regs_ever_live</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Processor-pipeline-description.html#index-regular-expressions-3802">regular expressions</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Costs.html#index-relative-costs-4443">relative costs</a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Driver.html#index-RELATIVE_005fPREFIX_005fNOT_005fLINKDIR-3885"><code>RELATIVE_PREFIX_NOT_LINKDIR</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Standard-Names.html#index-reload_005fcompleted-3583"><code>reload_completed</code></a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash85"><code>reload_in</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-reload_005fin_005fprogress-3383"><code>reload_in_progress</code></a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash386"><code>reload_out</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="RTL-passes.html#index-reloading-1693">reloading</a>: <a href="RTL-passes.html#RTL-passes">RTL passes</a></li>
<li><a href="Arithmetic.html#index-remainder-2927">remainder</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hashction-pattern-3515"><code>remainder</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="GTY-Options.html#index-reorder-5090"><code>reorder</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="RTL.html#index-representation-of-RTL-2535">representation of RTL</a>: <a href="RTL.html#RTL">RTL</a></li>
<li><a href="Processor-pipeline-description.html#index-reservation-delays-3785">reservation delays</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Parsing-pass.html#index-rest_005fof_005fdecl_005fcompilation-1680"><code>rest_of_decl_compilation</code></a>: <a href="Parsing-pass.html#Parsing-pass">Parsing pass</a></li>
<li><a href="Parsing-pass.html#index-rest_005fof_005ftype_005fcompilation-1681"><code>rest_of_type_compilation</code></a>: <a href="Parsing-pass.html#Parsing-pass">Parsing pass</a></li>
<li><a href="Standard-Names.html#your_sha256_hashion-pattern-3597"><code>restore_stack_block</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashuction-pattern-3598"><code>restore_stack_function</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashuction-pattern-3599"><code>restore_stack_nonlocal</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Declarations.html#index-RESULT_005fDECL-1804"><code>RESULT_DECL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Side-Effects.html#index-return-3037"><code>return</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007breturn_007d-instruction-pattern-3581"><code>return</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Scalar-Return.html#index-return-values-in-registers-4267">return values in registers</a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Frame-Layout.html#index-RETURN_005fADDR_005fIN_005fPREVIOUS_005fFRAME-4160"><code>RETURN_ADDR_IN_PREVIOUS_FRAME</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Exception-Handling.html#index-RETURN_005fADDR_005fOFFSET-4173"><code>RETURN_ADDR_OFFSET</code></a>: <a href="Exception-Handling.html#Exception-Handling">Exception Handling</a></li>
<li><a href="Frame-Layout.html#index-RETURN_005fADDR_005fRTX-4159"><code>RETURN_ADDR_RTX</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Frame-Registers.html#index-RETURN_005fADDRESS_005fPOINTER_005fREGNUM-4193"><code>RETURN_ADDRESS_POINTER_REGNUM</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-RETURN_005fEXPR-2116"><code>RETURN_EXPR</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-RETURN_005fSTMT-2115"><code>RETURN_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Flags.html#index-return_005fval-2718"><code>return_val</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashbcall_005finsn_007d-2609"><code>return_val</code>, in <code>call_insn</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashbreg_007d-2658"><code>return_val</code>, in <code>reg</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashbsymbol_005fref_007d-2705"><code>return_val</code>, in <code>symbol_ref</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Aggregate-Return.html#index-returning-aggregate-values-4281">returning aggregate values</a>: <a href="Aggregate-Return.html#Aggregate-Return">Aggregate Return</a></li>
<li><a href="Interface.html#index-returning-structures-and-unions-13">returning structures and unions</a>: <a href="Interface.html#Interface">Interface</a></li>
<li><a href="Profile-information.html#index-reverse-probability-3202">reverse probability</a>: <a href="Profile-information.html#Profile-information">Profile information</a></li>
<li><a href="MODE_005fCC-Condition-Codes.html#index-REVERSE_005fCONDITION-4438"><code>REVERSE_CONDITION</code></a>: <a href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes">MODE_CC Condition Codes</a></li>
<li><a href="MODE_005fCC-Condition-Codes.html#index-REVERSIBLE_005fCC_005fMODE-4437"><code>REVERSIBLE_CC_MODE</code></a>: <a href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes">MODE_CC Condition Codes</a></li>
<li><a href="Arithmetic.html#index-right-rotate-2963">right rotate</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-right-shift-2957">right shift</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3528"><code>rint</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Processor-pipeline-description.html#index-RISC-3814">RISC</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="GGC-Roots.html#index-roots_002c-marking-5095">roots, marking</a>: <a href="GGC-Roots.html#GGC-Roots">GGC Roots</a></li>
<li><a href="Arithmetic.html#index-rotate-2960">rotate</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-rotatert-2962"><code>rotatert</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3500"><code>rotl</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3501"><code>rotr</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-ROUND_005fDIV_005fEXPR-1886"><code>ROUND_DIV_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-ROUND_005fMOD_005fEXPR-1890"><code>ROUND_MOD_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Storage-Layout.html#index-ROUND_005fTYPE_005fALIGN-3969"><code>ROUND_TYPE_ALIGN</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3525"><code>round</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-RSHIFT_005fEXPR-1868"><code>RSHIFT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Arithmetic.html#index-RTL-addition-2888">RTL addition</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-RTL-addition-with-signed-saturation-2889">RTL addition with signed saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-RTL-addition-with-unsigned-saturation-2890">RTL addition with unsigned saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="RTL-Classes.html#index-RTL-classes-2549">RTL classes</a>: <a href="RTL-Classes.html#RTL-Classes">RTL Classes</a></li>
<li><a href="Arithmetic.html#index-RTL-comparison-2900">RTL comparison</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Comparisons.html#index-RTL-comparison-operations-2976">RTL comparison operations</a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Constants.html#index-RTL-constant-expression-types-2821">RTL constant expression types</a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Constants.html#index-RTL-constants-2820">RTL constants</a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="RTL-Declarations.html#index-RTL-declarations-3027">RTL declarations</a>: <a href="RTL-Declarations.html#RTL-Declarations">RTL Declarations</a></li>
<li><a href="Arithmetic.html#index-RTL-difference-2895">RTL difference</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="RTL-Objects.html#index-RTL-expression-2541">RTL expression</a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="Arithmetic.html#index-RTL-expressions-for-arithmetic-2883">RTL expressions for arithmetic</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="RTL-Classes.html#index-RTL-format-2553">RTL format</a>: <a href="RTL-Classes.html#RTL-Classes">RTL Classes</a></li>
<li><a href="RTL-Classes.html#index-RTL-format-characters-2554">RTL format characters</a>: <a href="RTL-Classes.html#RTL-Classes">RTL Classes</a></li>
<li><a href="Calls.html#index-RTL-function_002dcall-insns-3132">RTL function-call insns</a>: <a href="Calls.html#Calls">Calls</a></li>
<li><a href="RTL-Template.html#index-RTL-insn-template-3250">RTL insn template</a>: <a href="RTL-Template.html#RTL-Template">RTL Template</a></li>
<li><a href="RTL-Objects.html#index-RTL-integers-2538">RTL integers</a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="Regs-and-Memory.html#index-RTL-memory-expressions-2845">RTL memory expressions</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="RTL-Objects.html#index-RTL-object-types-2537">RTL object types</a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="Incdec.html#index-RTL-postdecrement-3055">RTL postdecrement</a>: <a href="Incdec.html#Incdec">Incdec</a></li>
<li><a href="Incdec.html#index-RTL-postincrement-3053">RTL postincrement</a>: <a href="Incdec.html#Incdec">Incdec</a></li>
<li><a href="Incdec.html#index-RTL-predecrement-3054">RTL predecrement</a>: <a href="Incdec.html#Incdec">Incdec</a></li>
<li><a href="Incdec.html#index-RTL-preincrement-3052">RTL preincrement</a>: <a href="Incdec.html#Incdec">Incdec</a></li>
<li><a href="Regs-and-Memory.html#index-RTL-register-expressions-2844">RTL register expressions</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="RTL.html#index-RTL-representation-2534">RTL representation</a>: <a href="RTL.html#RTL">RTL</a></li>
<li><a href="Side-Effects.html#index-RTL-side-effect-expressions-3031">RTL side effect expressions</a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="RTL-Objects.html#index-RTL-strings-2539">RTL strings</a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="Sharing.html#index-RTL-structure-sharing-assumptions-3137">RTL structure sharing assumptions</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Arithmetic.html#index-RTL-subtraction-2896">RTL subtraction</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-RTL-subtraction-with-signed-saturation-2897">RTL subtraction with signed saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-RTL-subtraction-with-unsigned-saturation-2898">RTL subtraction with unsigned saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-RTL-sum-2887">RTL sum</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="RTL-Objects.html#index-RTL-vectors-2540">RTL vectors</a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="Flags.html#index-RTL_005fCONST_005fCALL_005fP-2604"><code>RTL_CONST_CALL_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-RTL_005fCONST_005fOR_005fPURE_005fCALL_005fP-2610"><code>RTL_CONST_OR_PURE_CALL_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash612"><code>RTL_LOOPING_CONST_OR_PURE_CALL_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-RTL_005fPURE_005fCALL_005fP-2607"><code>RTL_PURE_CALL_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="RTL-Objects.html#index-RTX-_0028See-RTL_0029-2542">RTX (See RTL)</a>: <a href="RTL-Objects.html#RTL-Objects">RTL Objects</a></li>
<li><a href="RTL-Classes.html#index-RTX-codes_002c-classes-of-2551">RTX codes, classes of</a>: <a href="RTL-Classes.html#RTL-Classes">RTL Classes</a></li>
<li><a href="Flags.html#index-RTX_005fFRAME_005fRELATED_005fP-2665"><code>RTX_FRAME_RELATED_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Interface.html#index-run_002dtime-conventions-8">run-time conventions</a>: <a href="Interface.html#Interface">Interface</a></li>
<li><a href="Run_002dtime-Target.html#index-run_002dtime-target-specification-3896">run-time target specification</a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bs_007d-in-constraint-3325">`<samp><span class="samp">s</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Vectors.html#index-SAD_005fEXPR-1935"><code>SAD_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Types.html#index-same_005ftype_005fp-1792"><code>same_type_p</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Machine-Modes.html#index-SAmode-2761"><code>SAmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Conversions.html#index-sat_005ffract-3024"><code>sat_fract</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d2_007d-instruction-pattern-3559"><code>satfract</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7bn_007d2_007d-instruction-pattern-3561"><code>satfractuns</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="C-Constraint-Interface.html#index-satisfies_005fconstraint_005f-3374"><code>satisfies_constraint_</code></a>: <a href="C-Constraint-Interface.html#C-Constraint-Interface">C Constraint Interface</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-SAVE_005fEXPR-1918"><code>SAVE_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3594"><code>save_stack_block</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashion-pattern-3595"><code>save_stack_function</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashion-pattern-3596"><code>save_stack_nonlocal</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Sections.html#index-SBSS_005fSECTION_005fASM_005fOP-4521"><code>SBSS_SECTION_ASM_OP</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Scalar-evolutions.html#index-Scalar-evolutions-3235">Scalar evolutions</a>: <a href="Scalar-evolutions.html#Scalar-evolutions">Scalar evolutions</a></li>
<li><a href="Scalar-Return.html#index-scalars_002c-returned-as-values-4269">scalars, returned as values</a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Flags.html#index-SCHED_005fGROUP_005fP-2675"><code>SCHED_GROUP_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Machine-Modes.html#index-SCmode-2773"><code>SCmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Regs-and-Memory.html#index-scratch-2870"><code>scratch</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Regs-and-Memory.html#index-scratch-operands-2871">scratch operands</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Sharing.html#index-g_t_0040code_007bscratch_007d_002c-RTL-sharing-3147"><code>scratch</code>, RTL sharing</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Machine_002dIndependent-Predicates.html#index-scratch_005foperand-3290"><code>scratch_operand</code></a>: <a href="Machine_002dIndependent-Predicates.html#Machine_002dIndependent-Predicates">Machine-Independent Predicates</a></li>
<li><a href="Sections.html#index-SDATA_005fSECTION_005fASM_005fOP-4518"><code>SDATA_SECTION_ASM_OP</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="SDB-and-DWARF.html#index-SDB_005fALLOW_005fFORWARD_005fREFERENCES-4801"><code>SDB_ALLOW_FORWARD_REFERENCES</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="SDB-and-DWARF.html#index-SDB_005fALLOW_005fUNKNOWN_005fREFERENCES-4800"><code>SDB_ALLOW_UNKNOWN_REFERENCES</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="SDB-and-DWARF.html#index-SDB_005fDEBUGGING_005fINFO-4781"><code>SDB_DEBUGGING_INFO</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="SDB-and-DWARF.html#index-SDB_005fDELIM-4799"><code>SDB_DELIM</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="SDB-and-DWARF.html#index-SDB_005fOUTPUT_005fSOURCE_005fLINE-4802"><code>SDB_OUTPUT_SOURCE_LINE</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="Machine-Modes.html#index-SDmode-2746"><code>SDmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Standard-Names.html#your_sha256_hashtruction-pattern-3442"><code>sdot_prod</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Including-Patterns.html#index-search-options-3710">search options</a>: <a href="Including-Patterns.html#Including-Patterns">Including Patterns</a></li>
<li><a href="Register-Classes.html#index-SECONDARY_005fINPUT_005fRELOAD_005fCLASS-4125"><code>SECONDARY_INPUT_RELOAD_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-SECONDARY_005fMEMORY_005fNEEDED-4127"><code>SECONDARY_MEMORY_NEEDED</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-SECONDARY_005fMEMORY_005fNEEDED_005fMODE-4129"><code>SECONDARY_MEMORY_NEEDED_MODE</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-SECONDARY_005fMEMORY_005fNEEDED_005fRTX-4128"><code>SECONDARY_MEMORY_NEEDED_RTX</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-SECONDARY_005fOUTPUT_005fRELOAD_005fCLASS-4126"><code>SECONDARY_OUTPUT_RELOAD_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-SECONDARY_005fRELOAD_005fCLASS-4124"><code>SECONDARY_RELOAD_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="MODE_005fCC-Condition-Codes.html#index-SELECT_005fCC_005fMODE-4435"><code>SELECT_CC_MODE</code></a>: <a href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes">MODE_CC Condition Codes</a></li>
<li><a href="Side-Effects.html#index-sequence-3045"><code>sequence</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Sequence-iterators.html#index-Sequence-iterators-2465">Sequence iterators</a>: <a href="Sequence-iterators.html#Sequence-iterators">Sequence iterators</a></li>
<li><a href="Side-Effects.html#index-set-3032"><code>set</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Flags.html#your_sha256_hash70"><code>set</code> and `<samp><span class="samp">/f</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Label-Output.html#index-SET_005fASM_005fOP-4660"><code>SET_ASM_OP</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Tagging-Insns.html#index-set_005fattr-3762"><code>set_attr</code></a>: <a href="Tagging-Insns.html#Tagging-Insns">Tagging Insns</a></li>
<li><a href="Tagging-Insns.html#index-set_005fattr_005falternative-3763"><code>set_attr_alternative</code></a>: <a href="Tagging-Insns.html#Tagging-Insns">Tagging Insns</a></li>
<li><a href="GIMPLE-sequences.html#index-set_005fbb_005fseq-2463"><code>set_bb_seq</code></a>: <a href="GIMPLE-sequences.html#GIMPLE-sequences">GIMPLE sequences</a></li>
<li><a href="Side-Effects.html#index-SET_005fDEST-3035"><code>SET_DEST</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Flags.html#index-SET_005fIS_005fRETURN_005fP-2681"><code>SET_IS_RETURN_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Insns.html#index-SET_005fLABEL_005fKIND-3082"><code>SET_LABEL_KIND</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Library-Calls.html#index-set_005foptab_005flibfunc-4356"><code>set_optab_libfunc</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Costs.html#index-SET_005fRATIO-4456"><code>SET_RATIO</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Side-Effects.html#index-SET_005fSRC-3036"><code>SET_SRC</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Standard-Names.html#your_sha256_hashde_007d_007d-instruction-pattern-3667"><code>set_thread_pointer</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Types.html#index-SET_005fTYPE_005fSTRUCTURAL_005fEQUALITY-1784"><code>SET_TYPE_STRUCTURAL_EQUALITY</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3543"><code>setmem</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Frame-Layout.html#index-SETUP_005fFRAME_005fADDRESSES-4156"><code>SETUP_FRAME_ADDRESSES</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Machine-Modes.html#index-SFmode-2743"><code>SFmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Sharing.html#index-sharing-of-RTL-components-3136">sharing of RTL components</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Arithmetic.html#index-shift-2952">shift</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Misc.html#index-SHIFT_005fCOUNT_005fTRUNCATED-4904"><code>SHIFT_COUNT_TRUNCATED</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Macros-for-Initialization.html#index-SHLIB_005fSUFFIX-4686"><code>SHLIB_SUFFIX</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Type-Layout.html#index-SHORT_005fACCUM_005fTYPE_005fSIZE-3996"><code>SHORT_ACCUM_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-SHORT_005fFRACT_005fTYPE_005fSIZE-3992"><code>SHORT_FRACT_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Misc.html#index-SHORT_005fIMMEDIATES_005fSIGN_005fEXTEND-4900"><code>SHORT_IMMEDIATES_SIGN_EXTEND</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Type-Layout.html#index-SHORT_005fTYPE_005fSIZE-3983"><code>SHORT_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Standard-Names.html#your_sha256_hashtern-3614"><code>sibcall_epilogue</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Edges.html#index-sibling-call-3185">sibling call</a>: <a href="Edges.html#Edges">Edges</a></li>
<li><a href="Flags.html#index-SIBLING_005fCALL_005fP-2684"><code>SIBLING_CALL_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Type-Layout.html#index-SIG_005fATOMIC_005fTYPE-4013"><code>SIG_ATOMIC_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Conversions.html#index-sign_005fextend-3012"><code>sign_extend</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Bit_002dFields.html#index-sign_005fextract-3002"><code>sign_extract</code></a>: <a href="Bit_002dFields.html#Bit_002dFields">Bit-Fields</a></li>
<li><a href="Insn-Canonicalizations.html#your_sha256_hashon-of-3692"><code>sign_extract</code>, canonicalization of</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Arithmetic.html#index-signed-division-2918">signed division</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-signed-division-with-signed-saturation-2919">signed division with signed saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-signed-maximum-2932">signed maximum</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-signed-minimum-2931">signed minimum</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Machine-Modes.html#index-SImode-2734"><code>SImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Simple-Constraints.html#index-simple-constraints-3306">simple constraints</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Side-Effects.html#index-simple_005freturn-3038"><code>simple_return</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-3582"><code>simple_return</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashon-pattern-3518"><code>sincos</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3517"><code>sin</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Label-Output.html#index-SIZE_005fASM_005fOP-4620"><code>SIZE_ASM_OP</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Type-Layout.html#index-SIZE_005fTYPE-4005"><code>SIZE_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-SIZETYPE-4006"><code>SIZETYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="GTY-Options.html#index-skip-5077"><code>skip</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Costs.html#index-SLOW_005fBYTE_005fACCESS-4450"><code>SLOW_BYTE_ACCESS</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Costs.html#index-SLOW_005fUNALIGNED_005fACCESS-4451"><code>SLOW_UNALIGNED_ACCESS</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Arithmetic.html#index-smax-2930"><code>smax</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-smin-2929"><code>smin</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="RTL-passes.html#index-sms_002c-swing_002c-software-pipelining-1692">sms, swing, software pipelining</a>: <a href="RTL-passes.html#RTL-passes">RTL passes</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd-instruction-pattern-3483"><code>smul</code><var>m</var><code>3_highpart</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Soft-float-library-routines.html#index-soft-float-library-75">soft float library</a>: <a href="Soft-float-library-routines.html#Soft-float-library-routines">Soft float library routines</a></li>
<li><a href="GTY-Options.html#index-special-5092"><code>special</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Predicates.html#index-special-predicates-3282">special predicates</a>: <a href="Predicates.html#Predicates">Predicates</a></li>
<li><a href="Target-Fragment.html#index-SPECS-5068"><code>SPECS</code></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Costs.html#index-speed-of-instructions-4444">speed of instructions</a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Maintaining-the-CFG.html#index-split_005fblock-3219"><code>split_block</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="Insn-Splitting.html#index-splitting-instructions-3703">splitting instructions</a>: <a href="Insn-Splitting.html#Insn-Splitting">Insn Splitting</a></li>
<li><a href="Machine-Modes.html#index-SQmode-2752"><code>SQmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Arithmetic.html#index-sqrt-2967"><code>sqrt</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3513"><code>sqrt</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Arithmetic.html#index-square-root-2968">square root</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-ss_005fabs-2965"><code>ss_abs</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-ss_005fashift-2949"><code>ss_ashift</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-ss_005fdiv-2916"><code>ss_div</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-ss_005fminus-2893"><code>ss_minus</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-ss_005fmult-2908"><code>ss_mult</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-ss_005fneg-2902"><code>ss_neg</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-ss_005fplus-2885"><code>ss_plus</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Conversions.html#index-ss_005ftruncate-3016"><code>ss_truncate</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="SSA.html#index-SSA-2515">SSA</a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="SSA.html#index-SSA_005fNAME_005fDEF_005fSTMT-2527"><code>SSA_NAME_DEF_STMT</code></a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="SSA.html#index-SSA_005fNAME_005fVERSION-2528"><code>SSA_NAME_VERSION</code></a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3401"><code>ssadd</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3444"><code>ssad</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashon-pattern-3496"><code>ssashl</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3410"><code>ssdiv</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash07d4_007d-instruction-pattern-3487"><code>ssmadd</code><var>m</var><var>n</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash07d4_007d-instruction-pattern-3491"><code>ssmsub</code><var>m</var><var>n</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3407"><code>ssmul</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3509"><code>ssneg</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3404"><code>sssub</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashnstruction-pattern-3446"><code>ssum_widen</code><var>m3</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Stack-Arguments.html#index-stack-arguments-4214">stack arguments</a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Frame-Layout.html#index-stack-frame-layout-4143">stack frame layout</a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Stack-Smashing-Protection.html#index-stack-smashing-protection-4321">stack smashing protection</a>: <a href="Stack-Smashing-Protection.html#Stack-Smashing-Protection">Stack Smashing Protection</a></li>
<li><a href="Frame-Layout.html#index-STACK_005fALIGNMENT_005fNEEDED-4150"><code>STACK_ALIGNMENT_NEEDED</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Storage-Layout.html#index-STACK_005fBOUNDARY-3939"><code>STACK_BOUNDARY</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Stack-Checking.html#index-STACK_005fCHECK_005fBUILTIN-4179"><code>STACK_CHECK_BUILTIN</code></a>: <a href="Stack-Checking.html#Stack-Checking">Stack Checking</a></li>
<li><a href="Stack-Checking.html#index-STACK_005fCHECK_005fFIXED_005fFRAME_005fSIZE-4185"><code>STACK_CHECK_FIXED_FRAME_SIZE</code></a>: <a href="Stack-Checking.html#Stack-Checking">Stack Checking</a></li>
<li><a href="Stack-Checking.html#index-STACK_005fCHECK_005fMAX_005fFRAME_005fSIZE-4184"><code>STACK_CHECK_MAX_FRAME_SIZE</code></a>: <a href="Stack-Checking.html#Stack-Checking">Stack Checking</a></li>
<li><a href="Stack-Checking.html#index-STACK_005fCHECK_005fMAX_005fVAR_005fSIZE-4186"><code>STACK_CHECK_MAX_VAR_SIZE</code></a>: <a href="Stack-Checking.html#Stack-Checking">Stack Checking</a></li>
<li><a href="Stack-Checking.html#index-STACK_005fCHECK_005fMOVING_005fSP-4182"><code>STACK_CHECK_MOVING_SP</code></a>: <a href="Stack-Checking.html#Stack-Checking">Stack Checking</a></li>
<li><a href="Stack-Checking.html#index-STACK_005fCHECK_005fPROBE_005fINTERVAL_005fEXP-4181"><code>STACK_CHECK_PROBE_INTERVAL_EXP</code></a>: <a href="Stack-Checking.html#Stack-Checking">Stack Checking</a></li>
<li><a href="Stack-Checking.html#index-STACK_005fCHECK_005fPROTECT-4183"><code>STACK_CHECK_PROTECT</code></a>: <a href="Stack-Checking.html#Stack-Checking">Stack Checking</a></li>
<li><a href="Stack-Checking.html#index-STACK_005fCHECK_005fSTATIC_005fBUILTIN-4180"><code>STACK_CHECK_STATIC_BUILTIN</code></a>: <a href="Stack-Checking.html#Stack-Checking">Stack Checking</a></li>
<li><a href="Frame-Layout.html#index-STACK_005fDYNAMIC_005fOFFSET-4153"><code>STACK_DYNAMIC_OFFSET</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hashtual-registers-2859"><code>STACK_DYNAMIC_OFFSET</code> and virtual registers</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Frame-Layout.html#index-STACK_005fGROWS_005fDOWNWARD-4145"><code>STACK_GROWS_DOWNWARD</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Stack-Arguments.html#index-STACK_005fPARMS_005fIN_005fREG_005fPARM_005fAREA-4225"><code>STACK_PARMS_IN_REG_PARM_AREA</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Frame-Layout.html#index-STACK_005fPOINTER_005fOFFSET-4151"><code>STACK_POINTER_OFFSET</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hashtual-registers-2862"><code>STACK_POINTER_OFFSET</code> and virtual registers</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Frame-Registers.html#index-STACK_005fPOINTER_005fREGNUM-4187"><code>STACK_POINTER_REGNUM</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hashtual-registers-2860"><code>STACK_POINTER_REGNUM</code> and virtual registers</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Frame-Registers.html#index-stack_005fpointer_005frtx-4197"><code>stack_pointer_rtx</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3668"><code>stack_protect_set</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashon-pattern-3669"><code>stack_protect_test</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Frame-Layout.html#index-STACK_005fPUSH_005fCODE-4146"><code>STACK_PUSH_CODE</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Stack-Registers.html#index-STACK_005fREG_005fCOVER_005fCLASS-4095"><code>STACK_REG_COVER_CLASS</code></a>: <a href="Stack-Registers.html#Stack-Registers">Stack Registers</a></li>
<li><a href="Stack-Registers.html#index-STACK_005fREGS-4094"><code>STACK_REGS</code></a>: <a href="Stack-Registers.html#Stack-Registers">Stack Registers</a></li>
<li><a href="Storage-Layout.html#index-STACK_005fSAVEAREA_005fMODE-3971"><code>STACK_SAVEAREA_MODE</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Storage-Layout.html#index-STACK_005fSIZE_005fMODE-3972"><code>STACK_SIZE_MODE</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Storage-Layout.html#index-STACK_005fSLOT_005fALIGNMENT-3958"><code>STACK_SLOT_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Standard-Names.html#index-standard-pattern-names-3377">standard pattern names</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Driver.html#index-STANDARD_005fSTARTFILE_005fPREFIX-3887"><code>STANDARD_STARTFILE_PREFIX</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-STANDARD_005fSTARTFILE_005fPREFIX_005f1-3888"><code>STANDARD_STARTFILE_PREFIX_1</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-STANDARD_005fSTARTFILE_005fPREFIX_005f2-3889"><code>STANDARD_STARTFILE_PREFIX_2</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-STARTFILE_005fSPEC-3874"><code>STARTFILE_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Frame-Layout.html#index-STARTING_005fFRAME_005fOFFSET-4149"><code>STARTING_FRAME_OFFSET</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hashrtual-registers-2856"><code>STARTING_FRAME_OFFSET</code> and virtual registers</a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Statement-and-operand-traversals.html#index-Statement-and-operand-traversals-2501">Statement and operand traversals</a>: <a href="Statement-and-operand-traversals.html#Statement-and-operand-traversals">Statement and operand traversals</a></li>
<li><a href="Statement-Sequences.html#index-Statement-Sequences-1939">Statement Sequences</a>: <a href="Statement-Sequences.html#Statement-Sequences">Statement Sequences</a></li>
<li><a href="Function-Properties.html#index-statements-1981">statements</a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-statements-2091">statements</a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements.html#index-Statements-1936">Statements</a>: <a href="Statements.html#Statements">Statements</a></li>
<li><a href="Profile-information.html#index-Static-profile-estimation-3196">Static profile estimation</a>: <a href="Profile-information.html#Profile-information">Profile information</a></li>
<li><a href="SSA.html#index-static-single-assignment-2516">static single assignment</a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="Frame-Registers.html#index-STATIC_005fCHAIN_005fINCOMING_005fREGNUM-4195"><code>STATIC_CHAIN_INCOMING_REGNUM</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Frame-Registers.html#index-STATIC_005fCHAIN_005fREGNUM-4194"><code>STATIC_CHAIN_REGNUM</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Register-Arguments.html#your_sha256_hash4231"><samp><span class="file">stdarg.h</span></samp> and register arguments</a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Misc.html#index-STDC_005f0_005fIN_005fSYSTEM_005fHEADERS-4915"><code>STDC_0_IN_SYSTEM_HEADERS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-STMT_005fEXPR-1911"><code>STMT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-STMT_005fIS_005fFULL_005fEXPR_005fP-2131"><code>STMT_IS_FULL_EXPR_P</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Storage-Layout.html#index-storage-layout-3924">storage layout</a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Misc.html#index-STORE_005fFLAG_005fVALUE-4908"><code>STORE_FLAG_VALUE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Standard-Names.html#your_sha256_hashrn-3390">`<samp><span class="samp">store_multiple</span></samp>' instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Storage-Layout.html#index-strcpy-3953"><code>strcpy</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Storage-Layout.html#index-STRICT_005fALIGNMENT-3963"><code>STRICT_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="RTL-Declarations.html#index-strict_005flow_005fpart-3029"><code>strict_low_part</code></a>: <a href="RTL-Declarations.html#RTL-Declarations">RTL Declarations</a></li>
<li><a href="Addressing-Modes.html#index-strict_005fmemory_005faddress_005fp-4392"><code>strict_memory_address_p</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Constant-expressions.html#index-STRING_005fCST-1838"><code>STRING_CST</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Flags.html#index-STRING_005fPOOL_005fADDRESS_005fP-2687"><code>STRING_POOL_ADDRESS_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3547"><code>strlen</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Aggregate-Return.html#index-structure-value-address-4282">structure value address</a>: <a href="Aggregate-Return.html#Aggregate-Return">Aggregate Return</a></li>
<li><a href="Storage-Layout.html#index-STRUCTURE_005fSIZE_005fBOUNDARY-3962"><code>STRUCTURE_SIZE_BOUNDARY</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Interface.html#index-structures_002c-returning-12">structures, returning</a>: <a href="Interface.html#Interface">Interface</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3403"><code>sub</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-SUBOBJECT-2117"><code>SUBOBJECT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-SUBOBJECT_005fCLEANUP-2118"><code>SUBOBJECT_CLEANUP</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Regs-and-Memory.html#index-subreg-2863"><code>subreg</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Flags.html#your_sha256_hash-2699"><code>subreg</code> and `<samp><span class="samp">/s</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash-2695"><code>subreg</code> and `<samp><span class="samp">/u</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash-and-_0040samp_007b_002fv_007d-2691"><code>subreg</code> and `<samp><span class="samp">/u</span></samp>' and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="RTL-Declarations.html#your_sha256_hash005flow_005fpart_007d-3030"><code>subreg</code>, in <code>strict_low_part</code></a>: <a href="RTL-Declarations.html#RTL-Declarations">RTL Declarations</a></li>
<li><a href="Regs-and-Memory.html#index-SUBREG_005fBYTE-2869"><code>SUBREG_BYTE</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Flags.html#index-SUBREG_005fPROMOTED_005fUNSIGNED_005fP-2690"><code>SUBREG_PROMOTED_UNSIGNED_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-SUBREG_005fPROMOTED_005fUNSIGNED_005fSET-2694"><code>SUBREG_PROMOTED_UNSIGNED_SET</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-SUBREG_005fPROMOTED_005fVAR_005fP-2698"><code>SUBREG_PROMOTED_VAR_P</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Regs-and-Memory.html#index-SUBREG_005fREG-2868"><code>SUBREG_REG</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Subst-Iterators.html#index-subst-iterators-in-_0040file_007b_002emd_007d-files-3846">subst iterators in <samp><span class="file">.md</span></samp> files</a>: <a href="Subst-Iterators.html#Subst-Iterators">Subst Iterators</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3421"><code>subv</code><var>m</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Host-Misc.html#index-SUCCESS_005fEXIT_005fCODE-5045"><code>SUCCESS_EXIT_CODE</code></a>: <a href="Host-Misc.html#Host-Misc">Host Misc</a></li>
<li><a href="Macros-for-Initialization.html#index-SUPPORTS_005fINIT_005fPRIORITY-4677"><code>SUPPORTS_INIT_PRIORITY</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Label-Output.html#index-SUPPORTS_005fONE_005fONLY-4643"><code>SUPPORTS_ONE_ONLY</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-SUPPORTS_005fWEAK-4640"><code>SUPPORTS_WEAK</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-SWITCH_005fBODY-2121"><code>SWITCH_BODY</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-SWITCH_005fCOND-2120"><code>SWITCH_COND</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-SWITCH_005fSTMT-2119"><code>SWITCH_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Run_002dtime-Target.html#index-SWITCHABLE_005fTARGET-3918"><code>SWITCHABLE_TARGET</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fFLAG_005fANCHOR-2596"><code>SYMBOL_FLAG_ANCHOR</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fFLAG_005fEXTERNAL-2588"><code>SYMBOL_FLAG_EXTERNAL</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fFLAG_005fFUNCTION-2584"><code>SYMBOL_FLAG_FUNCTION</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fFLAG_005fHAS_005fBLOCK_005fINFO-2594"><code>SYMBOL_FLAG_HAS_BLOCK_INFO</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fFLAG_005fLOCAL-2586"><code>SYMBOL_FLAG_LOCAL</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fFLAG_005fSMALL-2590"><code>SYMBOL_FLAG_SMALL</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fFLAG_005fTLS_005fSHIFT-2591"><code>SYMBOL_FLAG_TLS_SHIFT</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Constants.html#index-symbol_005fref-2837"><code>symbol_ref</code></a>: <a href="Constants.html#Constants">Constants</a></li>
<li><a href="Flags.html#your_sha256_hash2ff_007d-2688"><code>symbol_ref</code> and `<samp><span class="samp">/f</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash2fi_007d-2704"><code>symbol_ref</code> and `<samp><span class="samp">/i</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash2fu_007d-2602"><code>symbol_ref</code> and `<samp><span class="samp">/u</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash2fv_007d-2707"><code>symbol_ref</code> and `<samp><span class="samp">/v</span></samp>'</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Sharing.html#your_sha256_hash><code>symbol_ref</code>, RTL sharing</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fANCHOR_005fP-2595"><code>SYMBOL_REF_ANCHOR_P</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fBLOCK-2598"><code>SYMBOL_REF_BLOCK</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fBLOCK_005fOFFSET-2599"><code>SYMBOL_REF_BLOCK_OFFSET</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fCONSTANT-2580"><code>SYMBOL_REF_CONSTANT</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fDATA-2581"><code>SYMBOL_REF_DATA</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fDECL-2579"><code>SYMBOL_REF_DECL</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fEXTERNAL_005fP-2587"><code>SYMBOL_REF_EXTERNAL_P</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Flags.html#index-SYMBOL_005fREF_005fFLAG-2706"><code>SYMBOL_REF_FLAG</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Sections.html#your_sha256_hash0code_007bTARGET_005fENCODE_005fSECTION_005fINFO_007d-4543"><code>SYMBOL_REF_FLAG</code>, in <code>TARGET_ENCODE_SECTION_INFO</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fFLAGS-2582"><code>SYMBOL_REF_FLAGS</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fFUNCTION_005fP-2583"><code>SYMBOL_REF_FUNCTION_P</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fHAS_005fBLOCK_005fINFO_005fP-2593"><code>SYMBOL_REF_HAS_BLOCK_INFO_P</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fLOCAL_005fP-2585"><code>SYMBOL_REF_LOCAL_P</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fSMALL_005fP-2589"><code>SYMBOL_REF_SMALL_P</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Special-Accessors.html#index-SYMBOL_005fREF_005fTLS_005fMODEL-2592"><code>SYMBOL_REF_TLS_MODEL</code></a>: <a href="Special-Accessors.html#Special-Accessors">Special Accessors</a></li>
<li><a href="Flags.html#index-SYMBOL_005fREF_005fUSED-2701"><code>SYMBOL_REF_USED</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-SYMBOL_005fREF_005fWEAK-2703"><code>SYMBOL_REF_WEAK</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Sharing.html#index-symbolic-label-3139">symbolic label</a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Standard-Names.html#your_sha256_hashnstruction-pattern-3621"><code>sync_add</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashnstruction-pattern-3624"><code>sync_and</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007bmode_007d_007d-instruction-pattern-3620"><code>sync_compare_and_swap</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashnstruction-pattern-3623"><code>sync_ior</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashe_007d_007d-instruction-pattern-3640"><code>sync_lock_release</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash40var_007bmode_007d_007d-instruction-pattern-3639"><code>sync_lock_test_and_set</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashinstruction-pattern-3626"><code>sync_nand</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd_007d-instruction-pattern-3633"><code>sync_new_add</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd_007d-instruction-pattern-3636"><code>sync_new_and</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd_007d-instruction-pattern-3635"><code>sync_new_ior</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d_007d-instruction-pattern-3638"><code>sync_new_nand</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd_007d-instruction-pattern-3634"><code>sync_new_sub</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd_007d-instruction-pattern-3637"><code>sync_new_xor</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd_007d-instruction-pattern-3627"><code>sync_old_add</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd_007d-instruction-pattern-3630"><code>sync_old_and</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd_007d-instruction-pattern-3629"><code>sync_old_ior</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d_007d-instruction-pattern-3632"><code>sync_old_nand</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd_007d-instruction-pattern-3628"><code>sync_old_sub</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd_007d-instruction-pattern-3631"><code>sync_old_xor</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashnstruction-pattern-3622"><code>sync_sub</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashnstruction-pattern-3625"><code>sync_xor</code><var>mode</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Driver.html#index-SYSROOT_005fHEADERS_005fSUFFIX_005fSPEC-3878"><code>SYSROOT_HEADERS_SUFFIX_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Driver.html#index-SYSROOT_005fSUFFIX_005fSPEC-3877"><code>SYSROOT_SUFFIX_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Target-Fragment.html#index-g_t_0040file_007bt_002d_0040var_007btarget_007d_007d-5054"><samp><span class="file">t-</span><var>target</var></samp></a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Basic-Blocks.html#index-table-jump-3165">table jump</a>: <a href="Basic-Blocks.html#Basic-Blocks">Basic Blocks</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007btablejump_007d-instruction-pattern-3589"><code>tablejump</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="GTY-Options.html#index-tag-5080"><code>tag</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="Tagging-Insns.html#index-tagging-insns-3760">tagging insns</a>: <a href="Tagging-Insns.html#Tagging-Insns">Tagging Insns</a></li>
<li><a href="Tail-Calls.html#index-tail-calls-4316">tail calls</a>: <a href="Tail-Calls.html#Tail-Calls">Tail Calls</a></li>
<li><a href="Machine-Modes.html#index-TAmode-2763"><code>TAmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Target-Attributes.html#index-target-attributes-4827">target attributes</a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Target-Macros.html#index-target-description-macros-3851">target description macros</a>: <a href="Target-Macros.html#Target-Macros">Target Macros</a></li>
<li><a href="Target-Structure.html#index-target-functions-3855">target functions</a>: <a href="Target-Structure.html#Target-Structure">Target Structure</a></li>
<li><a href="Target-Structure.html#index-target-hooks-3854">target hooks</a>: <a href="Target-Structure.html#Target-Structure">Target Structure</a></li>
<li><a href="Target-Fragment.html#index-target-makefile-fragment-5053">target makefile fragment</a>: <a href="Target-Fragment.html#Target-Fragment">Target Fragment</a></li>
<li><a href="Run_002dtime-Target.html#index-target-specifications-3898">target specifications</a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fABSOLUTE_005fBIGGEST_005fALIGNMENT-3944"><code>TARGET_ABSOLUTE_BIGGEST_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Named-Address-Spaces.html#index-TARGET_005fADDR_005fSPACE_005fADDRESS_005fMODE-4885"><code>TARGET_ADDR_SPACE_ADDRESS_MODE</code></a>: <a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></li>
<li><a href="Named-Address-Spaces.html#index-TARGET_005fADDR_005fSPACE_005fCONVERT-4890"><code>TARGET_ADDR_SPACE_CONVERT</code></a>: <a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></li>
<li><a href="Named-Address-Spaces.html#your_sha256_hash-4887"><code>TARGET_ADDR_SPACE_LEGITIMATE_ADDRESS_P</code></a>: <a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></li>
<li><a href="Named-Address-Spaces.html#index-TARGET_005fADDR_005fSPACE_005fLEGITIMIZE_005fADDRESS-4888"><code>TARGET_ADDR_SPACE_LEGITIMIZE_ADDRESS</code></a>: <a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></li>
<li><a href="Named-Address-Spaces.html#index-TARGET_005fADDR_005fSPACE_005fPOINTER_005fMODE-4884"><code>TARGET_ADDR_SPACE_POINTER_MODE</code></a>: <a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></li>
<li><a href="Named-Address-Spaces.html#index-TARGET_005fADDR_005fSPACE_005fSUBSET_005fP-4889"><code>TARGET_ADDR_SPACE_SUBSET_P</code></a>: <a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></li>
<li><a href="Named-Address-Spaces.html#your_sha256_hash886"><code>TARGET_ADDR_SPACE_VALID_POINTER_MODE</code></a>: <a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></li>
<li><a href="Costs.html#index-TARGET_005fADDRESS_005fCOST-4468"><code>TARGET_ADDRESS_COST</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fALIGN_005fANON_005fBITFIELD-3966"><code>TARGET_ALIGN_ANON_BITFIELD</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Misc.html#index-TARGET_005fALLOCATE_005fINITIAL_005fVALUE-4972"><code>TARGET_ALLOCATE_INITIAL_VALUE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#your_sha256_hash010"><code>TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Driver.html#index-TARGET_005fALWAYS_005fSTRIP_005fDOTDOT-3883"><code>TARGET_ALWAYS_STRIP_DOTDOT</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fARG_005fPARTIAL_005fBYTES-4238"><code>TARGET_ARG_PARTIAL_BYTES</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Exception-Region-Output.html#index-TARGET_005fARM_005fEABI_005fUNWINDER-4736"><code>TARGET_ARM_EABI_UNWINDER</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fARRAY_005fMODE_005fSUPPORTED_005fP-4264"><code>TARGET_ARRAY_MODE_SUPPORTED_P</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Misc.html#index-TARGET_005fASAN_005fSHADOW_005fOFFSET-5012"><code>TARGET_ASAN_SHADOW_OFFSET</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fALIGNED_005fDI_005fOP-4584"><code>TARGET_ASM_ALIGNED_DI_OP</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fALIGNED_005fHI_005fOP-4582"><code>TARGET_ASM_ALIGNED_HI_OP</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fALIGNED_005fSI_005fOP-4583"><code>TARGET_ASM_ALIGNED_SI_OP</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fALIGNED_005fTI_005fOP-4585"><code>TARGET_ASM_ALIGNED_TI_OP</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Label-Output.html#index-TARGET_005fASM_005fASSEMBLE_005fUNDEFINED_005fDECL-4636"><code>TARGET_ASM_ASSEMBLE_UNDEFINED_DECL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-TARGET_005fASM_005fASSEMBLE_005fVISIBILITY-4644"><code>TARGET_ASM_ASSEMBLE_VISIBILITY</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fBYTE_005fOP-4581"><code>TARGET_ASM_BYTE_OP</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Function-Entry.html#index-TARGET_005fASM_005fCAN_005fOUTPUT_005fMI_005fTHUNK-4308"><code>TARGET_ASM_CAN_OUTPUT_MI_THUNK</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fCLOSE_005fPAREN-4601"><code>TARGET_ASM_CLOSE_PAREN</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="File-Framework.html#index-TARGET_005fASM_005fCODE_005fEND-4565"><code>TARGET_ASM_CODE_END</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Macros-for-Initialization.html#index-TARGET_005fASM_005fCONSTRUCTOR-4679"><code>TARGET_ASM_CONSTRUCTOR</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fDECL_005fEND-4591"><code>TARGET_ASM_DECL_END</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Label-Output.html#index-TARGET_005fASM_005fDECLARE_005fCONSTANT_005fNAME-4631"><code>TARGET_ASM_DECLARE_CONSTANT_NAME</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Macros-for-Initialization.html#index-TARGET_005fASM_005fDESTRUCTOR-4680"><code>TARGET_ASM_DESTRUCTOR</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="Dispatch-Tables.html#index-TARGET_005fASM_005fEMIT_005fEXCEPT_005fPERSONALITY-4718"><code>TARGET_ASM_EMIT_EXCEPT_PERSONALITY</code></a>: <a href="Dispatch-Tables.html#Dispatch-Tables">Dispatch Tables</a></li>
<li><a href="Dispatch-Tables.html#your_sha256_hash7"><code>TARGET_ASM_EMIT_EXCEPT_TABLE_LABEL</code></a>: <a href="Dispatch-Tables.html#Dispatch-Tables">Dispatch Tables</a></li>
<li><a href="Dispatch-Tables.html#index-TARGET_005fASM_005fEMIT_005fUNWIND_005fLABEL-4716"><code>TARGET_ASM_EMIT_UNWIND_LABEL</code></a>: <a href="Dispatch-Tables.html#Dispatch-Tables">Dispatch Tables</a></li>
<li><a href="Label-Output.html#index-TARGET_005fASM_005fEXTERNAL_005fLIBCALL-4647"><code>TARGET_ASM_EXTERNAL_LIBCALL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="File-Framework.html#index-TARGET_005fASM_005fFILE_005fEND-4561"><code>TARGET_ASM_FILE_END</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="File-Framework.html#index-TARGET_005fASM_005fFILE_005fSTART-4558"><code>TARGET_ASM_FILE_START</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="File-Framework.html#index-TARGET_005fASM_005fFILE_005fSTART_005fAPP_005fOFF-4559"><code>TARGET_ASM_FILE_START_APP_OFF</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="File-Framework.html#your_sha256_hash560"><code>TARGET_ASM_FILE_START_FILE_DIRECTIVE</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Instruction-Output.html#index-TARGET_005fASM_005fFINAL_005fPOSTSCAN_005fINSN-4693"><code>TARGET_ASM_FINAL_POSTSCAN_INSN</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Function-Entry.html#index-TARGET_005fASM_005fFUNCTION_005fBEGIN_005fEPILOGUE-4297"><code>TARGET_ASM_FUNCTION_BEGIN_EPILOGUE</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Function-Entry.html#index-TARGET_005fASM_005fFUNCTION_005fEND_005fPROLOGUE-4296"><code>TARGET_ASM_FUNCTION_END_PROLOGUE</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Function-Entry.html#index-TARGET_005fASM_005fFUNCTION_005fEPILOGUE-4298"><code>TARGET_ASM_FUNCTION_EPILOGUE</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Function-Entry.html#index-TARGET_005fASM_005fFUNCTION_005fPROLOGUE-4293"><code>TARGET_ASM_FUNCTION_PROLOGUE</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="Sections.html#index-TARGET_005fASM_005fFUNCTION_005fRODATA_005fSECTION-4537"><code>TARGET_ASM_FUNCTION_RODATA_SECTION</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="File-Framework.html#index-TARGET_005fASM_005fFUNCTION_005fSECTION-4574"><code>TARGET_ASM_FUNCTION_SECTION</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="File-Framework.html#your_sha256_hashIONS-4575"><code>TARGET_ASM_FUNCTION_SWITCHED_TEXT_SECTIONS</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Label-Output.html#index-TARGET_005fASM_005fGLOBALIZE_005fDECL_005fNAME-4635"><code>TARGET_ASM_GLOBALIZE_DECL_NAME</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Label-Output.html#index-TARGET_005fASM_005fGLOBALIZE_005fLABEL-4634"><code>TARGET_ASM_GLOBALIZE_LABEL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Sections.html#index-TARGET_005fASM_005fINIT_005fSECTIONS-4532"><code>TARGET_ASM_INIT_SECTIONS</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fINTEGER-4590"><code>TARGET_ASM_INTEGER</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Label-Output.html#index-TARGET_005fASM_005fINTERNAL_005fLABEL-4653"><code>TARGET_ASM_INTERNAL_LABEL</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Alignment-Output.html#index-TARGET_005fASM_005fJUMP_005fALIGN_005fMAX_005fSKIP-4738"><code>TARGET_ASM_JUMP_ALIGN_MAX_SKIP</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="Alignment-Output.html#your_sha256_hash05fMAX_005fSKIP-4740"><code>TARGET_ASM_LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="Alignment-Output.html#index-TARGET_005fASM_005fLABEL_005fALIGN_005fMAX_005fSKIP-4744"><code>TARGET_ASM_LABEL_ALIGN_MAX_SKIP</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="Alignment-Output.html#index-TARGET_005fASM_005fLOOP_005fALIGN_005fMAX_005fSKIP-4742"><code>TARGET_ASM_LOOP_ALIGN_MAX_SKIP</code></a>: <a href="Alignment-Output.html#Alignment-Output">Alignment Output</a></li>
<li><a href="File-Framework.html#index-TARGET_005fASM_005fLTO_005fEND-4564"><code>TARGET_ASM_LTO_END</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="File-Framework.html#index-TARGET_005fASM_005fLTO_005fSTART-4563"><code>TARGET_ASM_LTO_START</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Label-Output.html#index-TARGET_005fASM_005fMARK_005fDECL_005fPRESERVED-4648"><code>TARGET_ASM_MARK_DECL_PRESERVED</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Sections.html#index-TARGET_005fASM_005fMERGEABLE_005fRODATA_005fPREFIX-4538"><code>TARGET_ASM_MERGEABLE_RODATA_PREFIX</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="File-Framework.html#index-TARGET_005fASM_005fNAMED_005fSECTION-4573"><code>TARGET_ASM_NAMED_SECTION</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fOPEN_005fPAREN-4600"><code>TARGET_ASM_OPEN_PAREN</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#your_sha256_hash2"><code>TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Anchored-Addresses.html#index-TARGET_005fASM_005fOUTPUT_005fANCHOR-4425"><code>TARGET_ASM_OUTPUT_ANCHOR</code></a>: <a href="Anchored-Addresses.html#Anchored-Addresses">Anchored Addresses</a></li>
<li><a href="SDB-and-DWARF.html#index-TARGET_005fASM_005fOUTPUT_005fDWARF_005fDTPREL-4797"><code>TARGET_ASM_OUTPUT_DWARF_DTPREL</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="File-Framework.html#index-TARGET_005fASM_005fOUTPUT_005fIDENT-4571"><code>TARGET_ASM_OUTPUT_IDENT</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Function-Entry.html#index-TARGET_005fASM_005fOUTPUT_005fMI_005fTHUNK-4307"><code>TARGET_ASM_OUTPUT_MI_THUNK</code></a>: <a href="Function-Entry.html#Function-Entry">Function Entry</a></li>
<li><a href="File-Framework.html#index-TARGET_005fASM_005fOUTPUT_005fSOURCE_005fFILENAME-4570"><code>TARGET_ASM_OUTPUT_SOURCE_FILENAME</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="File-Framework.html#index-TARGET_005fASM_005fRECORD_005fGCC_005fSWITCHES-4579"><code>TARGET_ASM_RECORD_GCC_SWITCHES</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="File-Framework.html#your_sha256_hash-4580"><code>TARGET_ASM_RECORD_GCC_SWITCHES_SECTION</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Sections.html#index-TARGET_005fASM_005fRELOC_005fRW_005fMASK-4533"><code>TARGET_ASM_RELOC_RW_MASK</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Sections.html#index-TARGET_005fASM_005fSELECT_005fRTX_005fSECTION-4540"><code>TARGET_ASM_SELECT_RTX_SECTION</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Sections.html#index-TARGET_005fASM_005fSELECT_005fSECTION-4534"><code>TARGET_ASM_SELECT_SECTION</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Sections.html#your_sha256_hash><code>TARGET_ASM_TM_CLONE_TABLE_SECTION</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Trampolines.html#index-TARGET_005fASM_005fTRAMPOLINE_005fTEMPLATE-4345"><code>TARGET_ASM_TRAMPOLINE_TEMPLATE</code></a>: <a href="Trampolines.html#Trampolines">Trampolines</a></li>
<li><a href="Exception-Region-Output.html#index-TARGET_005fASM_005fTTYPE-4735"><code>TARGET_ASM_TTYPE</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fUNALIGNED_005fDI_005fOP-4588"><code>TARGET_ASM_UNALIGNED_DI_OP</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fUNALIGNED_005fHI_005fOP-4586"><code>TARGET_ASM_UNALIGNED_HI_OP</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fUNALIGNED_005fSI_005fOP-4587"><code>TARGET_ASM_UNALIGNED_SI_OP</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Data-Output.html#index-TARGET_005fASM_005fUNALIGNED_005fTI_005fOP-4589"><code>TARGET_ASM_UNALIGNED_TI_OP</code></a>: <a href="Data-Output.html#Data-Output">Data Output</a></li>
<li><a href="Sections.html#index-TARGET_005fASM_005fUNIQUE_005fSECTION-4536"><code>TARGET_ASM_UNIQUE_SECTION</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Dispatch-Tables.html#index-TARGET_005fASM_005fUNWIND_005fEMIT-4719"><code>TARGET_ASM_UNWIND_EMIT</code></a>: <a href="Dispatch-Tables.html#Dispatch-Tables">Dispatch Tables</a></li>
<li><a href="Dispatch-Tables.html#your_sha256_hash0"><code>TARGET_ASM_UNWIND_EMIT_BEFORE_INSN</code></a>: <a href="Dispatch-Tables.html#Dispatch-Tables">Dispatch Tables</a></li>
<li><a href="Misc.html#index-TARGET_005fATOMIC_005fALIGN_005fFOR_005fMODE-5016"><code>TARGET_ATOMIC_ALIGN_FOR_MODE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fATOMIC_005fASSIGN_005fEXPAND_005fFENV-5017"><code>TARGET_ATOMIC_ASSIGN_EXPAND_FENV</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#your_sha256_hash4"><code>TARGET_ATOMIC_TEST_AND_SET_TRUEVAL</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fATTRIBUTE_005fTABLE-4830"><code>TARGET_ATTRIBUTE_TABLE</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fATTRIBUTE_005fTAKES_005fIDENTIFIER_005fP-4831"><code>TARGET_ATTRIBUTE_TAKES_IDENTIFIER_P</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Sections.html#index-TARGET_005fBINDS_005fLOCAL_005fP-4548"><code>TARGET_BINDS_LOCAL_P</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Misc.html#your_sha256_hashAVED-4981"><code>TARGET_BRANCH_TARGET_REGISTER_CALLEE_SAVED</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fBRANCH_005fTARGET_005fREGISTER_005fCLASS-4980"><code>TARGET_BRANCH_TARGET_REGISTER_CLASS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fBUILD_005fBUILTIN_005fVA_005fLIST-4255"><code>TARGET_BUILD_BUILTIN_VA_LIST</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Misc.html#index-TARGET_005fBUILTIN_005fCHKP_005fFUNCTION-4945"><code>TARGET_BUILTIN_CHKP_FUNCTION</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fBUILTIN_005fDECL-4943"><code>TARGET_BUILTIN_DECL</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fBUILTIN_005fRECIPROCAL-4401"><code>TARGET_BUILTIN_RECIPROCAL</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Frame-Layout.html#index-TARGET_005fBUILTIN_005fSETJMP_005fFRAME_005fVALUE-4157"><code>TARGET_BUILTIN_SETJMP_FRAME_VALUE</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Misc.html#index-TARGET_005fC_005fPREINCLUDE-4916"><code>TARGET_C_PREINCLUDE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Varargs.html#index-TARGET_005fCALL_005fARGS-4334"><code>TARGET_CALL_ARGS</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Miscellaneous-Register-Hooks.html#your_sha256_hash_005fCLOBBERS-4326"><code>TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS</code></a>: <a href="Miscellaneous-Register-Hooks.html#Miscellaneous-Register-Hooks">Miscellaneous Register Hooks</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fCALLEE_005fCOPIES-4240"><code>TARGET_CALLEE_COPIES</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Elimination.html#index-TARGET_005fCAN_005fELIMINATE-4211"><code>TARGET_CAN_ELIMINATE</code></a>: <a href="Elimination.html#Elimination">Elimination</a></li>
<li><a href="Misc.html#index-TARGET_005fCAN_005fFOLLOW_005fJUMP-4970"><code>TARGET_CAN_FOLLOW_JUMP</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fCAN_005fINLINE_005fP-4850"><code>TARGET_CAN_INLINE_P</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Misc.html#index-TARGET_005fCAN_005fUSE_005fDOLOOP_005fP-4967"><code>TARGET_CAN_USE_DOLOOP_P</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fCANNOT_005fFORCE_005fCONST_005fMEM-4398"><code>TARGET_CANNOT_FORCE_CONST_MEM</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Misc.html#index-TARGET_005fCANNOT_005fMODIFY_005fJUMPS_005fP-4979"><code>TARGET_CANNOT_MODIFY_JUMPS_P</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Classes.html#your_sha256_hash138"><code>TARGET_CANNOT_SUBSTITUTE_MEM_EQUIV_P</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fCANONICAL_005fVA_005fLIST_005fTYPE-4258"><code>TARGET_CANONICAL_VA_LIST_TYPE</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="MODE_005fCC-Condition-Codes.html#index-TARGET_005fCANONICALIZE_005fCOMPARISON-4436"><code>TARGET_CANONICALIZE_COMPARISON</code></a>: <a href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes">MODE_CC Condition Codes</a></li>
<li><a href="Misc.html#index-TARGET_005fCASE_005fVALUES_005fTHRESHOLD-4897"><code>TARGET_CASE_VALUES_THRESHOLD</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="MODE_005fCC-Condition-Codes.html#index-TARGET_005fCC_005fMODES_005fCOMPATIBLE-4440"><code>TARGET_CC_MODES_COMPATIBLE</code></a>: <a href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes">MODE_CC Condition Codes</a></li>
<li><a href="PCH-Target.html#index-TARGET_005fCHECK_005fPCH_005fTARGET_005fFLAGS-4866"><code>TARGET_CHECK_PCH_TARGET_FLAGS</code></a>: <a href="PCH-Target.html#PCH-Target">PCH Target</a></li>
<li><a href="Run_002dtime-Target.html#your_sha256_hash3912"><code>TARGET_CHECK_STRING_OBJECT_FORMAT_ARG</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Misc.html#index-TARGET_005fCHKP_005fBOUND_005fMODE-4958"><code>TARGET_CHKP_BOUND_MODE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fCHKP_005fBOUND_005fTYPE-4957"><code>TARGET_CHKP_BOUND_TYPE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Varargs.html#index-TARGET_005fCHKP_005fFUNCTION_005fVALUE_005fBOUNDS-4341"><code>TARGET_CHKP_FUNCTION_VALUE_BOUNDS</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Misc.html#index-TARGET_005fCHKP_005fINITIALIZE_005fBOUNDS-4960"><code>TARGET_CHKP_INITIALIZE_BOUNDS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fCHKP_005fMAKE_005fBOUNDS_005fCONSTANT-4959"><code>TARGET_CHKP_MAKE_BOUNDS_CONSTANT</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fCLASS_005fLIKELY_005fSPILLED_005fP-4130"><code>TARGET_CLASS_LIKELY_SPILLED_P</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fCLASS_005fMAX_005fNREGS-4131"><code>TARGET_CLASS_MAX_NREGS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Misc.html#index-TARGET_005fCOMMUTATIVE_005fP-4971"><code>TARGET_COMMUTATIVE_P</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fCOMP_005fTYPE_005fATTRIBUTES-4832"><code>TARGET_COMP_TYPE_ATTRIBUTES</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Misc.html#index-TARGET_005fCOMPARE_005fVERSION_005fPRIORITY-4964"><code>TARGET_COMPARE_VERSION_PRIORITY</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Basics.html#index-TARGET_005fCONDITIONAL_005fREGISTER_005fUSAGE-4065"><code>TARGET_CONDITIONAL_REGISTER_USAGE</code></a>: <a href="Register-Basics.html#Register-Basics">Register Basics</a></li>
<li><a href="Misc.html#index-TARGET_005fCONST_005fANCHOR-5011"><code>TARGET_CONST_ANCHOR</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Addressing-Modes.html#your_sha256_hash97"><code>TARGET_CONST_NOT_OK_FOR_DEBUG_P</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Misc.html#index-TARGET_005fCONVERT_005fTO_005fTYPE-5004"><code>TARGET_CONVERT_TO_TYPE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fCPU_005fCPP_005fBUILTINS-3899"><code>TARGET_CPU_CPP_BUILTINS</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fCSTORE_005fMODE-4141"><code>TARGET_CSTORE_MODE</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="C_002b_002b-ABI.html#your_sha256_hash4881"><code>TARGET_CXX_ADJUST_CLASS_AT_DEFINITION</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#index-TARGET_005fCXX_005fCDTOR_005fRETURNS_005fTHIS-4874"><code>TARGET_CXX_CDTOR_RETURNS_THIS</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#your_sha256_hash77"><code>TARGET_CXX_CLASS_DATA_ALWAYS_COMDAT</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#index-TARGET_005fCXX_005fCOOKIE_005fHAS_005fSIZE-4872"><code>TARGET_CXX_COOKIE_HAS_SIZE</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#index-TARGET_005fCXX_005fDECL_005fMANGLING_005fCONTEXT-4882"><code>TARGET_CXX_DECL_MANGLING_CONTEXT</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#your_sha256_hashLITY-4876"><code>TARGET_CXX_DETERMINE_CLASS_DATA_VISIBILITY</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#index-TARGET_005fCXX_005fGET_005fCOOKIE_005fSIZE-4871"><code>TARGET_CXX_GET_COOKIE_SIZE</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#index-TARGET_005fCXX_005fGUARD_005fMASK_005fBIT-4870"><code>TARGET_CXX_GUARD_MASK_BIT</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#index-TARGET_005fCXX_005fGUARD_005fTYPE-4869"><code>TARGET_CXX_GUARD_TYPE</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="Misc.html#index-TARGET_005fCXX_005fIMPLICIT_005fEXTERN_005fC-4917"><code>TARGET_CXX_IMPLICIT_EXTERN_C</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="C_002b_002b-ABI.html#index-TARGET_005fCXX_005fIMPORT_005fEXPORT_005fCLASS-4873"><code>TARGET_CXX_IMPORT_EXPORT_CLASS</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#your_sha256_hashE-4875"><code>TARGET_CXX_KEY_METHOD_MAY_BE_INLINE</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#index-TARGET_005fCXX_005fLIBRARY_005fRTTI_005fCOMDAT-4878"><code>TARGET_CXX_LIBRARY_RTTI_COMDAT</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#index-TARGET_005fCXX_005fUSE_005fAEABI_005fATEXIT-4879"><code>TARGET_CXX_USE_AEABI_ATEXIT</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="C_002b_002b-ABI.html#your_sha256_hashIT-4880"><code>TARGET_CXX_USE_ATEXIT_FOR_CXA_ATEXIT</code></a>: <a href="C_002b_002b-ABI.html#C_002b_002b-ABI">C++ ABI</a></li>
<li><a href="SDB-and-DWARF.html#index-TARGET_005fDEBUG_005fUNWIND_005fINFO-4785"><code>TARGET_DEBUG_UNWIND_INFO</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fDECIMAL_005fFLOAT_005fSUPPORTED_005fP-3977"><code>TARGET_DECIMAL_FLOAT_SUPPORTED_P</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fDECLSPEC-4838"><code>TARGET_DECLSPEC</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Misc.html#index-TARGET_005fDEFAULT_005fPACK_005fSTRUCT-4925"><code>TARGET_DEFAULT_PACK_STRUCT</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Type-Layout.html#index-TARGET_005fDEFAULT_005fSHORT_005fENUMS-4004"><code>TARGET_DEFAULT_SHORT_ENUMS</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fDEFAULT_005fTARGET_005fFLAGS-3903"><code>TARGET_DEFAULT_TARGET_FLAGS</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Label-Output.html#index-TARGET_005fDEFERRED_005fOUTPUT_005fDEFS-4661"><code>TARGET_DEFERRED_OUTPUT_DEFS</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="SDB-and-DWARF.html#index-TARGET_005fDELAY_005fSCHED2-4789"><code>TARGET_DELAY_SCHED2</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="SDB-and-DWARF.html#index-TARGET_005fDELAY_005fVARTRACK-4790"><code>TARGET_DELAY_VARTRACK</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fDELEGITIMIZE_005fADDRESS-4396"><code>TARGET_DELEGITIMIZE_ADDRESS</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fDIFFERENT_005fADDR_005fDISPLACEMENT_005fP-4137"><code>TARGET_DIFFERENT_ADDR_DISPLACEMENT_P</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fDLLIMPORT_005fDECL_005fATTRIBUTES-4836"><code>TARGET_DLLIMPORT_DECL_ATTRIBUTES</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="SDB-and-DWARF.html#index-TARGET_005fDWARF_005fCALLING_005fCONVENTION-4783"><code>TARGET_DWARF_CALLING_CONVENTION</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="Exception-Region-Output.html#index-TARGET_005fDWARF_005fFRAME_005fREG_005fMODE-4733"><code>TARGET_DWARF_FRAME_REG_MODE</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Frame-Layout.html#index-TARGET_005fDWARF_005fHANDLE_005fFRAME_005fUNSPEC-4164"><code>TARGET_DWARF_HANDLE_FRAME_UNSPEC</code></a>: <a href="Frame-Layout.html#Frame-Layout">Frame Layout</a></li>
<li><a href="Exception-Region-Output.html#index-TARGET_005fDWARF_005fREGISTER_005fSPAN-4732"><code>TARGET_DWARF_REGISTER_SPAN</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Library-Calls.html#index-TARGET_005fEDOM-4365"><code>TARGET_EDOM</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Emulated-TLS.html#your_sha256_hash861"><code>TARGET_EMUTLS_DEBUG_FORM_TLS_ADDRESS</code></a>: <a href="Emulated-TLS.html#Emulated-TLS">Emulated TLS</a></li>
<li><a href="Emulated-TLS.html#index-TARGET_005fEMUTLS_005fGET_005fADDRESS-4852"><code>TARGET_EMUTLS_GET_ADDRESS</code></a>: <a href="Emulated-TLS.html#Emulated-TLS">Emulated TLS</a></li>
<li><a href="Emulated-TLS.html#index-TARGET_005fEMUTLS_005fREGISTER_005fCOMMON-4853"><code>TARGET_EMUTLS_REGISTER_COMMON</code></a>: <a href="Emulated-TLS.html#Emulated-TLS">Emulated TLS</a></li>
<li><a href="Emulated-TLS.html#index-TARGET_005fEMUTLS_005fTMPL_005fPREFIX-4857"><code>TARGET_EMUTLS_TMPL_PREFIX</code></a>: <a href="Emulated-TLS.html#Emulated-TLS">Emulated TLS</a></li>
<li><a href="Emulated-TLS.html#index-TARGET_005fEMUTLS_005fTMPL_005fSECTION-4855"><code>TARGET_EMUTLS_TMPL_SECTION</code></a>: <a href="Emulated-TLS.html#Emulated-TLS">Emulated TLS</a></li>
<li><a href="Emulated-TLS.html#index-TARGET_005fEMUTLS_005fVAR_005fALIGN_005fFIXED-4860"><code>TARGET_EMUTLS_VAR_ALIGN_FIXED</code></a>: <a href="Emulated-TLS.html#Emulated-TLS">Emulated TLS</a></li>
<li><a href="Emulated-TLS.html#index-TARGET_005fEMUTLS_005fVAR_005fFIELDS-4858"><code>TARGET_EMUTLS_VAR_FIELDS</code></a>: <a href="Emulated-TLS.html#Emulated-TLS">Emulated TLS</a></li>
<li><a href="Emulated-TLS.html#index-TARGET_005fEMUTLS_005fVAR_005fINIT-4859"><code>TARGET_EMUTLS_VAR_INIT</code></a>: <a href="Emulated-TLS.html#Emulated-TLS">Emulated TLS</a></li>
<li><a href="Emulated-TLS.html#index-TARGET_005fEMUTLS_005fVAR_005fPREFIX-4856"><code>TARGET_EMUTLS_VAR_PREFIX</code></a>: <a href="Emulated-TLS.html#Emulated-TLS">Emulated TLS</a></li>
<li><a href="Emulated-TLS.html#index-TARGET_005fEMUTLS_005fVAR_005fSECTION-4854"><code>TARGET_EMUTLS_VAR_SECTION</code></a>: <a href="Emulated-TLS.html#Emulated-TLS">Emulated TLS</a></li>
<li><a href="Sections.html#index-TARGET_005fENCODE_005fSECTION_005fINFO-4542"><code>TARGET_ENCODE_SECTION_INFO</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Addressing-Modes.html#your_sha256_hash7d-and-address-validation-4383"><code>TARGET_ENCODE_SECTION_INFO</code> and address validation</a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Instruction-Output.html#your_sha256_hash7d-usage-4698"><code>TARGET_ENCODE_SECTION_INFO</code> usage</a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Varargs.html#index-TARGET_005fEND_005fCALL_005fARGS-4335"><code>TARGET_END_CALL_ARGS</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fENUM_005fVA_005fLIST_005fP-4256"><code>TARGET_ENUM_VA_LIST_P</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Exception-Region-Output.html#index-TARGET_005fEXCEPT_005fUNWIND_005fINFO-4726"><code>TARGET_EXCEPT_UNWIND_INFO</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Misc.html#index-TARGET_005fEXECUTABLE_005fSUFFIX-4976"><code>TARGET_EXECUTABLE_SUFFIX</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fEXPAND_005fBUILTIN-4944"><code>TARGET_EXPAND_BUILTIN</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Varargs.html#index-TARGET_005fEXPAND_005fBUILTIN_005fSAVEREGS-4331"><code>TARGET_EXPAND_BUILTIN_SAVEREGS</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fEXPAND_005fTO_005fRTL_005fHOOK-3979"><code>TARGET_EXPAND_TO_RTL_HOOK</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-TARGET_005fEXPR-1919"><code>TARGET_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Misc.html#index-TARGET_005fEXTRA_005fINCLUDES-4987"><code>TARGET_EXTRA_INCLUDES</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Tail-Calls.html#index-TARGET_005fEXTRA_005fLIVE_005fON_005fENTRY-4318"><code>TARGET_EXTRA_LIVE_ON_ENTRY</code></a>: <a href="Tail-Calls.html#Tail-Calls">Tail Calls</a></li>
<li><a href="Misc.html#index-TARGET_005fEXTRA_005fPRE_005fINCLUDES-4988"><code>TARGET_EXTRA_PRE_INCLUDES</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="MODE_005fCC-Condition-Codes.html#index-TARGET_005fFIXED_005fCONDITION_005fCODE_005fREGS-4439"><code>TARGET_FIXED_CONDITION_CODE_REGS</code></a>: <a href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes">MODE_CC Condition Codes</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fFIXED_005fPOINT_005fSUPPORTED_005fP-3978"><code>TARGET_FIXED_POINT_SUPPORTED_P</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Run_002dtime-Target.html#index-target_005fflags-3902"><code>target_flags</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="MODE_005fCC-Condition-Codes.html#index-TARGET_005fFLAGS_005fREGNUM-4441"><code>TARGET_FLAGS_REGNUM</code></a>: <a href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes">MODE_CC Condition Codes</a></li>
<li><a href="Run_002dtime-Target.html#your_sha256_hash_005fP-3919"><code>TARGET_FLOAT_EXCEPTIONS_ROUNDING_SUPPORTED_P</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Type-Layout.html#index-TARGET_005fFLT_005fEVAL_005fMETHOD-4001"><code>TARGET_FLT_EVAL_METHOD</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fFN_005fABI_005fVA_005fLIST-4257"><code>TARGET_FN_ABI_VA_LIST</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Misc.html#index-TARGET_005fFOLD_005fBUILTIN-4962"><code>TARGET_FOLD_BUILTIN</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="SDB-and-DWARF.html#index-TARGET_005fFORCE_005fAT_005fCOMP_005fDIR-4788"><code>TARGET_FORCE_AT_COMP_DIR</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="Misc.html#index-TARGET_005fFORMAT_005fTYPES-4991"><code>TARGET_FORMAT_TYPES</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Elimination.html#index-TARGET_005fFRAME_005fPOINTER_005fREQUIRED-4207"><code>TARGET_FRAME_POINTER_REQUIRED</code></a>: <a href="Elimination.html#Elimination">Elimination</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fFUNCTION_005fARG-4230"><code>TARGET_FUNCTION_ARG</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fFUNCTION_005fARG_005fADVANCE-4246"><code>TARGET_FUNCTION_ARG_ADVANCE</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fFUNCTION_005fARG_005fBOUNDARY-4251"><code>TARGET_FUNCTION_ARG_BOUNDARY</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fFUNCTION_005fARG_005fROUND_005fBOUNDARY-4252"><code>TARGET_FUNCTION_ARG_ROUND_BOUNDARY</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Target-Attributes.html#your_sha256_hash><code>TARGET_FUNCTION_ATTRIBUTE_INLINABLE_P</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fFUNCTION_005fINCOMING_005fARG-4235"><code>TARGET_FUNCTION_INCOMING_ARG</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Tail-Calls.html#index-TARGET_005fFUNCTION_005fOK_005fFOR_005fSIBCALL-4317"><code>TARGET_FUNCTION_OK_FOR_SIBCALL</code></a>: <a href="Tail-Calls.html#Tail-Calls">Tail Calls</a></li>
<li><a href="Scalar-Return.html#index-TARGET_005fFUNCTION_005fVALUE-4270"><code>TARGET_FUNCTION_VALUE</code></a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Scalar-Return.html#index-TARGET_005fFUNCTION_005fVALUE_005fREGNO_005fP-4275"><code>TARGET_FUNCTION_VALUE_REGNO_P</code></a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Misc.html#index-TARGET_005fGEN_005fCCMP_005fFIRST-4983"><code>TARGET_GEN_CCMP_FIRST</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fGEN_005fCCMP_005fNEXT-4984"><code>TARGET_GEN_CCMP_NEXT</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#your_sha256_hash66"><code>TARGET_GENERATE_VERSION_DISPATCHER_BODY</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fGET_005fDRAP_005fRTX-5009"><code>TARGET_GET_DRAP_RTX</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#your_sha256_hash65"><code>TARGET_GET_FUNCTION_VERSIONS_DISPATCHER</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="PCH-Target.html#index-TARGET_005fGET_005fPCH_005fVALIDITY-4864"><code>TARGET_GET_PCH_VALIDITY</code></a>: <a href="PCH-Target.html#PCH-Target">PCH Target</a></li>
<li><a href="Aggregate-Return.html#index-TARGET_005fGET_005fRAW_005fARG_005fMODE-4288"><code>TARGET_GET_RAW_ARG_MODE</code></a>: <a href="Aggregate-Return.html#Aggregate-Return">Aggregate Return</a></li>
<li><a href="Aggregate-Return.html#index-TARGET_005fGET_005fRAW_005fRESULT_005fMODE-4287"><code>TARGET_GET_RAW_RESULT_MODE</code></a>: <a href="Aggregate-Return.html#Aggregate-Return">Aggregate Return</a></li>
<li><a href="Misc.html#index-TARGET_005fGIMPLE_005fFOLD_005fBUILTIN-4963"><code>TARGET_GIMPLE_FOLD_BUILTIN</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fGIMPLIFY_005fVA_005fARG_005fEXPR-4259"><code>TARGET_GIMPLIFY_VA_ARG_EXPR</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fHANDLE_005fC_005fOPTION-3907"><code>TARGET_HANDLE_C_OPTION</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fHANDLE_005fOPTION-3906"><code>TARGET_HANDLE_OPTION</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Values-in-Registers.html#index-TARGET_005fHARD_005fREGNO_005fSCRATCH_005fOK-4086"><code>TARGET_HARD_REGNO_SCRATCH_OK</code></a>: <a href="Values-in-Registers.html#Values-in-Registers">Values in Registers</a></li>
<li><a href="Misc.html#index-TARGET_005fHAS_005fIFUNC_005fP-5015"><code>TARGET_HAS_IFUNC_P</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Library-Calls.html#index-TARGET_005fHAS_005fNO_005fHW_005fDIVIDE-4362"><code>TARGET_HAS_NO_HW_DIVIDE</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Misc.html#index-TARGET_005fHAVE_005fCONDITIONAL_005fEXECUTION-4982"><code>TARGET_HAVE_CONDITIONAL_EXECUTION</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Macros-for-Initialization.html#index-TARGET_005fHAVE_005fCTORS_005fDTORS-4678"><code>TARGET_HAVE_CTORS_DTORS</code></a>: <a href="Macros-for-Initialization.html#Macros-for-Initialization">Macros for Initialization</a></li>
<li><a href="File-Framework.html#index-TARGET_005fHAVE_005fNAMED_005fSECTIONS-4576"><code>TARGET_HAVE_NAMED_SECTIONS</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Sections.html#index-TARGET_005fHAVE_005fSRODATA_005fSECTION-4546"><code>TARGET_HAVE_SRODATA_SECTION</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="File-Framework.html#index-TARGET_005fHAVE_005fSWITCHABLE_005fBSS_005fSECTIONS-4577"><code>TARGET_HAVE_SWITCHABLE_BSS_SECTIONS</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Sections.html#index-TARGET_005fHAVE_005fTLS-4549"><code>TARGET_HAVE_TLS</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Sections.html#index-TARGET_005fIN_005fSMALL_005fDATA_005fP-4545"><code>TARGET_IN_SMALL_DATA_P</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Misc.html#index-TARGET_005fINIT_005fBUILTINS-4942"><code>TARGET_INIT_BUILTINS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Exception-Region-Output.html#your_sha256_hash><code>TARGET_INIT_DWARF_REG_SIZES_EXTRA</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Library-Calls.html#index-TARGET_005fINIT_005fLIBFUNCS-4358"><code>TARGET_INIT_LIBFUNCS</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fINIT_005fPIC_005fREG-4237"><code>TARGET_INIT_PIC_REG</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fINSERT_005fATTRIBUTES-4839"><code>TARGET_INSERT_ATTRIBUTES</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fINSTANTIATE_005fDECLS-3980"><code>TARGET_INSTANTIATE_DECLS</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Misc.html#your_sha256_hash-4997"><code>TARGET_INVALID_ARG_FOR_UNPROTOTYPED_FN</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fINVALID_005fBINARY_005fOP-5000"><code>TARGET_INVALID_BINARY_OP</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fINVALID_005fCONVERSION-4998"><code>TARGET_INVALID_CONVERSION</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fINVALID_005fPARAMETER_005fTYPE-5001"><code>TARGET_INVALID_PARAMETER_TYPE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fINVALID_005fRETURN_005fTYPE-5002"><code>TARGET_INVALID_RETURN_TYPE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fINVALID_005fUNARY_005fOP-4999"><code>TARGET_INVALID_UNARY_OP</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fINVALID_005fWITHIN_005fDOLOOP-4968"><code>TARGET_INVALID_WITHIN_DOLOOP</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Profiling.html#index-TARGET_005fKEEP_005fLEAF_005fWHEN_005fPROFILED-4315"><code>TARGET_KEEP_LEAF_WHEN_PROFILED</code></a>: <a href="Profiling.html#Profiling">Profiling</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fLEGITIMATE_005fADDRESS_005fP-4382"><code>TARGET_LEGITIMATE_ADDRESS_P</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Misc.html#index-TARGET_005fLEGITIMATE_005fCOMBINED_005fINSN-4969"><code>TARGET_LEGITIMATE_COMBINED_INSN</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fLEGITIMATE_005fCONSTANT_005fP-4395"><code>TARGET_LEGITIMATE_CONSTANT_P</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fLEGITIMIZE_005fADDRESS-4388"><code>TARGET_LEGITIMIZE_ADDRESS</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fLEGITIMIZE_005fADDRESS_005fDISPLACEMENT-4139"><code>TARGET_LEGITIMIZE_ADDRESS_DISPLACEMENT</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Library-Calls.html#index-TARGET_005fLIB_005fINT_005fCMP_005fBIASED-4361"><code>TARGET_LIB_INT_CMP_BIASED</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Library-Calls.html#index-TARGET_005fLIBC_005fHAS_005fFUNCTION-4368"><code>TARGET_LIBC_HAS_FUNCTION</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Scalar-Return.html#index-TARGET_005fLIBCALL_005fVALUE-4273"><code>TARGET_LIBCALL_VALUE</code></a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Library-Calls.html#index-TARGET_005fLIBFUNC_005fGNU_005fPREFIX-4359"><code>TARGET_LIBFUNC_GNU_PREFIX</code></a>: <a href="Library-Calls.html#Library-Calls">Library Calls</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fLIBGCC_005fCMP_005fRETURN_005fMODE-3973"><code>TARGET_LIBGCC_CMP_RETURN_MODE</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Register-Arguments.html#your_sha256_hashP-4265"><code>TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Sections.html#index-TARGET_005fLIBGCC_005fSDATA_005fSECTION-4529"><code>TARGET_LIBGCC_SDATA_SECTION</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fLIBGCC_005fSHIFT_005fCOUNT_005fMODE-3974"><code>TARGET_LIBGCC_SHIFT_COUNT_MODE</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Varargs.html#index-TARGET_005fLOAD_005fBOUNDS_005fFOR_005fARG-4337"><code>TARGET_LOAD_BOUNDS_FOR_ARG</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Varargs.html#index-TARGET_005fLOAD_005fRETURNED_005fBOUNDS-4339"><code>TARGET_LOAD_RETURNED_BOUNDS</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Misc.html#index-TARGET_005fLOOP_005fUNROLL_005fADJUST-4985"><code>TARGET_LOOP_UNROLL_ADJUST</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fLRA_005fP-4134"><code>TARGET_LRA_P</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Misc.html#index-TARGET_005fMACHINE_005fDEPENDENT_005fREORG-4941"><code>TARGET_MACHINE_DEPENDENT_REORG</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Label-Output.html#index-TARGET_005fMANGLE_005fASSEMBLER_005fNAME-4650"><code>TARGET_MANGLE_ASSEMBLER_NAME</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Sections.html#index-TARGET_005fMANGLE_005fDECL_005fASSEMBLER_005fNAME-4541"><code>TARGET_MANGLE_DECL_ASSEMBLER_NAME</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fMANGLE_005fTYPE-3981"><code>TARGET_MANGLE_TYPE</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Anchored-Addresses.html#index-TARGET_005fMAX_005fANCHOR_005fOFFSET-4424"><code>TARGET_MAX_ANCHOR_OFFSET</code></a>: <a href="Anchored-Addresses.html#Anchored-Addresses">Anchored Addresses</a></li>
<li><a href="Misc.html#index-TARGET_005fMD_005fASM_005fCLOBBERS-4930"><code>TARGET_MD_ASM_CLOBBERS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fMEM_005fCONSTRAINT-4386"><code>TARGET_MEM_CONSTRAINT</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Storage-References.html#index-TARGET_005fMEM_005fREF-1846"><code>TARGET_MEM_REF</code></a>: <a href="Storage-References.html#Storage-References">Storage References</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fMEMBER_005fTYPE_005fFORCES_005fBLK-3968"><code>TARGET_MEMBER_TYPE_FORCES_BLK</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Misc.html#index-TARGET_005fMEMMODEL_005fCHECK-5013"><code>TARGET_MEMMODEL_CHECK</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Costs.html#index-TARGET_005fMEMORY_005fMOVE_005fCOST-4448"><code>TARGET_MEMORY_MOVE_COST</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fMERGE_005fDECL_005fATTRIBUTES-4835"><code>TARGET_MERGE_DECL_ATTRIBUTES</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fMERGE_005fTYPE_005fATTRIBUTES-4834"><code>TARGET_MERGE_TYPE_ATTRIBUTES</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Anchored-Addresses.html#index-TARGET_005fMIN_005fANCHOR_005fOFFSET-4423"><code>TARGET_MIN_ANCHOR_OFFSET</code></a>: <a href="Anchored-Addresses.html#Anchored-Addresses">Anchored Addresses</a></li>
<li><a href="Misc.html#your_sha256_hash1"><code>TARGET_MIN_DIVISIONS_FOR_RECIP_MUL</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Mode-Switching.html#index-TARGET_005fMODE_005fAFTER-4823"><code>TARGET_MODE_AFTER</code></a>: <a href="Mode-Switching.html#Mode-Switching">Mode Switching</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fMODE_005fDEPENDENT_005fADDRESS_005fP-4394"><code>TARGET_MODE_DEPENDENT_ADDRESS_P</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Mode-Switching.html#index-TARGET_005fMODE_005fEMIT-4821"><code>TARGET_MODE_EMIT</code></a>: <a href="Mode-Switching.html#Mode-Switching">Mode Switching</a></li>
<li><a href="Mode-Switching.html#index-TARGET_005fMODE_005fENTRY-4824"><code>TARGET_MODE_ENTRY</code></a>: <a href="Mode-Switching.html#Mode-Switching">Mode Switching</a></li>
<li><a href="Mode-Switching.html#index-TARGET_005fMODE_005fEXIT-4825"><code>TARGET_MODE_EXIT</code></a>: <a href="Mode-Switching.html#Mode-Switching">Mode Switching</a></li>
<li><a href="Mode-Switching.html#index-TARGET_005fMODE_005fNEEDED-4822"><code>TARGET_MODE_NEEDED</code></a>: <a href="Mode-Switching.html#Mode-Switching">Mode Switching</a></li>
<li><a href="Mode-Switching.html#index-TARGET_005fMODE_005fPRIORITY-4826"><code>TARGET_MODE_PRIORITY</code></a>: <a href="Mode-Switching.html#Mode-Switching">Mode Switching</a></li>
<li><a href="Misc.html#index-TARGET_005fMODE_005fREP_005fEXTENDED-4907"><code>TARGET_MODE_REP_EXTENDED</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fMS_005fBITFIELD_005fLAYOUT_005fP-3976"><code>TARGET_MS_BITFIELD_LAYOUT_P</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fMUST_005fPASS_005fIN_005fSTACK-4234"><code>TARGET_MUST_PASS_IN_STACK</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Register-Arguments.html#your_sha256_hashyour_sha256_hash32"><code>TARGET_MUST_PASS_IN_STACK</code>, and <code>TARGET_FUNCTION_ARG</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Misc.html#index-TARGET_005fN_005fFORMAT_005fTYPES-4992"><code>TARGET_N_FORMAT_TYPES</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fNARROW_005fVOLATILE_005fBITFIELD-3967"><code>TARGET_NARROW_VOLATILE_BITFIELD</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="SDB-and-DWARF.html#index-TARGET_005fNO_005fREGISTER_005fALLOCATION-4791"><code>TARGET_NO_REGISTER_ALLOCATION</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fOBJC_005fCONSTRUCT_005fSTRING_005fOBJECT-3908"><code>TARGET_OBJC_CONSTRUCT_STRING_OBJECT</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fOBJC_005fDECLARE_005fCLASS_005fDEFINITION-3910"><code>TARGET_OBJC_DECLARE_CLASS_DEFINITION</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Run_002dtime-Target.html#your_sha256_hashEFERENCE-3909"><code>TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Misc.html#index-TARGET_005fOBJECT_005fSUFFIX-4975"><code>TARGET_OBJECT_SUFFIX</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fOBJFMT_005fCPP_005fBUILTINS-3901"><code>TARGET_OBJFMT_CPP_BUILTINS</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Misc.html#index-TARGET_005fOFFLOAD_005fOPTIONS-5019"><code>TARGET_OFFLOAD_OPTIONS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Scalar-Return.html#index-TARGET_005fOMIT_005fSTRUCT_005fRETURN_005fREG-4277"><code>TARGET_OMIT_STRUCT_RETURN_REG</code></a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Misc.html#index-TARGET_005fOPTF-4989"><code>TARGET_OPTF</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fOPTION_005fDEFAULT_005fPARAMS-3917"><code>TARGET_OPTION_DEFAULT_PARAMS</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fOPTION_005fFUNCTION_005fVERSIONS-4849"><code>TARGET_OPTION_FUNCTION_VERSIONS</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fOPTION_005fINIT_005fSTRUCT-3916"><code>TARGET_OPTION_INIT_STRUCT</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fOPTION_005fOPTIMIZATION_005fTABLE-3915"><code>TARGET_OPTION_OPTIMIZATION_TABLE</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fOPTION_005fOVERRIDE-4848"><code>TARGET_OPTION_OVERRIDE</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fOPTION_005fPOST_005fSTREAM_005fIN-4845"><code>TARGET_OPTION_POST_STREAM_IN</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fOPTION_005fPRAGMA_005fPARSE-4847"><code>TARGET_OPTION_PRAGMA_PARSE</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fOPTION_005fPRINT-4846"><code>TARGET_OPTION_PRINT</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fOPTION_005fRESTORE-4844"><code>TARGET_OPTION_RESTORE</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fOPTION_005fSAVE-4843"><code>TARGET_OPTION_SAVE</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fOPTION_005fVALID_005fATTRIBUTE_005fP-4842"><code>TARGET_OPTION_VALID_ATTRIBUTE_P</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fOS_005fCPP_005fBUILTINS-3900"><code>TARGET_OS_CPP_BUILTINS</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fOVERRIDE_005fOPTIONS_005fAFTER_005fCHANGE-3913"><code>TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Misc.html#index-TARGET_005fOVERRIDES_005fFORMAT_005fATTRIBUTES-4993"><code>TARGET_OVERRIDES_FORMAT_ATTRIBUTES</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#your_sha256_hash994"><code>TARGET_OVERRIDES_FORMAT_ATTRIBUTES_COUNT</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fOVERRIDES_005fFORMAT_005fINIT-4995"><code>TARGET_OVERRIDES_FORMAT_INIT</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fPASS_005fBY_005fREFERENCE-4239"><code>TARGET_PASS_BY_REFERENCE</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="PCH-Target.html#index-TARGET_005fPCH_005fVALID_005fP-4865"><code>TARGET_PCH_VALID_P</code></a>: <a href="PCH-Target.html#PCH-Target">PCH Target</a></li>
<li><a href="Misc.html#index-TARGET_005fPOSIX_005fIO-4933"><code>TARGET_POSIX_IO</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fPREFERRED_005fOUTPUT_005fRELOAD_005fCLASS-4121"><code>TARGET_PREFERRED_OUTPUT_RELOAD_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fPREFERRED_005fRELOAD_005fCLASS-4119"><code>TARGET_PREFERRED_RELOAD_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fPREFERRED_005fRENAME_005fCLASS-4118"><code>TARGET_PREFERRED_RENAME_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="PCH-Target.html#index-TARGET_005fPREPARE_005fPCH_005fSAVE-4867"><code>TARGET_PREPARE_PCH_SAVE</code></a>: <a href="PCH-Target.html#PCH-Target">PCH Target</a></li>
<li><a href="Varargs.html#your_sha256_hash><code>TARGET_PRETEND_OUTGOING_VARARGS_NAMED</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Sections.html#index-TARGET_005fPROFILE_005fBEFORE_005fPROLOGUE-4547"><code>TARGET_PROFILE_BEFORE_PROLOGUE</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fPROMOTE_005fFUNCTION_005fMODE-3937"><code>TARGET_PROMOTE_FUNCTION_MODE</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Stack-Arguments.html#index-TARGET_005fPROMOTE_005fPROTOTYPES-4215"><code>TARGET_PROMOTE_PROTOTYPES</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Misc.html#index-TARGET_005fPROMOTED_005fTYPE-5003"><code>TARGET_PROMOTED_TYPE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Type-Layout.html#index-TARGET_005fPTRMEMFUNC_005fVBIT_005fLOCATION-4040"><code>TARGET_PTRMEMFUNC_VBIT_LOCATION</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Misc.html#index-TARGET_005fRECORD_005fOFFLOAD_005fSYMBOL-5018"><code>TARGET_RECORD_OFFLOAD_SYMBOL</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fREF_005fMAY_005fALIAS_005fERRNO-4261"><code>TARGET_REF_MAY_ALIAS_ERRNO</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Costs.html#index-TARGET_005fREGISTER_005fMOVE_005fCOST-4446"><code>TARGET_REGISTER_MOVE_COST</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fREGISTER_005fPRIORITY-4135"><code>TARGET_REGISTER_PRIORITY</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fREGISTER_005fUSAGE_005fLEVELING_005fP-4136"><code>TARGET_REGISTER_USAGE_LEVELING_P</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Misc.html#index-TARGET_005fRELAXED_005fORDERING-4996"><code>TARGET_RELAXED_ORDERING</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Misc.html#index-TARGET_005fRESOLVE_005fOVERLOADED_005fBUILTIN-4961"><code>TARGET_RESOLVE_OVERLOADED_BUILTIN</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Aggregate-Return.html#index-TARGET_005fRETURN_005fIN_005fMEMORY-4283"><code>TARGET_RETURN_IN_MEMORY</code></a>: <a href="Aggregate-Return.html#Aggregate-Return">Aggregate Return</a></li>
<li><a href="Scalar-Return.html#index-TARGET_005fRETURN_005fIN_005fMSB-4278"><code>TARGET_RETURN_IN_MSB</code></a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Stack-Arguments.html#index-TARGET_005fRETURN_005fPOPS_005fARGS-4226"><code>TARGET_RETURN_POPS_ARGS</code></a>: <a href="Stack-Arguments.html#Stack-Arguments">Stack Arguments</a></li>
<li><a href="Costs.html#index-TARGET_005fRTX_005fCOSTS-4467"><code>TARGET_RTX_COSTS</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fSCALAR_005fMODE_005fSUPPORTED_005fP-4262"><code>TARGET_SCALAR_MODE_SUPPORTED_P</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fADJUST_005fCOST-4471"><code>TARGET_SCHED_ADJUST_COST</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fADJUST_005fPRIORITY-4472"><code>TARGET_SCHED_ADJUST_PRIORITY</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fALLOC_005fSCHED_005fCONTEXT-4499"><code>TARGET_SCHED_ALLOC_SCHED_CONTEXT</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fCLEAR_005fSCHED_005fCONTEXT-4502"><code>TARGET_SCHED_CLEAR_SCHED_CONTEXT</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hash4477"><code>TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fDFA_005fNEW_005fCYCLE-4496"><code>TARGET_SCHED_DFA_NEW_CYCLE</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hash87"><code>TARGET_SCHED_DFA_POST_ADVANCE_CYCLE</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fDFA_005fPOST_005fCYCLE_005fINSN-4484"><code>TARGET_SCHED_DFA_POST_CYCLE_INSN</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hash6"><code>TARGET_SCHED_DFA_PRE_ADVANCE_CYCLE</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fDFA_005fPRE_005fCYCLE_005fINSN-4482"><code>TARGET_SCHED_DFA_PRE_CYCLE_INSN</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fDISPATCH-4509"><code>TARGET_SCHED_DISPATCH</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fDISPATCH_005fDO-4510"><code>TARGET_SCHED_DISPATCH_DO</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fEXPOSED_005fPIPELINE-4511"><code>TARGET_SCHED_EXPOSED_PIPELINE</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fFINISH-4479"><code>TARGET_SCHED_FINISH</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fFINISH_005fGLOBAL-4481"><code>TARGET_SCHED_FINISH_GLOBAL</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hashKTRACK-4492"><code>TARGET_SCHED_FIRST_CYCLE_MULTIPASS_BACKTRACK</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hashIN-4490"><code>TARGET_SCHED_FIRST_CYCLE_MULTIPASS_BEGIN</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hash_005fLOOKAHEAD-4488"><code>TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hash_005fLOOKAHEAD_005fGUARD-4489"><code>TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hash-4493"><code>TARGET_SCHED_FIRST_CYCLE_MULTIPASS_END</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hashI-4495"><code>TARGET_SCHED_FIRST_CYCLE_MULTIPASS_FINI</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hashT-4494"><code>TARGET_SCHED_FIRST_CYCLE_MULTIPASS_INIT</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hashUE-4491"><code>TARGET_SCHED_FIRST_CYCLE_MULTIPASS_ISSUE</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fFREE_005fSCHED_005fCONTEXT-4503"><code>TARGET_SCHED_FREE_SCHED_CONTEXT</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fFUSION_005fPRIORITY-4513"><code>TARGET_SCHED_FUSION_PRIORITY</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fGEN_005fSPEC_005fCHECK-4506"><code>TARGET_SCHED_GEN_SPEC_CHECK</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fH_005fI_005fD_005fEXTENDED-4498"><code>TARGET_SCHED_H_I_D_EXTENDED</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fINIT-4478"><code>TARGET_SCHED_INIT</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hashNSN-4485"><code>TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#your_sha256_hashSN-4483"><code>TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fINIT_005fGLOBAL-4480"><code>TARGET_SCHED_INIT_GLOBAL</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fINIT_005fSCHED_005fCONTEXT-4500"><code>TARGET_SCHED_INIT_SCHED_CONTEXT</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fIS_005fCOSTLY_005fDEPENDENCE-4497"><code>TARGET_SCHED_IS_COSTLY_DEPENDENCE</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fISSUE_005fRATE-4469"><code>TARGET_SCHED_ISSUE_RATE</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fMACRO_005fFUSION_005fP-4475"><code>TARGET_SCHED_MACRO_FUSION_P</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fMACRO_005fFUSION_005fPAIR_005fP-4476"><code>TARGET_SCHED_MACRO_FUSION_PAIR_P</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fNEEDS_005fBLOCK_005fP-4505"><code>TARGET_SCHED_NEEDS_BLOCK_P</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fREASSOCIATION_005fWIDTH-4512"><code>TARGET_SCHED_REASSOCIATION_WIDTH</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fREORDER-4473"><code>TARGET_SCHED_REORDER</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fREORDER2-4474"><code>TARGET_SCHED_REORDER2</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fSET_005fSCHED_005fCONTEXT-4501"><code>TARGET_SCHED_SET_SCHED_CONTEXT</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fSET_005fSCHED_005fFLAGS-4507"><code>TARGET_SCHED_SET_SCHED_FLAGS</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fSMS_005fRES_005fMII-4508"><code>TARGET_SCHED_SMS_RES_MII</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fSPECULATE_005fINSN-4504"><code>TARGET_SCHED_SPECULATE_INSN</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Scheduling.html#index-TARGET_005fSCHED_005fVARIABLE_005fISSUE-4470"><code>TARGET_SCHED_VARIABLE_ISSUE</code></a>: <a href="Scheduling.html#Scheduling">Scheduling</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fSECONDARY_005fRELOAD-4123"><code>TARGET_SECONDARY_RELOAD</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="File-Framework.html#index-TARGET_005fSECTION_005fTYPE_005fFLAGS-4578"><code>TARGET_SECTION_TYPE_FLAGS</code></a>: <a href="File-Framework.html#File-Framework">File Framework</a></li>
<li><a href="Misc.html#index-TARGET_005fSET_005fCURRENT_005fFUNCTION-4974"><code>TARGET_SET_CURRENT_FUNCTION</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fSET_005fDEFAULT_005fTYPE_005fATTRIBUTES-4833"><code>TARGET_SET_DEFAULT_TYPE_ATTRIBUTES</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Tail-Calls.html#index-TARGET_005fSET_005fUP_005fBY_005fPROLOGUE-4319"><code>TARGET_SET_UP_BY_PROLOGUE</code></a>: <a href="Tail-Calls.html#Tail-Calls">Tail Calls</a></li>
<li><a href="Varargs.html#index-TARGET_005fSETUP_005fINCOMING_005fVARARG_005fBOUNDS-4342"><code>TARGET_SETUP_INCOMING_VARARG_BOUNDS</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Varargs.html#index-TARGET_005fSETUP_005fINCOMING_005fVARARGS-4332"><code>TARGET_SETUP_INCOMING_VARARGS</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Misc.html#index-TARGET_005fSHIFT_005fTRUNCATION_005fMASK-4905"><code>TARGET_SHIFT_TRUNCATION_MASK</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fSIMD_005fCLONE_005fADJUST-4419"><code>TARGET_SIMD_CLONE_ADJUST</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#your_sha256_hash005fSIMDLEN-4418"><code>TARGET_SIMD_CLONE_COMPUTE_VECSIZE_AND_SIMDLEN</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fSIMD_005fCLONE_005fUSABLE-4420"><code>TARGET_SIMD_CLONE_USABLE</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Register-Arguments.html#your_sha256_hash_005fP-4266"><code>TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Register-Classes.html#index-TARGET_005fSPILL_005fCLASS-4140"><code>TARGET_SPILL_CLASS</code></a>: <a href="Register-Classes.html#Register-Classes">Register Classes</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fSPLIT_005fCOMPLEX_005fARG-4254"><code>TARGET_SPLIT_COMPLEX_ARG</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Stack-Smashing-Protection.html#index-TARGET_005fSTACK_005fPROTECT_005fFAIL-4323"><code>TARGET_STACK_PROTECT_FAIL</code></a>: <a href="Stack-Smashing-Protection.html#Stack-Smashing-Protection">Stack Smashing Protection</a></li>
<li><a href="Stack-Smashing-Protection.html#index-TARGET_005fSTACK_005fPROTECT_005fGUARD-4322"><code>TARGET_STACK_PROTECT_GUARD</code></a>: <a href="Stack-Smashing-Protection.html#Stack-Smashing-Protection">Stack Smashing Protection</a></li>
<li><a href="Frame-Registers.html#index-TARGET_005fSTATIC_005fCHAIN-4196"><code>TARGET_STATIC_CHAIN</code></a>: <a href="Frame-Registers.html#Frame-Registers">Frame Registers</a></li>
<li><a href="Varargs.html#index-TARGET_005fSTORE_005fBOUNDS_005fFOR_005fARG-4338"><code>TARGET_STORE_BOUNDS_FOR_ARG</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Varargs.html#index-TARGET_005fSTORE_005fRETURNED_005fBOUNDS-4340"><code>TARGET_STORE_RETURNED_BOUNDS</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Varargs.html#index-TARGET_005fSTRICT_005fARGUMENT_005fNAMING-4333"><code>TARGET_STRICT_ARGUMENT_NAMING</code></a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Run_002dtime-Target.html#index-TARGET_005fSTRING_005fOBJECT_005fREF_005fTYPE_005fP-3911"><code>TARGET_STRING_OBJECT_REF_TYPE_P</code></a>: <a href="Run_002dtime-Target.html#Run_002dtime-Target">Run-time Target</a></li>
<li><a href="Sections.html#index-TARGET_005fSTRIP_005fNAME_005fENCODING-4544"><code>TARGET_STRIP_NAME_ENCODING</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Aggregate-Return.html#index-TARGET_005fSTRUCT_005fVALUE_005fRTX-4285"><code>TARGET_STRUCT_VALUE_RTX</code></a>: <a href="Aggregate-Return.html#Aggregate-Return">Aggregate Return</a></li>
<li><a href="Stack-Smashing-Protection.html#index-TARGET_005fSUPPORTS_005fSPLIT_005fSTACK-4324"><code>TARGET_SUPPORTS_SPLIT_STACK</code></a>: <a href="Stack-Smashing-Protection.html#Stack-Smashing-Protection">Stack Smashing Protection</a></li>
<li><a href="Label-Output.html#index-TARGET_005fSUPPORTS_005fWEAK-4641"><code>TARGET_SUPPORTS_WEAK</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Misc.html#index-TARGET_005fSUPPORTS_005fWIDE_005fINT-5020"><code>TARGET_SUPPORTS_WIDE_INT</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Exception-Region-Output.html#your_sha256_hash1"><code>TARGET_TERMINATE_DW2_EH_FRAME_INFO</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Trampolines.html#index-TARGET_005fTRAMPOLINE_005fADJUST_005fADDRESS-4350"><code>TARGET_TRAMPOLINE_ADJUST_ADDRESS</code></a>: <a href="Trampolines.html#Trampolines">Trampolines</a></li>
<li><a href="Trampolines.html#index-TARGET_005fTRAMPOLINE_005fINIT-4349"><code>TARGET_TRAMPOLINE_INIT</code></a>: <a href="Trampolines.html#Trampolines">Trampolines</a></li>
<li><a href="Misc.html#index-TARGET_005fUNSPEC_005fMAY_005fTRAP_005fP-4973"><code>TARGET_UNSPEC_MAY_TRAP_P</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Exception-Region-Output.html#index-TARGET_005fUNWIND_005fTABLES_005fDEFAULT-4727"><code>TARGET_UNWIND_TABLES_DEFAULT</code></a>: <a href="Exception-Region-Output.html#Exception-Region-Output">Exception Region Output</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fUNWIND_005fWORD_005fMODE-3975"><code>TARGET_UNWIND_WORD_MODE</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Misc.html#index-TARGET_005fUPDATE_005fSTACK_005fBOUNDARY-5008"><code>TARGET_UPDATE_STACK_BOUNDARY</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Anchored-Addresses.html#index-TARGET_005fUSE_005fANCHORS_005fFOR_005fSYMBOL_005fP-4426"><code>TARGET_USE_ANCHORS_FOR_SYMBOL_P</code></a>: <a href="Anchored-Addresses.html#Anchored-Addresses">Anchored Addresses</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fUSE_005fBLOCKS_005fFOR_005fCONSTANT_005fP-4399"><code>TARGET_USE_BLOCKS_FOR_CONSTANT_P</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fUSE_005fBLOCKS_005fFOR_005fDECL_005fP-4400"><code>TARGET_USE_BLOCKS_FOR_DECL_P</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Costs.html#your_sha256_hash4453"><code>TARGET_USE_BY_PIECES_INFRASTRUCTURE_P</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Misc.html#index-TARGET_005fUSE_005fJCR_005fSECTION-5005"><code>TARGET_USE_JCR_SECTION</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fUSE_005fPSEUDO_005fPIC_005fREG-4236"><code>TARGET_USE_PSEUDO_PIC_REG</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Exception-Handling.html#index-TARGET_005fUSES_005fWEAK_005fUNWIND_005fINFO-4178"><code>TARGET_USES_WEAK_UNWIND_INFO</code></a>: <a href="Exception-Handling.html#Exception-Handling">Exception Handling</a></li>
<li><a href="Target-Attributes.html#index-TARGET_005fVALID_005fDLLIMPORT_005fATTRIBUTE_005fP-4837"><code>TARGET_VALID_DLLIMPORT_ATTRIBUTE_P</code></a>: <a href="Target-Attributes.html#Target-Attributes">Target Attributes</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fVALID_005fPOINTER_005fMODE-4260"><code>TARGET_VALID_POINTER_MODE</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Storage-Layout.html#index-TARGET_005fVECTOR_005fALIGNMENT-3957"><code>TARGET_VECTOR_ALIGNMENT</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Register-Arguments.html#index-TARGET_005fVECTOR_005fMODE_005fSUPPORTED_005fP-4263"><code>TARGET_VECTOR_MODE_SUPPORTED_P</code></a>: <a href="Register-Arguments.html#Register-Arguments">Register Arguments</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fVECTORIZE_005fADD_005fSTMT_005fCOST-4412"><code>TARGET_VECTORIZE_ADD_STMT_COST</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#your_sha256_hashS-4410"><code>TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fVECTORIZE_005fBUILTIN_005fCONVERSION-4406"><code>TARGET_VECTORIZE_BUILTIN_CONVERSION</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fVECTORIZE_005fBUILTIN_005fGATHER-4417"><code>TARGET_VECTORIZE_BUILTIN_GATHER</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#your_sha256_hash-4402"><code>TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fVECTORIZE_005fBUILTIN_005fTM_005fLOAD-4415"><code>TARGET_VECTORIZE_BUILTIN_TM_LOAD</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fVECTORIZE_005fBUILTIN_005fTM_005fSTORE-4416"><code>TARGET_VECTORIZE_BUILTIN_TM_STORE</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#your_sha256_hashT-4403"><code>TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#your_sha256_hashON-4407"><code>TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fVECTORIZE_005fDESTROY_005fCOST_005fDATA-4414"><code>TARGET_VECTORIZE_DESTROY_COST_DATA</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fVECTORIZE_005fFINISH_005fCOST-4413"><code>TARGET_VECTORIZE_FINISH_COST</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fVECTORIZE_005fINIT_005fCOST-4411"><code>TARGET_VECTORIZE_INIT_COST</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#index-TARGET_005fVECTORIZE_005fPREFERRED_005fSIMD_005fMODE-4409"><code>TARGET_VECTORIZE_PREFERRED_SIMD_MODE</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#your_sha256_hashNT-4408"><code>TARGET_VECTORIZE_SUPPORT_VECTOR_MISALIGNMENT</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#your_sha256_hash5"><code>TARGET_VECTORIZE_VEC_PERM_CONST_OK</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Addressing-Modes.html#your_sha256_hashE-4404"><code>TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE</code></a>: <a href="Addressing-Modes.html#Addressing-Modes">Addressing Modes</a></li>
<li><a href="Type-Layout.html#index-TARGET_005fVTABLE_005fDATA_005fENTRY_005fDISTANCE-4043"><code>TARGET_VTABLE_DATA_ENTRY_DISTANCE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-TARGET_005fVTABLE_005fENTRY_005fALIGN-4042"><code>TARGET_VTABLE_ENTRY_ALIGN</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-TARGET_005fVTABLE_005fUSES_005fDESCRIPTORS-4041"><code>TARGET_VTABLE_USES_DESCRIPTORS</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="SDB-and-DWARF.html#index-TARGET_005fWANT_005fDEBUG_005fPUB_005fSECTIONS-4787"><code>TARGET_WANT_DEBUG_PUB_SECTIONS</code></a>: <a href="SDB-and-DWARF.html#SDB-and-DWARF">SDB and DWARF</a></li>
<li><a href="Tail-Calls.html#index-TARGET_005fWARN_005fFUNC_005fRETURN-4320"><code>TARGET_WARN_FUNC_RETURN</code></a>: <a href="Tail-Calls.html#Tail-Calls">Tail Calls</a></li>
<li><a href="Label-Output.html#index-TARGET_005fWEAK_005fNOT_005fIN_005fARCHIVE_005fTOC-4645"><code>TARGET_WEAK_NOT_IN_ARCHIVE_TOC</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Target-Structure.html#index-targetm-3856"><code>targetm</code></a>: <a href="Target-Structure.html#Target-Structure">Target Structure</a></li>
<li><a href="Makefile.html#index-targets_002c-makefile-1665">targets, makefile</a>: <a href="Makefile.html#Makefile">Makefile</a></li>
<li><a href="Machine-Modes.html#index-TCmode-2776"><code>TCmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-TDmode-2748"><code>TDmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Declarations.html#index-TEMPLATE_005fDECL-1805"><code>TEMPLATE_DECL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Temporaries.html#index-Temporaries-2139">Temporaries</a>: <a href="Temporaries.html#Temporaries">Temporaries</a></li>
<li><a href="Initialization.html#index-termination-routines-4665">termination routines</a>: <a href="Initialization.html#Initialization">Initialization</a></li>
<li><a href="C-Constraint-Interface.html#index-testing-constraints-3371">testing constraints</a>: <a href="C-Constraint-Interface.html#C-Constraint-Interface">C Constraint Interface</a></li>
<li><a href="Sections.html#index-TEXT_005fSECTION_005fASM_005fOP-4514"><code>TEXT_SECTION_ASM_OP</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Machine-Modes.html#index-TFmode-2749"><code>TFmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="The-Language.html#index-The-Language-5126">The Language</a>: <a href="The-Language.html#The-Language">The Language</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-THEN_005fCLAUSE-2113"><code>THEN_CLAUSE</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Driver.html#index-THREAD_005fMODEL_005fSPEC-3876"><code>THREAD_MODEL_SPEC</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-THROW_005fEXPR-1866"><code>THROW_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Declarations.html#index-THUNK_005fDECL-1806"><code>THUNK_DECL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Declarations.html#index-THUNK_005fDELTA-1807"><code>THUNK_DELTA</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Machine-Modes.html#index-TImode-2737"><code>TImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Insns.html#your_sha256_hash7d-3101"><code>TImode</code>, in <code>insn</code></a>: <a href="Insns.html#Insns">Insns</a></li>
<li><a href="Sections.html#index-TLS_005fCOMMON_005fASM_005fOP-4522"><code>TLS_COMMON_ASM_OP</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Sections.html#index-TLS_005fSECTION_005fASM_005fFLAG-4523"><code>TLS_SECTION_ASM_FLAG</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Target-Macros.html#index-g_t_0040file_007btm_002eh_007d-macros-3853"><samp><span class="file">tm.h</span></samp> macros</a>: <a href="Target-Macros.html#Target-Macros">Target Macros</a></li>
<li><a href="Machine-Modes.html#index-TQFmode-2742"><code>TQFmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-TQmode-2754"><code>TQmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Trampolines.html#index-TRAMPOLINE_005fALIGNMENT-4348"><code>TRAMPOLINE_ALIGNMENT</code></a>: <a href="Trampolines.html#Trampolines">Trampolines</a></li>
<li><a href="Trampolines.html#index-TRAMPOLINE_005fSECTION-4346"><code>TRAMPOLINE_SECTION</code></a>: <a href="Trampolines.html#Trampolines">Trampolines</a></li>
<li><a href="Trampolines.html#index-TRAMPOLINE_005fSIZE-4347"><code>TRAMPOLINE_SIZE</code></a>: <a href="Trampolines.html#Trampolines">Trampolines</a></li>
<li><a href="Trampolines.html#index-trampolines-for-nested-functions-4343">trampolines for nested functions</a>: <a href="Trampolines.html#Trampolines">Trampolines</a></li>
<li><a href="Trampolines.html#index-TRANSFER_005fFROM_005fTRAMPOLINE-4352"><code>TRANSFER_FROM_TRAMPOLINE</code></a>: <a href="Trampolines.html#Trampolines">Trampolines</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007btrap_007d-instruction-pattern-3615"><code>trap</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Tree-overview.html#index-tree-1713">tree</a>: <a href="Tree-overview.html#Tree-overview">Tree overview</a></li>
<li><a href="Macros-and-Functions.html#index-tree-1715">tree</a>: <a href="Macros-and-Functions.html#Macros-and-Functions">Macros and Functions</a></li>
<li><a href="Tree-SSA.html#index-Tree-SSA-2505">Tree SSA</a>: <a href="Tree-SSA.html#Tree-SSA">Tree SSA</a></li>
<li><a href="Macros-and-Functions.html#index-TREE_005fCHAIN-1716"><code>TREE_CHAIN</code></a>: <a href="Macros-and-Functions.html#Macros-and-Functions">Macros and Functions</a></li>
<li><a href="Tree-overview.html#index-TREE_005fCODE-1714"><code>TREE_CODE</code></a>: <a href="Tree-overview.html#Tree-overview">Tree overview</a></li>
<li><a href="Constant-expressions.html#index-tree_005ffits_005fshwi_005fp-1828"><code>tree_fits_shwi_p</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Constant-expressions.html#index-tree_005ffits_005fuhwi_005fp-1827"><code>tree_fits_uhwi_p</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Constant-expressions.html#index-TREE_005fINT_005fCST_005fELT-1832"><code>TREE_INT_CST_ELT</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Constant-expressions.html#index-tree_005fint_005fcst_005fequal-1826"><code>tree_int_cst_equal</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Constant-expressions.html#index-TREE_005fINT_005fCST_005fLOW-1833"><code>TREE_INT_CST_LOW</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Constant-expressions.html#index-tree_005fint_005fcst_005flt-1825"><code>tree_int_cst_lt</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Constant-expressions.html#index-TREE_005fINT_005fCST_005fNUNITS-1831"><code>TREE_INT_CST_NUNITS</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Containers.html#index-TREE_005fLIST-1736"><code>TREE_LIST</code></a>: <a href="Containers.html#Containers">Containers</a></li>
<li><a href="Expression-trees.html#index-TREE_005fOPERAND-1822"><code>TREE_OPERAND</code></a>: <a href="Expression-trees.html#Expression-trees">Expression trees</a></li>
<li><a href="Function-Properties.html#index-TREE_005fPUBLIC-1983"><code>TREE_PUBLIC</code></a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Function-Basics.html#index-TREE_005fPUBLIC-1969"><code>TREE_PUBLIC</code></a>: <a href="Function-Basics.html#Function-Basics">Function Basics</a></li>
<li><a href="Containers.html#index-TREE_005fPURPOSE-1738"><code>TREE_PURPOSE</code></a>: <a href="Containers.html#Containers">Containers</a></li>
<li><a href="Function-Properties.html#index-TREE_005fREADONLY-1986"><code>TREE_READONLY</code></a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Macros-and-Functions.html#index-tree_005fsize-1718"><code>tree_size</code></a>: <a href="Macros-and-Functions.html#Macros-and-Functions">Macros and Functions</a></li>
<li><a href="Function-Properties.html#index-TREE_005fSTATIC-1984"><code>TREE_STATIC</code></a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Constant-expressions.html#index-TREE_005fSTRING_005fLENGTH-1839"><code>TREE_STRING_LENGTH</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Constant-expressions.html#index-TREE_005fSTRING_005fPOINTER-1840"><code>TREE_STRING_POINTER</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Function-Properties.html#index-TREE_005fTHIS_005fVOLATILE-1985"><code>TREE_THIS_VOLATILE</code></a>: <a href="Function-Properties.html#Function-Properties">Function Properties</a></li>
<li><a href="Constant-expressions.html#index-tree_005fto_005fshwi-1830"><code>tree_to_shwi</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Constant-expressions.html#index-tree_005fto_005fuhwi-1829"><code>tree_to_uhwi</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Types.html#index-TREE_005fTYPE-1777"><code>TREE_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Expression-trees.html#index-TREE_005fTYPE-1821"><code>TREE_TYPE</code></a>: <a href="Expression-trees.html#Expression-trees">Expression trees</a></li>
<li><a href="Working-with-declarations.html#index-TREE_005fTYPE-1813"><code>TREE_TYPE</code></a>: <a href="Working-with-declarations.html#Working-with-declarations">Working with declarations</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TREE_005fTYPE-2010"><code>TREE_TYPE</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Function-Basics.html#index-TREE_005fTYPE-1978"><code>TREE_TYPE</code></a>: <a href="Function-Basics.html#Function-Basics">Function Basics</a></li>
<li><a href="Macros-and-Functions.html#index-TREE_005fTYPE-1717"><code>TREE_TYPE</code></a>: <a href="Macros-and-Functions.html#Macros-and-Functions">Macros and Functions</a></li>
<li><a href="Containers.html#index-TREE_005fVALUE-1739"><code>TREE_VALUE</code></a>: <a href="Containers.html#Containers">Containers</a></li>
<li><a href="Containers.html#index-TREE_005fVEC-1737"><code>TREE_VEC</code></a>: <a href="Containers.html#Containers">Containers</a></li>
<li><a href="Containers.html#index-TREE_005fVEC_005fELT-1741"><code>TREE_VEC_ELT</code></a>: <a href="Containers.html#Containers">Containers</a></li>
<li><a href="Containers.html#index-TREE_005fVEC_005fLENGTH-1740"><code>TREE_VEC_LENGTH</code></a>: <a href="Containers.html#Containers">Containers</a></li>
<li><a href="Misc.html#index-TRULY_005fNOOP_005fTRUNCATION-4906"><code>TRULY_NOOP_TRUNCATION</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-TRUNC_005fDIV_005fEXPR-1883"><code>TRUNC_DIV_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-TRUNC_005fMOD_005fEXPR-1887"><code>TRUNC_MOD_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Conversions.html#index-truncate-3015"><code>truncate</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d2_007d-instruction-pattern-3555"><code>trunc</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-TRUTH_005fAND_005fEXPR-1874"><code>TRUTH_AND_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-TRUTH_005fANDIF_005fEXPR-1872"><code>TRUTH_ANDIF_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-TRUTH_005fNOT_005fEXPR-1851"><code>TRUTH_NOT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-TRUTH_005fOR_005fEXPR-1875"><code>TRUTH_OR_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-TRUTH_005fORIF_005fEXPR-1873"><code>TRUTH_ORIF_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-TRUTH_005fXOR_005fEXPR-1876"><code>TRUTH_XOR_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-TRY_005fBLOCK-2122"><code>TRY_BLOCK</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-TRY_005fHANDLERS-2124"><code>TRY_HANDLERS</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-TRY_005fSTMTS-2123"><code>TRY_STMTS</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Tuple-specific-accessors.html#index-Tuple-specific-accessors-2202">Tuple specific accessors</a>: <a href="Tuple-specific-accessors.html#Tuple-specific-accessors">Tuple specific accessors</a></li>
<li><a href="Tuple-representation.html#index-tuples-2133">tuples</a>: <a href="Tuple-representation.html#Tuple-representation">Tuple representation</a></li>
<li><a href="Types.html#index-type-1742">type</a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Declarations.html#index-type-declaration-1795">type declaration</a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fALIGN-2004"><code>TYPE_ALIGN</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fALIGN-1772"><code>TYPE_ALIGN</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fALIGN-2022"><code>TYPE_ALIGN</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fARG_005fTYPES-1774"><code>TYPE_ARG_TYPES</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fARG_005fTYPES-2006"><code>TYPE_ARG_TYPES</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Label-Output.html#index-TYPE_005fASM_005fOP-4625"><code>TYPE_ASM_OP</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Attributes.html#index-TYPE_005fATTRIBUTES-1819"><code>TYPE_ATTRIBUTES</code></a>: <a href="Attributes.html#Attributes">Attributes</a></li>
<li><a href="Classes.html#index-TYPE_005fBINFO-2043"><code>TYPE_BINFO</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fBUILT_005fIN-2027"><code>TYPE_BUILT_IN</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fCANONICAL-1782"><code>TYPE_CANONICAL</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types.html#index-TYPE_005fCONTEXT-1778"><code>TYPE_CONTEXT</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fCONTEXT-2011"><code>TYPE_CONTEXT</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Declarations.html#index-TYPE_005fDECL-1798"><code>TYPE_DECL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Types.html#index-TYPE_005fFIELDS-1781"><code>TYPE_FIELDS</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fFIELDS-2014"><code>TYPE_FIELDS</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Classes.html#index-TYPE_005fFIELDS-2045"><code>TYPE_FIELDS</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Classes.html#index-TYPE_005fHAS_005fARRAY_005fNEW_005fOPERATOR-2055"><code>TYPE_HAS_ARRAY_NEW_OPERATOR</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Classes.html#index-TYPE_005fHAS_005fDEFAULT_005fCONSTRUCTOR-2050"><code>TYPE_HAS_DEFAULT_CONSTRUCTOR</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Classes.html#index-TYPE_005fHAS_005fMUTABLE_005fP-2052"><code>TYPE_HAS_MUTABLE_P</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Classes.html#index-TYPE_005fHAS_005fNEW_005fOPERATOR-2054"><code>TYPE_HAS_NEW_OPERATOR</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Types.html#index-TYPE_005fMAIN_005fVARIANT-1785"><code>TYPE_MAIN_VARIANT</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fMAIN_005fVARIANT-2001"><code>TYPE_MAIN_VARIANT</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fMAX_005fVALUE-1750"><code>TYPE_MAX_VALUE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fMETHOD_005fBASETYPE-2007"><code>TYPE_METHOD_BASETYPE</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fMETHOD_005fBASETYPE-1775"><code>TYPE_METHOD_BASETYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Classes.html#index-TYPE_005fMETHODS-2047"><code>TYPE_METHODS</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Types.html#index-TYPE_005fMIN_005fVALUE-1749"><code>TYPE_MIN_VALUE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fNAME-2012"><code>TYPE_NAME</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fNAME-1779"><code>TYPE_NAME</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fNAME-2023"><code>TYPE_NAME</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fNAME-1788"><code>TYPE_NAME</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-TYPE_005fNOTHROW_005fP-2089"><code>TYPE_NOTHROW_P</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Types.html#index-TYPE_005fOFFSET_005fBASETYPE-1776"><code>TYPE_OFFSET_BASETYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fOFFSET_005fBASETYPE-2009"><code>TYPE_OFFSET_BASETYPE</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Label-Output.html#index-TYPE_005fOPERAND_005fFMT-4626"><code>TYPE_OPERAND_FMT</code></a>: <a href="Label-Output.html#Label-Output">Label Output</a></li>
<li><a href="Classes.html#index-TYPE_005fOVERLOADS_005fARRAY_005fREF-2057"><code>TYPE_OVERLOADS_ARRAY_REF</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Classes.html#index-TYPE_005fOVERLOADS_005fARROW-2058"><code>TYPE_OVERLOADS_ARROW</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Classes.html#index-TYPE_005fOVERLOADS_005fCALL_005fEXPR-2056"><code>TYPE_OVERLOADS_CALL_EXPR</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Classes.html#index-TYPE_005fPOLYMORPHIC_005fP-2049"><code>TYPE_POLYMORPHIC_P</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fPRECISION-2005"><code>TYPE_PRECISION</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fPRECISION-1773"><code>TYPE_PRECISION</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fPTR_005fP-2029"><code>TYPE_PTR_P</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fPTRDATAMEM_005fP-2028"><code>TYPE_PTRDATAMEM_P</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fPTRFN_005fP-2030"><code>TYPE_PTRFN_P</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fPTROB_005fP-2031"><code>TYPE_PTROB_P</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fPTROBV_005fP-2015"><code>TYPE_PTROBV_P</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fQUAL_005fCONST-1766"><code>TYPE_QUAL_CONST</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fQUAL_005fCONST-1998"><code>TYPE_QUAL_CONST</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fQUAL_005fRESTRICT-1768"><code>TYPE_QUAL_RESTRICT</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fQUAL_005fRESTRICT-2000"><code>TYPE_QUAL_RESTRICT</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fQUAL_005fVOLATILE-1999"><code>TYPE_QUAL_VOLATILE</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fQUAL_005fVOLATILE-1767"><code>TYPE_QUAL_VOLATILE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Functions-for-C_002b_002b.html#index-TYPE_005fRAISES_005fEXCEPTIONS-2088"><code>TYPE_RAISES_EXCEPTIONS</code></a>: <a href="Functions-for-C_002b_002b.html#Functions-for-C_002b_002b">Functions for C++</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fSIZE-2003"><code>TYPE_SIZE</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPE_005fSIZE-1771"><code>TYPE_SIZE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types.html#index-TYPE_005fSTRUCTURAL_005fEQUALITY_005fP-1790"><code>TYPE_STRUCTURAL_EQUALITY_P</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types.html#index-TYPE_005fUNQUALIFIED-1765"><code>TYPE_UNQUALIFIED</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPE_005fUNQUALIFIED-1997"><code>TYPE_UNQUALIFIED</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Classes.html#index-TYPE_005fVFIELD-2046"><code>TYPE_VFIELD</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPENAME_005fTYPE-1994"><code>TYPENAME_TYPE</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types.html#index-TYPENAME_005fTYPE_005fFULLNAME-1780"><code>TYPENAME_TYPE_FULLNAME</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPENAME_005fTYPE_005fFULLNAME-2013"><code>TYPENAME_TYPE_FULLNAME</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Types-for-C_002b_002b.html#index-TYPEOF_005fTYPE-1995"><code>TYPEOF_TYPE</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Machine-Modes.html#index-UDAmode-2766"><code>UDAmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Arithmetic.html#index-udiv-2921"><code>udiv</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3411"><code>udiv</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashion-pattern-3494"><code>udivmod</code><var>m</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashtruction-pattern-3443"><code>udot_prod</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Machine-Modes.html#index-UDQmode-2758"><code>UDQmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-UHAmode-2764"><code>UHAmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-UHQmode-2756"><code>UHQmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Type-Layout.html#index-UINT16_005fTYPE-4019"><code>UINT16_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINT32_005fTYPE-4020"><code>UINT32_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINT64_005fTYPE-4021"><code>UINT64_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINT8_005fTYPE-4018"><code>UINT8_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINT_005fFAST16_005fTYPE-4035"><code>UINT_FAST16_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINT_005fFAST32_005fTYPE-4036"><code>UINT_FAST32_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINT_005fFAST64_005fTYPE-4037"><code>UINT_FAST64_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINT_005fFAST8_005fTYPE-4034"><code>UINT_FAST8_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINT_005fLEAST16_005fTYPE-4027"><code>UINT_LEAST16_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINT_005fLEAST32_005fTYPE-4028"><code>UINT_LEAST32_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINT_005fLEAST64_005fTYPE-4029"><code>UINT_LEAST64_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINT_005fLEAST8_005fTYPE-4026"><code>UINT_LEAST8_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINTMAX_005fTYPE-4012"><code>UINTMAX_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-UINTPTR_005fTYPE-4039"><code>UINTPTR_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d4_007d-instruction-pattern-3486"><code>umadd</code><var>m</var><var>n</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Arithmetic.html#index-umax-2934"><code>umax</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3416"><code>umax</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Arithmetic.html#index-umin-2933"><code>umin</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3415"><code>umin</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Arithmetic.html#index-umod-2926"><code>umod</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-pattern-3414"><code>umod</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d4_007d-instruction-pattern-3490"><code>umsub</code><var>m</var><var>n</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bumulhisi3_007d-instruction-pattern-3478"><code>umulhisi3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd-instruction-pattern-3484"><code>umul</code><var>m</var><code>3_highpart</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bumulqihi3_007d-instruction-pattern-3477"><code>umulqihi3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007bumulsidi3_007d-instruction-pattern-3479"><code>umulsidi3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3423"><code>umulv</code><var>m</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Flags.html#index-unchanging-2722"><code>unchanging</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashl_005finsn_007d-2606"><code>unchanging</code>, in <code>call_insn</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashyour_sha256_hashode_007binsn_007d-2619"><code>unchanging</code>, in <code>jump_insn</code>, <code>call_insn</code> and <code>insn</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash_007d-2674"><code>unchanging</code>, in <code>mem</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashreg_007d-2692"><code>unchanging</code>, in <code>subreg</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashbol_005fref_007d-2603"><code>unchanging</code>, in <code>symbol_ref</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-UNEQ_005fEXPR-1904"><code>UNEQ_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-UNGE_005fEXPR-1903"><code>UNGE_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-UNGT_005fEXPR-1902"><code>UNGT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Types.html#index-UNION_005fTYPE-1762"><code>UNION_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Classes.html#index-UNION_005fTYPE-2041"><code>UNION_TYPE</code></a>: <a href="Classes.html#Classes">Classes</a></li>
<li><a href="Interface.html#index-unions_002c-returning-11">unions, returning</a>: <a href="Interface.html#Interface">Interface</a></li>
<li><a href="Storage-Layout.html#index-UNITS_005fPER_005fWORD-3932"><code>UNITS_PER_WORD</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Types.html#index-UNKNOWN_005fTYPE-1763"><code>UNKNOWN_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Types-for-C_002b_002b.html#index-UNKNOWN_005fTYPE-1993"><code>UNKNOWN_TYPE</code></a>: <a href="Types-for-C_002b_002b.html#Types-for-C_002b_002b">Types for C++</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-UNLE_005fEXPR-1901"><code>UNLE_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Sections.html#index-UNLIKELY_005fEXECUTED_005fTEXT_005fSECTION_005fNAME-4516"><code>UNLIKELY_EXECUTED_TEXT_SECTION_NAME</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-UNLT_005fEXPR-1900"><code>UNLT_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-UNORDERED_005fEXPR-1899"><code>UNORDERED_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Sharing.html#index-unshare_005fall_005frtl-3150"><code>unshare_all_rtl</code></a>: <a href="Sharing.html#Sharing">Sharing</a></li>
<li><a href="Arithmetic.html#index-unsigned-division-2922">unsigned division</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-unsigned-division-with-unsigned-saturation-2923">unsigned division with unsigned saturation</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Comparisons.html#index-unsigned-greater-than-2994">unsigned greater than</a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Comparisons.html#index-unsigned-less-than-2990">unsigned less than</a>: <a href="Comparisons.html#Comparisons">Comparisons</a></li>
<li><a href="Arithmetic.html#index-unsigned-minimum-and-maximum-2935">unsigned minimum and maximum</a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Conversions.html#index-unsigned_005ffix-3022"><code>unsigned_fix</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Conversions.html#index-unsigned_005ffloat-3020"><code>unsigned_float</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Conversions.html#index-unsigned_005ffract_005fconvert-3025"><code>unsigned_fract_convert</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Conversions.html#index-unsigned_005fsat_005ffract-3026"><code>unsigned_sat_fract</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Constant-Definitions.html#index-unspec-3833"><code>unspec</code></a>: <a href="Constant-Definitions.html#Constant-Definitions">Constant Definitions</a></li>
<li><a href="Side-Effects.html#index-unspec-3047"><code>unspec</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Constant-Definitions.html#index-unspec_005fvolatile-3832"><code>unspec_volatile</code></a>: <a href="Constant-Definitions.html#Constant-Definitions">Constant Definitions</a></li>
<li><a href="Side-Effects.html#index-unspec_005fvolatile-3048"><code>unspec_volatile</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Standard-Names.html#your_sha256_hash-3580"><code>untyped_call</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashrn-3585"><code>untyped_return</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Filesystem.html#your_sha256_hash7bpath_007d_0029-5038"><code>UPDATE_PATH_HOST_CANONICALIZE (</code><var>path</var><code>)</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="SSA.html#index-update_005fssa-2523"><code>update_ssa</code></a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="SSA-Operands.html#index-update_005fstmt-2511"><code>update_stmt</code></a>: <a href="SSA-Operands.html#SSA-Operands">SSA Operands</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-update_005fstmt-2199"><code>update_stmt</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Manipulating-GIMPLE-statements.html#index-update_005fstmt_005fif_005fmodified-2200"><code>update_stmt_if_modified</code></a>: <a href="Manipulating-GIMPLE-statements.html#Manipulating-GIMPLE-statements">Manipulating GIMPLE statements</a></li>
<li><a href="Machine-Modes.html#index-UQQmode-2755"><code>UQQmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Arithmetic.html#index-us_005fashift-2950"><code>us_ashift</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-us_005fminus-2894"><code>us_minus</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-us_005fmult-2909"><code>us_mult</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-us_005fneg-2903"><code>us_neg</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Arithmetic.html#index-us_005fplus-2886"><code>us_plus</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Conversions.html#index-us_005ftruncate-3017"><code>us_truncate</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3402"><code>usadd</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3445"><code>usad</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Machine-Modes.html#index-USAmode-2765"><code>USAmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Standard-Names.html#your_sha256_hashon-pattern-3497"><code>usashl</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3412"><code>usdiv</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Side-Effects.html#index-use-3041"><code>use</code></a>: <a href="Side-Effects.html#Side-Effects">Side Effects</a></li>
<li><a href="Host-Misc.html#index-USE_005fC_005fALLOCA-5046"><code>USE_C_ALLOCA</code></a>: <a href="Host-Misc.html#Host-Misc">Host Misc</a></li>
<li><a href="Driver.html#index-USE_005fLD_005fAS_005fNEEDED-3872"><code>USE_LD_AS_NEEDED</code></a>: <a href="Driver.html#Driver">Driver</a></li>
<li><a href="Costs.html#index-USE_005fLOAD_005fPOST_005fDECREMENT-4458"><code>USE_LOAD_POST_DECREMENT</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Costs.html#index-USE_005fLOAD_005fPOST_005fINCREMENT-4457"><code>USE_LOAD_POST_INCREMENT</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Costs.html#index-USE_005fLOAD_005fPRE_005fDECREMENT-4460"><code>USE_LOAD_PRE_DECREMENT</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Costs.html#index-USE_005fLOAD_005fPRE_005fINCREMENT-4459"><code>USE_LOAD_PRE_INCREMENT</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Sections.html#index-USE_005fSELECT_005fSECTION_005fFOR_005fFUNCTIONS-4535"><code>USE_SELECT_SECTION_FOR_FUNCTIONS</code></a>: <a href="Sections.html#Sections">Sections</a></li>
<li><a href="Costs.html#index-USE_005fSTORE_005fPOST_005fDECREMENT-4462"><code>USE_STORE_POST_DECREMENT</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Costs.html#index-USE_005fSTORE_005fPOST_005fINCREMENT-4461"><code>USE_STORE_POST_INCREMENT</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Costs.html#index-USE_005fSTORE_005fPRE_005fDECREMENT-4464"><code>USE_STORE_PRE_DECREMENT</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Costs.html#index-USE_005fSTORE_005fPRE_005fINCREMENT-4463"><code>USE_STORE_PRE_INCREMENT</code></a>: <a href="Costs.html#Costs">Costs</a></li>
<li><a href="Flags.html#index-used-2724"><code>used</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash5fref_007d-2702"><code>used</code>, in <code>symbol_ref</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="GTY-Options.html#index-user-5093"><code>user</code></a>: <a href="GTY-Options.html#GTY-Options">GTY Options</a></li>
<li><a href="User-GC.html#index-user-gc-5094">user gc</a>: <a href="User-GC.html#User-GC">User GC</a></li>
<li><a href="Instruction-Output.html#index-USER_005fLABEL_005fPREFIX-4705"><code>USER_LABEL_PREFIX</code></a>: <a href="Instruction-Output.html#Instruction-Output">Instruction Output</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-USING_005fSTMT-2127"><code>USING_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Standard-Names.html#your_sha256_hash07d4_007d-instruction-pattern-3488"><code>usmadd</code><var>m</var><var>n</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash07d4_007d-instruction-pattern-3492"><code>usmsub</code><var>m</var><var>n</var><code>4</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007busmulhisi3_007d-instruction-pattern-3481"><code>usmulhisi3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3408"><code>usmul</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007busmulqihi3_007d-instruction-pattern-3480"><code>usmulqihi3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#index-g_t_0040code_007busmulsidi3_007d-instruction-pattern-3482"><code>usmulsidi3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3510"><code>usneg</code><var>m</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Machine-Modes.html#index-USQmode-2757"><code>USQmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3405"><code>ussub</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashnstruction-pattern-3447"><code>usum_widen</code><var>m3</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Machine-Modes.html#index-UTAmode-2767"><code>UTAmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-UTQmode-2759"><code>UTQmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bV_007d-in-constraint-3312">`<samp><span class="samp">V</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Unary-and-Binary-Expressions.html#index-VA_005fARG_005fEXPR-1920"><code>VA_ARG_EXPR</code></a>: <a href="Unary-and-Binary-Expressions.html#Unary-and-Binary-Expressions">Unary and Binary Expressions</a></li>
<li><a href="Scalar-Return.html#index-values_002c-returned-by-functions-4268">values, returned by functions</a>: <a href="Scalar-Return.html#Scalar-Return">Scalar Return</a></li>
<li><a href="Declarations.html#index-VAR_005fDECL-1799"><code>VAR_DECL</code></a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Debug-Information.html#index-var_005flocation-3065"><code>var_location</code></a>: <a href="Debug-Information.html#Debug-Information">Debug Information</a></li>
<li><a href="Varargs.html#index-varargs-implementation-4327">varargs implementation</a>: <a href="Varargs.html#Varargs">Varargs</a></li>
<li><a href="Declarations.html#index-variable-1794">variable</a>: <a href="Declarations.html#Declarations">Declarations</a></li>
<li><a href="Debug-Information.html#index-Variable-Location-Debug-Information-in-RTL-3064">Variable Location Debug Information in RTL</a>: <a href="Debug-Information.html#Debug-Information">Debug Information</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3502"><code>vashl</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3503"><code>vashr</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash7d_007d-instruction-pattern-3396"><code>vcond</code><var>m</var><var>n</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Vector-Operations.html#index-vec_005fconcat-3008"><code>vec_concat</code></a>: <a href="Vector-Operations.html#Vector-Operations">Vector Operations</a></li>
<li><a href="Vector-Operations.html#index-vec_005fduplicate-3009"><code>vec_duplicate</code></a>: <a href="Vector-Operations.html#Vector-Operations">Vector Operations</a></li>
<li><a href="Standard-Names.html#your_sha256_hashnstruction-pattern-3394"><code>vec_extract</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashruction-pattern-3395"><code>vec_init</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_0040var_007bn_007d_007d-instruction-pattern-3391"><code>vec_load_lanes</code><var>m</var><var>n</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Vectors.html#index-VEC_005fLSHIFT_005fEXPR-1924"><code>VEC_LSHIFT_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Vector-Operations.html#index-vec_005fmerge-3006"><code>vec_merge</code></a>: <a href="Vector-Operations.html#Vector-Operations">Vector Operations</a></li>
<li><a href="Vectors.html#index-VEC_005fPACK_005fFIX_005fTRUNC_005fEXPR-1934"><code>VEC_PACK_FIX_TRUNC_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Vectors.html#index-VEC_005fPACK_005fSAT_005fEXPR-1933"><code>VEC_PACK_SAT_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Standard-Names.html#your_sha256_hashvar_007bm_007d_007d-instruction-pattern-3452"><code>vec_pack_sfix_trunc_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash007d_007d-instruction-pattern-3450"><code>vec_pack_ssat_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Vectors.html#index-VEC_005fPACK_005fTRUNC_005fEXPR-1932"><code>VEC_PACK_TRUNC_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3449"><code>vec_pack_trunc_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashvar_007bm_007d_007d-instruction-pattern-3453"><code>vec_pack_ufix_trunc_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash007d_007d-instruction-pattern-3451"><code>vec_pack_usat_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d-instruction-pattern-3398"><code>vec_perm_const</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashruction-pattern-3397"><code>vec_perm</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Vectors.html#index-VEC_005fRSHIFT_005fEXPR-1925"><code>VEC_RSHIFT_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Vector-Operations.html#index-vec_005fselect-3007"><code>vec_select</code></a>: <a href="Vector-Operations.html#Vector-Operations">Vector Operations</a></li>
<li><a href="Standard-Names.html#your_sha256_hashuction-pattern-3393"><code>vec_set</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashinstruction-pattern-3448"><code>vec_shr_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashd_0040var_007bn_007d_007d-instruction-pattern-3392"><code>vec_store_lanes</code><var>m</var><var>n</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Vectors.html#index-VEC_005fUNPACK_005fFLOAT_005fHI_005fEXPR-1930"><code>VEC_UNPACK_FLOAT_HI_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Vectors.html#index-VEC_005fUNPACK_005fFLOAT_005fLO_005fEXPR-1931"><code>VEC_UNPACK_FLOAT_LO_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Vectors.html#index-VEC_005fUNPACK_005fHI_005fEXPR-1928"><code>VEC_UNPACK_HI_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Vectors.html#index-VEC_005fUNPACK_005fLO_005fEXPR-1929"><code>VEC_UNPACK_LO_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Standard-Names.html#your_sha256_hash0var_007bm_007d_007d-instruction-pattern-3458"><code>vec_unpacks_float_hi_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash0var_007bm_007d_007d-instruction-pattern-3459"><code>vec_unpacks_float_lo_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3454"><code>vec_unpacks_hi_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3455"><code>vec_unpacks_lo_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash0var_007bm_007d_007d-instruction-pattern-3460"><code>vec_unpacku_float_hi_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash0var_007bm_007d_007d-instruction-pattern-3461"><code>vec_unpacku_float_lo_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3456"><code>vec_unpacku_hi_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash_007d_007d-instruction-pattern-3457"><code>vec_unpacku_lo_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Vectors.html#index-VEC_005fWIDEN_005fMULT_005fHI_005fEXPR-1926"><code>VEC_WIDEN_MULT_HI_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Vectors.html#index-VEC_005fWIDEN_005fMULT_005fLO_005fEXPR-1927"><code>VEC_WIDEN_MULT_LO_EXPR</code></a>: <a href="Vectors.html#Vectors">Vectors</a></li>
<li><a href="Standard-Names.html#your_sha256_hash0var_007bm_007d_007d-instruction-pattern-3468"><code>vec_widen_smult_even_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashar_007bm_007d_007d-instruction-pattern-3464"><code>vec_widen_smult_hi_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashar_007bm_007d_007d-instruction-pattern-3465"><code>vec_widen_smult_lo_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashvar_007bm_007d_007d-instruction-pattern-3469"><code>vec_widen_smult_odd_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash0var_007bm_007d_007d-instruction-pattern-3472"><code>vec_widen_sshiftl_hi_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash0var_007bm_007d_007d-instruction-pattern-3473"><code>vec_widen_sshiftl_lo_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash0var_007bm_007d_007d-instruction-pattern-3466"><code>vec_widen_umult_even_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashar_007bm_007d_007d-instruction-pattern-3462"><code>vec_widen_umult_hi_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashar_007bm_007d_007d-instruction-pattern-3463"><code>vec_widen_umult_lo_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashvar_007bm_007d_007d-instruction-pattern-3467"><code>vec_widen_umult_odd_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash0var_007bm_007d_007d-instruction-pattern-3470"><code>vec_widen_ushiftl_hi_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hash0var_007bm_007d_007d-instruction-pattern-3471"><code>vec_widen_ushiftl_lo_</code><var>m</var> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Containers.html#index-vector-1735">vector</a>: <a href="Containers.html#Containers">Containers</a></li>
<li><a href="Vector-Operations.html#index-vector-operations-3005">vector operations</a>: <a href="Vector-Operations.html#Vector-Operations">Vector Operations</a></li>
<li><a href="Constant-expressions.html#index-VECTOR_005fCST-1837"><code>VECTOR_CST</code></a>: <a href="Constant-expressions.html#Constant-expressions">Constant expressions</a></li>
<li><a href="Misc.html#index-VECTOR_005fSTORE_005fFLAG_005fVALUE-4910"><code>VECTOR_STORE_FLAG_VALUE</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Maintaining-the-CFG.html#index-verify_005fflow_005finfo-3225"><code>verify_flow_info</code></a>: <a href="Maintaining-the-CFG.html#Maintaining-the-CFG">Maintaining the CFG</a></li>
<li><a href="SSA-Operands.html#index-virtual-operands-2509">virtual operands</a>: <a href="SSA-Operands.html#SSA-Operands">SSA Operands</a></li>
<li><a href="Regs-and-Memory.html#index-VIRTUAL_005fINCOMING_005fARGS_005fREGNUM-2851"><code>VIRTUAL_INCOMING_ARGS_REGNUM</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Regs-and-Memory.html#index-VIRTUAL_005fOUTGOING_005fARGS_005fREGNUM-2861"><code>VIRTUAL_OUTGOING_ARGS_REGNUM</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Regs-and-Memory.html#index-VIRTUAL_005fSTACK_005fDYNAMIC_005fREGNUM-2858"><code>VIRTUAL_STACK_DYNAMIC_REGNUM</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Regs-and-Memory.html#index-VIRTUAL_005fSTACK_005fVARS_005fREGNUM-2854"><code>VIRTUAL_STACK_VARS_REGNUM</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="Processor-pipeline-description.html#index-VLIW-3792">VLIW</a>: <a href="Processor-pipeline-description.html#Processor-pipeline-description">Processor pipeline description</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3504"><code>vlshr</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Filesystem.html#index-VMS-5034"><code>VMS</code></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="VMS-Debug.html#index-VMS_005fDEBUGGING_005fINFO-4803"><code>VMS_DEBUGGING_INFO</code></a>: <a href="VMS-Debug.html#VMS-Debug">VMS Debug</a></li>
<li><a href="Misc.html#index-void-4955"><code>void</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Types.html#index-VOID_005fTYPE-1747"><code>VOID_TYPE</code></a>: <a href="Types.html#Types">Types</a></li>
<li><a href="Machine-Modes.html#index-VOIDmode-2770"><code>VOIDmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Flags.html#index-volatil-2725"><code>volatil</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashr_007d_002c-and-_0040code_007bnote_007d-2628"><code>volatil</code>, in <code>insn</code>, <code>call_insn</code>, <code>jump_insn</code>, <code>code_label</code>, <code>jump_table_data</code>, <code>barrier</code>, and <code>note</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash005fref_007d-and-_0040code_007breg_005flabel_007d-2641"><code>volatil</code>, in <code>label_ref</code> and <code>reg_label</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashyour_sha256_hash07basm_005finput_007d-2649"><code>volatil</code>, in <code>mem</code>, <code>asm_operands</code>, and <code>asm_input</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash7d-2664"><code>volatil</code>, in <code>reg</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash_007d-2693"><code>volatil</code>, in <code>subreg</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hash_005fref_007d-2708"><code>volatil</code>, in <code>symbol_ref</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#index-volatile-memory-references-2727">volatile memory references</a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Flags.html#your_sha256_hashtch_007d-2711"><code>volatile</code>, in <code>prefetch</code></a>: <a href="Flags.html#Flags">Flags</a></li>
<li><a href="Class-Preferences.html#index-voting-between-constraint-alternatives-3352">voting between constraint alternatives</a>: <a href="Class-Preferences.html#Class-Preferences">Class Preferences</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3505"><code>vrotl</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Standard-Names.html#your_sha256_hashn-pattern-3506"><code>vrotr</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="SSA.html#index-walk_005fdominator_005ftree-2529"><code>walk_dominator_tree</code></a>: <a href="SSA.html#SSA">SSA</a></li>
<li><a href="Statement-and-operand-traversals.html#index-walk_005fgimple_005fop-2503"><code>walk_gimple_op</code></a>: <a href="Statement-and-operand-traversals.html#Statement-and-operand-traversals">Statement and operand traversals</a></li>
<li><a href="Statement-and-operand-traversals.html#index-walk_005fgimple_005fseq-2504"><code>walk_gimple_seq</code></a>: <a href="Statement-and-operand-traversals.html#Statement-and-operand-traversals">Statement and operand traversals</a></li>
<li><a href="Statement-and-operand-traversals.html#index-walk_005fgimple_005fstmt-2502"><code>walk_gimple_stmt</code></a>: <a href="Statement-and-operand-traversals.html#Statement-and-operand-traversals">Statement and operand traversals</a></li>
<li><a href="Type-Layout.html#index-WCHAR_005fTYPE-4008"><code>WCHAR_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Type-Layout.html#index-WCHAR_005fTYPE_005fSIZE-4009"><code>WCHAR_TYPE_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Output-Statement.html#index-which_005falternative-3276"><code>which_alternative</code></a>: <a href="Output-Statement.html#Output-Statement">Output Statement</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-WHILE_005fBODY-2129"><code>WHILE_BODY</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-WHILE_005fCOND-2130"><code>WHILE_COND</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="Statements-for-C_002b_002b.html#index-WHILE_005fSTMT-2128"><code>WHILE_STMT</code></a>: <a href="Statements-for-C_002b_002b.html#Statements-for-C_002b_002b">Statements for C++</a></li>
<li><a href="LTO.html#index-whopr-5104">whopr</a>: <a href="LTO.html#LTO">LTO</a></li>
<li><a href="Type-Layout.html#index-WIDEST_005fHARDWARE_005fFP_005fSIZE-4002"><code>WIDEST_HARDWARE_FP_SIZE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Standard-Names.html#your_sha256_hash3612"><code>window_save</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Type-Layout.html#index-WINT_005fTYPE-4010"><code>WINT_TYPE</code></a>: <a href="Type-Layout.html#Type-Layout">Type Layout</a></li>
<li><a href="Machine-Modes.html#index-word_005fmode-2819"><code>word_mode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Misc.html#index-WORD_005fREGISTER_005fOPERATIONS-4898"><code>WORD_REGISTER_OPERATIONS</code></a>: <a href="Misc.html#Misc">Misc</a></li>
<li><a href="Storage-Layout.html#index-WORDS_005fBIG_005fENDIAN-3927"><code>WORDS_BIG_ENDIAN</code></a>: <a href="Storage-Layout.html#Storage-Layout">Storage Layout</a></li>
<li><a href="Regs-and-Memory.html#your_sha256_hash-on-_0040code_007bsubreg_007d-2864"><code>WORDS_BIG_ENDIAN</code>, effect on <code>subreg</code></a>: <a href="Regs-and-Memory.html#Regs-and-Memory">Regs and Memory</a></li>
<li><a href="LTO.html#index-wpa-5105">wpa</a>: <a href="LTO.html#LTO">LTO</a></li>
<li><a href="Simple-Constraints.html#index-g_t_0040samp_007bX_007d-in-constraint-3327">`<samp><span class="samp">X</span></samp>' in constraint</a>: <a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></li>
<li><a href="Host-Fragment.html#index-g_t_0040file_007bx_002d_0040var_007bhost_007d_007d-5070"><samp><span class="file">x-</span><var>host</var></samp></a>: <a href="Host-Fragment.html#Host-Fragment">Host Fragment</a></li>
<li><a href="Machine-Modes.html#index-XCmode-2775"><code>XCmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="DBX-Options.html#index-XCOFF_005fDEBUGGING_005fINFO-4755"><code>XCOFF_DEBUGGING_INFO</code></a>: <a href="DBX-Options.html#DBX-Options">DBX Options</a></li>
<li><a href="Accessors.html#index-XEXP-2560"><code>XEXP</code></a>: <a href="Accessors.html#Accessors">Accessors</a></li>
<li><a href="Machine-Modes.html#index-XFmode-2745"><code>XFmode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Machine-Modes.html#index-XImode-2739"><code>XImode</code></a>: <a href="Machine-Modes.html#Machine-Modes">Machine Modes</a></li>
<li><a href="Accessors.html#index-XINT-2561"><code>XINT</code></a>: <a href="Accessors.html#Accessors">Accessors</a></li>
<li><a href="Filesystem.html#your_sha256_hash7d-5029"><samp><span class="file">xm-</span><var>machine</var><span class="file">.h</span></samp></a>: <a href="Filesystem.html#Filesystem">Filesystem</a></li>
<li><a href="Host-Misc.html#your_sha256_hash7d-5043"><samp><span class="file">xm-</span><var>machine</var><span class="file">.h</span></samp></a>: <a href="Host-Misc.html#Host-Misc">Host Misc</a></li>
<li><a href="Arithmetic.html#index-xor-2945"><code>xor</code></a>: <a href="Arithmetic.html#Arithmetic">Arithmetic</a></li>
<li><a href="Insn-Canonicalizations.html#index-g_t_0040code_007bxor_007d_002c-canonicalization-of-3690"><code>xor</code>, canonicalization of</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
<li><a href="Standard-Names.html#your_sha256_hashpattern-3419"><code>xor</code><var>m</var><code>3</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Accessors.html#index-XSTR-2563"><code>XSTR</code></a>: <a href="Accessors.html#Accessors">Accessors</a></li>
<li><a href="Accessors.html#index-XVEC-2564"><code>XVEC</code></a>: <a href="Accessors.html#Accessors">Accessors</a></li>
<li><a href="Accessors.html#index-XVECEXP-2566"><code>XVECEXP</code></a>: <a href="Accessors.html#Accessors">Accessors</a></li>
<li><a href="Accessors.html#index-XVECLEN-2565"><code>XVECLEN</code></a>: <a href="Accessors.html#Accessors">Accessors</a></li>
<li><a href="Accessors.html#index-XWINT-2562"><code>XWINT</code></a>: <a href="Accessors.html#Accessors">Accessors</a></li>
<li><a href="Conversions.html#index-zero_005fextend-3013"><code>zero_extend</code></a>: <a href="Conversions.html#Conversions">Conversions</a></li>
<li><a href="Standard-Names.html#your_sha256_hashr_007bn_007d2_007d-instruction-pattern-3557"><code>zero_extend</code><var>m</var><var>n</var><code>2</code> instruction pattern</a>: <a href="Standard-Names.html#Standard-Names">Standard Names</a></li>
<li><a href="Bit_002dFields.html#index-zero_005fextract-3004"><code>zero_extract</code></a>: <a href="Bit_002dFields.html#Bit_002dFields">Bit-Fields</a></li>
<li><a href="Insn-Canonicalizations.html#your_sha256_hashon-of-3691"><code>zero_extract</code>, canonicalization of</a>: <a href="Insn-Canonicalizations.html#Insn-Canonicalizations">Insn Canonicalizations</a></li>
</ul><!-- -->
<!-- Epilogue -->
<!-- -->
</body></html>
```
|
```xml
<!--
***********************************************************************************************
Xamarin.WatchOS.AppExtension.CSharp.targets
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
created a backup copy. Incorrect changes to this file will make it
impossible to load or build your projects from the command-line or the IDE.
This file imports the version- and platform-specific targets for the project importing
this file. This file also defines targets to produce an error if the specified targets
file does not exist, but the project is built anyway (command-line or IDE build).
***********************************************************************************************
-->
<Project DefaultTargets="Build" xmlns="path_to_url">
<Import Project="$(MSBuildThisFileDirectory)$(MSBuildThisFileName).Before.targets"
Condition="Exists('$(MSBuildThisFileDirectory)$(MSBuildThisFileName).Before.targets')"/>
<PropertyGroup>
<!-- Version/fx properties -->
<TargetFrameworkIdentifier Condition="'$(TargetFrameworkIdentifier)' == ''">Xamarin.WatchOS</TargetFrameworkIdentifier>
<TargetFrameworkVersion Condition="'$(TargetFrameworkVersion)' == ''">v1.0</TargetFrameworkVersion>
<!-- This must be set before importing Microsoft.CSharp.targets -->
<!-- See Xamarin.iOS.AppExtension.CSharp.targets for a detailed explanation of this variable -->
<CopyNuGetImplementations Condition="'$(CopyNuGetImplementations)' == ''">true</CopyNuGetImplementations>
<!-- Enable nuget package conflict resolution -->
<!-- This must be set before importing Microsoft.CSharp.targets -->
<ResolveAssemblyConflicts>true</ResolveAssemblyConflicts>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" Condition="'$(UsingAppleNETSdk)' != 'true'" />
<Import Project="Xamarin.WatchOS.AppExtension.Common.targets" />
<Import Project="$(MSBuildThisFileDirectory)$(MSBuildThisFileName).After.targets"
Condition="Exists('$(MSBuildThisFileDirectory)$(MSBuildThisFileName).After.targets')"/>
</Project>
```
|
Ghatal subdivision is an administrative subdivision of Paschim Medinipur district in the state of West Bengal, India.
Subdivisions
Paschim Medinipur district is divided into the following administrative subdivisions, after separation of Jhargram subdivision from the district in 2017:
Ghatal subdivision has a density of population of 1,099 per km2. 21.93% of the total population of the district resides in this subdivision.
Administrative units
Ghatal subdivision has 3 police stations, 5 community development blocks, 5 panchayat samitis, 48 gram panchayats, 656 mouzas, 630 inhabited villages and 5 municipalities. The municipalities are: Chandrakona, Khirpai, Ramjibanpur, Ghatal and Kharar. The subdivision has its headquarters at Ghatal.
Police stations
Police stations in Ghatal subdivision have the following features and jurisdiction:
Gram panchayats
The subdivision contains 48 gram panchayats under 5 community development blocks:
Chandrakona I block: Jara, Mangrul, Monoharpur–I, Lakshmipur, Manikkundu and Monoharpur–II.
Chandrakona II block: Bandipur–I, Basanchora, Bhagabantapur–II, Bandipur–II, Bhagabantapur–I and Kuapur.
Daspur I block: Basudevpur, Nandanpur–I, Panchberia, Sarberia–II, Daspur–I, Nandanpur–II, Rajnagar, Daspur–II, Niz Narajol and Sarberia–I.
Daspur II block: Benai, Goura, Kheput Dakshnibarh, Ranichak, Chaipat, Jyotghanashyam, Khukurdaha, Sahachak, Dudhkomra, Kamalpur, Nishchintapur, Gochhati, Khanjapur and Palashpai.
Ghatal block: Ajabnagar–I, Dewanchak–I, Mansuka–I, Monoharpur–I, Ajabnagar–II, Dewanchak–II, Mansuka–II, Monoharpur–II, Beersingha, Irhpala, Mohanpur and Sultanpur.
Blocks
Community development blocks in Ghatal subdivision are:
Education
Paschim Medinipur district had a literacy rate of 78.00% as per the provisional figures of the census of India 2011. Medinipur Sadar subdivision had a literacy rate of 76.23%, Kharagpur subdivision 80.51% and Ghatal subdivision 82.55%.
Given in the table below (data in numbers) is a subdivision-wise comprehensive picture of the education scenario in Paschim Medinipur district, after separation of Jhargram subdivision, for the year 2013-14.
Note: Primary schools include junior basic schools; middle schools, high schools and higher secondary schools include madrasahs; technical schools include junior technical schools, junior government polytechnics, industrial technical institutes, industrial training centres, nursing training institutes etc.; technical and professional colleges include engineering colleges, medical colleges, para-medical institutes, management colleges, teachers training and nursing training colleges, law colleges, art colleges, music colleges etc. Special and non-formal education centres include sishu siksha kendras, madhyamik siksha kendras, adult high schools, centres of Rabindra mukta vidyalaya, recognised Sanskrit tols, institutions for the blind and other handicapped persons, Anganwadi centres, reformatory schools etc.
The following institutions are located in Ghatal subdivision:
Chandrakona Vidyasagar Mahavidyalaya at Chandrakona was established in 1985.
Institute of Science and Technology at Dhurbila, Dhamkuria, Chandrakona, near Prayag Film City, a private engineering and management college, was established in 2006.
Narajole Raj College at Narajole was established in 1966.
Chaipat Saheed Pradyot Bhattacharya Mahavidyalaya at Chaipat was established in 2007.
Ghatal Government Polytechnic
Healthcare
The table below (all data in numbers) presents an overview of the subdivision-wise medical facilities available and patients treated, after the separation of Jhargram, in the hospitals, health centres and sub-centres in 2014 in Paschim Medinipur district.
Excluding nursing homes
Medical facilities
Medical facilities in the Ghatal subdivision are as follows:
Hospitals: (Name, location, beds)
Ghatal Subdivisional Hospital, Ghatal (M), 200 beds
Rural hospitals: (Name, CD block, location, beds)
Khirpai Rural Hospital, Chandrakona I CD block, Khirpai, 30 beds
Chandrakona Rural Hospital, Chandrakona II CD block, Chandrakona, 60 beds
Daspur Rural Hospital, Daspur I CD block, Daspur, 30 beds
Sonakhali Rural Hospital, Daspur II CD block, Sonakhali, 30 beds
Block primary health centres: (Name, CD block, location, beds)
Viidyasagar Block Primary Health Centre, Ghatal CD block, Birsingha, 10 beds
Primary health centres : (CD block-wise)(CD block, PHC location, beds)
Chandrakona I CD block: Ramjibanpur (10), Ramkrishnapur (PO Tatarpara) (10), Mangrul (PO Goaldanga Mangrul) (10), Dingal (PO Dingal-Kumargeria) (10), Jara (2)
Chandrrakona II CD block: Basanchora (PO Chhatraganj) (10), Bhagabantapur (4),
Ghatal CD block: Khasbarh (6), Natuk (10),
Daspur I: Makrampur (PO Choto Makrampur) (4), Narajole (10), Sekenday (2)
Daspur II: Khukurda (10), Nischintapur (6), Chaipat (6)
Electoral constituencies
Lok Sabha (parliamentary) and Vidhan Sabha (state assembly) constituencies in Paschim Medinipur district were as follows from 2006:
References
Subdivisions of West Bengal
Subdivisions in Paschim Medinipur district
Paschim Medinipur district
|
```sourcepawn
/*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
|* *|
|* Machine Code Emitter *|
|* *|
|* Automatically generated file, do not edit! *|
|* *|
\*===your_sha256_hash------===*/
uint64_t PPCMCCodeEmitter::getBinaryCodeForInstr(const MCInst &MI,
SmallVectorImpl<MCFixup> &Fixups,
const MCSubtargetInfo &STI) const {
static const uint64_t InstBits[] = {
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(2080375316), // ADD4
UINT64_C(2080375316), // ADD4TLS
UINT64_C(2080375317), // ADD4o
UINT64_C(2080375316), // ADD8
UINT64_C(2080375316), // ADD8TLS
UINT64_C(2080375316), // ADD8TLS_
UINT64_C(2080375317), // ADD8o
UINT64_C(2080374804), // ADDC
UINT64_C(2080374804), // ADDC8
UINT64_C(2080374805), // ADDC8o
UINT64_C(2080374805), // ADDCo
UINT64_C(2080375060), // ADDE
UINT64_C(2080375060), // ADDE8
UINT64_C(2080375061), // ADDE8o
UINT64_C(2080375061), // ADDEo
UINT64_C(939524096), // ADDI
UINT64_C(939524096), // ADDI8
UINT64_C(805306368), // ADDIC
UINT64_C(805306368), // ADDIC8
UINT64_C(872415232), // ADDICo
UINT64_C(1006632960), // ADDIS
UINT64_C(1006632960), // ADDIS8
UINT64_C(0), // ADDISdtprelHA
UINT64_C(0), // ADDISdtprelHA32
UINT64_C(0), // ADDISgotTprelHA
UINT64_C(0), // ADDIStlsgdHA
UINT64_C(0), // ADDIStlsldHA
UINT64_C(0), // ADDIStocHA
UINT64_C(0), // ADDIdtprelL
UINT64_C(0), // ADDIdtprelL32
UINT64_C(0), // ADDItlsgdL
UINT64_C(0), // ADDItlsgdL32
UINT64_C(0), // ADDItlsgdLADDR
UINT64_C(0), // ADDItlsgdLADDR32
UINT64_C(0), // ADDItlsldL
UINT64_C(0), // ADDItlsldL32
UINT64_C(0), // ADDItlsldLADDR
UINT64_C(0), // ADDItlsldLADDR32
UINT64_C(0), // ADDItocL
UINT64_C(2080375252), // ADDME
UINT64_C(2080375252), // ADDME8
UINT64_C(2080375253), // ADDME8o
UINT64_C(2080375253), // ADDMEo
UINT64_C(2080375188), // ADDZE
UINT64_C(2080375188), // ADDZE8
UINT64_C(2080375189), // ADDZE8o
UINT64_C(2080375189), // ADDZEo
UINT64_C(0), // ADJCALLSTACKDOWN
UINT64_C(0), // ADJCALLSTACKUP
UINT64_C(2080374840), // AND
UINT64_C(2080374840), // AND8
UINT64_C(2080374841), // AND8o
UINT64_C(2080374904), // ANDC
UINT64_C(2080374904), // ANDC8
UINT64_C(2080374905), // ANDC8o
UINT64_C(2080374905), // ANDCo
UINT64_C(1946157056), // ANDISo
UINT64_C(1946157056), // ANDISo8
UINT64_C(1879048192), // ANDIo
UINT64_C(1879048192), // ANDIo8
UINT64_C(0), // ANDIo_1_EQ_BIT
UINT64_C(0), // ANDIo_1_EQ_BIT8
UINT64_C(0), // ANDIo_1_GT_BIT
UINT64_C(0), // ANDIo_1_GT_BIT8
UINT64_C(2080374841), // ANDo
UINT64_C(0), // ATOMIC_CMP_SWAP_I16
UINT64_C(0), // ATOMIC_CMP_SWAP_I32
UINT64_C(0), // ATOMIC_CMP_SWAP_I64
UINT64_C(0), // ATOMIC_CMP_SWAP_I8
UINT64_C(0), // ATOMIC_LOAD_ADD_I16
UINT64_C(0), // ATOMIC_LOAD_ADD_I32
UINT64_C(0), // ATOMIC_LOAD_ADD_I64
UINT64_C(0), // ATOMIC_LOAD_ADD_I8
UINT64_C(0), // ATOMIC_LOAD_AND_I16
UINT64_C(0), // ATOMIC_LOAD_AND_I32
UINT64_C(0), // ATOMIC_LOAD_AND_I64
UINT64_C(0), // ATOMIC_LOAD_AND_I8
UINT64_C(0), // ATOMIC_LOAD_NAND_I16
UINT64_C(0), // ATOMIC_LOAD_NAND_I32
UINT64_C(0), // ATOMIC_LOAD_NAND_I64
UINT64_C(0), // ATOMIC_LOAD_NAND_I8
UINT64_C(0), // ATOMIC_LOAD_OR_I16
UINT64_C(0), // ATOMIC_LOAD_OR_I32
UINT64_C(0), // ATOMIC_LOAD_OR_I64
UINT64_C(0), // ATOMIC_LOAD_OR_I8
UINT64_C(0), // ATOMIC_LOAD_SUB_I16
UINT64_C(0), // ATOMIC_LOAD_SUB_I32
UINT64_C(0), // ATOMIC_LOAD_SUB_I64
UINT64_C(0), // ATOMIC_LOAD_SUB_I8
UINT64_C(0), // ATOMIC_LOAD_XOR_I16
UINT64_C(0), // ATOMIC_LOAD_XOR_I32
UINT64_C(0), // ATOMIC_LOAD_XOR_I64
UINT64_C(0), // ATOMIC_LOAD_XOR_I8
UINT64_C(0), // ATOMIC_SWAP_I16
UINT64_C(0), // ATOMIC_SWAP_I32
UINT64_C(0), // ATOMIC_SWAP_I64
UINT64_C(0), // ATOMIC_SWAP_I8
UINT64_C(512), // ATTN
UINT64_C(1207959552), // B
UINT64_C(1207959554), // BA
UINT64_C(1098907648), // BC
UINT64_C(1073741824), // BCC
UINT64_C(1073741826), // BCCA
UINT64_C(1275069472), // BCCCTR
UINT64_C(1275069472), // BCCCTR8
UINT64_C(1275069473), // BCCCTRL
UINT64_C(1275069473), // BCCCTRL8
UINT64_C(1073741825), // BCCL
UINT64_C(1073741827), // BCCLA
UINT64_C(1275068448), // BCCLR
UINT64_C(1275068449), // BCCLRL
UINT64_C(1300235296), // BCCTR
UINT64_C(1300235296), // BCCTR8
UINT64_C(1283458080), // BCCTR8n
UINT64_C(1300235297), // BCCTRL
UINT64_C(1300235297), // BCCTRL8
UINT64_C(1283458081), // BCCTRL8n
UINT64_C(1283458081), // BCCTRLn
UINT64_C(1283458080), // BCCTRn
UINT64_C(1098907649), // BCL
UINT64_C(1300234272), // BCLR
UINT64_C(1300234273), // BCLRL
UINT64_C(1283457057), // BCLRLn
UINT64_C(1283457056), // BCLRn
UINT64_C(1117716481), // BCLalways
UINT64_C(1082130433), // BCLn
UINT64_C(1317012512), // BCTR
UINT64_C(1317012512), // BCTR8
UINT64_C(1317012513), // BCTRL
UINT64_C(1317012513), // BCTRL8
UINT64_C(5656525675654283264), // BCTRL8_LDinto_toc
UINT64_C(1082130432), // BCn
UINT64_C(1107296256), // BDNZ
UINT64_C(1107296256), // BDNZ8
UINT64_C(1107296258), // BDNZA
UINT64_C(1124073474), // BDNZAm
UINT64_C(1126170626), // BDNZAp
UINT64_C(1107296257), // BDNZL
UINT64_C(1107296259), // BDNZLA
UINT64_C(1124073475), // BDNZLAm
UINT64_C(1126170627), // BDNZLAp
UINT64_C(1308622880), // BDNZLR
UINT64_C(1308622880), // BDNZLR8
UINT64_C(1308622881), // BDNZLRL
UINT64_C(1325400097), // BDNZLRLm
UINT64_C(1327497249), // BDNZLRLp
UINT64_C(1325400096), // BDNZLRm
UINT64_C(1327497248), // BDNZLRp
UINT64_C(1124073473), // BDNZLm
UINT64_C(1126170625), // BDNZLp
UINT64_C(1124073472), // BDNZm
UINT64_C(1126170624), // BDNZp
UINT64_C(1111490560), // BDZ
UINT64_C(1111490560), // BDZ8
UINT64_C(1111490562), // BDZA
UINT64_C(1128267778), // BDZAm
UINT64_C(1130364930), // BDZAp
UINT64_C(1111490561), // BDZL
UINT64_C(1111490563), // BDZLA
UINT64_C(1128267779), // BDZLAm
UINT64_C(1130364931), // BDZLAp
UINT64_C(1312817184), // BDZLR
UINT64_C(1312817184), // BDZLR8
UINT64_C(1312817185), // BDZLRL
UINT64_C(1329594401), // BDZLRLm
UINT64_C(1331691553), // BDZLRLp
UINT64_C(1329594400), // BDZLRm
UINT64_C(1331691552), // BDZLRp
UINT64_C(1128267777), // BDZLm
UINT64_C(1130364929), // BDZLp
UINT64_C(1128267776), // BDZm
UINT64_C(1130364928), // BDZp
UINT64_C(1207959553), // BL
UINT64_C(1207959553), // BL8
UINT64_C(5188146776636391424), // BL8_NOP
UINT64_C(5188146776636391424), // BL8_NOP_TLS
UINT64_C(1207959553), // BL8_TLS
UINT64_C(1207959553), // BL8_TLS_
UINT64_C(1207959555), // BLA
UINT64_C(1207959555), // BLA8
UINT64_C(5188146785226326016), // BLA8_NOP
UINT64_C(1317011488), // BLR
UINT64_C(1317011488), // BLR8
UINT64_C(1317011489), // BLRL
UINT64_C(1207959553), // BL_TLS
UINT64_C(2080375288), // BPERMD
UINT64_C(268435983), // BRINC
UINT64_C(2080375644), // CLRBHRB
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(2080375800), // CMPB
UINT64_C(2080375800), // CMPB8
UINT64_C(2082471936), // CMPD
UINT64_C(740294656), // CMPDI
UINT64_C(2082472000), // CMPLD
UINT64_C(673185792), // CMPLDI
UINT64_C(2080374848), // CMPLW
UINT64_C(671088640), // CMPLWI
UINT64_C(2080374784), // CMPW
UINT64_C(738197504), // CMPWI
UINT64_C(2080374900), // CNTLZD
UINT64_C(2080374901), // CNTLZDo
UINT64_C(2080374836), // CNTLZW
UINT64_C(2080374836), // CNTLZW8
UINT64_C(2080374837), // CNTLZW8o
UINT64_C(2080374837), // CNTLZWo
UINT64_C(1288057410), // CR6SET
UINT64_C(1288057218), // CR6UNSET
UINT64_C(1275068930), // CRAND
UINT64_C(1275068674), // CRANDC
UINT64_C(1275068994), // CREQV
UINT64_C(1275068866), // CRNAND
UINT64_C(1275068482), // CRNOR
UINT64_C(1275069314), // CROR
UINT64_C(1275069250), // CRORC
UINT64_C(1275068994), // CRSET
UINT64_C(1275068802), // CRUNSET
UINT64_C(1275068802), // CRXOR
UINT64_C(2080376300), // DCBA
UINT64_C(2080374956), // DCBF
UINT64_C(2080375724), // DCBI
UINT64_C(2080374892), // DCBST
UINT64_C(2080375340), // DCBT
UINT64_C(0),
UINT64_C(0),
UINT64_C(2080375276), // DCBTST
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(2080376812), // DCBZ
UINT64_C(2082473964), // DCBZL
UINT64_C(2080375692), // DCCCI
UINT64_C(2080375762), // DIVD
UINT64_C(2080375634), // DIVDE
UINT64_C(2080375570), // DIVDEU
UINT64_C(2080375571), // DIVDEUo
UINT64_C(2080375635), // DIVDEo
UINT64_C(2080375698), // DIVDU
UINT64_C(2080375699), // DIVDUo
UINT64_C(2080375763), // DIVDo
UINT64_C(2080375766), // DIVW
UINT64_C(2080375638), // DIVWE
UINT64_C(2080375574), // DIVWEU
UINT64_C(2080375575), // DIVWEUo
UINT64_C(2080375639), // DIVWEo
UINT64_C(2080375702), // DIVWU
UINT64_C(2080375703), // DIVWUo
UINT64_C(2080375767), // DIVWo
UINT64_C(2080376428), // DSS
UINT64_C(2113930860), // DSSALL
UINT64_C(2080375468), // DST
UINT64_C(2080375468), // DST64
UINT64_C(2080375532), // DSTST
UINT64_C(2080375532), // DSTST64
UINT64_C(2113929964), // DSTSTT
UINT64_C(2113929964), // DSTSTT64
UINT64_C(2113929900), // DSTT
UINT64_C(2113929900), // DSTT64
UINT64_C(0), // DYNALLOC
UINT64_C(0), // DYNALLOC8
UINT64_C(0), // DYNAREAOFFSET
UINT64_C(0), // DYNAREAOFFSET8
UINT64_C(0), // EH_SjLj_LongJmp32
UINT64_C(0), // EH_SjLj_LongJmp64
UINT64_C(0), // EH_SjLj_SetJmp32
UINT64_C(0), // EH_SjLj_SetJmp64
UINT64_C(0), // EH_SjLj_Setup
UINT64_C(2080375352), // EQV
UINT64_C(2080375352), // EQV8
UINT64_C(2080375353), // EQV8o
UINT64_C(2080375353), // EQVo
UINT64_C(268435976), // EVABS
UINT64_C(268435970), // EVADDIW
UINT64_C(268436681), // EVADDSMIAAW
UINT64_C(268436673), // EVADDSSIAAW
UINT64_C(268436680), // EVADDUMIAAW
UINT64_C(268436672), // EVADDUSIAAW
UINT64_C(268435968), // EVADDW
UINT64_C(268435985), // EVAND
UINT64_C(268435986), // EVANDC
UINT64_C(268436020), // EVCMPEQ
UINT64_C(268436017), // EVCMPGTS
UINT64_C(268436016), // EVCMPGTU
UINT64_C(268436019), // EVCMPLTS
UINT64_C(268436018), // EVCMPLTU
UINT64_C(268435982), // EVCNTLSW
UINT64_C(268435981), // EVCNTLZW
UINT64_C(268436678), // EVDIVWS
UINT64_C(268436679), // EVDIVWU
UINT64_C(268435993), // EVEQV
UINT64_C(268435978), // EVEXTSB
UINT64_C(268435979), // EVEXTSH
UINT64_C(268436225), // EVLDD
UINT64_C(268436224), // EVLDDX
UINT64_C(268436229), // EVLDH
UINT64_C(268436228), // EVLDHX
UINT64_C(268436227), // EVLDW
UINT64_C(268436226), // EVLDWX
UINT64_C(268436233), // EVLHHESPLAT
UINT64_C(268436232), // EVLHHESPLATX
UINT64_C(268436239), // EVLHHOSSPLAT
UINT64_C(268436238), // EVLHHOSSPLATX
UINT64_C(268436237), // EVLHHOUSPLAT
UINT64_C(268436236), // EVLHHOUSPLATX
UINT64_C(268436241), // EVLWHE
UINT64_C(268436240), // EVLWHEX
UINT64_C(268436247), // EVLWHOS
UINT64_C(268436246), // EVLWHOSX
UINT64_C(268436245), // EVLWHOU
UINT64_C(268436244), // EVLWHOUX
UINT64_C(268436253), // EVLWHSPLAT
UINT64_C(268436252), // EVLWHSPLATX
UINT64_C(268436249), // EVLWWSPLAT
UINT64_C(268436248), // EVLWWSPLATX
UINT64_C(268436012), // EVMERGEHI
UINT64_C(268436014), // EVMERGEHILO
UINT64_C(268436013), // EVMERGELO
UINT64_C(268436015), // EVMERGELOHI
UINT64_C(268436779), // EVMHEGSMFAA
UINT64_C(268436907), // EVMHEGSMFAN
UINT64_C(268436777), // EVMHEGSMIAA
UINT64_C(268436905), // EVMHEGSMIAN
UINT64_C(268436776), // EVMHEGUMIAA
UINT64_C(268436904), // EVMHEGUMIAN
UINT64_C(268436491), // EVMHESMF
UINT64_C(268436523), // EVMHESMFA
UINT64_C(268436747), // EVMHESMFAAW
UINT64_C(268436875), // EVMHESMFANW
UINT64_C(268436489), // EVMHESMI
UINT64_C(268436521), // EVMHESMIA
UINT64_C(268436745), // EVMHESMIAAW
UINT64_C(268436873), // EVMHESMIANW
UINT64_C(268436483), // EVMHESSF
UINT64_C(268436515), // EVMHESSFA
UINT64_C(268436739), // EVMHESSFAAW
UINT64_C(268436867), // EVMHESSFANW
UINT64_C(268436737), // EVMHESSIAAW
UINT64_C(268436865), // EVMHESSIANW
UINT64_C(268436488), // EVMHEUMI
UINT64_C(268436520), // EVMHEUMIA
UINT64_C(268436744), // EVMHEUMIAAW
UINT64_C(268436872), // EVMHEUMIANW
UINT64_C(268436736), // EVMHEUSIAAW
UINT64_C(268436864), // EVMHEUSIANW
UINT64_C(268436783), // EVMHOGSMFAA
UINT64_C(268436911), // EVMHOGSMFAN
UINT64_C(268436781), // EVMHOGSMIAA
UINT64_C(268436909), // EVMHOGSMIAN
UINT64_C(268436780), // EVMHOGUMIAA
UINT64_C(268436908), // EVMHOGUMIAN
UINT64_C(268436495), // EVMHOSMF
UINT64_C(268436527), // EVMHOSMFA
UINT64_C(268436751), // EVMHOSMFAAW
UINT64_C(268436879), // EVMHOSMFANW
UINT64_C(268436493), // EVMHOSMI
UINT64_C(268436525), // EVMHOSMIA
UINT64_C(268436749), // EVMHOSMIAAW
UINT64_C(268436877), // EVMHOSMIANW
UINT64_C(268436487), // EVMHOSSF
UINT64_C(268436519), // EVMHOSSFA
UINT64_C(268436743), // EVMHOSSFAAW
UINT64_C(268436871), // EVMHOSSFANW
UINT64_C(268436741), // EVMHOSSIAAW
UINT64_C(268436869), // EVMHOSSIANW
UINT64_C(268436492), // EVMHOUMI
UINT64_C(268436524), // EVMHOUMIA
UINT64_C(268436748), // EVMHOUMIAAW
UINT64_C(268436876), // EVMHOUMIANW
UINT64_C(268436740), // EVMHOUSIAAW
UINT64_C(268436868), // EVMHOUSIANW
UINT64_C(268436676), // EVMRA
UINT64_C(268436559), // EVMWHSMF
UINT64_C(268436591), // EVMWHSMFA
UINT64_C(268436557), // EVMWHSMI
UINT64_C(268436589), // EVMWHSMIA
UINT64_C(268436551), // EVMWHSSF
UINT64_C(268436583), // EVMWHSSFA
UINT64_C(268436556), // EVMWHUMI
UINT64_C(268436588), // EVMWHUMIA
UINT64_C(268436809), // EVMWLSMIAAW
UINT64_C(268436937), // EVMWLSMIANW
UINT64_C(268436801), // EVMWLSSIAAW
UINT64_C(268436929), // EVMWLSSIANW
UINT64_C(268436552), // EVMWLUMI
UINT64_C(268436584), // EVMWLUMIA
UINT64_C(268436808), // EVMWLUMIAAW
UINT64_C(268436936), // EVMWLUMIANW
UINT64_C(268436800), // EVMWLUSIAAW
UINT64_C(268436928), // EVMWLUSIANW
UINT64_C(268436571), // EVMWSMF
UINT64_C(268436603), // EVMWSMFA
UINT64_C(268436827), // EVMWSMFAA
UINT64_C(268436955), // EVMWSMFAN
UINT64_C(268436569), // EVMWSMI
UINT64_C(268436601), // EVMWSMIA
UINT64_C(268436825), // EVMWSMIAA
UINT64_C(268436953), // EVMWSMIAN
UINT64_C(268436563), // EVMWSSF
UINT64_C(268436595), // EVMWSSFA
UINT64_C(268436819), // EVMWSSFAA
UINT64_C(268436947), // EVMWSSFAN
UINT64_C(268436568), // EVMWUMI
UINT64_C(268436600), // EVMWUMIA
UINT64_C(268436824), // EVMWUMIAA
UINT64_C(268436952), // EVMWUMIAN
UINT64_C(268435998), // EVNAND
UINT64_C(268435977), // EVNEG
UINT64_C(268435992), // EVNOR
UINT64_C(268435991), // EVOR
UINT64_C(268435995), // EVORC
UINT64_C(268436008), // EVRLW
UINT64_C(268436010), // EVRLWI
UINT64_C(268435980), // EVRNDW
UINT64_C(268436004), // EVSLW
UINT64_C(268436006), // EVSLWI
UINT64_C(268436011), // EVSPLATFI
UINT64_C(268436009), // EVSPLATI
UINT64_C(268436003), // EVSRWIS
UINT64_C(268436002), // EVSRWIU
UINT64_C(268436001), // EVSRWS
UINT64_C(268436000), // EVSRWU
UINT64_C(268436257), // EVSTDD
UINT64_C(268436256), // EVSTDDX
UINT64_C(268436261), // EVSTDH
UINT64_C(268436260), // EVSTDHX
UINT64_C(268436259), // EVSTDW
UINT64_C(268436258), // EVSTDWX
UINT64_C(268436273), // EVSTWHE
UINT64_C(268436272), // EVSTWHEX
UINT64_C(268436277), // EVSTWHO
UINT64_C(268436276), // EVSTWHOX
UINT64_C(268436281), // EVSTWWE
UINT64_C(268436280), // EVSTWWEX
UINT64_C(268436285), // EVSTWWO
UINT64_C(268436284), // EVSTWWOX
UINT64_C(268436683), // EVSUBFSMIAAW
UINT64_C(268436675), // EVSUBFSSIAAW
UINT64_C(268436682), // EVSUBFUMIAAW
UINT64_C(268436674), // EVSUBFUSIAAW
UINT64_C(268435972), // EVSUBFW
UINT64_C(268435974), // EVSUBIFW
UINT64_C(268435990), // EVXOR
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(2080376692), // EXTSB
UINT64_C(2080376692), // EXTSB8
UINT64_C(2080376692), // EXTSB8_32_64
UINT64_C(2080376693), // EXTSB8o
UINT64_C(2080376693), // EXTSBo
UINT64_C(2080376628), // EXTSH
UINT64_C(2080376628), // EXTSH8
UINT64_C(2080376628), // EXTSH8_32_64
UINT64_C(2080376629), // EXTSH8o
UINT64_C(2080376629), // EXTSHo
UINT64_C(2080376756), // EXTSW
UINT64_C(2080376756), // EXTSW_32_64
UINT64_C(2080376757), // EXTSW_32_64o
UINT64_C(2080376757), // EXTSWo
UINT64_C(2080376492), // EnforceIEIO
UINT64_C(4227858960), // FABSD
UINT64_C(4227858961), // FABSDo
UINT64_C(4227858960), // FABSS
UINT64_C(4227858961), // FABSSo
UINT64_C(4227858474), // FADD
UINT64_C(3959423018), // FADDS
UINT64_C(3959423019), // FADDSo
UINT64_C(4227858475), // FADDo
UINT64_C(0), // FADDrtz
UINT64_C(4227860124), // FCFID
UINT64_C(3959424668), // FCFIDS
UINT64_C(3959424669), // FCFIDSo
UINT64_C(4227860380), // FCFIDU
UINT64_C(3959424924), // FCFIDUS
UINT64_C(3959424925), // FCFIDUSo
UINT64_C(4227860381), // FCFIDUo
UINT64_C(4227860125), // FCFIDo
UINT64_C(4227858432), // FCMPUD
UINT64_C(4227858432), // FCMPUS
UINT64_C(4227858448), // FCPSGND
UINT64_C(4227858449), // FCPSGNDo
UINT64_C(4227858448), // FCPSGNS
UINT64_C(4227858449), // FCPSGNSo
UINT64_C(4227860060), // FCTID
UINT64_C(4227860318), // FCTIDUZ
UINT64_C(4227860319), // FCTIDUZo
UINT64_C(4227860062), // FCTIDZ
UINT64_C(4227860063), // FCTIDZo
UINT64_C(4227860061), // FCTIDo
UINT64_C(4227858460), // FCTIW
UINT64_C(4227858718), // FCTIWUZ
UINT64_C(4227858719), // FCTIWUZo
UINT64_C(4227858462), // FCTIWZ
UINT64_C(4227858463), // FCTIWZo
UINT64_C(4227858461), // FCTIWo
UINT64_C(4227858468), // FDIV
UINT64_C(3959423012), // FDIVS
UINT64_C(3959423013), // FDIVSo
UINT64_C(4227858469), // FDIVo
UINT64_C(4227858490), // FMADD
UINT64_C(3959423034), // FMADDS
UINT64_C(3959423035), // FMADDSo
UINT64_C(4227858491), // FMADDo
UINT64_C(4227858576), // FMR
UINT64_C(4227858577), // FMRo
UINT64_C(4227858488), // FMSUB
UINT64_C(3959423032), // FMSUBS
UINT64_C(3959423033), // FMSUBSo
UINT64_C(4227858489), // FMSUBo
UINT64_C(4227858482), // FMUL
UINT64_C(3959423026), // FMULS
UINT64_C(3959423027), // FMULSo
UINT64_C(4227858483), // FMULo
UINT64_C(4227858704), // FNABSD
UINT64_C(4227858705), // FNABSDo
UINT64_C(4227858704), // FNABSS
UINT64_C(4227858705), // FNABSSo
UINT64_C(4227858512), // FNEGD
UINT64_C(4227858513), // FNEGDo
UINT64_C(4227858512), // FNEGS
UINT64_C(4227858513), // FNEGSo
UINT64_C(4227858494), // FNMADD
UINT64_C(3959423038), // FNMADDS
UINT64_C(3959423039), // FNMADDSo
UINT64_C(4227858495), // FNMADDo
UINT64_C(4227858492), // FNMSUB
UINT64_C(3959423036), // FNMSUBS
UINT64_C(3959423037), // FNMSUBSo
UINT64_C(4227858493), // FNMSUBo
UINT64_C(4227858480), // FRE
UINT64_C(3959423024), // FRES
UINT64_C(3959423025), // FRESo
UINT64_C(4227858481), // FREo
UINT64_C(4227859408), // FRIMD
UINT64_C(4227859409), // FRIMDo
UINT64_C(4227859408), // FRIMS
UINT64_C(4227859409), // FRIMSo
UINT64_C(4227859216), // FRIND
UINT64_C(4227859217), // FRINDo
UINT64_C(4227859216), // FRINS
UINT64_C(4227859217), // FRINSo
UINT64_C(4227859344), // FRIPD
UINT64_C(4227859345), // FRIPDo
UINT64_C(4227859344), // FRIPS
UINT64_C(4227859345), // FRIPSo
UINT64_C(4227859280), // FRIZD
UINT64_C(4227859281), // FRIZDo
UINT64_C(4227859280), // FRIZS
UINT64_C(4227859281), // FRIZSo
UINT64_C(4227858456), // FRSP
UINT64_C(4227858457), // FRSPo
UINT64_C(4227858484), // FRSQRTE
UINT64_C(3959423028), // FRSQRTES
UINT64_C(3959423029), // FRSQRTESo
UINT64_C(4227858485), // FRSQRTEo
UINT64_C(4227858478), // FSELD
UINT64_C(4227858479), // FSELDo
UINT64_C(4227858478), // FSELS
UINT64_C(4227858479), // FSELSo
UINT64_C(4227858476), // FSQRT
UINT64_C(3959423020), // FSQRTS
UINT64_C(3959423021), // FSQRTSo
UINT64_C(4227858477), // FSQRTo
UINT64_C(4227858472), // FSUB
UINT64_C(3959423016), // FSUBS
UINT64_C(3959423017), // FSUBSo
UINT64_C(4227858473), // FSUBo
UINT64_C(0), // GETtlsADDR
UINT64_C(0), // GETtlsADDR32
UINT64_C(0), // GETtlsldADDR
UINT64_C(0), // GETtlsldADDR32
UINT64_C(2080376748), // ICBI
UINT64_C(2080374828), // ICBT
UINT64_C(2080376716), // ICCCI
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(2080374814), // ISEL
UINT64_C(2080374814), // ISEL8
UINT64_C(1275068716), // ISYNC
UINT64_C(939524096), // LA
UINT64_C(0),
UINT64_C(2080374888), // LBARX
UINT64_C(2080374889), // LBARXL
UINT64_C(2281701376), // LBZ
UINT64_C(2281701376), // LBZ8
UINT64_C(2080376490), // LBZCIX
UINT64_C(2348810240), // LBZU
UINT64_C(2348810240), // LBZU8
UINT64_C(2080375022), // LBZUX
UINT64_C(2080375022), // LBZUX8
UINT64_C(2080374958), // LBZX
UINT64_C(2080374958), // LBZX8
UINT64_C(3892314112), // LD
UINT64_C(2080374952), // LDARX
UINT64_C(2080374953), // LDARXL
UINT64_C(2080375848), // LDBRX
UINT64_C(2080376554), // LDCIX
UINT64_C(3892314113), // LDU
UINT64_C(2080374890), // LDUX
UINT64_C(2080374826), // LDX
UINT64_C(0), // LDgotTprelL
UINT64_C(0), // LDgotTprelL32
UINT64_C(0), // LDtoc
UINT64_C(0), // LDtocBA
UINT64_C(0), // LDtocCPT
UINT64_C(0), // LDtocJTI
UINT64_C(0), // LDtocL
UINT64_C(3355443200), // LFD
UINT64_C(3422552064), // LFDU
UINT64_C(2080376046), // LFDUX
UINT64_C(2080375982), // LFDX
UINT64_C(2080376494), // LFIWAX
UINT64_C(2080376558), // LFIWZX
UINT64_C(3221225472), // LFS
UINT64_C(3288334336), // LFSU
UINT64_C(2080375918), // LFSUX
UINT64_C(2080375854), // LFSX
UINT64_C(2818572288), // LHA
UINT64_C(2818572288), // LHA8
UINT64_C(2080375016), // LHARX
UINT64_C(2080375017), // LHARXL
UINT64_C(2885681152), // LHAU
UINT64_C(2885681152), // LHAU8
UINT64_C(2080375534), // LHAUX
UINT64_C(2080375534), // LHAUX8
UINT64_C(2080375470), // LHAX
UINT64_C(2080375470), // LHAX8
UINT64_C(2080376364), // LHBRX
UINT64_C(2080376364), // LHBRX8
UINT64_C(2684354560), // LHZ
UINT64_C(2684354560), // LHZ8
UINT64_C(2080376426), // LHZCIX
UINT64_C(2751463424), // LHZU
UINT64_C(2751463424), // LHZU8
UINT64_C(2080375406), // LHZUX
UINT64_C(2080375406), // LHZUX8
UINT64_C(2080375342), // LHZX
UINT64_C(2080375342), // LHZX8
UINT64_C(939524096), // LI
UINT64_C(939524096), // LI8
UINT64_C(1006632960), // LIS
UINT64_C(1006632960), // LIS8
UINT64_C(3087007744), // LMW
UINT64_C(2080375978), // LSWI
UINT64_C(2080374798), // LVEBX
UINT64_C(2080374862), // LVEHX
UINT64_C(2080374926), // LVEWX
UINT64_C(2080374796), // LVSL
UINT64_C(2080374860), // LVSR
UINT64_C(2080374990), // LVX
UINT64_C(2080375502), // LVXL
UINT64_C(3892314114), // LWA
UINT64_C(2080374824), // LWARX
UINT64_C(2080374825), // LWARXL
UINT64_C(2080375530), // LWAUX
UINT64_C(2080375466), // LWAX
UINT64_C(2080375466), // LWAX_32
UINT64_C(3892314114), // LWA_32
UINT64_C(2080375852), // LWBRX
UINT64_C(2080375852), // LWBRX8
UINT64_C(2147483648), // LWZ
UINT64_C(2147483648), // LWZ8
UINT64_C(2080376362), // LWZCIX
UINT64_C(2214592512), // LWZU
UINT64_C(2214592512), // LWZU8
UINT64_C(2080374894), // LWZUX
UINT64_C(2080374894), // LWZUX8
UINT64_C(2080374830), // LWZX
UINT64_C(2080374830), // LWZX8
UINT64_C(0), // LWZtoc
UINT64_C(2080375960), // LXSDX
UINT64_C(2080374936), // LXSIWAX
UINT64_C(2080374808), // LXSIWZX
UINT64_C(2080375832), // LXSSPX
UINT64_C(2080376472), // LXVD2X
UINT64_C(2080375448), // LXVDSX
UINT64_C(2080376344), // LXVW4X
UINT64_C(2080376492), // MBAR
UINT64_C(1275068416), // MCRF
UINT64_C(4227858560), // MCRFS
UINT64_C(2080375388), // MFBHRBE
UINT64_C(2080374822), // MFCR
UINT64_C(2080374822), // MFCR8
UINT64_C(2080965286), // MFCTR
UINT64_C(2080965286), // MFCTR8
UINT64_C(2080375430), // MFDCR
UINT64_C(4227859598), // MFFS
UINT64_C(4227859599), // MFFSo
UINT64_C(2080899750), // MFLR
UINT64_C(2080899750), // MFLR8
UINT64_C(2080374950), // MFMSR
UINT64_C(2081423398), // MFOCRF
UINT64_C(2081423398), // MFOCRF8
UINT64_C(2080375462), // MFSPR
UINT64_C(2080375462), // MFSPR8
UINT64_C(2080375974), // MFSR
UINT64_C(2080376102), // MFSRIN
UINT64_C(2080375526), // MFTB
UINT64_C(2081178278), // MFTB8
UINT64_C(2080391846), // MFVRSAVE
UINT64_C(2080391846), // MFVRSAVEv
UINT64_C(268436996), // MFVSCR
UINT64_C(2080374886), // MFVSRD
UINT64_C(2080375014), // MFVSRWZ
UINT64_C(2080375980), // MSYNC
UINT64_C(2080375072), // MTCRF
UINT64_C(2080375072), // MTCRF8
UINT64_C(2080965542), // MTCTR
UINT64_C(2080965542), // MTCTR8
UINT64_C(2080965542), // MTCTR8loop
UINT64_C(2080965542), // MTCTRloop
UINT64_C(2080375686), // MTDCR
UINT64_C(4227858572), // MTFSB0
UINT64_C(4227858508), // MTFSB1
UINT64_C(4227859854), // MTFSF
UINT64_C(4227858700), // MTFSFI
UINT64_C(4227858701), // MTFSFIo
UINT64_C(4227859854), // MTFSFb
UINT64_C(4227859855), // MTFSFo
UINT64_C(2080900006), // MTLR
UINT64_C(2080900006), // MTLR8
UINT64_C(2080375076), // MTMSR
UINT64_C(2080375140), // MTMSRD
UINT64_C(2081423648), // MTOCRF
UINT64_C(2081423648), // MTOCRF8
UINT64_C(2080375718), // MTSPR
UINT64_C(2080375718), // MTSPR8
UINT64_C(2080375204), // MTSR
UINT64_C(2080375268), // MTSRIN
UINT64_C(2080392102), // MTVRSAVE
UINT64_C(2080392102), // MTVRSAVEv
UINT64_C(268437060), // MTVSCR
UINT64_C(2080375142), // MTVSRD
UINT64_C(2080375206), // MTVSRWA
UINT64_C(2080375270), // MTVSRWZ
UINT64_C(2080374930), // MULHD
UINT64_C(2080374802), // MULHDU
UINT64_C(2080374803), // MULHDUo
UINT64_C(2080374931), // MULHDo
UINT64_C(2080374934), // MULHW
UINT64_C(2080374806), // MULHWU
UINT64_C(2080374807), // MULHWUo
UINT64_C(2080374935), // MULHWo
UINT64_C(2080375250), // MULLD
UINT64_C(2080375251), // MULLDo
UINT64_C(469762048), // MULLI
UINT64_C(469762048), // MULLI8
UINT64_C(2080375254), // MULLW
UINT64_C(2080375255), // MULLWo
UINT64_C(0), // MoveGOTtoLR
UINT64_C(0), // MovePCtoLR
UINT64_C(0), // MovePCtoLR8
UINT64_C(2080375736), // NAND
UINT64_C(2080375736), // NAND8
UINT64_C(2080375737), // NAND8o
UINT64_C(2080375737), // NANDo
UINT64_C(2080374992), // NEG
UINT64_C(2080374992), // NEG8
UINT64_C(2080374993), // NEG8o
UINT64_C(2080374993), // NEGo
UINT64_C(1610612736), // NOP
UINT64_C(1612775424), // NOP_GT_PWR6
UINT64_C(1614938112), // NOP_GT_PWR7
UINT64_C(2080375032), // NOR
UINT64_C(2080375032), // NOR8
UINT64_C(2080375033), // NOR8o
UINT64_C(2080375033), // NORo
UINT64_C(2080375672), // OR
UINT64_C(2080375672), // OR8
UINT64_C(2080375673), // OR8o
UINT64_C(2080375608), // ORC
UINT64_C(2080375608), // ORC8
UINT64_C(2080375609), // ORC8o
UINT64_C(2080375609), // ORCo
UINT64_C(1610612736), // ORI
UINT64_C(1610612736), // ORI8
UINT64_C(1677721600), // ORIS
UINT64_C(1677721600), // ORIS8
UINT64_C(2080375673), // ORo
UINT64_C(2080375796), // POPCNTD
UINT64_C(2080375540), // POPCNTW
UINT64_C(0), // PPC32GOT
UINT64_C(0), // PPC32PICGOT
UINT64_C(268435466), // QVALIGNI
UINT64_C(268435466), // QVALIGNIb
UINT64_C(268435466), // QVALIGNIs
UINT64_C(268435530), // QVESPLATI
UINT64_C(268435530), // QVESPLATIb
UINT64_C(268435530), // QVESPLATIs
UINT64_C(268435984), // QVFABS
UINT64_C(268435984), // QVFABSs
UINT64_C(268435498), // QVFADD
UINT64_C(42), // QVFADDS
UINT64_C(42), // QVFADDSs
UINT64_C(268437148), // QVFCFID
UINT64_C(1692), // QVFCFIDS
UINT64_C(268437404), // QVFCFIDU
UINT64_C(1948), // QVFCFIDUS
UINT64_C(268437148), // QVFCFIDb
UINT64_C(268435456), // QVFCMPEQ
UINT64_C(268435456), // QVFCMPEQb
UINT64_C(268435456), // QVFCMPEQbs
UINT64_C(268435520), // QVFCMPGT
UINT64_C(268435520), // QVFCMPGTb
UINT64_C(268435520), // QVFCMPGTbs
UINT64_C(268435648), // QVFCMPLT
UINT64_C(268435648), // QVFCMPLTb
UINT64_C(268435648), // QVFCMPLTbs
UINT64_C(268435472), // QVFCPSGN
UINT64_C(268435472), // QVFCPSGNs
UINT64_C(268437084), // QVFCTID
UINT64_C(268437340), // QVFCTIDU
UINT64_C(268437342), // QVFCTIDUZ
UINT64_C(268437086), // QVFCTIDZ
UINT64_C(268437084), // QVFCTIDb
UINT64_C(268435484), // QVFCTIW
UINT64_C(268435740), // QVFCTIWU
UINT64_C(268435742), // QVFCTIWUZ
UINT64_C(268435486), // QVFCTIWZ
UINT64_C(268435464), // QVFLOGICAL
UINT64_C(268435464), // QVFLOGICALb
UINT64_C(268435464), // QVFLOGICALs
UINT64_C(268435514), // QVFMADD
UINT64_C(58), // QVFMADDS
UINT64_C(58), // QVFMADDSs
UINT64_C(268435600), // QVFMR
UINT64_C(268435600), // QVFMRb
UINT64_C(268435600), // QVFMRs
UINT64_C(268435512), // QVFMSUB
UINT64_C(56), // QVFMSUBS
UINT64_C(56), // QVFMSUBSs
UINT64_C(268435506), // QVFMUL
UINT64_C(50), // QVFMULS
UINT64_C(50), // QVFMULSs
UINT64_C(268435728), // QVFNABS
UINT64_C(268435728), // QVFNABSs
UINT64_C(268435536), // QVFNEG
UINT64_C(268435536), // QVFNEGs
UINT64_C(268435518), // QVFNMADD
UINT64_C(62), // QVFNMADDS
UINT64_C(62), // QVFNMADDSs
UINT64_C(268435516), // QVFNMSUB
UINT64_C(60), // QVFNMSUBS
UINT64_C(60), // QVFNMSUBSs
UINT64_C(268435468), // QVFPERM
UINT64_C(268435468), // QVFPERMs
UINT64_C(268435504), // QVFRE
UINT64_C(48), // QVFRES
UINT64_C(48), // QVFRESs
UINT64_C(268436432), // QVFRIM
UINT64_C(268436432), // QVFRIMs
UINT64_C(268436240), // QVFRIN
UINT64_C(268436240), // QVFRINs
UINT64_C(268436368), // QVFRIP
UINT64_C(268436368), // QVFRIPs
UINT64_C(268436304), // QVFRIZ
UINT64_C(268436304), // QVFRIZs
UINT64_C(268435480), // QVFRSP
UINT64_C(268435480), // QVFRSPs
UINT64_C(268435508), // QVFRSQRTE
UINT64_C(52), // QVFRSQRTES
UINT64_C(52), // QVFRSQRTESs
UINT64_C(268435502), // QVFSEL
UINT64_C(268435502), // QVFSELb
UINT64_C(268435502), // QVFSELbb
UINT64_C(268435502), // QVFSELbs
UINT64_C(268435496), // QVFSUB
UINT64_C(40), // QVFSUBS
UINT64_C(40), // QVFSUBSs
UINT64_C(268435584), // QVFTSTNAN
UINT64_C(268435584), // QVFTSTNANb
UINT64_C(268435584), // QVFTSTNANbs
UINT64_C(268435474), // QVFXMADD
UINT64_C(18), // QVFXMADDS
UINT64_C(268435490), // QVFXMUL
UINT64_C(34), // QVFXMULS
UINT64_C(268435462), // QVFXXCPNMADD
UINT64_C(6), // QVFXXCPNMADDS
UINT64_C(268435458), // QVFXXMADD
UINT64_C(2), // QVFXXMADDS
UINT64_C(268435478), // QVFXXNPMADD
UINT64_C(22), // QVFXXNPMADDS
UINT64_C(268435722), // QVGPCI
UINT64_C(2080374990), // QVLFCDUX
UINT64_C(2080374991), // QVLFCDUXA
UINT64_C(2080374926), // QVLFCDX
UINT64_C(2080374927), // QVLFCDXA
UINT64_C(2080374862), // QVLFCSUX
UINT64_C(2080374863), // QVLFCSUXA
UINT64_C(2080374798), // QVLFCSX
UINT64_C(2080374799), // QVLFCSXA
UINT64_C(2080374798), // QVLFCSXs
UINT64_C(2080376014), // QVLFDUX
UINT64_C(2080376015), // QVLFDUXA
UINT64_C(2080375950), // QVLFDX
UINT64_C(2080375951), // QVLFDXA
UINT64_C(2080375950), // QVLFDXb
UINT64_C(2080376526), // QVLFIWAX
UINT64_C(2080376527), // QVLFIWAXA
UINT64_C(2080376462), // QVLFIWZX
UINT64_C(2080376463), // QVLFIWZXA
UINT64_C(2080375886), // QVLFSUX
UINT64_C(2080375887), // QVLFSUXA
UINT64_C(2080375822), // QVLFSX
UINT64_C(2080375823), // QVLFSXA
UINT64_C(2080375822), // QVLFSXb
UINT64_C(2080375822), // QVLFSXs
UINT64_C(2080375948), // QVLPCLDX
UINT64_C(2080375820), // QVLPCLSX
UINT64_C(2080375820), // QVLPCLSXint
UINT64_C(2080374924), // QVLPCRDX
UINT64_C(2080374796), // QVLPCRSX
UINT64_C(2080375246), // QVSTFCDUX
UINT64_C(2080375247), // QVSTFCDUXA
UINT64_C(2080375242), // QVSTFCDUXI
UINT64_C(2080375243), // QVSTFCDUXIA
UINT64_C(2080375182), // QVSTFCDX
UINT64_C(2080375183), // QVSTFCDXA
UINT64_C(2080375178), // QVSTFCDXI
UINT64_C(2080375179), // QVSTFCDXIA
UINT64_C(2080375118), // QVSTFCSUX
UINT64_C(2080375119), // QVSTFCSUXA
UINT64_C(2080375114), // QVSTFCSUXI
UINT64_C(2080375115), // QVSTFCSUXIA
UINT64_C(2080375054), // QVSTFCSX
UINT64_C(2080375055), // QVSTFCSXA
UINT64_C(2080375050), // QVSTFCSXI
UINT64_C(2080375051), // QVSTFCSXIA
UINT64_C(2080375054), // QVSTFCSXs
UINT64_C(2080376270), // QVSTFDUX
UINT64_C(2080376271), // QVSTFDUXA
UINT64_C(2080376266), // QVSTFDUXI
UINT64_C(2080376267), // QVSTFDUXIA
UINT64_C(2080376206), // QVSTFDX
UINT64_C(2080376207), // QVSTFDXA
UINT64_C(2080376202), // QVSTFDXI
UINT64_C(2080376203), // QVSTFDXIA
UINT64_C(2080376206), // QVSTFDXb
UINT64_C(2080376718), // QVSTFIWX
UINT64_C(2080376719), // QVSTFIWXA
UINT64_C(2080376142), // QVSTFSUX
UINT64_C(2080376143), // QVSTFSUXA
UINT64_C(2080376138), // QVSTFSUXI
UINT64_C(2080376139), // QVSTFSUXIA
UINT64_C(2080376142), // QVSTFSUXs
UINT64_C(2080376078), // QVSTFSX
UINT64_C(2080376079), // QVSTFSXA
UINT64_C(2080376074), // QVSTFSXI
UINT64_C(2080376075), // QVSTFSXIA
UINT64_C(2080376078), // QVSTFSXs
UINT64_C(0), // RESTORE_CR
UINT64_C(0), // RESTORE_CRBIT
UINT64_C(0), // RESTORE_VRSAVE
UINT64_C(1275068518), // RFCI
UINT64_C(1275068494), // RFDI
UINT64_C(1275068708), // RFEBB
UINT64_C(1275068516), // RFI
UINT64_C(1275068452), // RFID
UINT64_C(1275068492), // RFMCI
UINT64_C(2013265936), // RLDCL
UINT64_C(2013265937), // RLDCLo
UINT64_C(2013265938), // RLDCR
UINT64_C(2013265939), // RLDCRo
UINT64_C(2013265928), // RLDIC
UINT64_C(2013265920), // RLDICL
UINT64_C(2013265920), // RLDICL_32_64
UINT64_C(2013265921), // RLDICLo
UINT64_C(2013265924), // RLDICR
UINT64_C(2013265925), // RLDICRo
UINT64_C(2013265929), // RLDICo
UINT64_C(2013265932), // RLDIMI
UINT64_C(2013265933), // RLDIMIo
UINT64_C(1342177280), // RLWIMI
UINT64_C(1342177280), // RLWIMI8
UINT64_C(1342177281), // RLWIMI8o
UINT64_C(0),
UINT64_C(1342177281), // RLWIMIo
UINT64_C(0),
UINT64_C(1409286144), // RLWINM
UINT64_C(1409286144), // RLWINM8
UINT64_C(1409286145), // RLWINM8o
UINT64_C(0),
UINT64_C(1409286145), // RLWINMo
UINT64_C(0),
UINT64_C(1543503872), // RLWNM
UINT64_C(1543503872), // RLWNM8
UINT64_C(1543503873), // RLWNM8o
UINT64_C(0),
UINT64_C(1543503873), // RLWNMo
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0), // ReadTB
UINT64_C(1140850690), // SC
UINT64_C(0), // SELECT_CC_F4
UINT64_C(0), // SELECT_CC_F8
UINT64_C(0), // SELECT_CC_I4
UINT64_C(0), // SELECT_CC_I8
UINT64_C(0), // SELECT_CC_QBRC
UINT64_C(0), // SELECT_CC_QFRC
UINT64_C(0), // SELECT_CC_QSRC
UINT64_C(0), // SELECT_CC_VRRC
UINT64_C(0), // SELECT_CC_VSFRC
UINT64_C(0), // SELECT_CC_VSRC
UINT64_C(0), // SELECT_CC_VSSRC
UINT64_C(0), // SELECT_F4
UINT64_C(0), // SELECT_F8
UINT64_C(0), // SELECT_I4
UINT64_C(0), // SELECT_I8
UINT64_C(0), // SELECT_QBRC
UINT64_C(0), // SELECT_QFRC
UINT64_C(0), // SELECT_QSRC
UINT64_C(0), // SELECT_VRRC
UINT64_C(0), // SELECT_VSFRC
UINT64_C(0), // SELECT_VSRC
UINT64_C(0), // SELECT_VSSRC
UINT64_C(2080375780), // SLBIA
UINT64_C(2080375652), // SLBIE
UINT64_C(2080376614), // SLBMFEE
UINT64_C(2080375588), // SLBMTE
UINT64_C(2080374838), // SLD
UINT64_C(0),
UINT64_C(0),
UINT64_C(2080374839), // SLDo
UINT64_C(2080374832), // SLW
UINT64_C(2080374832), // SLW8
UINT64_C(2080374833), // SLW8o
UINT64_C(0),
UINT64_C(0),
UINT64_C(2080374833), // SLWo
UINT64_C(0), // SPILL_CR
UINT64_C(0), // SPILL_CRBIT
UINT64_C(0), // SPILL_VRSAVE
UINT64_C(2080376372), // SRAD
UINT64_C(2080376436), // SRADI
UINT64_C(2080376437), // SRADIo
UINT64_C(2080376373), // SRADo
UINT64_C(2080376368), // SRAW
UINT64_C(2080376432), // SRAWI
UINT64_C(2080376433), // SRAWIo
UINT64_C(2080376369), // SRAWo
UINT64_C(2080375862), // SRD
UINT64_C(0),
UINT64_C(0),
UINT64_C(2080375863), // SRDo
UINT64_C(2080375856), // SRW
UINT64_C(2080375856), // SRW8
UINT64_C(2080375857), // SRW8o
UINT64_C(0),
UINT64_C(0),
UINT64_C(2080375857), // SRWo
UINT64_C(2550136832), // STB
UINT64_C(2550136832), // STB8
UINT64_C(2080376746), // STBCIX
UINT64_C(2080376173), // STBCX
UINT64_C(2617245696), // STBU
UINT64_C(2617245696), // STBU8
UINT64_C(2080375278), // STBUX
UINT64_C(2080375278), // STBUX8
UINT64_C(2080375214), // STBX
UINT64_C(2080375214), // STBX8
UINT64_C(4160749568), // STD
UINT64_C(2080376104), // STDBRX
UINT64_C(2080376810), // STDCIX
UINT64_C(2080375213), // STDCX
UINT64_C(4160749569), // STDU
UINT64_C(2080375146), // STDUX
UINT64_C(2080375082), // STDX
UINT64_C(3623878656), // STFD
UINT64_C(3690987520), // STFDU
UINT64_C(2080376302), // STFDUX
UINT64_C(2080376238), // STFDX
UINT64_C(2080376750), // STFIWX
UINT64_C(3489660928), // STFS
UINT64_C(3556769792), // STFSU
UINT64_C(2080376174), // STFSUX
UINT64_C(2080376110), // STFSX
UINT64_C(2952790016), // STH
UINT64_C(2952790016), // STH8
UINT64_C(2080376620), // STHBRX
UINT64_C(2080376682), // STHCIX
UINT64_C(2080376237), // STHCX
UINT64_C(3019898880), // STHU
UINT64_C(3019898880), // STHU8
UINT64_C(2080375662), // STHUX
UINT64_C(2080375662), // STHUX8
UINT64_C(2080375598), // STHX
UINT64_C(2080375598), // STHX8
UINT64_C(3154116608), // STMW
UINT64_C(2080376234), // STSWI
UINT64_C(2080375054), // STVEBX
UINT64_C(2080375118), // STVEHX
UINT64_C(2080375182), // STVEWX
UINT64_C(2080375246), // STVX
UINT64_C(2080375758), // STVXL
UINT64_C(2415919104), // STW
UINT64_C(2415919104), // STW8
UINT64_C(2080376108), // STWBRX
UINT64_C(2080376618), // STWCIX
UINT64_C(2080375085), // STWCX
UINT64_C(2483027968), // STWU
UINT64_C(2483027968), // STWU8
UINT64_C(2080375150), // STWUX
UINT64_C(2080375150), // STWUX8
UINT64_C(2080375086), // STWX
UINT64_C(2080375086), // STWX8
UINT64_C(2080376216), // STXSDX
UINT64_C(2080375064), // STXSIWX
UINT64_C(2080376088), // STXSSPX
UINT64_C(2080376728), // STXVD2X
UINT64_C(2080376600), // STXVW4X
UINT64_C(2080374864), // SUBF
UINT64_C(2080374864), // SUBF8
UINT64_C(2080374865), // SUBF8o
UINT64_C(2080374800), // SUBFC
UINT64_C(2080374800), // SUBFC8
UINT64_C(2080374801), // SUBFC8o
UINT64_C(2080374801), // SUBFCo
UINT64_C(2080375056), // SUBFE
UINT64_C(2080375056), // SUBFE8
UINT64_C(2080375057), // SUBFE8o
UINT64_C(2080375057), // SUBFEo
UINT64_C(536870912), // SUBFIC
UINT64_C(536870912), // SUBFIC8
UINT64_C(2080375248), // SUBFME
UINT64_C(2080375248), // SUBFME8
UINT64_C(2080375249), // SUBFME8o
UINT64_C(2080375249), // SUBFMEo
UINT64_C(2080375184), // SUBFZE
UINT64_C(2080375184), // SUBFZE8
UINT64_C(2080375185), // SUBFZE8o
UINT64_C(2080375185), // SUBFZEo
UINT64_C(2080374865), // SUBFo
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(0),
UINT64_C(2080375980), // SYNC
UINT64_C(2080376605), // TABORT
UINT64_C(2080376413), // TABORTDC
UINT64_C(2080376541), // TABORTDCI
UINT64_C(2080376349), // TABORTWC
UINT64_C(2080376477), // TABORTWCI
UINT64_C(1207959552), // TAILB
UINT64_C(1207959552), // TAILB8
UINT64_C(1207959552), // TAILBA
UINT64_C(1207959552), // TAILBA8
UINT64_C(1317012512), // TAILBCTR
UINT64_C(1317012512), // TAILBCTR8
UINT64_C(2080376093), // TBEGIN
UINT64_C(2080376220), // TCHECK
UINT64_C(0), // TCHECK_RET
UINT64_C(0), // TCRETURNai
UINT64_C(0), // TCRETURNai8
UINT64_C(0), // TCRETURNdi
UINT64_C(0), // TCRETURNdi8
UINT64_C(0), // TCRETURNri
UINT64_C(0), // TCRETURNri8
UINT64_C(2080374920), // TD
UINT64_C(134217728), // TDI
UINT64_C(2080376157), // TEND
UINT64_C(2080375524), // TLBIA
UINT64_C(2080375396), // TLBIE
UINT64_C(2080375332), // TLBIEL
UINT64_C(2080376356), // TLBIVAX
UINT64_C(2080376740), // TLBLD
UINT64_C(2080376804), // TLBLI
UINT64_C(2080376676), // TLBRE
UINT64_C(2080376676), // TLBRE2
UINT64_C(2080376612), // TLBSX
UINT64_C(2080376612), // TLBSX2
UINT64_C(2080376613), // TLBSX2D
UINT64_C(2080375916), // TLBSYNC
UINT64_C(2080376740), // TLBWE
UINT64_C(2080376740), // TLBWE2
UINT64_C(2145386504), // TRAP
UINT64_C(2080376797), // TRECHKPT
UINT64_C(2080376669), // TRECLAIM
UINT64_C(2080376285), // TSR
UINT64_C(2080374792), // TW
UINT64_C(201326592), // TWI
UINT64_C(0), // UPDATE_VRSAVE
UINT64_C(0), // UpdateGBR
UINT64_C(268435776), // VADDCUQ
UINT64_C(268435840), // VADDCUW
UINT64_C(268435517), // VADDECUQ
UINT64_C(268435516), // VADDEUQM
UINT64_C(268435466), // VADDFP
UINT64_C(268436224), // VADDSBS
UINT64_C(268436288), // VADDSHS
UINT64_C(268436352), // VADDSWS
UINT64_C(268435456), // VADDUBM
UINT64_C(268435968), // VADDUBS
UINT64_C(268435648), // VADDUDM
UINT64_C(268435520), // VADDUHM
UINT64_C(268436032), // VADDUHS
UINT64_C(268435712), // VADDUQM
UINT64_C(268435584), // VADDUWM
UINT64_C(268436096), // VADDUWS
UINT64_C(268436484), // VAND
UINT64_C(268436548), // VANDC
UINT64_C(268436738), // VAVGSB
UINT64_C(268436802), // VAVGSH
UINT64_C(268436866), // VAVGSW
UINT64_C(268436482), // VAVGUB
UINT64_C(268436546), // VAVGUH
UINT64_C(268436610), // VAVGUW
UINT64_C(268436812), // VBPERMQ
UINT64_C(268436298), // VCFSX
UINT64_C(268436298), // VCFSX_0
UINT64_C(268436234), // VCFUX
UINT64_C(268436234), // VCFUX_0
UINT64_C(268436744), // VCIPHER
UINT64_C(268436745), // VCIPHERLAST
UINT64_C(268437250), // VCLZB
UINT64_C(268437442), // VCLZD
UINT64_C(268437314), // VCLZH
UINT64_C(268437378), // VCLZW
UINT64_C(268436422), // VCMPBFP
UINT64_C(268437446), // VCMPBFPo
UINT64_C(268435654), // VCMPEQFP
UINT64_C(268436678), // VCMPEQFPo
UINT64_C(268435462), // VCMPEQUB
UINT64_C(268436486), // VCMPEQUBo
UINT64_C(268435655), // VCMPEQUD
UINT64_C(268436679), // VCMPEQUDo
UINT64_C(268435526), // VCMPEQUH
UINT64_C(268436550), // VCMPEQUHo
UINT64_C(268435590), // VCMPEQUW
UINT64_C(268436614), // VCMPEQUWo
UINT64_C(268435910), // VCMPGEFP
UINT64_C(268436934), // VCMPGEFPo
UINT64_C(268436166), // VCMPGTFP
UINT64_C(268437190), // VCMPGTFPo
UINT64_C(268436230), // VCMPGTSB
UINT64_C(268437254), // VCMPGTSBo
UINT64_C(268436423), // VCMPGTSD
UINT64_C(268437447), // VCMPGTSDo
UINT64_C(268436294), // VCMPGTSH
UINT64_C(268437318), // VCMPGTSHo
UINT64_C(268436358), // VCMPGTSW
UINT64_C(268437382), // VCMPGTSWo
UINT64_C(268435974), // VCMPGTUB
UINT64_C(268436998), // VCMPGTUBo
UINT64_C(268436167), // VCMPGTUD
UINT64_C(268437191), // VCMPGTUDo
UINT64_C(268436038), // VCMPGTUH
UINT64_C(268437062), // VCMPGTUHo
UINT64_C(268436102), // VCMPGTUW
UINT64_C(268437126), // VCMPGTUWo
UINT64_C(268436426), // VCTSXS
UINT64_C(268436426), // VCTSXS_0
UINT64_C(268436362), // VCTUXS
UINT64_C(268436362), // VCTUXS_0
UINT64_C(268437124), // VEQV
UINT64_C(268435850), // VEXPTEFP
UINT64_C(268436748), // VGBBD
UINT64_C(268435914), // VLOGEFP
UINT64_C(268435502), // VMADDFP
UINT64_C(268436490), // VMAXFP
UINT64_C(268435714), // VMAXSB
UINT64_C(268435906), // VMAXSD
UINT64_C(268435778), // VMAXSH
UINT64_C(268435842), // VMAXSW
UINT64_C(268435458), // VMAXUB
UINT64_C(268435650), // VMAXUD
UINT64_C(268435522), // VMAXUH
UINT64_C(268435586), // VMAXUW
UINT64_C(268435488), // VMHADDSHS
UINT64_C(268435489), // VMHRADDSHS
UINT64_C(268436554), // VMINFP
UINT64_C(268436226), // VMINSB
UINT64_C(268436418), // VMINSD
UINT64_C(268436290), // VMINSH
UINT64_C(268436354), // VMINSW
UINT64_C(268435970), // VMINUB
UINT64_C(268436162), // VMINUD
UINT64_C(268436034), // VMINUH
UINT64_C(268436098), // VMINUW
UINT64_C(268435490), // VMLADDUHM
UINT64_C(268437388), // VMRGEW
UINT64_C(268435468), // VMRGHB
UINT64_C(268435532), // VMRGHH
UINT64_C(268435596), // VMRGHW
UINT64_C(268435724), // VMRGLB
UINT64_C(268435788), // VMRGLH
UINT64_C(268435852), // VMRGLW
UINT64_C(268437132), // VMRGOW
UINT64_C(268435493), // VMSUMMBM
UINT64_C(268435496), // VMSUMSHM
UINT64_C(268435497), // VMSUMSHS
UINT64_C(268435492), // VMSUMUBM
UINT64_C(268435494), // VMSUMUHM
UINT64_C(268435495), // VMSUMUHS
UINT64_C(268436232), // VMULESB
UINT64_C(268436296), // VMULESH
UINT64_C(268436360), // VMULESW
UINT64_C(268435976), // VMULEUB
UINT64_C(268436040), // VMULEUH
UINT64_C(268436104), // VMULEUW
UINT64_C(268435720), // VMULOSB
UINT64_C(268435784), // VMULOSH
UINT64_C(268435848), // VMULOSW
UINT64_C(268435464), // VMULOUB
UINT64_C(268435528), // VMULOUH
UINT64_C(268435592), // VMULOUW
UINT64_C(268435593), // VMULUWM
UINT64_C(268436868), // VNAND
UINT64_C(268436808), // VNCIPHER
UINT64_C(268436809), // VNCIPHERLAST
UINT64_C(268435503), // VNMSUBFP
UINT64_C(268436740), // VNOR
UINT64_C(268436612), // VOR
UINT64_C(268436804), // VORC
UINT64_C(268435499), // VPERM
UINT64_C(268435501), // VPERMXOR
UINT64_C(268436238), // VPKPX
UINT64_C(268436942), // VPKSDSS
UINT64_C(268436814), // VPKSDUS
UINT64_C(268435854), // VPKSHSS
UINT64_C(268435726), // VPKSHUS
UINT64_C(268435918), // VPKSWSS
UINT64_C(268435790), // VPKSWUS
UINT64_C(268436558), // VPKUDUM
UINT64_C(268436686), // VPKUDUS
UINT64_C(268435470), // VPKUHUM
UINT64_C(268435598), // VPKUHUS
UINT64_C(268435534), // VPKUWUM
UINT64_C(268435662), // VPKUWUS
UINT64_C(268436488), // VPMSUMB
UINT64_C(268436680), // VPMSUMD
UINT64_C(268436552), // VPMSUMH
UINT64_C(268436616), // VPMSUMW
UINT64_C(268437251), // VPOPCNTB
UINT64_C(268437443), // VPOPCNTD
UINT64_C(268437315), // VPOPCNTH
UINT64_C(268437379), // VPOPCNTW
UINT64_C(268435722), // VREFP
UINT64_C(268436170), // VRFIM
UINT64_C(268435978), // VRFIN
UINT64_C(268436106), // VRFIP
UINT64_C(268436042), // VRFIZ
UINT64_C(268435460), // VRLB
UINT64_C(268435652), // VRLD
UINT64_C(268435524), // VRLH
UINT64_C(268435588), // VRLW
UINT64_C(268435786), // VRSQRTEFP
UINT64_C(268436936), // VSBOX
UINT64_C(268435498), // VSEL
UINT64_C(268437186), // VSHASIGMAD
UINT64_C(268437122), // VSHASIGMAW
UINT64_C(268435908), // VSL
UINT64_C(268435716), // VSLB
UINT64_C(268436932), // VSLD
UINT64_C(268435500), // VSLDOI
UINT64_C(268435780), // VSLH
UINT64_C(268436492), // VSLO
UINT64_C(268435844), // VSLW
UINT64_C(268435980), // VSPLTB
UINT64_C(268436044), // VSPLTH
UINT64_C(268436236), // VSPLTISB
UINT64_C(268436300), // VSPLTISH
UINT64_C(268436364), // VSPLTISW
UINT64_C(268436108), // VSPLTW
UINT64_C(268436164), // VSR
UINT64_C(268436228), // VSRAB
UINT64_C(268436420), // VSRAD
UINT64_C(268436292), // VSRAH
UINT64_C(268436356), // VSRAW
UINT64_C(268435972), // VSRB
UINT64_C(268437188), // VSRD
UINT64_C(268436036), // VSRH
UINT64_C(268436556), // VSRO
UINT64_C(268436100), // VSRW
UINT64_C(268436800), // VSUBCUQ
UINT64_C(268436864), // VSUBCUW
UINT64_C(268435519), // VSUBECUQ
UINT64_C(268435518), // VSUBEUQM
UINT64_C(268435530), // VSUBFP
UINT64_C(268437248), // VSUBSBS
UINT64_C(268437312), // VSUBSHS
UINT64_C(268437376), // VSUBSWS
UINT64_C(268436480), // VSUBUBM
UINT64_C(268436992), // VSUBUBS
UINT64_C(268436672), // VSUBUDM
UINT64_C(268436544), // VSUBUHM
UINT64_C(268437056), // VSUBUHS
UINT64_C(268436736), // VSUBUQM
UINT64_C(268436608), // VSUBUWM
UINT64_C(268437120), // VSUBUWS
UINT64_C(268437128), // VSUM2SWS
UINT64_C(268437256), // VSUM4SBS
UINT64_C(268437064), // VSUM4SHS
UINT64_C(268437000), // VSUM4UBS
UINT64_C(268437384), // VSUMSWS
UINT64_C(268436302), // VUPKHPX
UINT64_C(268435982), // VUPKHSB
UINT64_C(268436046), // VUPKHSH
UINT64_C(268437070), // VUPKHSW
UINT64_C(268436430), // VUPKLPX
UINT64_C(268436110), // VUPKLSB
UINT64_C(268436174), // VUPKLSH
UINT64_C(268437198), // VUPKLSW
UINT64_C(268436676), // VXOR
UINT64_C(268436676), // V_SET0
UINT64_C(268436676), // V_SET0B
UINT64_C(268436676), // V_SET0H
UINT64_C(270467980), // V_SETALLONES
UINT64_C(270467980), // V_SETALLONESB
UINT64_C(270467980), // V_SETALLONESH
UINT64_C(2080374908), // WAIT
UINT64_C(2080375046), // WRTEE
UINT64_C(2080375110), // WRTEEI
UINT64_C(2080375416), // XOR
UINT64_C(2080375416), // XOR8
UINT64_C(2080375417), // XOR8o
UINT64_C(1744830464), // XORI
UINT64_C(1744830464), // XORI8
UINT64_C(1811939328), // XORIS
UINT64_C(1811939328), // XORIS8
UINT64_C(2080375417), // XORo
UINT64_C(4026533220), // XSABSDP
UINT64_C(4026532096), // XSADDDP
UINT64_C(4026531840), // XSADDSP
UINT64_C(4026532184), // XSCMPODP
UINT64_C(4026532120), // XSCMPUDP
UINT64_C(4026533248), // XSCPSGNDP
UINT64_C(4026532900), // XSCVDPSP
UINT64_C(4026532908), // XSCVDPSPN
UINT64_C(4026533216), // XSCVDPSXDS
UINT64_C(4026532192), // XSCVDPSXWS
UINT64_C(4026533152), // XSCVDPUXDS
UINT64_C(4026532128), // XSCVDPUXWS
UINT64_C(4026533156), // XSCVSPDP
UINT64_C(4026533164), // XSCVSPDPN
UINT64_C(4026533344), // XSCVSXDDP
UINT64_C(4026533088), // XSCVSXDSP
UINT64_C(4026533280), // XSCVUXDDP
UINT64_C(4026533024), // XSCVUXDSP
UINT64_C(4026532288), // XSDIVDP
UINT64_C(4026532032), // XSDIVSP
UINT64_C(4026532104), // XSMADDADP
UINT64_C(4026531848), // XSMADDASP
UINT64_C(4026532168), // XSMADDMDP
UINT64_C(4026531912), // XSMADDMSP
UINT64_C(4026533120), // XSMAXDP
UINT64_C(4026533184), // XSMINDP
UINT64_C(4026532232), // XSMSUBADP
UINT64_C(4026531976), // XSMSUBASP
UINT64_C(4026532296), // XSMSUBMDP
UINT64_C(4026532040), // XSMSUBMSP
UINT64_C(4026532224), // XSMULDP
UINT64_C(4026531968), // XSMULSP
UINT64_C(4026533284), // XSNABSDP
UINT64_C(4026533348), // XSNEGDP
UINT64_C(4026533128), // XSNMADDADP
UINT64_C(4026532872), // XSNMADDASP
UINT64_C(4026533192), // XSNMADDMDP
UINT64_C(4026532936), // XSNMADDMSP
UINT64_C(4026533256), // XSNMSUBADP
UINT64_C(4026533000), // XSNMSUBASP
UINT64_C(4026533320), // XSNMSUBMDP
UINT64_C(4026533064), // XSNMSUBMSP
UINT64_C(4026532132), // XSRDPI
UINT64_C(4026532268), // XSRDPIC
UINT64_C(4026532324), // XSRDPIM
UINT64_C(4026532260), // XSRDPIP
UINT64_C(4026532196), // XSRDPIZ
UINT64_C(4026532200), // XSREDP
UINT64_C(4026531944), // XSRESP
UINT64_C(4026532136), // XSRSQRTEDP
UINT64_C(4026531880), // XSRSQRTESP
UINT64_C(4026532140), // XSSQRTDP
UINT64_C(4026531884), // XSSQRTSP
UINT64_C(4026532160), // XSSUBDP
UINT64_C(4026531904), // XSSUBSP
UINT64_C(4026532328), // XSTDIVDP
UINT64_C(4026532264), // XSTSQRTDP
UINT64_C(4026533732), // XVABSDP
UINT64_C(4026533476), // XVABSSP
UINT64_C(4026532608), // XVADDDP
UINT64_C(4026532352), // XVADDSP
UINT64_C(4026532632), // XVCMPEQDP
UINT64_C(4026533656), // XVCMPEQDPo
UINT64_C(4026532376), // XVCMPEQSP
UINT64_C(4026533400), // XVCMPEQSPo
UINT64_C(4026532760), // XVCMPGEDP
UINT64_C(4026533784), // XVCMPGEDPo
UINT64_C(4026532504), // XVCMPGESP
UINT64_C(4026533528), // XVCMPGESPo
UINT64_C(4026532696), // XVCMPGTDP
UINT64_C(4026533720), // XVCMPGTDPo
UINT64_C(4026532440), // XVCMPGTSP
UINT64_C(4026533464), // XVCMPGTSPo
UINT64_C(4026533760), // XVCPSGNDP
UINT64_C(4026533504), // XVCPSGNSP
UINT64_C(4026533412), // XVCVDPSP
UINT64_C(4026533728), // XVCVDPSXDS
UINT64_C(4026532704), // XVCVDPSXWS
UINT64_C(4026533664), // XVCVDPUXDS
UINT64_C(4026532640), // XVCVDPUXWS
UINT64_C(4026533668), // XVCVSPDP
UINT64_C(4026533472), // XVCVSPSXDS
UINT64_C(4026532448), // XVCVSPSXWS
UINT64_C(4026533408), // XVCVSPUXDS
UINT64_C(4026532384), // XVCVSPUXWS
UINT64_C(4026533856), // XVCVSXDDP
UINT64_C(4026533600), // XVCVSXDSP
UINT64_C(4026532832), // XVCVSXWDP
UINT64_C(4026532576), // XVCVSXWSP
UINT64_C(4026533792), // XVCVUXDDP
UINT64_C(4026533536), // XVCVUXDSP
UINT64_C(4026532768), // XVCVUXWDP
UINT64_C(4026532512), // XVCVUXWSP
UINT64_C(4026532800), // XVDIVDP
UINT64_C(4026532544), // XVDIVSP
UINT64_C(4026532616), // XVMADDADP
UINT64_C(4026532360), // XVMADDASP
UINT64_C(4026532680), // XVMADDMDP
UINT64_C(4026532424), // XVMADDMSP
UINT64_C(4026533632), // XVMAXDP
UINT64_C(4026533376), // XVMAXSP
UINT64_C(4026533696), // XVMINDP
UINT64_C(4026533440), // XVMINSP
UINT64_C(4026532744), // XVMSUBADP
UINT64_C(4026532488), // XVMSUBASP
UINT64_C(4026532808), // XVMSUBMDP
UINT64_C(4026532552), // XVMSUBMSP
UINT64_C(4026532736), // XVMULDP
UINT64_C(4026532480), // XVMULSP
UINT64_C(4026533796), // XVNABSDP
UINT64_C(4026533540), // XVNABSSP
UINT64_C(4026533860), // XVNEGDP
UINT64_C(4026533604), // XVNEGSP
UINT64_C(4026533640), // XVNMADDADP
UINT64_C(4026533384), // XVNMADDASP
UINT64_C(4026533704), // XVNMADDMDP
UINT64_C(4026533448), // XVNMADDMSP
UINT64_C(4026533768), // XVNMSUBADP
UINT64_C(4026533512), // XVNMSUBASP
UINT64_C(4026533832), // XVNMSUBMDP
UINT64_C(4026533576), // XVNMSUBMSP
UINT64_C(4026532644), // XVRDPI
UINT64_C(4026532780), // XVRDPIC
UINT64_C(4026532836), // XVRDPIM
UINT64_C(4026532772), // XVRDPIP
UINT64_C(4026532708), // XVRDPIZ
UINT64_C(4026532712), // XVREDP
UINT64_C(4026532456), // XVRESP
UINT64_C(4026532388), // XVRSPI
UINT64_C(4026532524), // XVRSPIC
UINT64_C(4026532580), // XVRSPIM
UINT64_C(4026532516), // XVRSPIP
UINT64_C(4026532452), // XVRSPIZ
UINT64_C(4026532648), // XVRSQRTEDP
UINT64_C(4026532392), // XVRSQRTESP
UINT64_C(4026532652), // XVSQRTDP
UINT64_C(4026532396), // XVSQRTSP
UINT64_C(4026532672), // XVSUBDP
UINT64_C(4026532416), // XVSUBSP
UINT64_C(4026532840), // XVTDIVDP
UINT64_C(4026532584), // XVTDIVSP
UINT64_C(4026532776), // XVTSQRTDP
UINT64_C(4026532520), // XVTSQRTSP
UINT64_C(4026532880), // XXLAND
UINT64_C(4026532944), // XXLANDC
UINT64_C(4026533328), // XXLEQV
UINT64_C(4026533264), // XXLNAND
UINT64_C(4026533136), // XXLNOR
UINT64_C(4026533008), // XXLOR
UINT64_C(4026533200), // XXLORC
UINT64_C(4026533008), // XXLORf
UINT64_C(4026533072), // XXLXOR
UINT64_C(4026531984), // XXMRGHW
UINT64_C(4026532240), // XXMRGLW
UINT64_C(4026531920), // XXPERMDI
UINT64_C(4026531888), // XXSEL
UINT64_C(4026531856), // XXSLDWI
UINT64_C(4026532496), // XXSPLTW
UINT64_C(1073741824), // gBC
UINT64_C(1073741826), // gBCA
UINT64_C(1275069472), // gBCCTR
UINT64_C(1275069473), // gBCCTRL
UINT64_C(1073741825), // gBCL
UINT64_C(1073741827), // gBCLA
UINT64_C(1275068448), // gBCLR
UINT64_C(1275068449), // gBCLRL
UINT64_C(0)
};
const unsigned opcode = MI.getOpcode();
uint64_t Value = InstBits[opcode];
uint64_t op = 0;
(void)op; // suppress warning
switch (opcode) {
case PPC::ADDISdtprelHA:
case PPC::ADDISdtprelHA32:
case PPC::ADDISgotTprelHA:
case PPC::ADDIStlsgdHA:
case PPC::ADDIStlsldHA:
case PPC::ADDIStocHA:
case PPC::ADDIdtprelL:
case PPC::ADDIdtprelL32:
case PPC::ADDItlsgdL:
case PPC::ADDItlsgdL32:
case PPC::ADDItlsgdLADDR:
case PPC::ADDItlsgdLADDR32:
case PPC::ADDItlsldL:
case PPC::ADDItlsldL32:
case PPC::ADDItlsldLADDR:
case PPC::ADDItlsldLADDR32:
case PPC::ADDItocL:
case PPC::ADJCALLSTACKDOWN:
case PPC::ADJCALLSTACKUP:
case PPC::ANDIo_1_EQ_BIT:
case PPC::ANDIo_1_EQ_BIT8:
case PPC::ANDIo_1_GT_BIT:
case PPC::ANDIo_1_GT_BIT8:
case PPC::ATOMIC_CMP_SWAP_I16:
case PPC::ATOMIC_CMP_SWAP_I32:
case PPC::ATOMIC_CMP_SWAP_I64:
case PPC::ATOMIC_CMP_SWAP_I8:
case PPC::ATOMIC_LOAD_ADD_I16:
case PPC::ATOMIC_LOAD_ADD_I32:
case PPC::ATOMIC_LOAD_ADD_I64:
case PPC::ATOMIC_LOAD_ADD_I8:
case PPC::ATOMIC_LOAD_AND_I16:
case PPC::ATOMIC_LOAD_AND_I32:
case PPC::ATOMIC_LOAD_AND_I64:
case PPC::ATOMIC_LOAD_AND_I8:
case PPC::ATOMIC_LOAD_NAND_I16:
case PPC::ATOMIC_LOAD_NAND_I32:
case PPC::ATOMIC_LOAD_NAND_I64:
case PPC::ATOMIC_LOAD_NAND_I8:
case PPC::ATOMIC_LOAD_OR_I16:
case PPC::ATOMIC_LOAD_OR_I32:
case PPC::ATOMIC_LOAD_OR_I64:
case PPC::ATOMIC_LOAD_OR_I8:
case PPC::ATOMIC_LOAD_SUB_I16:
case PPC::ATOMIC_LOAD_SUB_I32:
case PPC::ATOMIC_LOAD_SUB_I64:
case PPC::ATOMIC_LOAD_SUB_I8:
case PPC::ATOMIC_LOAD_XOR_I16:
case PPC::ATOMIC_LOAD_XOR_I32:
case PPC::ATOMIC_LOAD_XOR_I64:
case PPC::ATOMIC_LOAD_XOR_I8:
case PPC::ATOMIC_SWAP_I16:
case PPC::ATOMIC_SWAP_I32:
case PPC::ATOMIC_SWAP_I64:
case PPC::ATOMIC_SWAP_I8:
case PPC::ATTN:
case PPC::BCTR:
case PPC::BCTR8:
case PPC::BCTRL:
case PPC::BCTRL8:
case PPC::BDNZLR:
case PPC::BDNZLR8:
case PPC::BDNZLRL:
case PPC::BDNZLRLm:
case PPC::BDNZLRLp:
case PPC::BDNZLRm:
case PPC::BDNZLRp:
case PPC::BDZLR:
case PPC::BDZLR8:
case PPC::BDZLRL:
case PPC::BDZLRLm:
case PPC::BDZLRLp:
case PPC::BDZLRm:
case PPC::BDZLRp:
case PPC::BLR:
case PPC::BLR8:
case PPC::BLRL:
case PPC::CLRBHRB:
case PPC::CR6SET:
case PPC::CR6UNSET:
case PPC::DSSALL:
case PPC::DYNALLOC:
case PPC::DYNALLOC8:
case PPC::DYNAREAOFFSET:
case PPC::DYNAREAOFFSET8:
case PPC::EH_SjLj_LongJmp32:
case PPC::EH_SjLj_LongJmp64:
case PPC::EH_SjLj_SetJmp32:
case PPC::EH_SjLj_SetJmp64:
case PPC::EH_SjLj_Setup:
case PPC::EnforceIEIO:
case PPC::FADDrtz:
case PPC::GETtlsADDR:
case PPC::GETtlsADDR32:
case PPC::GETtlsldADDR:
case PPC::GETtlsldADDR32:
case PPC::ISYNC:
case PPC::LDgotTprelL:
case PPC::LDgotTprelL32:
case PPC::LDtoc:
case PPC::LDtocBA:
case PPC::LDtocCPT:
case PPC::LDtocJTI:
case PPC::LDtocL:
case PPC::LWZtoc:
case PPC::MSYNC:
case PPC::MoveGOTtoLR:
case PPC::MovePCtoLR:
case PPC::MovePCtoLR8:
case PPC::NOP:
case PPC::NOP_GT_PWR6:
case PPC::NOP_GT_PWR7:
case PPC::PPC32GOT:
case PPC::PPC32PICGOT:
case PPC::RESTORE_CR:
case PPC::RESTORE_CRBIT:
case PPC::RESTORE_VRSAVE:
case PPC::RFCI:
case PPC::RFDI:
case PPC::RFI:
case PPC::RFID:
case PPC::RFMCI:
case PPC::ReadTB:
case PPC::SELECT_CC_F4:
case PPC::SELECT_CC_F8:
case PPC::SELECT_CC_I4:
case PPC::SELECT_CC_I8:
case PPC::SELECT_CC_QBRC:
case PPC::SELECT_CC_QFRC:
case PPC::SELECT_CC_QSRC:
case PPC::SELECT_CC_VRRC:
case PPC::SELECT_CC_VSFRC:
case PPC::SELECT_CC_VSRC:
case PPC::SELECT_CC_VSSRC:
case PPC::SELECT_F4:
case PPC::SELECT_F8:
case PPC::SELECT_I4:
case PPC::SELECT_I8:
case PPC::SELECT_QBRC:
case PPC::SELECT_QFRC:
case PPC::SELECT_QSRC:
case PPC::SELECT_VRRC:
case PPC::SELECT_VSFRC:
case PPC::SELECT_VSRC:
case PPC::SELECT_VSSRC:
case PPC::SLBIA:
case PPC::SPILL_CR:
case PPC::SPILL_CRBIT:
case PPC::SPILL_VRSAVE:
case PPC::TAILBCTR:
case PPC::TAILBCTR8:
case PPC::TCHECK_RET:
case PPC::TCRETURNai:
case PPC::TCRETURNai8:
case PPC::TCRETURNdi:
case PPC::TCRETURNdi8:
case PPC::TCRETURNri:
case PPC::TCRETURNri8:
case PPC::TLBIA:
case PPC::TLBRE:
case PPC::TLBSYNC:
case PPC::TLBWE:
case PPC::TRAP:
case PPC::TRECHKPT:
case PPC::UPDATE_VRSAVE:
case PPC::UpdateGBR: {
break;
}
case PPC::DCBA:
case PPC::DCBF:
case PPC::DCBI:
case PPC::DCBST:
case PPC::DCBZ:
case PPC::DCBZL:
case PPC::DCCCI:
case PPC::ICBI:
case PPC::ICCCI:
case PPC::TLBIVAX:
case PPC::TLBSX: {
// op: A
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: B
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::SRADI:
case PPC::SRADIo: {
// op: A
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RS
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: SH
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
Value |= (op & UINT64_C(32)) >> 4;
break;
}
case PPC::CNTLZD:
case PPC::CNTLZDo:
case PPC::CNTLZW:
case PPC::CNTLZW8:
case PPC::CNTLZW8o:
case PPC::CNTLZWo:
case PPC::EXTSB:
case PPC::EXTSB8:
case PPC::EXTSB8_32_64:
case PPC::EXTSB8o:
case PPC::EXTSBo:
case PPC::EXTSH:
case PPC::EXTSH8:
case PPC::EXTSH8_32_64:
case PPC::EXTSH8o:
case PPC::EXTSHo:
case PPC::EXTSW:
case PPC::EXTSW_32_64:
case PPC::EXTSW_32_64o:
case PPC::EXTSWo:
case PPC::POPCNTD:
case PPC::POPCNTW:
case PPC::QVLPCLSXint: {
// op: A
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RST
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
break;
}
case PPC::AND:
case PPC::AND8:
case PPC::AND8o:
case PPC::ANDC:
case PPC::ANDC8:
case PPC::ANDC8o:
case PPC::ANDCo:
case PPC::ANDo:
case PPC::BPERMD:
case PPC::CMPB:
case PPC::CMPB8:
case PPC::EQV:
case PPC::EQV8:
case PPC::EQV8o:
case PPC::EQVo:
case PPC::NAND:
case PPC::NAND8:
case PPC::NAND8o:
case PPC::NANDo:
case PPC::NOR:
case PPC::NOR8:
case PPC::NOR8o:
case PPC::NORo:
case PPC::OR:
case PPC::OR8:
case PPC::OR8o:
case PPC::ORC:
case PPC::ORC8:
case PPC::ORC8o:
case PPC::ORCo:
case PPC::ORo:
case PPC::SLD:
case PPC::SLDo:
case PPC::SLW:
case PPC::SLW8:
case PPC::SLW8o:
case PPC::SLWo:
case PPC::SRAD:
case PPC::SRADo:
case PPC::SRAW:
case PPC::SRAWI:
case PPC::SRAWIo:
case PPC::SRAWo:
case PPC::SRD:
case PPC::SRDo:
case PPC::SRW:
case PPC::SRW8:
case PPC::SRW8o:
case PPC::SRWo:
case PPC::XOR:
case PPC::XOR8:
case PPC::XOR8o:
case PPC::XORo: {
// op: A
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RST
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: B
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::LBZ:
case PPC::LBZ8:
case PPC::LFD:
case PPC::LFS:
case PPC::LHA:
case PPC::LHA8:
case PPC::LHZ:
case PPC::LHZ8:
case PPC::LMW:
case PPC::LWZ:
case PPC::LWZ8:
case PPC::STB:
case PPC::STB8:
case PPC::STFD:
case PPC::STFS:
case PPC::STH:
case PPC::STH8:
case PPC::STMW:
case PPC::STW:
case PPC::STW8: {
// op: A
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: Addr
op = getMemRIEncoding(MI, 1, Fixups, STI);
Value |= op & UINT64_C(2097151);
break;
}
case PPC::LBZU:
case PPC::LBZU8:
case PPC::LFDU:
case PPC::LFSU:
case PPC::LHAU:
case PPC::LHAU8:
case PPC::LHZU:
case PPC::LHZU8:
case PPC::LWZU:
case PPC::LWZU8: {
// op: A
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: Addr
op = getMemRIEncoding(MI, 2, Fixups, STI);
Value |= op & UINT64_C(2097151);
break;
}
case PPC::LI:
case PPC::LI8:
case PPC::LIS:
case PPC::LIS8: {
// op: A
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: B
op = getImm16Encoding(MI, 1, Fixups, STI);
Value |= op & UINT64_C(65535);
break;
}
case PPC::ADDI:
case PPC::ADDI8:
case PPC::ADDIC:
case PPC::ADDIC8:
case PPC::ADDICo:
case PPC::ADDIS:
case PPC::ADDIS8:
case PPC::LA:
case PPC::MULLI:
case PPC::MULLI8:
case PPC::SUBFIC:
case PPC::SUBFIC8:
case PPC::TDI:
case PPC::TWI: {
// op: A
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: B
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: C
op = getImm16Encoding(MI, 2, Fixups, STI);
Value |= op & UINT64_C(65535);
break;
}
case PPC::TEND: {
// op: A
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(1)) << 25;
break;
}
case PPC::TABORT:
case PPC::TRECLAIM: {
// op: A
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
break;
}
case PPC::STBU:
case PPC::STBU8:
case PPC::STFDU:
case PPC::STFSU:
case PPC::STHU:
case PPC::STHU8:
case PPC::STWU:
case PPC::STWU8: {
// op: A
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: Addr
op = getMemRIEncoding(MI, 2, Fixups, STI);
Value |= op & UINT64_C(2097151);
break;
}
case PPC::SLBIE:
case PPC::TLBIEL:
case PPC::TLBLD:
case PPC::TLBLI: {
// op: B
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::ANDISo:
case PPC::ANDISo8:
case PPC::ANDIo:
case PPC::ANDIo8:
case PPC::ORI:
case PPC::ORI8:
case PPC::ORIS:
case PPC::ORIS8:
case PPC::XORI:
case PPC::XORI8:
case PPC::XORIS:
case PPC::XORIS8: {
// op: B
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: A
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: C
op = getImm16Encoding(MI, 2, Fixups, STI);
Value |= op & UINT64_C(65535);
break;
}
case PPC::BDNZA:
case PPC::BDNZAm:
case PPC::BDNZAp:
case PPC::BDNZLA:
case PPC::BDNZLAm:
case PPC::BDNZLAp:
case PPC::BDZA:
case PPC::BDZAm:
case PPC::BDZAp:
case PPC::BDZLA:
case PPC::BDZLAm:
case PPC::BDZLAp: {
// op: BD
op = getAbsCondBrEncoding(MI, 0, Fixups, STI);
Value |= (op & UINT64_C(16383)) << 2;
break;
}
case PPC::BCLalways:
case PPC::BDNZ:
case PPC::BDNZ8:
case PPC::BDNZL:
case PPC::BDNZLm:
case PPC::BDNZLp:
case PPC::BDNZm:
case PPC::BDNZp:
case PPC::BDZ:
case PPC::BDZ8:
case PPC::BDZL:
case PPC::BDZLm:
case PPC::BDZLp:
case PPC::BDZm:
case PPC::BDZp: {
// op: BD
op = getCondBrEncoding(MI, 0, Fixups, STI);
Value |= (op & UINT64_C(16383)) << 2;
break;
}
case PPC::TCHECK: {
// op: BF
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(7)) << 23;
break;
}
case PPC::MCRF:
case PPC::MCRFS: {
// op: BF
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(7)) << 23;
// op: BFA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(7)) << 18;
break;
}
case PPC::FCMPUD:
case PPC::FCMPUS: {
// op: BF
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(7)) << 23;
// op: FRA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: FRB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::CMPDI:
case PPC::CMPLDI:
case PPC::CMPLWI:
case PPC::CMPWI: {
// op: BF
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(7)) << 23;
// op: RA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: I
op = getImm16Encoding(MI, 2, Fixups, STI);
Value |= op & UINT64_C(65535);
break;
}
case PPC::CMPD:
case PPC::CMPLD:
case PPC::CMPLW:
case PPC::CMPW: {
// op: BF
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(7)) << 23;
// op: RA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::MTFSFI:
case PPC::MTFSFIo: {
// op: BF
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(7)) << 23;
// op: W
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(1)) << 16;
// op: U
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(15)) << 12;
break;
}
case PPC::BCCTR:
case PPC::BCCTR8:
case PPC::BCCTR8n:
case PPC::BCCTRL:
case PPC::BCCTRL8:
case PPC::BCCTRL8n:
case PPC::BCCTRLn:
case PPC::BCCTRn:
case PPC::BCLR:
case PPC::BCLRL:
case PPC::BCLRLn:
case PPC::BCLRn: {
// op: BI
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
break;
}
case PPC::BC:
case PPC::BCL:
case PPC::BCLn:
case PPC::BCn: {
// op: BI
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: BD
op = getCondBrEncoding(MI, 1, Fixups, STI);
Value |= (op & UINT64_C(16383)) << 2;
break;
}
case PPC::BCCCTR:
case PPC::BCCCTR8:
case PPC::BCCCTRL:
case PPC::BCCCTRL8:
case PPC::BCCLR:
case PPC::BCCLRL: {
// op: BIBO
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(96)) << 11;
// op: CR
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(7)) << 18;
break;
}
case PPC::BCCA:
case PPC::BCCLA: {
// op: BIBO
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(96)) << 11;
// op: CR
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(7)) << 18;
// op: BD
op = getAbsCondBrEncoding(MI, 2, Fixups, STI);
Value |= (op & UINT64_C(16383)) << 2;
break;
}
case PPC::BCC:
case PPC::BCCL: {
// op: BIBO
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(96)) << 11;
// op: CR
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(7)) << 18;
// op: BD
op = getCondBrEncoding(MI, 2, Fixups, STI);
Value |= (op & UINT64_C(16383)) << 2;
break;
}
case PPC::gBCA:
case PPC::gBCLA: {
// op: BO
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: BI
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: BD
op = getAbsCondBrEncoding(MI, 2, Fixups, STI);
Value |= (op & UINT64_C(16383)) << 2;
break;
}
case PPC::gBC:
case PPC::gBCL: {
// op: BO
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: BI
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: BD
op = getCondBrEncoding(MI, 2, Fixups, STI);
Value |= (op & UINT64_C(16383)) << 2;
break;
}
case PPC::gBCCTR:
case PPC::gBCCTRL:
case PPC::gBCLR:
case PPC::gBCLRL: {
// op: BO
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: BI
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: BH
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(3)) << 11;
break;
}
case PPC::XSCMPODP:
case PPC::XSCMPUDP:
case PPC::XSTDIVDP:
case PPC::XVTDIVDP:
case PPC::XVTDIVSP: {
// op: CR
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(7)) << 23;
// op: XA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
Value |= (op & UINT64_C(32)) >> 3;
// op: XB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
Value |= (op & UINT64_C(32)) >> 4;
break;
}
case PPC::XSTSQRTDP:
case PPC::XVTSQRTDP:
case PPC::XVTSQRTSP: {
// op: CR
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(7)) << 23;
// op: XB
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
Value |= (op & UINT64_C(32)) >> 4;
break;
}
case PPC::CRAND:
case PPC::CRANDC:
case PPC::CREQV:
case PPC::CRNAND:
case PPC::CRNOR:
case PPC::CROR:
case PPC::CRORC:
case PPC::CRXOR: {
// op: CRD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: CRA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: CRB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::CRSET:
case PPC::CRUNSET: {
// op: CRD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(31)) << 16;
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::ICBT: {
// op: CT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(15)) << 21;
// op: RA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::BCTRL8_LDinto_toc: {
// op: DS_RA
op = getMemRIXEncoding(MI, 0, Fixups, STI);
Value |= (op & UINT64_C(524287)) << 2;
break;
}
case PPC::WRTEEI: {
// op: E
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(1)) << 15;
break;
}
case PPC::MTFSFb: {
// op: FM
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(255)) << 17;
// op: rT
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::MTFSB0:
case PPC::MTFSB1: {
// op: FM
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
break;
}
case PPC::FADD:
case PPC::FADDS:
case PPC::FADDSo:
case PPC::FADDo:
case PPC::FDIV:
case PPC::FDIVS:
case PPC::FDIVSo:
case PPC::FDIVo:
case PPC::FSUB:
case PPC::FSUBS:
case PPC::FSUBSo:
case PPC::FSUBo:
case PPC::QVFADD:
case PPC::QVFADDS:
case PPC::QVFADDSs:
case PPC::QVFCMPEQ:
case PPC::QVFCMPEQb:
case PPC::QVFCMPEQbs:
case PPC::QVFCMPGT:
case PPC::QVFCMPGTb:
case PPC::QVFCMPGTbs:
case PPC::QVFCMPLT:
case PPC::QVFCMPLTb:
case PPC::QVFCMPLTbs:
case PPC::QVFCPSGN:
case PPC::QVFCPSGNs:
case PPC::QVFSUB:
case PPC::QVFSUBS:
case PPC::QVFSUBSs:
case PPC::QVFTSTNAN:
case PPC::QVFTSTNANb:
case PPC::QVFTSTNANbs: {
// op: FRT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: FRA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: FRB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::QVALIGNI:
case PPC::QVALIGNIb:
case PPC::QVALIGNIs: {
// op: FRT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: FRA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: FRB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
// op: idx
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(3)) << 9;
break;
}
case PPC::QVFLOGICAL:
case PPC::QVFLOGICALb:
case PPC::QVFLOGICALs: {
// op: FRT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: FRA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: FRB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
// op: tttt
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(15)) << 7;
break;
}
case PPC::FMUL:
case PPC::FMULS:
case PPC::FMULSo:
case PPC::FMULo:
case PPC::QVFMUL:
case PPC::QVFMULS:
case PPC::QVFMULSs:
case PPC::QVFXMUL:
case PPC::QVFXMULS: {
// op: FRT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: FRA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: FRC
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
break;
}
case PPC::FMADD:
case PPC::FMADDS:
case PPC::FMADDSo:
case PPC::FMADDo:
case PPC::FMSUB:
case PPC::FMSUBS:
case PPC::FMSUBSo:
case PPC::FMSUBo:
case PPC::FNMADD:
case PPC::FNMADDS:
case PPC::FNMADDSo:
case PPC::FNMADDo:
case PPC::FNMSUB:
case PPC::FNMSUBS:
case PPC::FNMSUBSo:
case PPC::FNMSUBo:
case PPC::FSELD:
case PPC::FSELDo:
case PPC::FSELS:
case PPC::FSELSo: {
// op: FRT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: FRA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: FRC
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
// op: FRB
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::QVFMADD:
case PPC::QVFMADDS:
case PPC::QVFMADDSs:
case PPC::QVFMSUB:
case PPC::QVFMSUBS:
case PPC::QVFMSUBSs:
case PPC::QVFNMADD:
case PPC::QVFNMADDS:
case PPC::QVFNMADDSs:
case PPC::QVFNMSUB:
case PPC::QVFNMSUBS:
case PPC::QVFNMSUBSs:
case PPC::QVFPERM:
case PPC::QVFPERMs:
case PPC::QVFSEL:
case PPC::QVFSELb:
case PPC::QVFSELbb:
case PPC::QVFSELbs:
case PPC::QVFXMADD:
case PPC::QVFXMADDS:
case PPC::QVFXXCPNMADD:
case PPC::QVFXXCPNMADDS:
case PPC::QVFXXMADD:
case PPC::QVFXXMADDS:
case PPC::QVFXXNPMADD:
case PPC::QVFXXNPMADDS: {
// op: FRT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: FRA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: FRC
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
// op: FRB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::QVESPLATI:
case PPC::QVESPLATIb:
case PPC::QVESPLATIs: {
// op: FRT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: FRA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: idx
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(3)) << 9;
break;
}
case PPC::QVFABS:
case PPC::QVFABSs:
case PPC::QVFCFID:
case PPC::QVFCFIDS:
case PPC::QVFCFIDU:
case PPC::QVFCFIDUS:
case PPC::QVFCFIDb:
case PPC::QVFCTID:
case PPC::QVFCTIDU:
case PPC::QVFCTIDUZ:
case PPC::QVFCTIDZ:
case PPC::QVFCTIDb:
case PPC::QVFCTIW:
case PPC::QVFCTIWU:
case PPC::QVFCTIWUZ:
case PPC::QVFCTIWZ:
case PPC::QVFMR:
case PPC::QVFMRb:
case PPC::QVFMRs:
case PPC::QVFNABS:
case PPC::QVFNABSs:
case PPC::QVFNEG:
case PPC::QVFNEGs:
case PPC::QVFRE:
case PPC::QVFRES:
case PPC::QVFRESs:
case PPC::QVFRIM:
case PPC::QVFRIMs:
case PPC::QVFRIN:
case PPC::QVFRINs:
case PPC::QVFRIP:
case PPC::QVFRIPs:
case PPC::QVFRIZ:
case PPC::QVFRIZs:
case PPC::QVFRSP:
case PPC::QVFRSPs:
case PPC::QVFRSQRTE:
case PPC::QVFRSQRTES:
case PPC::QVFRSQRTESs: {
// op: FRT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: FRB
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::QVGPCI: {
// op: FRT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: idx
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(4095)) << 9;
break;
}
case PPC::MTCRF:
case PPC::MTCRF8: {
// op: FXM
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(255)) << 12;
// op: rS
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
break;
}
case PPC::SYNC:
case PPC::WAIT: {
// op: L
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(3)) << 21;
break;
}
case PPC::TSR: {
// op: L
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(1)) << 21;
break;
}
case PPC::MTFSF:
case PPC::MTFSFo: {
// op: L
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(1)) << 25;
// op: FLM
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(255)) << 17;
// op: W
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(1)) << 16;
// op: FRB
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::SC: {
// op: LEV
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(127)) << 5;
break;
}
case PPC::BA:
case PPC::BLA:
case PPC::BLA8:
case PPC::TAILBA:
case PPC::TAILBA8: {
// op: LI
op = getAbsDirectBrEncoding(MI, 0, Fixups, STI);
Value |= (op & UINT64_C(16777215)) << 2;
break;
}
case PPC::BLA8_NOP: {
// op: LI
op = getAbsDirectBrEncoding(MI, 0, Fixups, STI);
Value |= (op & UINT64_C(16777215)) << 34;
break;
}
case PPC::B:
case PPC::BL:
case PPC::BL8:
case PPC::TAILB:
case PPC::TAILB8: {
// op: LI
op = getDirectBrEncoding(MI, 0, Fixups, STI);
Value |= (op & UINT64_C(16777215)) << 2;
break;
}
case PPC::BL8_NOP: {
// op: LI
op = getDirectBrEncoding(MI, 0, Fixups, STI);
Value |= (op & UINT64_C(16777215)) << 34;
break;
}
case PPC::BL8_TLS:
case PPC::BL8_TLS_:
case PPC::BL_TLS: {
// op: LI
op = getTLSCallEncoding(MI, 0, Fixups, STI);
Value |= (op & UINT64_C(16777215)) << 2;
break;
}
case PPC::BL8_NOP_TLS: {
// op: LI
op = getTLSCallEncoding(MI, 0, Fixups, STI);
Value |= (op & UINT64_C(16777215)) << 34;
break;
}
case PPC::MBAR: {
// op: MO
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
break;
}
case PPC::TBEGIN: {
// op: R
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(1)) << 21;
break;
}
case PPC::RLWINM:
case PPC::RLWINM8:
case PPC::RLWINM8o:
case PPC::RLWINMo:
case PPC::RLWNM:
case PPC::RLWNM8:
case PPC::RLWNM8o:
case PPC::RLWNMo: {
// op: RA
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RS
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: RB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
// op: MB
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
// op: ME
op = getMachineOpValue(MI, MI.getOperand(4), Fixups, STI);
Value |= (op & UINT64_C(31)) << 1;
break;
}
case PPC::RLDCL:
case PPC::RLDCLo:
case PPC::RLDCR:
case PPC::RLDCRo: {
// op: RA
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RS
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: RB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
// op: MBE
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
Value |= op & UINT64_C(32);
break;
}
case PPC::RLDIC:
case PPC::RLDICL:
case PPC::RLDICL_32_64:
case PPC::RLDICLo:
case PPC::RLDICR:
case PPC::RLDICRo:
case PPC::RLDICo: {
// op: RA
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RS
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: SH
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
Value |= (op & UINT64_C(32)) >> 4;
// op: MBE
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
Value |= op & UINT64_C(32);
break;
}
case PPC::RLWIMI:
case PPC::RLWIMI8:
case PPC::RLWIMI8o:
case PPC::RLWIMIo: {
// op: RA
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RS
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: RB
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
// op: MB
op = getMachineOpValue(MI, MI.getOperand(4), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
// op: ME
op = getMachineOpValue(MI, MI.getOperand(5), Fixups, STI);
Value |= (op & UINT64_C(31)) << 1;
break;
}
case PPC::RLDIMI:
case PPC::RLDIMIo: {
// op: RA
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RS
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: SH
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
Value |= (op & UINT64_C(32)) >> 4;
// op: MBE
op = getMachineOpValue(MI, MI.getOperand(4), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
Value |= op & UINT64_C(32);
break;
}
case PPC::WRTEE: {
// op: RS
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
break;
}
case PPC::MTMSR:
case PPC::MTMSRD: {
// op: RS
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: L
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(1)) << 16;
break;
}
case PPC::MFSRIN:
case PPC::MTSRIN: {
// op: RS
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: RB
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::MFSR:
case PPC::MTSR: {
// op: RS
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: SR
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(15)) << 16;
break;
}
case PPC::MFFS:
case PPC::MFFSo:
case PPC::MFMSR: {
// op: RST
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
break;
}
case PPC::FCPSGND:
case PPC::FCPSGNDo:
case PPC::FCPSGNS:
case PPC::FCPSGNSo:
case PPC::LBARX:
case PPC::LBARXL:
case PPC::LBZCIX:
case PPC::LBZX:
case PPC::LBZX8:
case PPC::LDARX:
case PPC::LDARXL:
case PPC::LDBRX:
case PPC::LDCIX:
case PPC::LDX:
case PPC::LFDX:
case PPC::LFIWAX:
case PPC::LFIWZX:
case PPC::LFSX:
case PPC::LHARX:
case PPC::LHARXL:
case PPC::LHAX:
case PPC::LHAX8:
case PPC::LHBRX:
case PPC::LHBRX8:
case PPC::LHZCIX:
case PPC::LHZX:
case PPC::LHZX8:
case PPC::LSWI:
case PPC::LVEBX:
case PPC::LVEHX:
case PPC::LVEWX:
case PPC::LVSL:
case PPC::LVSR:
case PPC::LVX:
case PPC::LVXL:
case PPC::LWARX:
case PPC::LWARXL:
case PPC::LWAX:
case PPC::LWAX_32:
case PPC::LWBRX:
case PPC::LWBRX8:
case PPC::LWZCIX:
case PPC::LWZX:
case PPC::LWZX8:
case PPC::QVLFCDUX:
case PPC::QVLFCDUXA:
case PPC::QVLFCDX:
case PPC::QVLFCDXA:
case PPC::QVLFCSUX:
case PPC::QVLFCSUXA:
case PPC::QVLFCSX:
case PPC::QVLFCSXA:
case PPC::QVLFCSXs:
case PPC::QVLFDUXA:
case PPC::QVLFDX:
case PPC::QVLFDXA:
case PPC::QVLFDXb:
case PPC::QVLFIWAX:
case PPC::QVLFIWAXA:
case PPC::QVLFIWZX:
case PPC::QVLFIWZXA:
case PPC::QVLFSUXA:
case PPC::QVLFSX:
case PPC::QVLFSXA:
case PPC::QVLFSXb:
case PPC::QVLFSXs:
case PPC::QVLPCLDX:
case PPC::QVLPCLSX:
case PPC::QVLPCRDX:
case PPC::QVLPCRSX:
case PPC::QVSTFCDUX:
case PPC::QVSTFCDUXA:
case PPC::QVSTFCDUXI:
case PPC::QVSTFCDUXIA:
case PPC::QVSTFCDX:
case PPC::QVSTFCDXA:
case PPC::QVSTFCDXI:
case PPC::QVSTFCDXIA:
case PPC::QVSTFCSUX:
case PPC::QVSTFCSUXA:
case PPC::QVSTFCSUXI:
case PPC::QVSTFCSUXIA:
case PPC::QVSTFCSX:
case PPC::QVSTFCSXA:
case PPC::QVSTFCSXI:
case PPC::QVSTFCSXIA:
case PPC::QVSTFCSXs:
case PPC::QVSTFDUXA:
case PPC::QVSTFDUXI:
case PPC::QVSTFDUXIA:
case PPC::QVSTFDX:
case PPC::QVSTFDXA:
case PPC::QVSTFDXI:
case PPC::QVSTFDXIA:
case PPC::QVSTFDXb:
case PPC::QVSTFIWX:
case PPC::QVSTFIWXA:
case PPC::QVSTFSUXA:
case PPC::QVSTFSUXI:
case PPC::QVSTFSUXIA:
case PPC::QVSTFSX:
case PPC::QVSTFSXA:
case PPC::QVSTFSXI:
case PPC::QVSTFSXIA:
case PPC::QVSTFSXs:
case PPC::STBCIX:
case PPC::STBCX:
case PPC::STBX:
case PPC::STBX8:
case PPC::STDBRX:
case PPC::STDCIX:
case PPC::STDCX:
case PPC::STDX:
case PPC::STFDX:
case PPC::STFIWX:
case PPC::STFSX:
case PPC::STHBRX:
case PPC::STHCIX:
case PPC::STHCX:
case PPC::STHX:
case PPC::STHX8:
case PPC::STSWI:
case PPC::STVEBX:
case PPC::STVEHX:
case PPC::STVEWX:
case PPC::STVX:
case PPC::STVXL:
case PPC::STWBRX:
case PPC::STWCIX:
case PPC::STWCX:
case PPC::STWX:
case PPC::STWX8:
case PPC::TD:
case PPC::TLBSX2:
case PPC::TLBSX2D:
case PPC::TW: {
// op: RST
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: A
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: B
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::TLBRE2:
case PPC::TLBWE2: {
// op: RST
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: A
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: WS
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(1)) << 11;
break;
}
case PPC::LBZUX:
case PPC::LBZUX8:
case PPC::LDUX:
case PPC::LFDUX:
case PPC::LFSUX:
case PPC::LHAUX:
case PPC::LHAUX8:
case PPC::LHZUX:
case PPC::LHZUX8:
case PPC::LWAUX:
case PPC::LWZUX:
case PPC::LWZUX8:
case PPC::QVLFDUX:
case PPC::QVLFSUX:
case PPC::TABORTDC:
case PPC::TABORTDCI:
case PPC::TABORTWC:
case PPC::TABORTWCI: {
// op: RST
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: A
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: B
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::FABSD:
case PPC::FABSDo:
case PPC::FABSS:
case PPC::FABSSo:
case PPC::FCFID:
case PPC::FCFIDS:
case PPC::FCFIDSo:
case PPC::FCFIDU:
case PPC::FCFIDUS:
case PPC::FCFIDUSo:
case PPC::FCFIDUo:
case PPC::FCFIDo:
case PPC::FCTID:
case PPC::FCTIDUZ:
case PPC::FCTIDUZo:
case PPC::FCTIDZ:
case PPC::FCTIDZo:
case PPC::FCTIDo:
case PPC::FCTIW:
case PPC::FCTIWUZ:
case PPC::FCTIWUZo:
case PPC::FCTIWZ:
case PPC::FCTIWZo:
case PPC::FCTIWo:
case PPC::FMR:
case PPC::FMRo:
case PPC::FNABSD:
case PPC::FNABSDo:
case PPC::FNABSS:
case PPC::FNABSSo:
case PPC::FNEGD:
case PPC::FNEGDo:
case PPC::FNEGS:
case PPC::FNEGSo:
case PPC::FRE:
case PPC::FRES:
case PPC::FRESo:
case PPC::FREo:
case PPC::FRIMD:
case PPC::FRIMDo:
case PPC::FRIMS:
case PPC::FRIMSo:
case PPC::FRIND:
case PPC::FRINDo:
case PPC::FRINS:
case PPC::FRINSo:
case PPC::FRIPD:
case PPC::FRIPDo:
case PPC::FRIPS:
case PPC::FRIPSo:
case PPC::FRIZD:
case PPC::FRIZDo:
case PPC::FRIZS:
case PPC::FRIZSo:
case PPC::FRSP:
case PPC::FRSPo:
case PPC::FRSQRTE:
case PPC::FRSQRTES:
case PPC::FRSQRTESo:
case PPC::FRSQRTEo:
case PPC::FSQRT:
case PPC::FSQRTS:
case PPC::FSQRTSo:
case PPC::FSQRTo:
case PPC::SLBMFEE:
case PPC::SLBMTE:
case PPC::TLBIE: {
// op: RST
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: B
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::LD:
case PPC::LWA:
case PPC::LWA_32:
case PPC::STD: {
// op: RST
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: DS_RA
op = getMemRIXEncoding(MI, 1, Fixups, STI);
Value |= (op & UINT64_C(524287)) << 2;
break;
}
case PPC::LDU: {
// op: RST
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: DS_RA
op = getMemRIXEncoding(MI, 2, Fixups, STI);
Value |= (op & UINT64_C(524287)) << 2;
break;
}
case PPC::QVSTFDUX:
case PPC::QVSTFSUX:
case PPC::QVSTFSUXs:
case PPC::STBUX:
case PPC::STBUX8:
case PPC::STDUX:
case PPC::STFDUX:
case PPC::STFSUX:
case PPC::STHUX:
case PPC::STHUX8:
case PPC::STWUX:
case PPC::STWUX8: {
// op: RST
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: A
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: B
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::STDU: {
// op: RST
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: DS_RA
op = getMemRIXEncoding(MI, 2, Fixups, STI);
Value |= (op & UINT64_C(524287)) << 2;
break;
}
case PPC::MFCR:
case PPC::MFCR8:
case PPC::MFCTR:
case PPC::MFCTR8:
case PPC::MFLR:
case PPC::MFLR8:
case PPC::MFTB8:
case PPC::MFVRSAVE:
case PPC::MFVRSAVEv:
case PPC::MTCTR:
case PPC::MTCTR8:
case PPC::MTCTR8loop:
case PPC::MTCTRloop:
case PPC::MTLR:
case PPC::MTLR8:
case PPC::MTVRSAVE:
case PPC::MTVRSAVEv: {
// op: RT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
break;
}
case PPC::EVLHHESPLAT:
case PPC::EVLHHOSSPLAT:
case PPC::EVLHHOUSPLAT: {
// op: RT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: D
op = getSPE2DisEncoding(MI, 1, Fixups, STI);
Value |= (op & UINT64_C(1)) << 20;
Value |= (op & UINT64_C(2)) << 18;
Value |= (op & UINT64_C(4)) << 16;
Value |= (op & UINT64_C(8)) << 14;
Value |= (op & UINT64_C(16)) << 12;
Value |= (op & UINT64_C(32)) << 10;
Value |= (op & UINT64_C(64)) << 8;
Value |= (op & UINT64_C(128)) << 6;
Value |= (op & UINT64_C(256)) << 4;
Value |= (op & UINT64_C(512)) << 2;
break;
}
case PPC::EVLWHE:
case PPC::EVLWHOS:
case PPC::EVLWHOU:
case PPC::EVLWHSPLAT:
case PPC::EVLWWSPLAT:
case PPC::EVSTWHE:
case PPC::EVSTWHO:
case PPC::EVSTWWE:
case PPC::EVSTWWO: {
// op: RT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: D
op = getSPE4DisEncoding(MI, 1, Fixups, STI);
Value |= (op & UINT64_C(1)) << 20;
Value |= (op & UINT64_C(2)) << 18;
Value |= (op & UINT64_C(4)) << 16;
Value |= (op & UINT64_C(8)) << 14;
Value |= (op & UINT64_C(16)) << 12;
Value |= (op & UINT64_C(32)) << 10;
Value |= (op & UINT64_C(64)) << 8;
Value |= (op & UINT64_C(128)) << 6;
Value |= (op & UINT64_C(256)) << 4;
Value |= (op & UINT64_C(512)) << 2;
break;
}
case PPC::EVLDD:
case PPC::EVLDH:
case PPC::EVLDW:
case PPC::EVSTDD:
case PPC::EVSTDH:
case PPC::EVSTDW: {
// op: RT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: D
op = getSPE8DisEncoding(MI, 1, Fixups, STI);
Value |= (op & UINT64_C(1)) << 20;
Value |= (op & UINT64_C(2)) << 18;
Value |= (op & UINT64_C(4)) << 16;
Value |= (op & UINT64_C(8)) << 14;
Value |= (op & UINT64_C(16)) << 12;
Value |= (op & UINT64_C(32)) << 10;
Value |= (op & UINT64_C(64)) << 8;
Value |= (op & UINT64_C(128)) << 6;
Value |= (op & UINT64_C(256)) << 4;
Value |= (op & UINT64_C(512)) << 2;
break;
}
case PPC::MFBHRBE: {
// op: RT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: Entry
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(1023)) << 11;
break;
}
case PPC::ADDME:
case PPC::ADDME8:
case PPC::ADDME8o:
case PPC::ADDMEo:
case PPC::ADDZE:
case PPC::ADDZE8:
case PPC::ADDZE8o:
case PPC::ADDZEo:
case PPC::EVABS:
case PPC::EVADDSMIAAW:
case PPC::EVADDSSIAAW:
case PPC::EVADDUMIAAW:
case PPC::EVADDUSIAAW:
case PPC::EVCNTLSW:
case PPC::EVCNTLZW:
case PPC::EVEXTSB:
case PPC::EVEXTSH:
case PPC::EVMRA:
case PPC::EVNEG:
case PPC::EVRNDW:
case PPC::EVSPLATFI:
case PPC::EVSPLATI:
case PPC::EVSUBFSMIAAW:
case PPC::EVSUBFSSIAAW:
case PPC::EVSUBFUMIAAW:
case PPC::EVSUBFUSIAAW:
case PPC::NEG:
case PPC::NEG8:
case PPC::NEG8o:
case PPC::NEGo:
case PPC::SUBFME:
case PPC::SUBFME8:
case PPC::SUBFME8o:
case PPC::SUBFMEo:
case PPC::SUBFZE:
case PPC::SUBFZE8:
case PPC::SUBFZE8o:
case PPC::SUBFZEo: {
// op: RT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: RA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
break;
}
case PPC::ADD4:
case PPC::ADD4o:
case PPC::ADD8:
case PPC::ADD8o:
case PPC::ADDC:
case PPC::ADDC8:
case PPC::ADDC8o:
case PPC::ADDCo:
case PPC::ADDE:
case PPC::ADDE8:
case PPC::ADDE8o:
case PPC::ADDEo:
case PPC::BRINC:
case PPC::DIVD:
case PPC::DIVDE:
case PPC::DIVDEU:
case PPC::DIVDEUo:
case PPC::DIVDEo:
case PPC::DIVDU:
case PPC::DIVDUo:
case PPC::DIVDo:
case PPC::DIVW:
case PPC::DIVWE:
case PPC::DIVWEU:
case PPC::DIVWEUo:
case PPC::DIVWEo:
case PPC::DIVWU:
case PPC::DIVWUo:
case PPC::DIVWo:
case PPC::EVADDIW:
case PPC::EVADDW:
case PPC::EVAND:
case PPC::EVANDC:
case PPC::EVDIVWS:
case PPC::EVDIVWU:
case PPC::EVEQV:
case PPC::EVLDDX:
case PPC::EVLDHX:
case PPC::EVLDWX:
case PPC::EVLHHESPLATX:
case PPC::EVLHHOSSPLATX:
case PPC::EVLHHOUSPLATX:
case PPC::EVLWHEX:
case PPC::EVLWHOSX:
case PPC::EVLWHOUX:
case PPC::EVLWHSPLATX:
case PPC::EVLWWSPLATX:
case PPC::EVMERGEHI:
case PPC::EVMERGEHILO:
case PPC::EVMERGELO:
case PPC::EVMERGELOHI:
case PPC::EVMHEGSMFAA:
case PPC::EVMHEGSMFAN:
case PPC::EVMHEGSMIAA:
case PPC::EVMHEGSMIAN:
case PPC::EVMHEGUMIAA:
case PPC::EVMHEGUMIAN:
case PPC::EVMHESMF:
case PPC::EVMHESMFA:
case PPC::EVMHESMFAAW:
case PPC::EVMHESMFANW:
case PPC::EVMHESMI:
case PPC::EVMHESMIA:
case PPC::EVMHESMIAAW:
case PPC::EVMHESMIANW:
case PPC::EVMHESSF:
case PPC::EVMHESSFA:
case PPC::EVMHESSFAAW:
case PPC::EVMHESSFANW:
case PPC::EVMHESSIAAW:
case PPC::EVMHESSIANW:
case PPC::EVMHEUMI:
case PPC::EVMHEUMIA:
case PPC::EVMHEUMIAAW:
case PPC::EVMHEUMIANW:
case PPC::EVMHEUSIAAW:
case PPC::EVMHEUSIANW:
case PPC::EVMHOGSMFAA:
case PPC::EVMHOGSMFAN:
case PPC::EVMHOGSMIAA:
case PPC::EVMHOGSMIAN:
case PPC::EVMHOGUMIAA:
case PPC::EVMHOGUMIAN:
case PPC::EVMHOSMF:
case PPC::EVMHOSMFA:
case PPC::EVMHOSMFAAW:
case PPC::EVMHOSMFANW:
case PPC::EVMHOSMI:
case PPC::EVMHOSMIA:
case PPC::EVMHOSMIAAW:
case PPC::EVMHOSMIANW:
case PPC::EVMHOSSF:
case PPC::EVMHOSSFA:
case PPC::EVMHOSSFAAW:
case PPC::EVMHOSSFANW:
case PPC::EVMHOSSIAAW:
case PPC::EVMHOSSIANW:
case PPC::EVMHOUMI:
case PPC::EVMHOUMIA:
case PPC::EVMHOUMIAAW:
case PPC::EVMHOUMIANW:
case PPC::EVMHOUSIAAW:
case PPC::EVMHOUSIANW:
case PPC::EVMWHSMF:
case PPC::EVMWHSMFA:
case PPC::EVMWHSMI:
case PPC::EVMWHSMIA:
case PPC::EVMWHSSF:
case PPC::EVMWHSSFA:
case PPC::EVMWHUMI:
case PPC::EVMWHUMIA:
case PPC::EVMWLSMIAAW:
case PPC::EVMWLSMIANW:
case PPC::EVMWLSSIAAW:
case PPC::EVMWLSSIANW:
case PPC::EVMWLUMI:
case PPC::EVMWLUMIA:
case PPC::EVMWLUMIAAW:
case PPC::EVMWLUMIANW:
case PPC::EVMWLUSIAAW:
case PPC::EVMWLUSIANW:
case PPC::EVMWSMF:
case PPC::EVMWSMFA:
case PPC::EVMWSMFAA:
case PPC::EVMWSMFAN:
case PPC::EVMWSMI:
case PPC::EVMWSMIA:
case PPC::EVMWSMIAA:
case PPC::EVMWSMIAN:
case PPC::EVMWSSF:
case PPC::EVMWSSFA:
case PPC::EVMWSSFAA:
case PPC::EVMWSSFAN:
case PPC::EVMWUMI:
case PPC::EVMWUMIA:
case PPC::EVMWUMIAA:
case PPC::EVMWUMIAN:
case PPC::EVNAND:
case PPC::EVNOR:
case PPC::EVOR:
case PPC::EVORC:
case PPC::EVRLW:
case PPC::EVRLWI:
case PPC::EVSLW:
case PPC::EVSLWI:
case PPC::EVSRWIS:
case PPC::EVSRWIU:
case PPC::EVSRWS:
case PPC::EVSRWU:
case PPC::EVSTDDX:
case PPC::EVSTDHX:
case PPC::EVSTDWX:
case PPC::EVSTWHEX:
case PPC::EVSTWHOX:
case PPC::EVSTWWEX:
case PPC::EVSTWWOX:
case PPC::EVSUBFW:
case PPC::EVSUBIFW:
case PPC::EVXOR:
case PPC::MULHD:
case PPC::MULHDU:
case PPC::MULHDUo:
case PPC::MULHDo:
case PPC::MULHW:
case PPC::MULHWU:
case PPC::MULHWUo:
case PPC::MULHWo:
case PPC::MULLD:
case PPC::MULLDo:
case PPC::MULLW:
case PPC::MULLWo:
case PPC::SUBF:
case PPC::SUBF8:
case PPC::SUBF8o:
case PPC::SUBFC:
case PPC::SUBFC8:
case PPC::SUBFC8o:
case PPC::SUBFCo:
case PPC::SUBFE:
case PPC::SUBFE8:
case PPC::SUBFE8o:
case PPC::SUBFEo:
case PPC::SUBFo: {
// op: RT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: RA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::ISEL:
case PPC::ISEL8: {
// op: RT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: RA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
// op: COND
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
break;
}
case PPC::ADD4TLS:
case PPC::ADD8TLS:
case PPC::ADD8TLS_: {
// op: RT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: RA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RB
op = getTLSRegEncoding(MI, 2, Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::MFDCR:
case PPC::MFSPR:
case PPC::MFSPR8:
case PPC::MFTB:
case PPC::MTDCR: {
// op: RT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: SPR
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
Value |= (op & UINT64_C(992)) << 6;
break;
}
case PPC::MTSPR:
case PPC::MTSPR8: {
// op: RT
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: SPR
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
Value |= (op & UINT64_C(992)) << 6;
break;
}
case PPC::RFEBB: {
// op: S
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(1)) << 11;
break;
}
case PPC::MFOCRF:
case PPC::MFOCRF8: {
// op: ST
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: FXM
op = get_crbitm_encoding(MI, 1, Fixups, STI);
Value |= (op & UINT64_C(255)) << 12;
break;
}
case PPC::MTOCRF:
case PPC::MTOCRF8: {
// op: ST
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: FXM
op = get_crbitm_encoding(MI, 0, Fixups, STI);
Value |= (op & UINT64_C(255)) << 12;
break;
}
case PPC::DSS: {
// op: STRM
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(3)) << 21;
break;
}
case PPC::DST:
case PPC::DST64:
case PPC::DSTST:
case PPC::DSTST64:
case PPC::DSTSTT:
case PPC::DSTSTT64:
case PPC::DSTT:
case PPC::DSTT64: {
// op: STRM
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(3)) << 21;
// op: A
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: B
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::DCBT:
case PPC::DCBTST: {
// op: TH
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: A
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: B
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::MTVSCR: {
// op: VB
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::MFVSCR:
case PPC::V_SETALLONES:
case PPC::V_SETALLONESB:
case PPC::V_SETALLONESH: {
// op: VD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
break;
}
case PPC::VSPLTISB:
case PPC::VSPLTISH:
case PPC::VSPLTISW: {
// op: VD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: IMM
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
break;
}
case PPC::VSBOX: {
// op: VD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: VA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
break;
}
case PPC::VSHASIGMAD:
case PPC::VSHASIGMAW: {
// op: VD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: VA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: ST
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(1)) << 15;
// op: SIX
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(15)) << 11;
break;
}
case PPC::VADDCUQ:
case PPC::VADDCUW:
case PPC::VADDFP:
case PPC::VADDSBS:
case PPC::VADDSHS:
case PPC::VADDSWS:
case PPC::VADDUBM:
case PPC::VADDUBS:
case PPC::VADDUDM:
case PPC::VADDUHM:
case PPC::VADDUHS:
case PPC::VADDUQM:
case PPC::VADDUWM:
case PPC::VADDUWS:
case PPC::VAND:
case PPC::VANDC:
case PPC::VAVGSB:
case PPC::VAVGSH:
case PPC::VAVGSW:
case PPC::VAVGUB:
case PPC::VAVGUH:
case PPC::VAVGUW:
case PPC::VBPERMQ:
case PPC::VCFSX:
case PPC::VCFUX:
case PPC::VCIPHER:
case PPC::VCIPHERLAST:
case PPC::VCMPBFP:
case PPC::VCMPBFPo:
case PPC::VCMPEQFP:
case PPC::VCMPEQFPo:
case PPC::VCMPEQUB:
case PPC::VCMPEQUBo:
case PPC::VCMPEQUD:
case PPC::VCMPEQUDo:
case PPC::VCMPEQUH:
case PPC::VCMPEQUHo:
case PPC::VCMPEQUW:
case PPC::VCMPEQUWo:
case PPC::VCMPGEFP:
case PPC::VCMPGEFPo:
case PPC::VCMPGTFP:
case PPC::VCMPGTFPo:
case PPC::VCMPGTSB:
case PPC::VCMPGTSBo:
case PPC::VCMPGTSD:
case PPC::VCMPGTSDo:
case PPC::VCMPGTSH:
case PPC::VCMPGTSHo:
case PPC::VCMPGTSW:
case PPC::VCMPGTSWo:
case PPC::VCMPGTUB:
case PPC::VCMPGTUBo:
case PPC::VCMPGTUD:
case PPC::VCMPGTUDo:
case PPC::VCMPGTUH:
case PPC::VCMPGTUHo:
case PPC::VCMPGTUW:
case PPC::VCMPGTUWo:
case PPC::VCTSXS:
case PPC::VCTUXS:
case PPC::VEQV:
case PPC::VMAXFP:
case PPC::VMAXSB:
case PPC::VMAXSD:
case PPC::VMAXSH:
case PPC::VMAXSW:
case PPC::VMAXUB:
case PPC::VMAXUD:
case PPC::VMAXUH:
case PPC::VMAXUW:
case PPC::VMINFP:
case PPC::VMINSB:
case PPC::VMINSD:
case PPC::VMINSH:
case PPC::VMINSW:
case PPC::VMINUB:
case PPC::VMINUD:
case PPC::VMINUH:
case PPC::VMINUW:
case PPC::VMRGEW:
case PPC::VMRGHB:
case PPC::VMRGHH:
case PPC::VMRGHW:
case PPC::VMRGLB:
case PPC::VMRGLH:
case PPC::VMRGLW:
case PPC::VMRGOW:
case PPC::VMULESB:
case PPC::VMULESH:
case PPC::VMULESW:
case PPC::VMULEUB:
case PPC::VMULEUH:
case PPC::VMULEUW:
case PPC::VMULOSB:
case PPC::VMULOSH:
case PPC::VMULOSW:
case PPC::VMULOUB:
case PPC::VMULOUH:
case PPC::VMULOUW:
case PPC::VMULUWM:
case PPC::VNAND:
case PPC::VNCIPHER:
case PPC::VNCIPHERLAST:
case PPC::VNOR:
case PPC::VOR:
case PPC::VORC:
case PPC::VPKPX:
case PPC::VPKSDSS:
case PPC::VPKSDUS:
case PPC::VPKSHSS:
case PPC::VPKSHUS:
case PPC::VPKSWSS:
case PPC::VPKSWUS:
case PPC::VPKUDUM:
case PPC::VPKUDUS:
case PPC::VPKUHUM:
case PPC::VPKUHUS:
case PPC::VPKUWUM:
case PPC::VPKUWUS:
case PPC::VPMSUMB:
case PPC::VPMSUMD:
case PPC::VPMSUMH:
case PPC::VPMSUMW:
case PPC::VRLB:
case PPC::VRLD:
case PPC::VRLH:
case PPC::VRLW:
case PPC::VSL:
case PPC::VSLB:
case PPC::VSLD:
case PPC::VSLH:
case PPC::VSLO:
case PPC::VSLW:
case PPC::VSPLTB:
case PPC::VSPLTH:
case PPC::VSPLTW:
case PPC::VSR:
case PPC::VSRAB:
case PPC::VSRAD:
case PPC::VSRAH:
case PPC::VSRAW:
case PPC::VSRB:
case PPC::VSRD:
case PPC::VSRH:
case PPC::VSRO:
case PPC::VSRW:
case PPC::VSUBCUQ:
case PPC::VSUBCUW:
case PPC::VSUBFP:
case PPC::VSUBSBS:
case PPC::VSUBSHS:
case PPC::VSUBSWS:
case PPC::VSUBUBM:
case PPC::VSUBUBS:
case PPC::VSUBUDM:
case PPC::VSUBUHM:
case PPC::VSUBUHS:
case PPC::VSUBUQM:
case PPC::VSUBUWM:
case PPC::VSUBUWS:
case PPC::VSUM2SWS:
case PPC::VSUM4SBS:
case PPC::VSUM4SHS:
case PPC::VSUM4UBS:
case PPC::VSUMSWS:
case PPC::VXOR: {
// op: VD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: VA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: VB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::VSLDOI: {
// op: VD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: VA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: VB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
// op: SH
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(15)) << 6;
break;
}
case PPC::VADDECUQ:
case PPC::VADDEUQM:
case PPC::VMHADDSHS:
case PPC::VMHRADDSHS:
case PPC::VMLADDUHM:
case PPC::VMSUMMBM:
case PPC::VMSUMSHM:
case PPC::VMSUMSHS:
case PPC::VMSUMUBM:
case PPC::VMSUMUHM:
case PPC::VMSUMUHS:
case PPC::VPERM:
case PPC::VPERMXOR:
case PPC::VSEL:
case PPC::VSUBECUQ:
case PPC::VSUBEUQM: {
// op: VD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: VA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: VB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
// op: VC
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
break;
}
case PPC::VMADDFP:
case PPC::VNMSUBFP: {
// op: VD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: VA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: VC
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
// op: VB
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::VCFSX_0:
case PPC::VCFUX_0:
case PPC::VCLZB:
case PPC::VCLZD:
case PPC::VCLZH:
case PPC::VCLZW:
case PPC::VCTSXS_0:
case PPC::VCTUXS_0:
case PPC::VEXPTEFP:
case PPC::VGBBD:
case PPC::VLOGEFP:
case PPC::VPOPCNTB:
case PPC::VPOPCNTD:
case PPC::VPOPCNTH:
case PPC::VPOPCNTW:
case PPC::VREFP:
case PPC::VRFIM:
case PPC::VRFIN:
case PPC::VRFIP:
case PPC::VRFIZ:
case PPC::VRSQRTEFP:
case PPC::VUPKHPX:
case PPC::VUPKHSB:
case PPC::VUPKHSH:
case PPC::VUPKHSW:
case PPC::VUPKLPX:
case PPC::VUPKLSB:
case PPC::VUPKLSH:
case PPC::VUPKLSW: {
// op: VD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
// op: VB
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::V_SET0:
case PPC::V_SET0B:
case PPC::V_SET0H: {
// op: VD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(31)) << 16;
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::MTVSRD:
case PPC::MTVSRWA:
case PPC::MTVSRWZ: {
// op: XT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(32)) >> 5;
// op: A
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
break;
}
case PPC::LXSDX:
case PPC::LXSIWAX:
case PPC::LXSIWZX:
case PPC::LXSSPX:
case PPC::LXVD2X:
case PPC::LXVDSX:
case PPC::LXVW4X:
case PPC::STXSDX:
case PPC::STXSIWX:
case PPC::STXSSPX:
case PPC::STXVD2X:
case PPC::STXVW4X: {
// op: XT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(32)) >> 5;
// op: A
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: B
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
case PPC::XSADDDP:
case PPC::XSADDSP:
case PPC::XSCPSGNDP:
case PPC::XSDIVDP:
case PPC::XSDIVSP:
case PPC::XSMAXDP:
case PPC::XSMINDP:
case PPC::XSMULDP:
case PPC::XSMULSP:
case PPC::XSSUBDP:
case PPC::XSSUBSP:
case PPC::XVADDDP:
case PPC::XVADDSP:
case PPC::XVCMPEQDP:
case PPC::XVCMPEQDPo:
case PPC::XVCMPEQSP:
case PPC::XVCMPEQSPo:
case PPC::XVCMPGEDP:
case PPC::XVCMPGEDPo:
case PPC::XVCMPGESP:
case PPC::XVCMPGESPo:
case PPC::XVCMPGTDP:
case PPC::XVCMPGTDPo:
case PPC::XVCMPGTSP:
case PPC::XVCMPGTSPo:
case PPC::XVCPSGNDP:
case PPC::XVCPSGNSP:
case PPC::XVDIVDP:
case PPC::XVDIVSP:
case PPC::XVMAXDP:
case PPC::XVMAXSP:
case PPC::XVMINDP:
case PPC::XVMINSP:
case PPC::XVMULDP:
case PPC::XVMULSP:
case PPC::XVSUBDP:
case PPC::XVSUBSP:
case PPC::XXLAND:
case PPC::XXLANDC:
case PPC::XXLEQV:
case PPC::XXLNAND:
case PPC::XXLNOR:
case PPC::XXLOR:
case PPC::XXLORC:
case PPC::XXLORf:
case PPC::XXLXOR:
case PPC::XXMRGHW:
case PPC::XXMRGLW: {
// op: XT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(32)) >> 5;
// op: XA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
Value |= (op & UINT64_C(32)) >> 3;
// op: XB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
Value |= (op & UINT64_C(32)) >> 4;
break;
}
case PPC::XXPERMDI:
case PPC::XXSLDWI: {
// op: XT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(32)) >> 5;
// op: XA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
Value |= (op & UINT64_C(32)) >> 3;
// op: XB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
Value |= (op & UINT64_C(32)) >> 4;
// op: D
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(3)) << 8;
break;
}
case PPC::XXSEL: {
// op: XT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(32)) >> 5;
// op: XA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
Value |= (op & UINT64_C(32)) >> 3;
// op: XB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
Value |= (op & UINT64_C(32)) >> 4;
// op: XC
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 6;
Value |= (op & UINT64_C(32)) >> 2;
break;
}
case PPC::XSMADDADP:
case PPC::XSMADDASP:
case PPC::XSMADDMDP:
case PPC::XSMADDMSP:
case PPC::XSMSUBADP:
case PPC::XSMSUBASP:
case PPC::XSMSUBMDP:
case PPC::XSMSUBMSP:
case PPC::XSNMADDADP:
case PPC::XSNMADDASP:
case PPC::XSNMADDMDP:
case PPC::XSNMADDMSP:
case PPC::XSNMSUBADP:
case PPC::XSNMSUBASP:
case PPC::XSNMSUBMDP:
case PPC::XSNMSUBMSP:
case PPC::XVMADDADP:
case PPC::XVMADDASP:
case PPC::XVMADDMDP:
case PPC::XVMADDMSP:
case PPC::XVMSUBADP:
case PPC::XVMSUBASP:
case PPC::XVMSUBMDP:
case PPC::XVMSUBMSP:
case PPC::XVNMADDADP:
case PPC::XVNMADDASP:
case PPC::XVNMADDMDP:
case PPC::XVNMADDMSP:
case PPC::XVNMSUBADP:
case PPC::XVNMSUBASP:
case PPC::XVNMSUBMDP:
case PPC::XVNMSUBMSP: {
// op: XT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(32)) >> 5;
// op: XA
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
Value |= (op & UINT64_C(32)) >> 3;
// op: XB
op = getMachineOpValue(MI, MI.getOperand(3), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
Value |= (op & UINT64_C(32)) >> 4;
break;
}
case PPC::XSABSDP:
case PPC::XSCVDPSP:
case PPC::XSCVDPSPN:
case PPC::XSCVDPSXDS:
case PPC::XSCVDPSXWS:
case PPC::XSCVDPUXDS:
case PPC::XSCVDPUXWS:
case PPC::XSCVSPDP:
case PPC::XSCVSPDPN:
case PPC::XSCVSXDDP:
case PPC::XSCVSXDSP:
case PPC::XSCVUXDDP:
case PPC::XSCVUXDSP:
case PPC::XSNABSDP:
case PPC::XSNEGDP:
case PPC::XSRDPI:
case PPC::XSRDPIC:
case PPC::XSRDPIM:
case PPC::XSRDPIP:
case PPC::XSRDPIZ:
case PPC::XSREDP:
case PPC::XSRESP:
case PPC::XSRSQRTEDP:
case PPC::XSRSQRTESP:
case PPC::XSSQRTDP:
case PPC::XSSQRTSP:
case PPC::XVABSDP:
case PPC::XVABSSP:
case PPC::XVCVDPSP:
case PPC::XVCVDPSXDS:
case PPC::XVCVDPSXWS:
case PPC::XVCVDPUXDS:
case PPC::XVCVDPUXWS:
case PPC::XVCVSPDP:
case PPC::XVCVSPSXDS:
case PPC::XVCVSPSXWS:
case PPC::XVCVSPUXDS:
case PPC::XVCVSPUXWS:
case PPC::XVCVSXDDP:
case PPC::XVCVSXDSP:
case PPC::XVCVSXWDP:
case PPC::XVCVSXWSP:
case PPC::XVCVUXDDP:
case PPC::XVCVUXDSP:
case PPC::XVCVUXWDP:
case PPC::XVCVUXWSP:
case PPC::XVNABSDP:
case PPC::XVNABSSP:
case PPC::XVNEGDP:
case PPC::XVNEGSP:
case PPC::XVRDPI:
case PPC::XVRDPIC:
case PPC::XVRDPIM:
case PPC::XVRDPIP:
case PPC::XVRDPIZ:
case PPC::XVREDP:
case PPC::XVRESP:
case PPC::XVRSPI:
case PPC::XVRSPIC:
case PPC::XVRSPIM:
case PPC::XVRSPIP:
case PPC::XVRSPIZ:
case PPC::XVRSQRTEDP:
case PPC::XVRSQRTESP:
case PPC::XVSQRTDP:
case PPC::XVSQRTSP: {
// op: XT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(32)) >> 5;
// op: XB
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
Value |= (op & UINT64_C(32)) >> 4;
break;
}
case PPC::XXSPLTW: {
// op: XT
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(32)) >> 5;
// op: XB
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
Value |= (op & UINT64_C(32)) >> 4;
// op: D
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(3)) << 16;
break;
}
case PPC::MFVSRD:
case PPC::MFVSRWZ: {
// op: XT
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 21;
Value |= (op & UINT64_C(32)) >> 5;
// op: A
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
break;
}
case PPC::EVCMPEQ:
case PPC::EVCMPGTS:
case PPC::EVCMPGTU:
case PPC::EVCMPLTS:
case PPC::EVCMPLTU: {
// op: crD
op = getMachineOpValue(MI, MI.getOperand(0), Fixups, STI);
Value |= (op & UINT64_C(7)) << 23;
// op: RA
op = getMachineOpValue(MI, MI.getOperand(1), Fixups, STI);
Value |= (op & UINT64_C(31)) << 16;
// op: RB
op = getMachineOpValue(MI, MI.getOperand(2), Fixups, STI);
Value |= (op & UINT64_C(31)) << 11;
break;
}
default:
std::string msg;
raw_string_ostream Msg(msg);
Msg << "Not supported instr: " << MI;
report_fatal_error(Msg.str());
}
return Value;
}
```
|
KAAN-FM (95.5 MHz) is a commercial FM radio station broadcasting a country music radio format. Licensed to Bethany, Missouri, United States, the station is currently owned by Alpha Media and features programming from Westwood One.
KAAN-FM first signed on the air on October 27, 1978. The transmitter tower is located six miles west of Bethany on U.S. Route 136 at West 140th Avenue. KAAN-FM has an effective radiated power (ERP) of 50,000 watts. It covers much of Northwestern Missouri and some of Southern Iowa.
Ownership
On March 1, 2007, it was announced that GoodRadio.TV LLC planned to buy The Shepherd Group of radio stations in Missouri. The Shepherd Group operated 16 small-market radio stations in Missouri. The deal was reportedly worth $30.6 million.
Dean Goodman formed the new company, GoodRadio.TV. He is the former president and chief executive officer of the television broadcasting company ION Media Networks Inc. Goodman stepped down from ION Media Networks in October 2006.
The Shepherd Group included KJEL-FM and KBNN in Lebanon; KJFF in Festus; KREI and KTJJ in Farmington; KRES and KWIX in Moberly; KIRK in Macon; KIIK, KOZQ-FM, KJPW and KFBD-FM in Waynesville; KAAN-FM and KAAN in Bethany; and KMRN and KKWK in Cameron.
In December 2013, GoodRadio.TV merged into Digity, LLC. Effective February 25, 2016, Digity and its 124 radio stations were acquired by Alpha Media for $264 million.
References
External links
AAN-FM
Country radio stations in the United States
Radio stations established in 1978
Alpha Media radio stations
|
```sqlpl
-- citus_columnar--11.2-1--11.1-1
-- Note that we intentionally do not re-insert the pg_depend records that we
-- deleted via citus_columnar--11.1-1--11.2-1.sql.
```
|
```c
/*
*
* This program is free software; you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
*
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <pjsip/sip_util.h>
#include <pjsip/sip_endpoint.h>
#include <pjsip/sip_errno.h>
#include <pjsip/sip_msg.h>
#include <pj/assert.h>
#include <pj/ctype.h>
#include <pj/except.h>
#include <pj/guid.h>
#include <pj/pool.h>
#include <pj/string.h>
#include <pjlib-util/md5.h>
/**
* Clone the incoming SIP request or response message. A forwarding proxy
* typically would need to clone the incoming SIP message before processing
* the message.
*
* Once a transmit data is created, the reference counter is initialized to 1.
*
* @param endpt The endpoint instance.
* @param rdata The incoming SIP message.
* @param p_tdata Pointer to receive the transmit data containing
* the duplicated message.
*
* @return PJ_SUCCESS on success.
*/
/*
PJ_DEF(pj_status_t) pjsip_endpt_clone_msg( pjsip_endpoint *endpt,
const pjsip_rx_data *rdata,
pjsip_tx_data **p_tdata)
{
pjsip_tx_data *tdata;
pj_status_t status;
status = pjsip_endpt_create_tdata(endpt, &tdata);
if (status != PJ_SUCCESS)
return status;
tdata->msg = pjsip_msg_clone(tdata->pool, rdata->msg_info.msg);
pjsip_tx_data_add_ref(tdata);
*p_tdata = tdata;
return PJ_SUCCESS;
}
*/
/*
* Create new request message to be forwarded upstream to new destination URI
* in uri.
*/
PJ_DEF(pj_status_t) pjsip_endpt_create_request_fwd(pjsip_endpoint *endpt,
pjsip_rx_data *rdata,
const pjsip_uri *uri,
const pj_str_t *branch,
unsigned options,
pjsip_tx_data **p_tdata)
{
pjsip_tx_data *tdata;
pj_status_t status;
PJ_USE_EXCEPTION;
PJ_ASSERT_RETURN(endpt && rdata && p_tdata, PJ_EINVAL);
PJ_ASSERT_RETURN(rdata->msg_info.msg->type == PJSIP_REQUEST_MSG,
PJSIP_ENOTREQUESTMSG);
PJ_UNUSED_ARG(options);
/* Request forwarding rule in RFC 3261 section 16.6:
*
* For each target, the proxy forwards the request following these
* steps:
*
* 1. Make a copy of the received request
* 2. Update the Request-URI
* 3. Update the Max-Forwards header field
* 4. Optionally add a Record-route header field value
* 5. Optionally add additional header fields
* 6. Postprocess routing information
* 7. Determine the next-hop address, port, and transport
* 8. Add a Via header field value
* 9. Add a Content-Length header field if necessary
* 10. Forward the new request
*
* Of these steps, we only do step 1-3, since the later will be
* done by application.
*/
status = pjsip_endpt_create_tdata(endpt, &tdata);
if (status != PJ_SUCCESS)
return status;
/* Always increment ref counter to 1 */
pjsip_tx_data_add_ref(tdata);
/* Duplicate the request */
PJ_TRY {
pjsip_msg *dst;
const pjsip_msg *src = rdata->msg_info.msg;
const pjsip_hdr *hsrc;
/* Create the request */
tdata->msg = dst = pjsip_msg_create(tdata->pool, PJSIP_REQUEST_MSG);
/* Duplicate request method */
pjsip_method_copy(tdata->pool, &tdata->msg->line.req.method,
&src->line.req.method);
/* Set request URI */
if (uri) {
dst->line.req.uri = (pjsip_uri*)
pjsip_uri_clone(tdata->pool, uri);
} else {
dst->line.req.uri= (pjsip_uri*)
pjsip_uri_clone(tdata->pool, src->line.req.uri);
}
/* Clone ALL headers */
hsrc = src->hdr.next;
while (hsrc != &src->hdr) {
pjsip_hdr *hdst;
/* If this is the top-most Via header, insert our own before
* cloning the header.
*/
if (hsrc == (pjsip_hdr*)rdata->msg_info.via) {
pjsip_via_hdr *hvia;
hvia = pjsip_via_hdr_create(tdata->pool);
if (branch)
pj_strdup(tdata->pool, &hvia->branch_param, branch);
else {
pj_str_t new_branch = pjsip_calculate_branch_id(rdata);
pj_strdup(tdata->pool, &hvia->branch_param, &new_branch);
}
pjsip_msg_add_hdr(dst, (pjsip_hdr*)hvia);
}
/* Skip Content-Type and Content-Length as these would be
* generated when the the message is printed.
*/
else if (hsrc->type == PJSIP_H_CONTENT_LENGTH ||
hsrc->type == PJSIP_H_CONTENT_TYPE) {
hsrc = hsrc->next;
continue;
}
#if 0
/* If this is the top-most Route header and it indicates loose
* route, remove the header.
*/
else if (hsrc == (pjsip_hdr*)rdata->msg_info.route) {
const pjsip_route_hdr *hroute = (const pjsip_route_hdr*) hsrc;
const pjsip_sip_uri *sip_uri;
if (!PJSIP_URI_SCHEME_IS_SIP(hroute->name_addr.uri) &&
!PJSIP_URI_SCHEME_IS_SIPS(hroute->name_addr.uri))
{
/* This is a bad request! */
status = PJSIP_EINVALIDHDR;
goto on_error;
}
sip_uri = (pjsip_sip_uri*) hroute->name_addr.uri;
if (sip_uri->lr_param) {
/* Yes lr param is present, skip this Route header */
hsrc = hsrc->next;
continue;
}
}
#endif
/* Clone the header */
hdst = (pjsip_hdr*) pjsip_hdr_clone(tdata->pool, hsrc);
/* If this is Max-Forward header, decrement the value */
if (hdst->type == PJSIP_H_MAX_FORWARDS) {
pjsip_max_fwd_hdr *hmaxfwd = (pjsip_max_fwd_hdr*)hdst;
--hmaxfwd->ivalue;
}
/* Append header to new request */
pjsip_msg_add_hdr(dst, hdst);
hsrc = hsrc->next;
}
/* 16.6.3:
* If the copy does not contain a Max-Forwards header field, the
* proxy MUST add one with a field value, which SHOULD be 70.
*/
if (rdata->msg_info.max_fwd == NULL) {
pjsip_max_fwd_hdr *hmaxfwd =
pjsip_max_fwd_hdr_create(tdata->pool, 70);
pjsip_msg_add_hdr(tdata->msg, (pjsip_hdr*)hmaxfwd);
}
/* Clone request body */
if (src->body) {
dst->body = pjsip_msg_body_clone(tdata->pool, src->body);
}
}
PJ_CATCH_ANY {
status = PJ_ENOMEM;
goto on_error;
}
PJ_END
/* Done */
*p_tdata = tdata;
return PJ_SUCCESS;
on_error:
pjsip_tx_data_dec_ref(tdata);
return status;
}
PJ_DEF(pj_status_t) pjsip_endpt_create_response_fwd( pjsip_endpoint *endpt,
pjsip_rx_data *rdata,
unsigned options,
pjsip_tx_data **p_tdata)
{
pjsip_tx_data *tdata;
pj_status_t status;
PJ_USE_EXCEPTION;
PJ_UNUSED_ARG(options);
status = pjsip_endpt_create_tdata(endpt, &tdata);
if (status != PJ_SUCCESS)
return status;
pjsip_tx_data_add_ref(tdata);
PJ_TRY {
pjsip_msg *dst;
const pjsip_msg *src = rdata->msg_info.msg;
const pjsip_hdr *hsrc;
/* Create the request */
tdata->msg = dst = pjsip_msg_create(tdata->pool, PJSIP_RESPONSE_MSG);
/* Clone the status line */
dst->line.status.code = src->line.status.code;
pj_strdup(tdata->pool, &dst->line.status.reason,
&src->line.status.reason);
/* Duplicate all headers */
hsrc = src->hdr.next;
while (hsrc != &src->hdr) {
/* Skip Content-Type and Content-Length as these would be
* generated when the the message is printed.
*/
if (hsrc->type == PJSIP_H_CONTENT_LENGTH ||
hsrc->type == PJSIP_H_CONTENT_TYPE) {
hsrc = hsrc->next;
continue;
}
/* Remove the first Via header */
else if (hsrc == (pjsip_hdr*) rdata->msg_info.via) {
hsrc = hsrc->next;
continue;
}
pjsip_msg_add_hdr(dst,
(pjsip_hdr*)pjsip_hdr_clone(tdata->pool, hsrc));
hsrc = hsrc->next;
}
/* Clone message body */
if (src->body)
dst->body = pjsip_msg_body_clone(tdata->pool, src->body);
}
PJ_CATCH_ANY {
status = PJ_ENOMEM;
goto on_error;
}
PJ_END;
*p_tdata = tdata;
return PJ_SUCCESS;
on_error:
pjsip_tx_data_dec_ref(tdata);
return status;
}
static void digest2str(const unsigned char digest[], char *output)
{
int i;
for (i = 0; i<16; ++i) {
pj_val_to_hex_digit(digest[i], output);
output += 2;
}
}
PJ_DEF(pj_str_t) pjsip_calculate_branch_id( pjsip_rx_data *rdata )
{
pj_md5_context ctx;
pj_uint8_t digest[16];
pj_str_t branch;
pj_str_t rfc3261_branch = {PJSIP_RFC3261_BRANCH_ID,
PJSIP_RFC3261_BRANCH_LEN};
/* If incoming request does not have RFC 3261 branch value, create
* a branch value from GUID .
*/
if (pj_strnicmp(&rdata->msg_info.via->branch_param,
&rfc3261_branch, PJSIP_RFC3261_BRANCH_LEN) != 0 )
{
pj_str_t tmp;
branch.ptr = (char*)
pj_pool_alloc(rdata->tp_info.pool, PJSIP_MAX_BRANCH_LEN);
branch.slen = PJSIP_RFC3261_BRANCH_LEN;
pj_memcpy(branch.ptr, PJSIP_RFC3261_BRANCH_ID,
PJSIP_RFC3261_BRANCH_LEN);
tmp.ptr = branch.ptr + PJSIP_RFC3261_BRANCH_LEN + 2;
*(tmp.ptr-2) = (pj_int8_t)(branch.slen+73);
*(tmp.ptr-1) = (pj_int8_t)(branch.slen+99);
pj_generate_unique_string( &tmp );
branch.slen = PJSIP_MAX_BRANCH_LEN;
return branch;
}
/* Create branch ID for new request by calculating MD5 hash
* of the branch parameter in top-most Via header.
*/
pj_md5_init(&ctx);
pj_md5_update(&ctx, (pj_uint8_t*)rdata->msg_info.via->branch_param.ptr,
(unsigned)rdata->msg_info.via->branch_param.slen);
pj_md5_final(&ctx, digest);
branch.ptr = (char*)
pj_pool_alloc(rdata->tp_info.pool,
34 + PJSIP_RFC3261_BRANCH_LEN);
pj_memcpy(branch.ptr, PJSIP_RFC3261_BRANCH_ID, PJSIP_RFC3261_BRANCH_LEN);
branch.slen = PJSIP_RFC3261_BRANCH_LEN;
*(branch.ptr+PJSIP_RFC3261_BRANCH_LEN) = (pj_int8_t)(branch.slen+73);
*(branch.ptr+PJSIP_RFC3261_BRANCH_LEN+1) = (pj_int8_t)(branch.slen+99);
digest2str(digest, branch.ptr+PJSIP_RFC3261_BRANCH_LEN+2);
branch.slen = 34 + PJSIP_RFC3261_BRANCH_LEN;
return branch;
}
```
|
```objective-c
/*
*
*/
/**
* @file SoC configuration macros for the ST STM32F4 family processors.
*
* Based on reference manual:
* RM0368 Reference manual STM32F401xB/C and STM32F401xD/E
* advanced ARM(r)-based 32-bit MCUs
*
* Chapter 2.3: Memory Map
*/
#ifndef _STM32F4_SOC_H_
#define _STM32F4_SOC_H_
#ifndef _ASMLANGUAGE
#include <stm32f4xx.h>
/* The STM32 HAL headers define these, but they conflict with the Zephyr can.h */
#undef CAN_MODE_NORMAL
#undef CAN_MODE_LOOPBACK
#endif /* !_ASMLANGUAGE */
#endif /* _STM32F4_SOC_H_ */
```
|
Heracleides () was a man of ancient Syracuse, Sicily, Magna Graecia, who was a relative of Agathocles of Syracuse, probably his uncle, and probably distinct from another Heracleides. Nothing further is known of him.
There was a group in Syracuse at the time called the "Six Hundred Noblest" that was composed of the most influential citizens. Its leaders were Heracleides (Heraclides) and Sosistratus. Some scholars have suggested it possible that this Heracleides could be the same as Agathocles's uncle Heracleides, which would have implications for the common story of the low social station of Agathocles's family.
Notes
4th-century BC Syracusans
Ancient Syracusans
|
Thembisile Nkadimeng (born 1973) is a South African politician for the African National Congress. She is the current Minister of Cooperative Governance and Traditional Affairs, in office since March 2023. She had previously served as Deputy Minister Cooperative Governance and Traditional Affairs from 2021 to 2023.
Education
Nkadimeng holds a Bachelor of Arts (honours) degree and a higher education diploma from the University of the North. She earned a Bachelor of Philosophy in Political Studies from Stellenbosch University. She has also completed an advanced programme in management at Wits Business School.
Career
Nkadimeng is a member of the African National Congress. In July 2014, she was elected mayor of the Polokwane Local Municipality following the resignation of Freddy Greaver. She was re-elected as mayor at a council sitting after the 2016 local elections.
In June 2019, Nkadimeng was elected president of the South African Local Government Association (SALGA). She was previously the provincial chairperson of SALGA in Limpopo.
National government
On 5 August 2021, Nkadimeng was appointed as Deputy Minister of Cooperative Governance and Traditional Affairs by President Cyril Ramaphosa. She then resigned as mayor and as SALGA president. She was sworn into office on 10 August. Nkadimeng was promoted to Minister of Cooperative Governance and Traditional Affairs during a cabinet reshuffle on 6 March 2023.
References
External links
Thembi Nkadimeng, Ms at Government of South Africa
Living people
Place of birth missing (living people)
African National Congress politicians
Mayors of places in South Africa
University of Limpopo alumni
Stellenbosch University alumni
Women government ministers of South Africa
1973 births
|
```java
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
*
* Subject to the condition set forth below, permission is hereby granted to any
* person obtaining a copy of this software, associated documentation and/or
* data (collectively the "Software"), free of charge and under any and all
* copyright rights in the Software, and any and all patent rights owned or
* freely licensable by each licensor hereunder covering either (i) the
* unmodified Software as contributed to or provided by such licensor, or (ii)
* the Larger Works (as defined below), to deal in both
*
* (a) the Software, and
*
* (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
* one is included with the Software each a "Larger Work" to which the Software
* is contributed by such licensors),
*
* without restriction, including without limitation the rights to copy, create
* derivative works of, display, perform, and distribute the Software and make,
* use, sell, offer for sale, import, export, have made, and have sold the
* Software and the Larger Work(s), and to sublicense the foregoing rights on
* either these or other terms.
*
* This license is subject to the following condition:
*
* The above copyright notice and either this complete permission notice or at a
* minimum a reference to the UPL must 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
* AUTHORS OR COPYRIGHT HOLDERS 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.
*/
package com.oracle.truffle.api.strings.test.ops;
import static org.junit.runners.Parameterized.Parameter;
import java.util.Arrays;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
import com.oracle.truffle.api.strings.TruffleString;
import com.oracle.truffle.api.strings.TruffleStringIterator;
import com.oracle.truffle.api.strings.test.TStringTestBase;
@RunWith(Parameterized.class)
public class TStringBackwardIteratorTest extends TStringTestBase {
@Parameter public TruffleString.CreateBackwardCodePointIteratorNode createIteratorNode;
@Parameter(1) public TruffleStringIterator.PreviousNode prevNode;
@Parameter(2) public TruffleString.ErrorHandling errorHandling;
@Parameters(name = "{0}, {1}, {2}")
public static Iterable<Object[]> data() {
return withErrorHandling(Arrays.asList(
new Object[]{TruffleString.CreateBackwardCodePointIteratorNode.create(), TruffleStringIterator.PreviousNode.create()},
new Object[]{TruffleString.CreateBackwardCodePointIteratorNode.getUncached(), TruffleStringIterator.PreviousNode.getUncached()}));
}
@Test
public void testAll() throws Exception {
forAllStrings(true, (a, array, codeRange, isValid, encoding, codepoints, byteIndices) -> {
TruffleStringIterator iterator = createIteratorNode.execute(a, encoding, errorHandling);
for (int i = codepoints.length - 1; i >= 0; i--) {
checkCodepoint(isValid, encoding, codepoints, i, prevNode.execute(iterator), errorHandling);
Assert.assertEquals(byteIndices[i], iterator.getByteIndex());
}
});
}
@Test
public void testNull() throws Exception {
checkNullSE((s1, e) -> createIteratorNode.execute(s1, e, errorHandling));
expectNullPointerException(() -> prevNode.execute(null));
}
}
```
|
```smalltalk
using System;
using GLib;
using Uno.UI.Runtime.Skia;
namespace SkiaSharpSample.Gtk
{
class Program
{
static void Main(string[] args)
{
SkiaSharp.Views.UWP.SKSwapChainPanel.RaiseOnUnsupported = false;
ExceptionManager.UnhandledException += delegate (UnhandledExceptionArgs expArgs)
{
Console.WriteLine("GLIB UNHANDLED EXCEPTION" + expArgs.ExceptionObject.ToString());
expArgs.ExitApplication = true;
};
var host = new GtkHost(() => new App(), args);
host.Run();
}
}
}
```
|
Garkesh (; also known as Karīkesh) is a village in Jennat Rudbar Rural District, in the Central District of Ramsar County, Mazandaran Province, Iran. At the 2006 census, its population was 22, in 8 families.
References
Populated places in Ramsar County
|
```python
import demistomock as demisto # noqa: F401
from CommonServerPython import * # noqa: F401
from CommonServerUserPython import * # noqa
import asyncio
import concurrent
import aiohttp
import urllib3
from typing import Any
from urllib.parse import urlparse
# Disable insecure warnings
urllib3.disable_warnings()
''' CONSTANTS '''
DATE_FORMAT = '%Y-%m-%dT%H:%M:%SZ' # ISO8601 format with UTC, default in XSOAR
DEFAULT_PAGE_NUMBER = 0
DEFAULT_PAGE_SIZE = 50
DEFAULT_LIMIT = 50
PLAYGROUND_INVESTIGATION_TYPE = 9
SECRET_TOKEN: str
BASE_URL: str
PROXY = False
VERIFY = False
SSL_CONTEXT: Optional[ssl.SSLContext]
PROXIES = {}
PROXY_URL: str
DEMISTO_URL: str
WEBSOCKET_URL: str
MAX_SAMPLES = 10
INCIDENT_TYPE: str
ALLOW_INCIDENTS: bool
PORT: int
MIRRORING_ENABLED: bool
LONG_RUNNING: bool
CACHED_INTEGRATION_CONTEXT: dict
VERIFY_CERT: bool
CACHE_EXPIRY: float
MESSAGE_FOOTER = '\n**From Mattermost**'
MIRROR_TYPE = 'mirrorEntry'
OBJECTS_TO_KEYS = {
'mirrors': 'investigation_id',
'messages': 'entitlement',
}
DEFAULT_OPTIONS: Dict[str, Any] = {
"timeout": 100,
"request_timeout": None,
"mfa_token": None,
"auth": None,
"keepalive": False,
"keepalive_delay": 5,
"websocket_kw_args": {},
"debug": False,
"http2": False,
}
GUID_REGEX = r'(\{){0,1}[0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}(\}){0,1}'
ENTITLEMENT_REGEX = fr'{GUID_REGEX}@(({GUID_REGEX})|(?:[\d_]+))_*(\|\S+)?\b'
''' CLIENT CLASS '''
class WebSocketClient: # pragma: no cover
def __init__(
self,
base_url: str,
token: str,
verify: bool,
proxy: bool
):
self.base_url = base_url
self.token = token
self.alive = False
self.last_msg = 0.0
self.verify = verify
self.proxy = proxy
self.options = DEFAULT_OPTIONS.copy()
async def connect(self, event_handler):
"""
Connect to the websocket and authenticate it.
When the authentication has finished, start the loop listening for messages,
sending a ping to the server to keep the connection alive.
:param event_handler: Every websocket event will be passed there. Takes one argument.
:type event_handler: Function(message)
:return:
"""
if 'path_to_url in self.base_url:
uri = self.base_url.replace("https://", "wss://", 1)
else:
uri = self.base_url.replace("http://", "ws://", 1)
uri += '/api/v4/websocket'
url = self.base_url + '/api/v4/websocket'
demisto.debug(f'MM: The uri for the websocket is {uri}, the url is {url}')
self.alive = True
while True:
try:
async with aiohttp.ClientSession() as session:
async with session.ws_connect(
uri,
ssl=SSL_CONTEXT,
proxy=PROXY_URL,
) as websocket:
demisto.debug('MM: starting to authenticate')
await self.authenticate(websocket, event_handler)
while self.alive:
try:
await self.start_loop(websocket, event_handler)
except aiohttp.ClientError:
break
if (not self.options["keepalive"]) or (not self.alive):
break
except Exception as e:
demisto.info(f"MM: Failed to establish websocket connection: {type(e)} thrown - {str(e)}")
await asyncio.sleep(float("inf"))
async def start_loop(self, websocket, event_handler):
"""
We will listen for websockets events, sending a heartbeats on a timer.
If we don't the webserver would close the idle connection,
forcing us to reconnect.
"""
demisto.debug("MM: Starting websocket loop")
keep_alive = asyncio.ensure_future(self.heartbeat(websocket))
demisto.debug("MM: Waiting for messages on websocket")
while self.alive:
message = await websocket.receive_str()
self.last_msg = time.time()
demisto.debug(f"MM: {message=}")
await event_handler(self, message)
demisto.debug("MM: Cancelling heartbeat task")
keep_alive.cancel()
try:
await keep_alive
except asyncio.CancelledError:
pass
async def heartbeat(self, websocket):
"""
Pongs the server if did not get a message within the timeframe
"""
timeout: float = self.options["timeout"]
while True:
since_last_msg: float = time.time() - self.last_msg
next_timeout: float = timeout - since_last_msg if since_last_msg <= timeout else timeout
await asyncio.sleep(next_timeout)
if time.time() - self.last_msg >= timeout:
await websocket.pong()
self.last_msg = time.time()
def disconnect(self):
"""Sets `self.alive` to False so the loop in `self.start_loop` will finish."""
demisto.debug("Disconnecting websocket")
self.alive = False
async def authenticate(self, websocket, event_handler):
"""
Sends a authentication challenge over a websocket.
"""
demisto.debug("MM: Authenticating websocket")
json_data = json.dumps({"seq": 1, "action": "authentication_challenge", "data": {"token": self.token}})
await websocket.send_str(json_data)
while True:
message = await websocket.receive_str()
status = json.loads(message)
demisto.debug(f"MM: The status is: {status}")
await event_handler(self, message)
if ("event" in status and status["event"] == "hello") and ("seq" in status and status["seq"] == 0):
demisto.debug("MM: Websocket authentification OK")
return True
demisto.error("MM: Websocket authentification failed")
class HTTPClient(BaseClient):
"""Client class to interact with the MatterMost API
"""
def __init__(
self,
base_url: str,
headers: dict,
personal_access_token: str,
bot_access_token: str,
team_name: str,
notification_channel: str | None = None,
verify: bool = True,
proxy: bool = False,
):
super().__init__(base_url, verify, proxy, headers=headers)
self.bot_access_token = bot_access_token
self.personal_access_token = personal_access_token
self.team_name = team_name
self.notification_channel = notification_channel
def get_team_request(self, team_name: str) -> dict[str, str]:
"""Gets a team details based on its name"""
response = self._http_request(method='GET', url_suffix=f'/api/v4/teams/name/{team_name}')
return response
def list_channel_request(self, team_id: str, params: dict, get_private: bool = False) -> list[dict[str, Any]]:
"""lists channels in a specific team"""
if get_private:
response = self._http_request(method='GET', url_suffix=f'/api/v4/teams/{team_id}/channels/private', params=params)
else:
response = self._http_request(method='GET', url_suffix=f'/api/v4/teams/{team_id}/channels', params=params)
return response
def create_channel_request(self, params: dict) -> dict[str, str]:
"""Creates a channel"""
response = self._http_request(method='POST', url_suffix='/api/v4/channels', json_data=params)
return response
def get_channel_by_name_and_team_name_request(self, team_name: str, channel_name: str) -> dict[str, Any]:
"""Gets a channel based on name and team name"""
response = self._http_request(method='GET', url_suffix=f'/api/v4/teams/name/{team_name}/channels/name/{channel_name}')
return response
def add_channel_member_request(self, channel_id: str, data: dict) -> dict[str, str]:
"""Adds a channel member"""
response = self._http_request(method='POST', url_suffix=f'/api/v4/channels/{channel_id}/members', json_data=data)
return response
def remove_channel_member_request(self, channel_id: str, user_id: str) -> dict[str, str]:
"""Removes a channel member"""
response = self._http_request(method='DELETE', url_suffix=f'/api/v4/channels/{channel_id}/members/{user_id}')
return response
def list_users_request(self, params: dict) -> list[dict[str, Any]]:
"""lists users"""
response = self._http_request(method='GET', url_suffix='/api/v4/users', params=params)
return response
def close_channel_request(self, channel_id: str) -> list[dict[str, Any]]:
"""Closes a channel"""
response = self._http_request(method='DELETE', url_suffix=f'/api/v4/channels/{channel_id}')
return response
def send_file_request(self, file_info: dict, params: dict) -> dict[str, Any]:
"Sends a file"
files = {'file': (file_info['name'], open(file_info['path'], 'rb'))}
response = self._http_request(
method='POST',
url_suffix='/api/v4/files',
files=files,
params=params,
json_data={'channel_id': params.get('channel_id')}
)
return response
def create_post_with_file_request(self, data: dict) -> list[dict[str, Any]]:
"""Creates a post with a file request"""
response = self._http_request(method='POST', url_suffix='/api/v4/posts', json_data=data)
return response
def update_channel_request(self, channel_id: str, params: dict) -> list[dict[str, Any]]:
"""Updates a channel"""
response = self._http_request(method='PUT', url_suffix=f'/api/v4/channels/{channel_id}', json_data=params)
return response
def get_user_request(self, user_id: str = '', bot_user: bool = False) -> dict[str, Any]:
"""Gets a user"""
if not user_id:
user_id = 'me'
if bot_user:
response = self._http_request(method='GET', url_suffix=f'/api/v4/users/{user_id}',
headers={'authorization': f'Bearer {self.bot_access_token}'})
else:
response = self._http_request(method='GET', url_suffix=f'/api/v4/users/{user_id}')
return response
def send_notification_request(self, channel_id: str, message: str, file_ids: list[str] = [], root_id: str = '', props: dict = {}) -> dict[str, Any]: # noqa: E501
"Sends a notification"
data = {"channel_id": channel_id,
"message": message,
"props": props,
"root_id": root_id,
"file_ids": file_ids,
}
remove_nulls_from_dictionary(data)
response = self._http_request(method='POST', url_suffix='/api/v4/posts', json_data=data,
headers={'authorization': f'Bearer {self.bot_access_token}'})
return response
def update_post_request(self, message: str, root_id: str) -> dict[str, Any]: # noqa: E501
"Sends a notification"
data = {
"message": message,
"id": root_id,
}
demisto.debug(f"MM: {data=}")
remove_nulls_from_dictionary(data)
response = self._http_request(method='PUT', url_suffix=f'/api/v4/posts/{root_id}', json_data=data,
headers={'authorization': f'Bearer {self.bot_access_token}'})
demisto.debug(f"MM: response fom update message. {response=}")
return response
def get_user_by_email_request(self, user_email: str) -> dict[str, Any]:
"Gets a user by email"
response = self._http_request(method='GET', url_suffix=f'/api/v4/users/email/{user_email}')
return response
def get_user_by_username_request(self, username: str) -> dict[str, Any]:
"Gets a user by username"
response = self._http_request(method='GET', url_suffix=f'/api/v4/users/username/{username}')
return response
def create_direct_channel_request(self, user_id: str, bot_id: str) -> dict[str, Any]:
"creates a direct channel"
response = self._http_request(method='POST', url_suffix='/api/v4/channels/direct', json_data=[bot_id, user_id])
return response
CLIENT: HTTPClient
''' HELPER FUNCTIONS '''
def get_war_room_url(url: str, incident_id: str = '') -> str:
# a workaround until this bug is resolved: path_to_url
if is_xsiam():
if not incident_id:
incident_id = demisto.callingContext.get('context', {}).get('Inv', {}).get('id')
incident_url = urlparse(url)
war_room_url = f"{incident_url.scheme}://{incident_url.netloc}/incidents"
# executed from the incident War Room
if incident_id and incident_id.startswith('INCIDENT-'):
war_room_url += f"/war_room?caseId={incident_id.split('-')[-1]}"
# executed from the alert War Room
else:
war_room_url += f"/alerts_and_insights?caseId={incident_id}&action:openAlertDetails={incident_id}-warRoom"
return war_room_url
return url
def next_expiry_time() -> float:
"""
Returns:
A float representation of a new expiry time with an offset of 5 seconds
"""
return (datetime.now(timezone.utc) + timedelta(seconds=5)).timestamp()
def get_current_utc_time() -> datetime:
"""
Returns:
The current UTC time.
"""
return datetime.utcnow()
async def check_and_handle_entitlement(answer_text: str, root_id: str, user_name: str) -> str: # pragma: no cover
"""
Handles an entitlement message (a reply to a question)
Args:
Returns:
If the message contains entitlement, return a reply.
"""
integration_context = fetch_context(force_refresh=True)
messages = integration_context.get('messages', [])
reply = ''
if not messages:
return reply
messages = json.loads(messages)
demisto.debug(f"MM: messages with entitlements. {messages=}")
message_filter = list(filter(lambda q: q.get('root_id') == root_id, messages))
if message_filter:
demisto.debug("MM: Found correct message")
message = message_filter[0]
entitlement = message.get('entitlement')
reply = message.get('reply')
guid, incident_id, task_id = extract_entitlement(entitlement)
demisto.handleEntitlementForUser(incident_id, guid, user_name, answer_text, task_id)
message['remove'] = True
set_to_integration_context_with_retries({'messages': messages}, OBJECTS_TO_KEYS)
return reply
def run_long_running(): # pragma: no cover
"""
Starts the long running thread.
"""
try:
asyncio.run(start_listening())
except Exception as e:
demisto.error(f"MM: The Loop has failed to run {str(e)}")
finally:
loop = asyncio.get_running_loop()
try:
loop.stop()
loop.close()
except Exception as e_:
demisto.error(f'MM: Failed to gracefully close the loop - {e_}')
async def start_listening(): # pragma: no cover
"""
Starts a Slack SocketMode client and checks for mirrored incidents.
"""
try:
demisto.debug('MM: Starting to listen')
executor = concurrent.futures.ThreadPoolExecutor(max_workers=1)
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
loop.run_in_executor(executor, long_running_loop)
await mattermost_loop()
except Exception as e:
demisto.error(f"An error has occurred while gathering the loop tasks. {e}")
async def mattermost_loop(): # pragma: no cover
try:
exception_await_seconds = 1
while True:
ws_client = WebSocketClient(BASE_URL, SECRET_TOKEN, VERIFY, PROXY)
try:
demisto.debug('MM: Trying to connect')
await ws_client.connect(event_handler)
# After successful connection, we reset the backoff time.
exception_await_seconds = 1
await asyncio.sleep(float("inf"))
except Exception as e:
demisto.debug(f"MM: Exception in long running loop, waiting {exception_await_seconds} - {e}")
await asyncio.sleep(exception_await_seconds)
exception_await_seconds *= 2
finally:
try:
ws_client.disconnect()
except Exception as e:
demisto.debug(f"MM: Failed to close client. - {e}")
except Exception as e:
demisto.error(f"MM: An error has occurred while trying to create the socket client. {e}")
def long_running_loop(): # pragma: no cover
global MIRRORING_ENABLED
tts = 30 if MIRRORING_ENABLED else 60
while True:
error = ''
try:
check_for_unanswered_messages()
time.sleep(tts)
except requests.exceptions.ConnectionError as e:
error = f'Could not connect to the MatterMost endpoint: {str(e)}'
except Exception as e:
error = f'An error occurred: {e}'
finally:
demisto.updateModuleHealth('')
if error:
demisto.error(error)
demisto.updateModuleHealth(error)
def check_for_unanswered_messages():
demisto.debug('MM: checking for unanswered messages')
integration_context = fetch_context()
messages = integration_context.get('messages')
if messages:
messages = json.loads(messages)
now = datetime.utcnow()
updated_messages = []
for message in messages:
if message.get('expiry'):
# Check if the question expired - if it did, answer it with the default response
# and remove it
expiry = datetime.strptime(message['expiry'], DATE_FORMAT)
if expiry < now:
demisto.debug(f"MM: message expired: {message}, answering it with the default response")
answer_question(message.get('default_response'), message, email='')
message['remove'] = True
updated_messages.append(message)
continue
updated_messages.append(message)
if updated_messages:
set_to_integration_context_with_retries({'messages': messages}, OBJECTS_TO_KEYS)
async def event_handler(client: WebSocketClient, req: str):
"""Handling the events coming from the websocket"""
demisto.debug(f"MM: Got events: {req} - with type {type(req)}")
payload = json.loads(req)
if 'error' in payload:
error = payload.get('error', {})
error_code = error.get('id')
error_msg = error.get('message')
await handle_listen_error(
f'MatterMost API has thrown an error. Code: {error_code}, Message: {error_msg}.')
return
if payload.get('event') == 'hello' or payload.get('seq_reply') == 1:
# we handle hello and authentication events afterwards
return
if payload.get('event') == 'posted':
await handle_posts(payload)
return
def is_bot_message(payload: dict) -> bool:
"""
Determines if the message received was created by a bot or not.
:param payload: dict: The payload sent with the message
:return: bool: True indicates the message was from a Bot, False indicates it was from an individual
"""
global CLIENT
from_bot = payload.get('props', {}).get('from_bot', '')
bot_id = get_user_id_from_token(CLIENT, bot_user=True)
post = json.loads(payload.get("data", {}).get("post"))
if bot_id and bot_id == post.get('user_id', ''):
return True
elif from_bot:
return True
return False
def is_dm(payload: dict):
"""
Takes the channel type and will see if it's 'D'. If so, we know it's from a direct message.
:param channel: str: The channel ID to check.
:return: bool: Boolean indicating if the channel is a DM or not.
"""
channel_type = payload.get('data', {}).get('channel_type')
return channel_type == 'D'
def is_thread(post: dict):
"""
Takes the root ID and will see if its not empty. If so, we know it's from a direct message.
:param post: str: The post to check.
:return: bool: Boolean indicating if the post is part of a thread or not.
"""
root_id = post.get('root_id', '')
return root_id != ''
def get_user_id_from_token(client: HTTPClient, bot_user: bool = False) -> str:
"""
Gets the user id from the token
:return: str: The id of the user
"""
result = client.get_user_request(bot_user=bot_user)
return result.get('id', '')
def get_user_id_by_email(client: HTTPClient, email: str) -> str:
"""
Gets a user ID from the email
:param email: str: The email of the user
:return: str: The id of the user
"""
result = client.get_user_by_email_request(email)
return result.get('id', '')
def get_user_id_by_username(client: HTTPClient, username: str) -> str:
"""
Gets a user ID from the email
:param email: str: The email of the user
:return: str: The id of the user
"""
result = client.get_user_by_username_request(username)
return result.get('id', '')
def get_username_by_email(client: HTTPClient, email: str) -> str:
"""
Gets a username from the email
:param email: str: The email of the user
:return: str: The username of the user
"""
result = client.get_user_by_email_request(email)
return result.get('username', '')
def get_username_by_id(client: HTTPClient, user_id: str) -> str:
"""
Gets a username from the id
:param email: str: The email of the user
:return: str: The username of the user
"""
result = client.get_user_request(user_id)
return result.get('username', '')
def fetch_context(force_refresh: bool = False) -> dict:
"""
Fetches the integration instance context from the server if the CACHE_EXPIRY is smaller than the current epoch time
In the event that the cache is not expired, we return a cached copy of the context which has been stored in memory.
We can force the retrieval of the updated context by setting the force_refresh flag to True.
:param force_refresh: bool: Indicates if the context should be refreshed regardless of the expiry time.
:return: dict: Either a cached copy of the integration context, or the context itself.
"""
global CACHED_INTEGRATION_CONTEXT, CACHE_EXPIRY
now = int(datetime.now(timezone.utc).timestamp())
if (now >= CACHE_EXPIRY) or force_refresh:
demisto.debug(f'Cached context has expired or forced refresh. forced refresh value is {force_refresh}. '
'Fetching new context')
CACHE_EXPIRY = next_expiry_time()
CACHED_INTEGRATION_CONTEXT = get_integration_context()
return CACHED_INTEGRATION_CONTEXT
def get_channel_id_from_context(channel_name: str = '', investigation_id=None):
"""
Retrieves a MatterMost channel ID based on the provided criteria.
:param channel_name: The name of the channel to get the ID for.
:param investigation_id: The Demisto investigation ID to search for a mirrored channel.
:return: The requested channel ID or None if not found.
"""
if not channel_name and not investigation_id:
return None
integration_context = fetch_context()
mirrors = json.loads(integration_context.get('mirrors', '[]'))
# Filter mirrors based on the provided criteria.
if investigation_id:
mirrored_channel_filter = next((m for m in mirrors if m["investigation_id"] == investigation_id), None)
else:
mirrored_channel_filter = next((m for m in mirrors if m["channel_name"] == channel_name), None)
if mirrored_channel_filter:
return mirrored_channel_filter.get('channel_id')
return None
def get_channel_id_to_send_notif(client: HTTPClient, to: str, channel_name: str | None, investigation_id: str) -> str:
"""
Gets a channel ID for the correct channel to send the notification to
:return: str: The channel id of the channel
"""
channel_id = ''
if to:
# create a new channel and send the message there
if re.match(emailRegex, to):
to = get_user_id_by_email(client, to)
else:
to = get_user_id_by_username(client, to)
bot_id = get_user_id_from_token(client, bot_user=True)
channel_object = client.create_direct_channel_request(to, bot_id)
channel_id = channel_object.get('id', '')
demisto.debug(f'MM: Created a new direct channel to: {to} with channel_id: {channel_id}')
elif channel_name: # if channel name provided and the channel was mirrored
channel_id = get_channel_id_from_context(channel_name, investigation_id)
if not channel_id:
try:
channel_details = client.get_channel_by_name_and_team_name_request(client.team_name, channel_name)
channel_id = channel_details.get('id', '')
except Exception as e:
raise DemistoException(f"Did not find channel with name {channel_name}. Error: {e}")
return channel_id
def save_entitlement(entitlement, message_id, reply, expiry, default_response, to_id):
"""
Saves an entitlement
Args:
entitlement: The entitlement
message_id: The message_id
reply: The reply to send to the user.
expiry: The question expiration date.
default_response: The response to send if the question times out.
to_id: the user id the message was sent to
"""
integration_context = get_integration_context()
messages = integration_context.get('messages', [])
if messages:
messages = json.loads(integration_context['messages'])
messages.append({
'root_id': message_id,
'entitlement': entitlement,
'reply': reply,
'expiry': expiry,
'sent': datetime.strftime(datetime.utcnow(), DATE_FORMAT),
'default_response': default_response,
'to_id': to_id
})
set_to_integration_context_with_retries({'messages': messages}, OBJECTS_TO_KEYS)
def extract_entitlement(entitlement: str) -> tuple[str, str, str]:
"""
Extracts entitlement components from an entitlement string
Args:
entitlement: The entitlement itself
Returns:
Entitlement components
"""
parts = entitlement.split('@')
if len(parts) < 2:
raise DemistoException("Entitlement cannot be parsed")
guid = parts[0]
id_and_task = parts[1].split('|')
incident_id = id_and_task[0]
task_id = ''
if len(id_and_task) > 1:
task_id = id_and_task[1]
return guid, incident_id, task_id
def answer_question(text: str, message: dict, email: str = ''):
"""Answers a question from MattermostAskUser
"""
global CLIENT
entitlement = message.get('entitlement', '')
root_id = message.get('root_id', '')
guid, incident_id, task_id = extract_entitlement(entitlement)
try:
demisto.handleEntitlementForUser(incident_id, guid, email, text, task_id)
process_entitlement_reply(text, root_id)
demisto.debug(f"MM: Handled question for {incident_id=}, {task_id=} with {text=}")
except Exception as e:
demisto.error(f'Failed handling entitlement {entitlement}: {str(e)}')
message['remove'] = True
return incident_id
async def send_notification_async(client: HTTPClient, channel_id, message, root_id=''):
client.send_notification_request(channel_id, message, root_id=root_id)
async def update_post_async(client: HTTPClient, message, root_id):
client.update_post_request(message, root_id)
def process_entitlement_reply( # pragma: no cover
entitlement_reply: str,
root_id: str = '',
user_name: str | None = None,
answer_text: str | None = None,
):
"""
Triggered when an entitlement reply is found, this function will update the original message with the reply message.
:param entitlement_reply: str: The text to update the asking question with.
:param user_name: str: name of the user who answered the entitlement
:param answer_text: str: The text attached to the button, used for string replacement.
:return: None
"""
global CLIENT
if '{user}' in entitlement_reply:
entitlement_reply = entitlement_reply.replace('{user}', str(user_name))
if '{response}' in entitlement_reply and answer_text:
entitlement_reply = entitlement_reply.replace('{response}', str(answer_text))
demisto.debug(f'MM: process entitlement reply with {entitlement_reply} for {root_id}')
CLIENT.update_post_request(entitlement_reply, root_id)
async def handle_text_received_from_mm(investigation_id: str, text: str, operator_email: str, operator_name: str):
"""
Handles text received from MatterMost
Args:
investigation_id: The mirrored investigation ID
text: The received text
operator_email: The sender email
operator_name: The sender name
"""
if text:
demisto.addEntry(id=investigation_id,
entry=text,
username=operator_name,
email=operator_email,
footer=MESSAGE_FOOTER
)
async def handle_posts(payload):
"""
handle posts from the Mattermost that have been identified as possible mirrored messages
If we find one, we will update the mirror object and send
the message to the corresponding investigation's war room as an entry.
:param payload: str: The request payload from mattermost
:return: None
"""
global CLIENT
post = json.loads(payload.get("data", {}).get("post"))
message = post.get('message', {})
channel_id = post.get("channel_id")
user_id = post.get('user_id')
if not channel_id:
return
if is_bot_message(payload):
demisto.debug("MM: Got a bot message. Will not mirror.")
return
# If a thread, we will check if it is a reply to a MattermostAsk task.
if is_thread(post):
demisto.debug(f"MM: Got a thread message. {payload=}")
username = get_username_by_id(CLIENT, user_id)
answer_text = post.get('message', '')
root_id = post.get('root_id', '')
entitlement_reply = await check_and_handle_entitlement(answer_text, root_id, username)
demisto.debug(f"MM: {entitlement_reply=}")
if entitlement_reply:
process_entitlement_reply(entitlement_reply, root_id, username, answer_text)
reset_listener_health()
return
# Check if the message is being sent directly to our bot.
if is_dm(payload):
demisto.debug(f"MM: Got a dm message. {payload=}")
await handle_dm(user_id, message, channel_id, CLIENT)
reset_listener_health()
return
integration_context = fetch_context()
if not integration_context or 'mirrors' not in integration_context:
return
mirrors = json.loads(integration_context['mirrors'])
mirror_filter = list(filter(lambda m: m['channel_id'] == channel_id, mirrors))
if not mirror_filter:
return
for mirror in mirror_filter:
if mirror['mirror_direction'] == 'FromDemisto' or mirror['mirror_type'] == 'none':
return
if not mirror['mirrored']:
# In case the investigation is not mirrored yet
mirror = mirrors.pop(mirrors.index(mirror))
if mirror['mirror_direction'] and mirror['mirror_type']:
investigation_id = mirror['investigation_id']
mirror_type = mirror['mirror_type']
auto_close = mirror['auto_close']
direction = mirror['mirror_direction']
demisto.mirrorInvestigation(investigation_id,
f'{mirror_type}:{direction}', auto_close)
mirror['mirrored'] = True
mirrors.append(mirror)
set_to_integration_context_with_retries({'mirrors': mirrors},
OBJECTS_TO_KEYS)
user_details = CLIENT.get_user_request(user_id)
operator_name = user_details.get('username', '')
operator_email = user_details.get('email', '')
investigation_id = mirror['investigation_id']
await handle_text_received_from_mm(investigation_id, message, operator_email, operator_name)
async def handle_listen_error(error: str):
"""
Logs an error and updates the module health accordingly.
Args:
error: The error string.
"""
demisto.error(error)
demisto.updateModuleHealth(error)
async def handle_dm(user_id: str, text: str, channel_id: str, client: HTTPClient):
"""
Handles a direct message sent to the bot
Args:
user: The user who sent the message
text: The message text
client: The Slack client
Returns:
Text to return to the user
"""
message: str = text.lower()
user_details = client.get_user_request(user_id)
user_name = user_details.get('username', '')
user_email = user_details.get('email', '')
if message.find('incident') != -1 and (message.find('create') != -1
or message.find('open') != -1
or message.find('new') != -1):
demisto_user = demisto.findUser(email=user_email) if user_email else demisto.findUser(username=user_name)
if not demisto_user and not ALLOW_INCIDENTS:
data = 'You are not allowed to create incidents.'
else:
try:
data = await translate_create(text, user_name, user_email, demisto_user)
except Exception as e:
data = f'Failed creating incidents: {str(e)}'
else:
try:
data = demisto.directMessage(text, user_name, user_email, ALLOW_INCIDENTS)
except Exception as e:
data = str(e)
if not data:
data = 'Sorry, I could not perform the selected operation.'
await send_notification_async(client, channel_id, data)
async def translate_create(message: str, user_name: str, user_email: str, demisto_user: dict) -> str: # pragma: no cover
"""
Processes an incident creation message
Args:
message: The creation message
user_name: The name of the user in Slack
user_email: The email of the user in Slack
demisto_user: The demisto user associated with the request (if exists)
Returns:
Creation result
"""
json_pattern = r'(?<=json=).*'
name_pattern = r'(?<=name=).*'
type_pattern = r'(?<=type=).*'
message = message.replace("\n", '').replace('`', '')
json_match = re.search(json_pattern, message)
created_incident = None
data = ''
user_demisto_id = ''
request_fields = {'ReporterEmail': user_email, 'Message': message}
incidents = []
if demisto_user:
user_demisto_id = demisto_user.get('id', '')
if json_match:
if re.search(name_pattern, message) or re.search(type_pattern, message):
data = 'No other properties other than json should be specified.'
else:
incidents_json = json_match.group()
incidents = json.loads(incidents_json.replace('', '"').replace('', '"'))
if not isinstance(incidents, list):
incidents = [incidents]
add_req_data_to_incidents(incidents, request_fields)
created_incident = await create_incidents(incidents, user_name, user_email, user_demisto_id)
if not created_incident:
data = 'Failed creating incidents.'
else:
name_match = re.search(name_pattern, message)
if not name_match:
data = 'Please specify arguments in the following manner: name=<name> type=[type] or json=<json>.'
else:
incident_name = re.sub('type=.*', '', name_match.group()).strip()
incident_type = ''
type_match = re.search(type_pattern, message)
if type_match:
incident_type = re.sub('name=.*', '', type_match.group()).strip()
incident = {'name': incident_name}
incident_type = incident_type or INCIDENT_TYPE
if incident_type:
incident['type'] = incident_type
incidents = add_req_data_to_incidents([incident], request_fields)
created_incident = await create_incidents([incident], user_name, user_email, user_demisto_id)
if not created_incident:
data = 'Failed creating incidents.'
if created_incident:
demisto.debug(f'Created {len(incidents)} incidents')
update_integration_context_samples(incidents)
if isinstance(created_incident, list):
created_incident = created_incident[0]
server_links = demisto.demistoUrls()
server_link = server_links.get('server')
incident_name = created_incident['name']
incident_id = created_incident['id']
incident_url = get_war_room_url(f'{server_link}#/WarRoom/{incident_id}', incident_id)
data = f'Successfully created incident {incident_name}.\n View it on: {incident_url}'
return data
def add_req_data_to_incidents(incidents: list, request_fields: dict) -> list: # pragma: no cover
"""
Adds the request_fields as a rawJSON to every created incident for further information on the incident
"""
for incident in incidents:
incident['rawJSON'] = json.dumps(request_fields)
return incidents
async def create_incidents(incidents: list, user_name: str, user_email: str, user_demisto_id: str = ''):
"""
Creates incidents according to a provided JSON object
Args:
incidents: The incidents JSON
user_name: The name of the user in MatterMost
user_email: The email of the user in MattermOST
user_demisto_id: The id of demisto user associated with the request (if exists)
Returns:
The creation result
"""
for incident in incidents:
# Add relevant labels to context
labels = incident.get('labels', [])
keys = [label.get('type') for label in labels]
if 'Reporter' not in keys:
labels.append({'type': 'Reporter', 'value': user_name})
if 'ReporterEmail' not in keys:
labels.append({'type': 'ReporterEmail', 'value': user_email})
if 'Source' not in keys:
labels.append({'type': 'Source', 'value': 'Slack'})
incident['labels'] = labels
data = demisto.createIncidents(incidents, userID=user_demisto_id) if user_demisto_id else demisto.createIncidents(
incidents)
return data
def update_integration_context_samples(incidents: list, max_samples: int = MAX_SAMPLES): # pragma: no cover
"""
Updates the integration context samples with the newly created incident.
If the size of the samples has reached `MAX_SAMPLES`, will pop out the latest sample.
Args:
incidents (list): The list of the newly created incidents.
max_samples (int): Max samples size.
"""
ctx = get_integration_context()
updated_samples_list: List[Dict] = incidents + ctx.get('samples', [])
ctx['samples'] = updated_samples_list[:max_samples]
set_integration_context(ctx)
def reset_listener_health():
demisto.updateModuleHealth("MatterMost V2 - Event handled successfully.")
demisto.info("MatterMost V2 - Event handled successfully.")
def find_mirror_by_investigation() -> dict:
"""
Finds a mirrored channel by the mirrored investigation
Returns:
The mirror object
"""
mirror: dict = {}
investigation = demisto.investigation()
if investigation:
integration_context = get_integration_context()
if integration_context.get('mirrors'):
mirrors = json.loads(integration_context['mirrors'])
investigation_filter = list(filter(lambda m: investigation.get('id') == m['investigation_id'],
mirrors))
if investigation_filter:
mirror = investigation_filter[0]
return mirror
''' COMMAND FUNCTIONS '''
def test_module(client: HTTPClient) -> str: # pragma: no cover
"""Tests connectivity with the client.
"""
try:
client.get_user_request(user_id='me', bot_user=False) # Validating the Personal Access Token
except Exception as e:
demisto.debug(str(e))
if 'Invalid or expired session, please login again.' in str(e):
raise DemistoException('Invalid or expired session. Make sure the Personal Access Token is configured properly.')
else:
raise e
try:
client.get_user_request(user_id='me', bot_user=True) # Validating the Bot Access Token
except Exception as e:
demisto.debug(str(e))
if 'Invalid or expired session, please login again.' in str(e):
raise DemistoException('Invalid or expired session. Make sure the Bot Access Token is configured properly.')
else:
raise e
try:
if client.notification_channel and client.team_name:
# Validating the default team and channel exists
channel_details = client.get_channel_by_name_and_team_name_request(client.team_name, client.notification_channel)
client.send_notification_request(channel_details.get('id', ''), 'Hi there! This is a test message from XSOAR.')
except Exception as e:
demisto.debug(str(e))
if 'Unable to find the existing team' in str(e):
raise DemistoException('Could not find the team, make sure it is valid and/or exists.')
elif 'Channel does not exist' in str(e):
raise DemistoException('Channel does not exist.')
else:
raise e
return 'ok'
def get_team_command(client: HTTPClient, args: dict[str, Any]) -> CommandResults:
""" Gets a team """
team_name = args.get('team_name', client.team_name)
team_details = client.get_team_request(team_name)
hr = tableToMarkdown('Team details:', team_details, headers=['name', 'display_name', 'type', 'id'])
return CommandResults(
outputs_prefix='Mattermost.Team',
outputs_key_field='name',
outputs=team_details,
readable_output=hr,
)
def list_channels_command(client: HTTPClient, args: dict[str, Any]) -> CommandResults:
""" Lists channels """
team_name = args.get('team', client.team_name)
include_private_channels = argToBoolean(args.get('include_private_channels', False))
page = arg_to_number(args.get('page', DEFAULT_PAGE_NUMBER))
page_size = arg_to_number(args.get('page_size', DEFAULT_PAGE_SIZE))
limit = args.get('limit', '')
channel_details = []
if limit:
page = DEFAULT_PAGE_NUMBER
page_size = limit
team_details = client.get_team_request(team_name)
params = {'page': page, 'per_page': page_size}
channel_details = client.list_channel_request(team_details.get('id', ''), params)
if include_private_channels:
channel_details.extend(client.list_channel_request(team_details.get('id', ''), params, get_private=True))
hr = tableToMarkdown('Channels:', channel_details, headers=['name', 'display_name', 'type', 'id'])
return CommandResults(
outputs_prefix='Mattermost.Channel',
outputs_key_field='name',
outputs=channel_details,
readable_output=hr,
)
def create_channel_command(client: HTTPClient, args: dict[str, Any]) -> CommandResults:
""" Creates a channel """
team_name = args.get('team', client.team_name)
channel_name = args.get('name', '')
channel_display_name = args.get('display_name')
channel_type = 'O' if args.get('type') == 'public' else 'P'
purpose = args.get('purpose', '')
header = args.get('header', '')
team_details = client.get_team_request(team_name)
params = {'team_id': team_details.get('id', ''),
'name': channel_name,
'display_name': channel_display_name,
'type': channel_type,
'purpose': purpose,
'header': header}
remove_nulls_from_dictionary(params)
try:
channel_details = client.create_channel_request(params)
hr = f'The channel {channel_display_name} was created successfully, with channel ID: {channel_details.get("id")}'
except Exception as e:
if 'A channel with that name already exists' in str(e):
try:
channel_details = client.get_channel_by_name_and_team_name_request(team_name, channel_name)
hr = f"Channel {channel_display_name} already exists."
except Exception as sec_e:
if 'Channel does not exist.' in str(sec_e):
hr = 'Could not create a new channel. An archived channel with the same name may exist' \
'in the provided team. Please choose a different name.'
raise DemistoException(hr)
else:
raise sec_e
else:
raise e
return CommandResults(
outputs_prefix='Mattermost.Channel',
outputs_key_field='id',
outputs=channel_details,
readable_output=hr
)
def add_channel_member_command(client: HTTPClient, args: dict[str, Any]) -> CommandResults:
""" Adds a channel member """
team_name = args.get('team', client.team_name)
channel_name = args.get('channel', '')
user_id = args.get('user_id', '')
channel_details = client.get_channel_by_name_and_team_name_request(team_name, channel_name)
data = {'user_id': user_id}
client.add_channel_member_request(channel_details.get('id', ''), data)
user_details = client.get_user_request(user_id)
hr = f'The member {user_details.get("username", user_id)} was added to the channel successfully, with channel ID: {channel_details.get("id")}' # noqa: E501
return CommandResults(
readable_output=hr
)
def remove_channel_member_command(client: HTTPClient, args: dict[str, Any]) -> CommandResults:
""" Removes a channel member """
team_name = args.get('team', client.team_name)
channel_name = args.get('channel', '')
user_id = args.get('user_id', '')
channel_details = client.get_channel_by_name_and_team_name_request(team_name, channel_name)
client.remove_channel_member_request(channel_details.get('id', ''), user_id)
user_details = client.get_user_request(user_id)
hr = f'The member {user_details.get("username", user_id)} was removed from the channel successfully.'
return CommandResults(
readable_output=hr
)
def close_channel_command(client: HTTPClient, args: dict[str, Any]) -> CommandResults:
""" Closes a channels """
team_name = args.get('team_name', client.team_name)
channel_name = args.get('channel', '')
channel_details = {}
channel_id = ''
if channel_name:
try:
channel_details = client.get_channel_by_name_and_team_name_request(team_name, channel_name)
except Exception as e:
if 'Channel does not exist.' in str(e):
hr = f'The channel {channel_name} was not found. It may have been already deleted, or not in the team provided.'
return CommandResults(readable_output=hr)
else:
raise e
try:
client.close_channel_request(channel_details.get('id', '') or channel_id)
hr = f'The channel {channel_name} was delete successfully.'
except Exception as e:
if 'Channel does not exist.' in str(e):
hr = f'The channel {channel_name} was already deleted.'
else:
raise e
mirror = find_mirror_by_investigation()
integration_context = get_integration_context()
if mirror:
demisto.debug('MM: Found mirrored channel to close.')
channel_id = mirror.get('channel_id', '')
mirrors = json.loads(integration_context['mirrors'])
# Check for mirrors on the archived channel
channel_mirrors = list(filter(lambda m: channel_id == m['channel_id'], mirrors))
for mirror in channel_mirrors:
mirror['remove'] = True
demisto.mirrorInvestigation(mirror['investigation_id'], f'none:{mirror["mirror_direction"]}',
mirror['auto_close'])
set_to_integration_context_with_retries({'mirrors': mirrors}, OBJECTS_TO_KEYS)
return CommandResults(
readable_output=hr
)
def list_users_command(client: HTTPClient, args: dict[str, Any]) -> CommandResults:
""" Lists users """
team_name = args.get('team_name', '')
channel_name = args.get('channel', '')
page = arg_to_number(args.get('page', DEFAULT_PAGE_NUMBER))
page_size = arg_to_number(args.get('page_size', DEFAULT_PAGE_SIZE))
limit = arg_to_number(args.get('limit', ''))
if limit:
page = DEFAULT_PAGE_NUMBER
page_size = limit
team_id = ''
if team_name:
team_details = client.get_team_request(team_name)
team_id = team_details.get('id', '')
channel_id = ''
if channel_name:
if not team_name:
raise DemistoException("Must provide a team name if a channel name was provided.")
channel_details = client.get_channel_by_name_and_team_name_request(team_name, channel_name)
channel_id = channel_details.get('id', '')
team_id = '' # The search in Mattermost is done with an OR operator
params = {'page': page, 'per_page': page_size, 'in_team': team_id, 'in_channel': channel_id}
remove_nulls_from_dictionary(params)
users = client.list_users_request(params)
hr = tableToMarkdown('Users:', users, headers=['username', 'email', 'role', 'id'])
return CommandResults(
outputs_prefix='Mattermost.User',
outputs_key_field='id',
outputs=users,
readable_output=hr,
)
def send_file_command(client: HTTPClient, args) -> CommandResults:
""" Sends a file """
channel_name = args.get('channel', '')
team_name = args.get('team_name', client.team_name)
message = args.get('message')
entry_id = args.get('entry_id') or args.get('file')
to = args.get('to', '')
demisto.debug(f'{to=}, {channel_name=}')
if (to and channel_name):
raise DemistoException("Cannot use both to and channel_name arguments")
if not to and not channel_name:
raise DemistoException("You must provide an to or channel_name arguments")
if to:
# create a new direct channel and send the message there
if re.match(emailRegex, to):
to = get_user_id_by_email(client, to)
else:
to = get_user_id_by_username(client, to)
bot_id = get_user_id_from_token(client, bot_user=True)
channel_details = client.create_direct_channel_request(to, bot_id)
demisto.debug(f'MM: Created a new direct channel to: {to} with channel_id: {channel_details.get("id")}')
else:
channel_details = client.get_channel_by_name_and_team_name_request(team_name, channel_name)
file_info = demisto.getFilePath(entry_id)
params = {'channel_id': channel_details.get('id'),
'filename': file_info['name']}
upload_response = client.send_file_request(file_info, params)
demisto.debug('MM: Uploaded the file successfully to mattermost')
data = {'channel_id': channel_details.get('id'),
'message': message,
'file_ids': [upload_response.get('file_infos', [])[0].get('id', '')]} # always uploading a single file
remove_nulls_from_dictionary(params)
client.create_post_with_file_request(data)
return CommandResults(
readable_output=f'file {file_info["name"]} was successfully sent to channel {channel_name}'
)
def mirror_investigation(client: HTTPClient, **args) -> CommandResults:
"""
Updates the integration context with a new or existing mirror.
"""
if not MIRRORING_ENABLED:
raise DemistoException("Couldn't mirror investigation, Mirroring is disabled")
if not LONG_RUNNING:
raise DemistoException('Mirroring is enabled, however long running is disabled. For mirrors to work correctly,'
' long running must be enabled.')
client = client
mirror_type = args.get('type', 'all')
direction = args.get('direction', 'Both')
channel_name = args.get('channel', '')
team_name = args.get('team_name', client.team_name)
mirror_to = args.get('mirrorTo', 'group')
autoclose = argToBoolean(args.get('autoclose', True))
send_first_message = False
kick_admin = argToBoolean(args.get('kickAdmin', False))
investigation = demisto.investigation()
investigation_id = str(investigation.get('id'))
if investigation.get('type') == PLAYGROUND_INVESTIGATION_TYPE:
raise DemistoException('This action cannot be performed in the playground.')
integration_context = get_integration_context()
if not integration_context or not integration_context.get('mirrors', []):
mirrors: list = []
current_mirror = []
else:
mirrors = json.loads(integration_context['mirrors'])
current_mirror = list(filter(lambda m: m['investigation_id'] == investigation_id, mirrors))
demisto.debug(f'MM: {mirrors=}')
demisto.debug(f'MM: {current_mirror=}')
# get admin user id from token
admin_user_id = get_user_id_from_token(client)
channel_filter: list = []
channel_id = ''
if channel_name:
# check if channel already exists
channel_filter = list(filter(lambda m: m['channel_name'] == channel_name, mirrors))
if not current_mirror:
channel_name = channel_name or f'incident-{investigation_id}'
if not channel_filter:
channel_details: dict = {}
try:
channel_details = client.get_channel_by_name_and_team_name_request(team_name, channel_name)
send_first_message = False
except Exception as e:
if '404' in str(e):
# create new channel
demisto.debug(f'MM: Creating a new channel for mirroring with name: {channel_name}')
channel_type = 'public' if mirror_to == 'channel' else 'private'
args = {'team_name': team_name, 'name': channel_name.lower(),
'display_name': channel_name, 'type': channel_type}
result = create_channel_command(client=client, args=args)
channel_details = result.outputs # type: ignore
send_first_message = True
else:
raise e
channel_id = channel_details.get('id', '')
channel_team_id = channel_details.get('team_id')
else:
mirrored_channel = channel_filter[0]
channel_team_id = mirrored_channel['channel_team_id']
channel_id = mirrored_channel['channel_id']
channel_name = mirrored_channel['channel_name']
mirror = {
'channel_team_id': channel_team_id,
'channel_id': channel_id,
'channel_name': channel_name,
'investigation_id': investigation.get('id'),
'mirror_type': mirror_type,
'mirror_direction': direction,
'auto_close': bool(autoclose),
'mirrored': True
}
else:
mirror = mirrors.pop(mirrors.index(current_mirror[0]))
channel_id = mirror['channel_id']
if mirror_type:
mirror['mirror_type'] = mirror_type
if autoclose:
mirror['auto_close'] = autoclose
if direction:
mirror['mirror_direction'] = direction
if channel_name:
# update channel name if needed
demisto.debug(f'MM: Updating channel name to {channel_name}')
params = {'name': channel_name, 'display_name': channel_name, 'id': channel_id}
client.update_channel_request(channel_id=channel_id, params=params)
mirror['channel_name'] = channel_name
channel_name = mirror['channel_name']
mirror['mirrored'] = True
demisto.mirrorInvestigation(investigation_id, f'{mirror_type}:{direction}', autoclose)
mirrors.append(mirror)
set_to_integration_context_with_retries({'mirrors': mirrors}, OBJECTS_TO_KEYS)
if send_first_message:
server_links = demisto.demistoUrls()
server_link = server_links.get('server')
incident_url = get_war_room_url(f'{server_link}#/WarRoom/{investigation_id}', investigation_id)
message_to_send = (f'This channel was created to mirror incident {investigation_id}.'
f' \n View it on: {incident_url}')
client.send_notification_request(channel_id, message_to_send)
if kick_admin:
try:
client.remove_channel_member_request(channel_id, admin_user_id)
except Exception as e:
demisto.debug(f'Could not kick admin from channel. Error: {e}')
return CommandResults(
readable_output=f'Investigation mirrored successfully with mirror type {mirror_type},\n channel name: {channel_name}'
)
def send_notification(client: HTTPClient, **args):
"""
Sends notification for a MatterMost channel
"""
demisto.debug(f'MM: {args=}')
to = args.get('to', '')
entry = args.get('entry')
channel_name = args.get('channel', '')
message_to_send = args.get("message", "")
ignore_add_url = argToBoolean(args.get('ignoreAddURL', False))
mattermost_ask = argToBoolean(args.get('mattermost_ask', False))
entitlement = ''
if mattermost_ask:
parsed_message = json.loads(args.get("message", ''))
entitlement = parsed_message.get('entitlement', '')
expiry = parsed_message.get('expiry', '')
default_response = parsed_message.get('default_response', '')
reply = parsed_message.get('reply', '')
message_to_send = parsed_message.get('message', '')
message_type = args.get('messageType', '') # From server
original_message = args.get('originalMessage', '') # From server
entry_object = args.get('entryObject') # From server
investigation_id = ''
poll: dict = {}
if (to and channel_name):
raise DemistoException("Cannot use both to and channel_name arguments")
channel_name = channel_name or client.notification_channel
if entry_object:
investigation_id = entry_object.get('investigationId') # From server, available from demisto v6.1 and above
if message_type and message_type != MIRROR_TYPE:
return (f"Message type is not in permitted options. Received: {message_type}")
if message_type == MIRROR_TYPE and original_message.find(MESSAGE_FOOTER) != -1:
# return so there will not be a loop of messages
return ("Message already mirrored")
if not ignore_add_url:
investigation = demisto.investigation()
server_links = demisto.demistoUrls()
if investigation:
if investigation.get('type') != PLAYGROUND_INVESTIGATION_TYPE:
link = server_links.get('warRoom')
if link:
link = get_war_room_url(link)
if entry:
link += '/' + entry
message_to_send += f'\nView it on: {link}'
else:
link = server_links.get('server', '')
if link:
message_to_send += f'\nView it on: {link}#/home'
channel_id = get_channel_id_to_send_notif(client, to, channel_name, investigation_id)
raw_data = client.send_notification_request(channel_id, message_to_send, props=poll)
message_id = raw_data.get("id")
demisto.debug(f'MM: Got replay from post: {raw_data}')
if entitlement:
demisto.debug(f'MM: Found entitlement, saving message to context: {entitlement}')
save_entitlement(entitlement, message_id, reply, expiry, default_response, to if to else channel_id)
return CommandResults(
readable_output=f'Message sent to MatterMost successfully. Message ID is: {message_id}'
)
''' MAIN FUNCTION '''
def handle_global_parameters(params: dict): # pragma: no cover
"""Initializing the global parameters"""
url = params.get('url', '')
bot_access_token = params.get('bot_access_token', {}).get('password')
personal_access_token = params.get('personal_access_token', {}).get('password')
proxy = params.get('proxy', False)
# Initializing global variables
global SECRET_TOKEN, LONG_RUNNING, MIRRORING_ENABLED, CACHE_EXPIRY, CACHED_INTEGRATION_CONTEXT, DEMISTO_URL
global BASE_URL, PROXY, SSL_CONTEXT, VERIFY_CERT, PROXIES, ALLOW_INCIDENTS, INCIDENT_TYPE, PROXY_URL
global WEBSOCKET_URL, PORT
LONG_RUNNING = params.get('longRunning', False)
MIRRORING_ENABLED = params.get('mirroring', False)
SECRET_TOKEN = personal_access_token
BASE_URL = url
PROXY = proxy
demisto_urls = demisto.demistoUrls()
DEMISTO_URL = demisto_urls.get('server', '')
PROXIES, _ = handle_proxy_for_long_running()
PROXY_URL = PROXIES.get('http', '') # aiohttp only supports http proxy
ALLOW_INCIDENTS = params.get('allow_incidents', True)
INCIDENT_TYPE = params.get('incidentType', 'Unclassified')
VERIFY_CERT = not params.get('insecure', False)
if not VERIFY_CERT:
SSL_CONTEXT = ssl.create_default_context()
SSL_CONTEXT.check_hostname = False
SSL_CONTEXT.verify_mode = ssl.CERT_NONE
else:
# Use default SSL context
SSL_CONTEXT = None
if 'path_to_url in url:
uri = url.replace("https://", "wss://", 1)
else:
uri = url.replace("http://", "ws://", 1)
uri += '/api/v4/websocket'
WEBSOCKET_URL = uri
# Pull initial Cached context and set the Expiry
CACHE_EXPIRY = next_expiry_time()
CACHED_INTEGRATION_CONTEXT = get_integration_context()
if MIRRORING_ENABLED and (not LONG_RUNNING or not bot_access_token):
raise DemistoException("""Mirroring is enabled, however long running is disabled
or the necessary bot authentication parameters are missing.
For mirrors to work correctly, long running must be enabled and you must provide all
the mattermost-bot following parameters:
Bot Access Token""")
def main(): # pragma: no cover
params = demisto.params()
args = demisto.args()
url = params.get('url', '')
bot_access_token = params.get('bot_access_token', {}).get('password')
personal_access_token = params.get('personal_access_token', {}).get('password')
team_name = params.get('team_name', '')
notification_channel = params.get('notification_channel')
verify_certificate = not params.get('insecure', False)
proxy = params.get('proxy', False)
handle_global_parameters(params)
command = demisto.command()
try:
global CLIENT
headers = {'Authorization': f'Bearer {personal_access_token}'}
client = HTTPClient(
base_url=url,
headers=headers,
verify=verify_certificate,
proxy=proxy,
bot_access_token=bot_access_token,
personal_access_token=personal_access_token,
team_name=team_name,
notification_channel=notification_channel,
)
CLIENT = client
demisto.debug(f'Command being called is {command}')
if command == 'test-module':
return_results(test_module(client))
elif command == 'mirror-investigation':
return_results(mirror_investigation(client, **args))
elif command == 'mattermost-mirror-investigation':
return_results(mirror_investigation(client, **args))
elif command == 'send-notification':
return_results(send_notification(client, **args))
elif command == 'long-running-execution':
run_long_running()
elif command == 'mattermost-get-team':
return_results(get_team_command(client, args))
elif command == 'mattermost-list-channels':
return_results(list_channels_command(client, args))
elif command == 'mattermost-create-channel':
return_results(create_channel_command(client, args))
elif command == 'mattermost-add-channel-member':
return_results(add_channel_member_command(client, args))
elif command == 'mattermost-remove-channel-member':
return_results(remove_channel_member_command(client, args))
elif command == 'mattermost-list-users':
return_results(list_users_command(client, args))
elif command == 'mattermost-close-channel':
return_results(close_channel_command(client, args))
elif command == 'close-channel':
return_results(close_channel_command(client, args))
elif command == 'mattermost-send-file':
return_results(send_file_command(client, args))
else:
raise DemistoException('Unrecognized command: ' + demisto.command())
except Exception as e:
# For any other integration command exception, return an error
return_error(f'Failed to execute {command} command. Error: {str(e)}.')
''' ENTRY POINT '''
if __name__ in ('__main__', '__builtin__', 'builtins'):
main()
```
|
```smalltalk
using Aurora.Profiles.Generic.GSI.Nodes;
using Aurora.Profiles.StardewValley.GSI.Nodes;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aurora.Profiles.StardewValley.GSI {
public class GameState_StardewValley : GameState {
public ProviderNode Provider => NodeFor<ProviderNode>("Provider");
public WorldNode World => NodeFor<WorldNode>("World");
public PlayerNode Player => NodeFor<PlayerNode>("Player");
public InventoryNode Inventory => NodeFor<InventoryNode>("Inventory");
public JournalNode Journal => NodeFor<JournalNode>("Journal");
public GameStatusNode Game => NodeFor<GameStatusNode>("Game");
public GameState_StardewValley() : base() { }
/// <summary>
/// Creates a GameState_StardewValley instance based on the passed JSON data.
/// </summary>
/// <param name="JSONstring"></param>
public GameState_StardewValley(string JSONstring) : base(JSONstring) { }
}
}
```
|
Sir Thomas Richardson (1569 – 4 February 1635) of Honingham in Norfolk, was an English judge and politician who sat in the House of Commons from 1621 to 1622. He was Speaker of the House of Commons for this parliament. He was later Chief Justice of the Common Pleas and Chief Justice of the King's Bench.
Background and early life
Richardson was born at Hardwick, Depwade Hundred, Norfolk, and was baptised there on 3 July 1569, the son of William Richardson whose family were said to be descended from the younger son of a Norman family, John, who moved to county Durham in about 1100. Other branches of the family included the Richardsons of the Briary in county Durham, and the Richardsons of Glanbrydan Park and Pantygwydr, Wales. However, the History of Parliament biography of his grandson states that he was "of Norfolk peasant stock". The coat of arms he used (Argent, on a chief sable three lion's heads erased of the first) was certainly that of the ancient gentry family of Richardson, of many branches.
He was educated at Norwich School, and matriculated at Christ's College, Cambridge in June 1584.
On 5 March 1587, he was admitted a student at Lincoln's Inn, where he was called to the bar on 28 January 1595. In about 1600 he purchased the estate of Honingham in Norfolk, which he made his seat.
In 1605 he was deputy steward to the dean and chapter of Norwich, around which time he built Honingham Hall. He was subsequently recorder of Bury St. Edmunds and then Norwich. In 1614, he was Lent Reader at Lincoln's Inn, and on 13 October of the same year became serjeant-at-law. At about the same time he was made chancellor to the queen.
Speaker of the House of Commons
In 1621, Richardson was elected Member of Parliament for St Albans. When Parliament met on 30 January 1621, he was chosen Speaker of the House of Commons. The excuses which he made before accepting this office appear to have been more than formal, for an eye-witness reports that he "wept downright".
On 25 March 1621, he was knighted at Whitehall when he brought King James congratulations of the commons upon the recent censure of Sir Giles Mompesson. In the chair, he proved a veritable King Log and his term of office was marked by the degradation of Bacon. He was not re-elected to parliament in the next election.
Judicial advancement
On 20 February 1625, Richardson was made king's serjeant. On 28 November 1626, he succeeded Sir Henry Hobart as Chief Justice of the Common Pleas, after a vacancy of nearly a year. His advancement was said to have cost him £17,000 and his second marriage (see infra). He judged on 13 November 1628, that it was illegal to use the rack to elicit confession from Felton, the murderer of Duke of Buckingham's. His opinion had the concurrence of his colleagues and marks a significant point in the history of English criminal jurisprudence. In the following December he presided at the trial of three of the Jesuits arrested in Clerkenwell, and secured the acquittal of two of them by requiring proof, which was not forthcoming, of their orders.
In the same year he took part in the careful review of the law of constructive treason This arose from the case of Hugh Pine who was charged with that crime for speaking words that were derogatory to the king's majesty. The result of Richardsons's review was to limit the offence to cases of imagining the king's death. He concurred in the guarded and somewhat evasive opinion on the extent of privilege of parliament which the king elicited from the judges after the turbulent scenes which preceded the dissolution of parliament on 4 March 1629. He was as lenient as he could be when he imposed a fine of £500 without imprisonment in the case of Richard Chambers, and his agreement with harsh sentences passed upon Alexander Leighton and William Prynne may have been dictated by timidity, and there contrast strongly with the tenderness which he showed Henry Sherfield, the iconoclastic bencher of Lincoln's Inn.
Chief Justice of the King’s Bench
Richardson was advanced to the chief-justiceship of the king's bench on 24 October 1631, and served on the western circuit. He was not a puritan but in Lent 1632 he made and order, at the instance of the Somerset magistrates, for suppressing the 'wakes' or Sunday revels, which were a fertile source of crime in the county.
He directed the order to be read in church and this brought him into conflict with Laud, who sent for him and told him it was the king's pleasure he should rescind the order. Richardson ignored this instruction until the king himself repeated it. He then, at the ensuing summer Assizes (1633), laid the matter fairly before the justices and grand jury, professing his inability to comply with the royal mandate on the ground that the order had been made by the joint consent of the whole bench, and was in fact a mere confirmation and enlargement of similar orders made in the county since the time of Queen Elizabeth, all which he substantiated from the county records. This caused him to be cited before the council, reprimanded, and transferred to the Essex circuit. 'I am like,' he muttered as he left the council board, 'to be choked with the archbishop's lawn sleeves.'
Death
Richardson died at his house in Chancery Lane on 4 February 1635 and was buried in the north aisle of the choir of Westminster Abbey, beneath a marble monument. There is a bust by Hubert Le Sueur.
Judicial reputation
Richardson was a capable lawyer and a weak man, much addicted to flouts and jeers. 'Let him have the Book of Martyrs he said, when the question whether Prynne should be allowed the use of books was before the court; 'for the puritans do account him a martyr.' He could also make a caustic jest at his own expense. 'You see now’ he dryly remarked, as he avoided a missile aimed at him by a condemned felon by stooping low, 'if I had been an upright judge I had been slain.' He possessed some polite learning, which caused John Taylor, the water poet, to dedicate to him one of the impressions of his Superbiae Flagellum (1621).
Marriages and issue
Richardson married twice:
Firstly to Ursula Southwell (d.1624), the third daughter of John Southwell of Barham Hall in Suffolk. She was buried at St. Andrew's, Holborn, on 13 June 1624. By Ursula Southwell, he had twelve children, including:
Sir Thomas Richardson (d. 12 March 1645), K.B., Master of Cramond, who by special remainder became the heir apparent to the Scottish title of his step-mother Elizabeth, 1st Baroness Cramond (d.1651), but predeceased her. He married firstly Elizabeth Hewett, a daughter of Sir William Hewett of Pishiobury, Sawbridgeworth, Hertfordshire. The title was inherited by his son Thomas Richardson, 2nd Lord Cramond (1627–74), of Honingham. The title became extinct in 1735 on the death, without issue, of William Richardson, 5th Lord Cramond.
Mary Richardson (1600 – 10 March 1656/7) who married John Webb (1588 – 25 October 1658) of Breckles in Norfolk. The couple's inscribed ledger stone survives in Breckles Church.
Elizabeth Richardson (1607 – 13 July 1655), 3rd daughter, who married Robert Wood (4 August 1601 – 31 December 1680) of Braconash, the grandson of Sir Robert Wood of Norwich.
Secondly, at St Giles in the Fields, Middlesex, on 14 December 1626, he married Elizabeth Beaumont (d.1651), widow of Sir John Ashburnham and a daughter of Sir Thomas Beaumont of Stoughton, Leicestershire. She was the maternal second cousin once removed of George Villiers, 1st Duke of Buckingham. Without issue. On 28 February 1629, Elizabeth was created Lady Cramond in the peerage of Scotland, for life, with special remainder to her stepson Sir Thomas Richardson, KB, who died in her lifetime on 12 March 1645, and thus his son Thomas Richardson succeeded to the peerage on her death in April 1651. The title became extinct by the death, without issue, of William Richardson, 5th Lord Cramond, in 1735.
ReferencesAttribution'
Bibliography
External links
1569 births
1635 deaths
Chief Justices of the Common Pleas
Speakers of the House of Commons of England
English MPs 1621–1622
Lord chief justices of England and Wales
People educated at Norwich School
Alumni of Christ's College, Cambridge
Members of Lincoln's Inn
People from Shelton and Hardwick
16th-century English judges
17th-century English judges
Politicians from Norwich
People from Honingham
Judges from Norwich
Knights Bachelor
|
```rust
/*
*
* This software may be used and distributed according to the terms of the
*/
use anyhow::Result;
use async_trait::async_trait;
use blobstore::Blobstore;
use blobstore::BlobstoreGetData;
use blobstore::BlobstoreIsPresent;
use blobstore::BlobstorePutOps;
use blobstore::BlobstoreUnlinkOps;
use blobstore::OverwriteStatus;
use blobstore::PutBehaviour;
use context::CoreContext;
use mononoke_types::BlobstoreBytes;
mod errors;
pub use crate::errors::ErrorKind;
/// A layer over an existing blobstore that prevents writes.
#[derive(Debug, Clone)]
pub struct ReadOnlyBlobstore<T> {
blobstore: T,
}
impl<T: std::fmt::Display> std::fmt::Display for ReadOnlyBlobstore<T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "ReadOnlyBlobstore<{}>", &self.blobstore)
}
}
impl<T> ReadOnlyBlobstore<T> {
pub fn new(blobstore: T) -> Self {
Self { blobstore }
}
}
#[async_trait]
impl<T: Blobstore> Blobstore for ReadOnlyBlobstore<T> {
#[inline]
async fn get<'a>(
&'a self,
ctx: &'a CoreContext,
key: &'a str,
) -> Result<Option<BlobstoreGetData>> {
self.blobstore.get(ctx, key).await
}
#[inline]
async fn put<'a>(
&'a self,
_ctx: &'a CoreContext,
key: String,
_value: BlobstoreBytes,
) -> Result<()> {
Err(ErrorKind::ReadOnlyPut(key).into())
}
#[inline]
async fn is_present<'a>(
&'a self,
ctx: &'a CoreContext,
key: &'a str,
) -> Result<BlobstoreIsPresent> {
self.blobstore.is_present(ctx, key).await
}
}
#[async_trait]
impl<T: BlobstorePutOps> BlobstorePutOps for ReadOnlyBlobstore<T> {
async fn put_explicit<'a>(
&'a self,
_ctx: &'a CoreContext,
key: String,
_value: BlobstoreBytes,
_put_behaviour: PutBehaviour,
) -> Result<OverwriteStatus> {
Err(ErrorKind::ReadOnlyPut(key).into())
}
async fn put_with_status<'a>(
&'a self,
_ctx: &'a CoreContext,
key: String,
_value: BlobstoreBytes,
) -> Result<OverwriteStatus> {
Err(ErrorKind::ReadOnlyPut(key).into())
}
}
#[async_trait]
impl<T: BlobstoreUnlinkOps> BlobstoreUnlinkOps for ReadOnlyBlobstore<T> {
async fn unlink<'a>(&'a self, _ctx: &'a CoreContext, key: &'a str) -> Result<()> {
Err(ErrorKind::ReadOnlyPut(key.to_string()).into())
}
}
#[cfg(test)]
mod test {
use borrowed::borrowed;
use fbinit::FacebookInit;
use memblob::Memblob;
use super::*;
#[fbinit::test]
async fn test_error_on_write(fb: FacebookInit) {
let ctx = CoreContext::test_mock(fb);
borrowed!(ctx);
let base = Memblob::default();
let wrapper = ReadOnlyBlobstore::new(base.clone());
let key = "foobar";
let r = wrapper
.put(
ctx,
key.to_owned(),
BlobstoreBytes::from_bytes("test foobar"),
)
.await;
assert!(r.is_err());
let base_present = base
.is_present(ctx, key)
.await
.unwrap()
.assume_not_found_if_unsure();
assert!(!base_present);
}
#[fbinit::test]
async fn test_error_on_put_with_status(fb: FacebookInit) {
let ctx = CoreContext::test_mock(fb);
borrowed!(ctx);
let base = Memblob::default();
let wrapper = ReadOnlyBlobstore::new(base.clone());
let key = "foobar";
let r = wrapper
.put_with_status(
ctx,
key.to_owned(),
BlobstoreBytes::from_bytes("test foobar"),
)
.await;
assert!(r.is_err());
let base_present = base
.is_present(ctx, key)
.await
.unwrap()
.assume_not_found_if_unsure();
assert!(!base_present);
}
}
```
|
is a Japanese football player who plays as Midfielder and currently play for Tiamo Hirakata.
Career
After being picker as a special designated player in 2017, Shimazu signed for Zweigen Kanazawa in the following year.
On 5 August 2021, Shimazu was loaned out to J3 club Kagoshima United from Zweigen Kanazawa.
On 8 January 2022, after his loan at Kagoshima expired, he was loaned out once again, now to JFL club Tiamo Hirakata for the 2022 season. Tiamo decided to signing him in 17 December 2022 on a full transfer.
Career statistics
Club
Updated to the start of 2023 season.
References
External links
Profile at J. League
Profile at Zweigen Kanazawa
Profile at Kagoshima United
Profile at FC Tiamo Hirakata
1999 births
Living people
Association football people from Osaka Prefecture
Japanese men's footballers
J2 League players
J3 League players
Japan Football League players
Zweigen Kanazawa players
Kagoshima United FC players
FC Tiamo Hirakata players
Men's association football midfielders
|
John Robert Stillman (July 11, 1946 – April 7, 2009), billed professionally as Jack Wrangler, was an American gay and straight pornographic film actor, theatrical producer, director and writer. Open about his homosexuality and adult film work throughout his career, Wrangler was considered an icon of the gay-liberation movement.
In 2008, a feature-length documentary film, Wrangler: Anatomy of an Icon, was released documenting his careers both off and on the stage.
Wrangler's wife for the last 15 years of his life was U.S. singer Margaret Whiting.
Biography
Early years
Wrangler was born John Robert Stillman in Beverly Hills, California. His father was Hollywood film and television producer Robert Thurston Stillman, who produced such films as Champion, Second Chorus, and Home of the Brave and produced television series such as Boots and Saddles, Rawhide, and Bonanza. His mother, Ruth Clark Stillman, was a former dancer in Busby Berkeley musicals.
Stillman began his acting career at the age of nine in the television series The Faith of Our Children (1953–1955). The series, which starred Eleanor Powell, was a syndicated religious family show that won five local Emmy Awards.
He became aware of his homosexuality when he was 10 years old.
Stillman graduated in 1968 with a degree in theater from the College of Speech at Northwestern University, Evanston, Illinois.
Career
Adult film
Despite his good looks and acting skills, Stillman found only limited early work in Los Angeles, California, and New York City on the stage and as a model and dancer. One of his first roles was in Douglas Dean Goodman's play Special Friends, one of the first gay-themed plays by a gay playwright to be performed in San Francisco, California. He played a former prostitute from Arkansas who becomes a bad go-go dancer in California, in a role which required extensive nudity. He finally settled in New York City and found work as a bartender and go-go dancer.
In 1970, he made his first appearance in a male strip show, using the name "Jack Wrangler." (The pseudonymous last name was taken from the label on his Wrangler-brand work shirt.)
Wrangler was approached to appear in gay pornographic films by Magnum Studios, the pioneering gay adult film studio and magazine publisher, after studio heads saw a poster for Special Friends featuring him semi-nude. His first gay porn film was 1970's Eyes of a Stranger (also known as Eyes of a Gay Stranger; Magnum Studios), one of the first hard-core gay adult films to be released commercially in the United States. Wrangler performed in gay pornographic films for several reasons. First he saw them as culturally subversive and politically liberating:
At the time we were all trying to find out who the hell we were as individuals, what we wanted specifically on our own terms, who we wanted to be, what our potentials were, what our differences were, what made us unique… And I think that's why the XXX-rated films were important, because it was like, Oh, my God, there are other people who like the same things as me, like leather, or being blown on a pool table. [Laughs] It was a start—literally stripping ourselves naked and trying to begin from there.Second, he "wasn't comfortable in his own skin" and wanted some adventure in his life.
During his adult-film career, Wrangler appeared in 47 films. Among his more notable gay films were Kansas City Trucking Co., Hot House, Sex Machine, and A Night at the Adonis.
In 1978, Wrangler made the move to heterosexual adult film, making his debut in China Sisters which included his first sexual encounter with a woman on film. China Sisters featured a plot involving two women who seduce a gay man and turn him straight. Wrangler told Terry Gross of NPR that the film crew knew he was gay and cheered him on while he lost his heterosexual virginity. He quickly made a number of well-known and popular straight-adult films, including Jack and Jill, Roommates, and The Devil in Miss Jones 2. He was a favorite of director Chuck Vincent, the critically acclaimed, openly gay director of some of the top straight-adult films of the 1970s and 1980s. Vincent's films subvert straight porn's traditional focus on the female body by focusing on Wrangler's body and fixing the viewer's eye on the male (rather than female) sexual experience.
As Wrangler, he became an icon of the gay-liberation movement. His popularity as a gay-porn star was so great that "Jack Wrangler" was prominently mentioned in playwright Doric Wilson's 1984 play, Forever After.
Theatre
As Wrangler was achieving fame as one of the first iconic gay-porn stars, his acting career also blossomed. He co-starred alongside playwright and actor Robert Patrick in Patrick's 1979 play T-Shirts at The Glines theater in New York City. In 1985, Wrangler wrote the book for the musical I Love You, Jimmy Valentine – which starred Whiting. In the mid-1980s, he appeared in the play Soul Survivor, a comedy about a gay man whose lover has died of AIDS.
By this time Wrangler's adult-film career was tapering off. He published his autobiography, The Jack Wrangler Story, or What's a Nice Boy Like You Doing?, in 1984. But Whiting demanded that he give up his porn career and live erotic shows. In 1986 at the age of 40, he appeared in his final adult picture, a straight porn film titled Rising Star (Caballero Home Video).
Wrangler turned his attention to Whiting's career and cabaret. He became a board member of the Johnny Mercer Foundation after its founding in 1982, and worked to promote Mercer's music. He wrote and produced a 1985 cabaret show for Whiting which featured Mercer's music, and in 1996 co-wrote and produced Midnight in the Garden of Good and Evil: The Jazz Concert (inspired by the Mercer music used in the film, Midnight in the Garden of Good and Evil). A year later, he helped conceive the 1997 Broadway revue Dream, which starred Whiting and contained many Mercer songs.<ref>Holden, Stephen. "The Songs Her Father's Lyricist Taught Her." The New York Times. March 30, 1997; Marks, Peter. "A Parade of Hits 5 Decades Long." The New York Times. April 4, 1997; [http://www.johnnymercer.com/dream/dreamtxt.htm/ Dream - Cast, Credits, and Program." Johnny Mercer.com.] Accessed March 9, 2009.</ref> Wrangler conceived the idea of a ballet based on Mercer's 1946 musical St. Louis Woman, which was performed by the Dance Theater of Harlem in 2003.Kisselgoff, Anna. "Passion, Wrongs and Reconciliation in a Racetrack Saloon." The New York Times. July 10, 2003. Wrangler was also a promoter of the cabaret singer Carol Woods, writing and producing several shows for her between 1984 and 2001. Wrangler also wrote, directed, or produced a number of other plays, musicals and revues, including The Valentine Touch, The First Lady and Other Stories of Our Times, and Irina Abroad!Wrangler authored a column on health and fitness, "Wrangler's Weights and Measures", for the short-lived, gay-lifestyle magazine Au Contraire in 1979.
Personal life
Wrangler was a virgin to heterosexual sex until college. In 1976, Wrangler met singer Margaret Whiting, 22 years his senior, in a nightclub; Wrangler later recalled: "I was with my manager when I looked over at Margaret, who was surrounded by five guys in a booth. There she was with the hair, the furs and the big gestures. I thought, 'Boy, now that's New York! That's glamour!' I had to meet her." Their romance began a few weeks later.
The couple was strongly criticized for the relationship, and Wrangler was accused of "turning straight" and entering the relationship simply for money. However, Wrangler always considered himself homosexual. "I'm not bisexual and I'm not straight", Wrangler later said. "I'm gay, but I could never live a gay lifestyle, because I'm much too competitive. When I was with a guy I would always want to be better than him: what we were accomplishing, what we were wearing—anything. With a woman you compete like crazy, but coming from different points of view, and as far as I'm concerned, that was doable."
Nonetheless, the early years of their relationship were difficult, as Wrangler and Whiting struggled with Wrangler's homosexuality. When Wrangler shouted at her in a restaurant that he was gay, Whiting responded, "only around the edges, dear." Wrangler explained in an interview: "When I got with Margaret, I knew I had to change course. She would have my bags packed and sitting outside the door when I got home at night and things like that. Plus I would go through massive guilt whenever I did go out with a guy and I was with her. So I finally said that's it. I went to her one night and said I'm never going to cheat on you again with anybody. So my sex life became very masturbatory. And I'm good at that-very good at that, in fact." The couple was married from 1994 until his death.
In 1980, Wrangler, his step-grandmother, and his manager were attacked, pistol-whipped, and tied up by six burglars at his step-grandmother's home in Bel Air, California. The robbers made off with more than $250,000 in furs and cash."$272,000 in Furs, Cash Taken at Bel-Air Home." Los Angeles Times. November 1, 1980.
In 1998, Wrangler and Whiting filed a $3 million lawsuit against New York City when the 74-year-old Whiting tripped on loose pavement and broke her hip. Their suit claimed $2 million in damages for her injuries and $1 million for loss of conjugal relations."Margaret Whiting Sues New York For $3 million." CNN.com. October 7, 1998; Zwecker, Bill. "Whiting's Stumble Could Bring A Windfall." Chicago Sun-Times. October 8, 1998; "Ex-Pop Singer Whiting Files Lawsuit." Associated Press. October 7, 1998.
In 2008, a feature-length documentary film about Wrangler, Wrangler: Anatomy of an Icon, premiered at Newfest and received the GayVN Award. It was produced and directed by Jeffrey Schwarz of Automat Pictures, and is distributed by TLA Releasing.
Wrangler died on April 7, 2009, at the age of 62 from complications from emphysema.
Selected filmographyEyes of a Stranger (1970)Kansas City Trucking Co. (1976)A Night At The Adonis (1978)Gemini (1979)Jack and Jill (1979)Hot House (1980)Sex Machine (1980)Wanted (1980)Roommates (1981)The Devil in Miss Jones 2 (1982)In Love (1983)
See also
Golden Age of Porn
List of male performers in gay porn films
References
External links
Wrangler: Anatomy of an Icon Facebook Page
Wrangler: Anatomy of an Icon Official Site
Interview with Margaret Whiting and Jack Wrangler Interview as part of the Johnny Mercer Oral History Project. Georgia State University 1995.
Backstage interview with Rick X in 1989 during his performance in Soul Survivor''
Wrangler in the play T-Shirts (slideshow)
American actors in gay pornographic films
American male child actors
American male film actors
American male stage actors
American male television actors
Deaths from emphysema
Gay pornographic film actors
American gay actors
Gay memoirists
LGBT people from California
Northwestern University School of Communication alumni
Male actors from Beverly Hills, California
1946 births
2009 deaths
American gay writers
Pornographic film actors from California
Male pornographic film actors
20th-century American male actors
Bisexual male pornographic film actors
20th-century American LGBT people
|
```xml
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Scriban\Scriban.csproj" />
</ItemGroup>
</Project>
```
|
```c
/*
* MMS protocol over TCP
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
* FFmpeg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
*
* You should have received a copy of the GNU Lesser General Public
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* References
* MMS protocol specification:
* [1]path_to_url
* ASF specification. Revision 01.20.03.
* [2]path_to_url
*/
#include "avformat.h"
#include "mms.h"
#include "internal.h"
#include "avio_internal.h"
#include "libavutil/intreadwrite.h"
#include "libavcodec/bytestream.h"
#include "network.h"
#include "url.h"
#define LOCAL_ADDRESS 0xc0a80081 // FIXME get and use correct local ip address.
#define LOCAL_PORT 1037 // as above.
/** Client to server packet types. */
typedef enum {
CS_PKT_INITIAL = 0x01,
CS_PKT_PROTOCOL_SELECT = 0x02,
CS_PKT_MEDIA_FILE_REQUEST = 0x05,
CS_PKT_START_FROM_PKT_ID = 0x07,
CS_PKT_STREAM_PAUSE = 0x09,
CS_PKT_STREAM_CLOSE = 0x0d,
CS_PKT_MEDIA_HEADER_REQUEST = 0x15,
CS_PKT_TIMING_DATA_REQUEST = 0x18,
CS_PKT_USER_PASSWORD = 0x1a,
CS_PKT_KEEPALIVE = 0x1b,
CS_PKT_STREAM_ID_REQUEST = 0x33,
} MMSCSPacketType;
/** Server to client packet types. */
typedef enum {
/** Control packets. */
/*@{*/
SC_PKT_CLIENT_ACCEPTED = 0x01,
SC_PKT_PROTOCOL_ACCEPTED = 0x02,
SC_PKT_PROTOCOL_FAILED = 0x03,
SC_PKT_MEDIA_PKT_FOLLOWS = 0x05,
SC_PKT_MEDIA_FILE_DETAILS = 0x06,
SC_PKT_HEADER_REQUEST_ACCEPTED = 0x11,
SC_PKT_TIMING_TEST_REPLY = 0x15,
SC_PKT_PASSWORD_REQUIRED = 0x1a,
SC_PKT_KEEPALIVE = 0x1b,
SC_PKT_STREAM_STOPPED = 0x1e,
SC_PKT_STREAM_CHANGING = 0x20,
SC_PKT_STREAM_ID_ACCEPTED = 0x21,
/*@}*/
/** Pseudo packets. */
/*@{*/
SC_PKT_CANCEL = -1,
SC_PKT_NO_DATA = -2,
/*@}*/
/** Data packets. */
/*@{*/
SC_PKT_ASF_HEADER = 0x010000,// make it bigger than 0xFF in case of
SC_PKT_ASF_MEDIA = 0x010001,// receiving false data packets.
/*@}*/
} MMSSCPacketType;
typedef struct MMSTContext {
MMSContext mms;
int outgoing_packet_seq; ///< Outgoing packet sequence number.
char path[256]; ///< Path of the resource being asked for.
char host[128]; ///< Host of the resources.
int incoming_packet_seq; ///< Incoming packet sequence number.
int incoming_flags; ///< Incoming packet flags.
int packet_id; ///< Identifier for packets in the current stream.
unsigned int header_packet_id; ///< default is 2.
} MMSTContext;
/** Create MMST command packet header */
static void start_command_packet(MMSTContext *mmst, MMSCSPacketType packet_type)
{
MMSContext *mms = &mmst->mms;
mms->write_out_ptr = mms->out_buffer;
bytestream_put_le32(&mms->write_out_ptr, 1); // start sequence
bytestream_put_le32(&mms->write_out_ptr, 0xb00bface);
bytestream_put_le32(&mms->write_out_ptr, 0); // Length starts from after the protocol type bytes
bytestream_put_le32(&mms->write_out_ptr, MKTAG('M','M','S',' '));
bytestream_put_le32(&mms->write_out_ptr, 0);
bytestream_put_le32(&mms->write_out_ptr, mmst->outgoing_packet_seq++);
bytestream_put_le64(&mms->write_out_ptr, 0); // timestamp
bytestream_put_le32(&mms->write_out_ptr, 0);
bytestream_put_le16(&mms->write_out_ptr, packet_type);
bytestream_put_le16(&mms->write_out_ptr, 3); // direction to server
}
/** Add prefixes to MMST command packet. */
static void insert_command_prefixes(MMSContext *mms,
uint32_t prefix1, uint32_t prefix2)
{
bytestream_put_le32(&mms->write_out_ptr, prefix1); // first prefix
bytestream_put_le32(&mms->write_out_ptr, prefix2); // second prefix
}
/** Send a prepared MMST command packet. */
static int send_command_packet(MMSTContext *mmst)
{
MMSContext *mms = &mmst->mms;
int len= mms->write_out_ptr - mms->out_buffer;
int exact_length = FFALIGN(len, 8);
int first_length= exact_length - 16;
int len8= first_length/8;
int write_result;
// update packet length fields.
AV_WL32(mms->out_buffer + 8, first_length);
AV_WL32(mms->out_buffer + 16, len8);
AV_WL32(mms->out_buffer + 32, len8-2);
memset(mms->write_out_ptr, 0, exact_length - len);
// write it out.
write_result= ffurl_write(mms->mms_hd, mms->out_buffer, exact_length);
if(write_result != exact_length) {
av_log(NULL, AV_LOG_ERROR,
"Failed to write data of length %d: %d (%s)\n",
exact_length, write_result,
write_result < 0 ? strerror(AVUNERROR(write_result)) :
"The server closed the connection");
return AVERROR(EIO);
}
return 0;
}
static int mms_put_utf16(MMSContext *mms, const uint8_t *src)
{
AVIOContext bic;
int size = mms->write_out_ptr - mms->out_buffer;
int len;
ffio_init_context(&bic, mms->write_out_ptr,
sizeof(mms->out_buffer) - size, 1, NULL, NULL, NULL, NULL);
len = avio_put_str16le(&bic, src);
if (len < 0)
return len;
mms->write_out_ptr += len;
return 0;
}
static int send_time_test_data(MMSTContext *mmst)
{
start_command_packet(mmst, CS_PKT_TIMING_DATA_REQUEST);
insert_command_prefixes(&mmst->mms, 0x00f0f0f0, 0x0004000b);
return send_command_packet(mmst);
}
static int send_protocol_select(MMSTContext *mmst)
{
int ret;
char data_string[256];
MMSContext *mms = &mmst->mms;
start_command_packet(mmst, CS_PKT_PROTOCOL_SELECT);
insert_command_prefixes(mms, 0, 0xffffffff);
bytestream_put_le32(&mms->write_out_ptr, 0); // maxFunnelBytes
bytestream_put_le32(&mms->write_out_ptr, 0x00989680); // maxbitRate
bytestream_put_le32(&mms->write_out_ptr, 2); // funnelMode
snprintf(data_string, sizeof(data_string), "\\\\%d.%d.%d.%d\\%s\\%d",
(LOCAL_ADDRESS>>24)&0xff,
(LOCAL_ADDRESS>>16)&0xff,
(LOCAL_ADDRESS>>8)&0xff,
LOCAL_ADDRESS&0xff,
"TCP", // or UDP
LOCAL_PORT);
if ((ret = mms_put_utf16(mms, data_string)) < 0)
return ret;
return send_command_packet(mmst);
}
static int send_media_file_request(MMSTContext *mmst)
{
int ret;
MMSContext *mms = &mmst->mms;
start_command_packet(mmst, CS_PKT_MEDIA_FILE_REQUEST);
insert_command_prefixes(mms, 1, 0xffffffff);
bytestream_put_le32(&mms->write_out_ptr, 0);
bytestream_put_le32(&mms->write_out_ptr, 0);
if ((ret = mms_put_utf16(mms, mmst->path + 1)) < 0) // +1 for skip "/"
return ret;
return send_command_packet(mmst);
}
static void handle_packet_stream_changing_type(MMSTContext *mmst)
{
MMSContext *mms = &mmst->mms;
av_log(NULL, AV_LOG_TRACE, "Stream changing!\n");
// 40 is the packet header size, 7 is the prefix size.
mmst->header_packet_id= AV_RL32(mms->in_buffer + 40 + 7);
av_log(NULL, AV_LOG_TRACE, "Changed header prefix to 0x%x", mmst->header_packet_id);
}
static int send_keepalive_packet(MMSTContext *mmst)
{
// respond to a keepalive with a keepalive...
start_command_packet(mmst, CS_PKT_KEEPALIVE);
insert_command_prefixes(&mmst->mms, 1, 0x100FFFF);
return send_command_packet(mmst);
}
/** Pad media packets smaller than max_packet_size and/or adjust read position
* after a seek. */
static void pad_media_packet(MMSContext *mms)
{
if(mms->remaining_in_len<mms->asf_packet_len) {
int padding_size = mms->asf_packet_len - mms->remaining_in_len;
memset(mms->in_buffer + mms->remaining_in_len, 0, padding_size);
mms->remaining_in_len += padding_size;
}
}
/** Read incoming MMST media, header or command packet. */
static MMSSCPacketType get_tcp_server_response(MMSTContext *mmst)
{
int read_result;
MMSSCPacketType packet_type= -1;
MMSContext *mms = &mmst->mms;
for(;;) {
read_result = ffurl_read_complete(mms->mms_hd, mms->in_buffer, 8);
if (read_result != 8) {
if(read_result < 0) {
av_log(NULL, AV_LOG_ERROR,
"Error reading packet header: %d (%s)\n",
read_result, strerror(AVUNERROR(read_result)));
packet_type = SC_PKT_CANCEL;
} else {
av_log(NULL, AV_LOG_ERROR,
"The server closed the connection\n");
packet_type = SC_PKT_NO_DATA;
}
return packet_type;
}
// handle command packet.
if(AV_RL32(mms->in_buffer + 4)==0xb00bface) {
int length_remaining, hr;
mmst->incoming_flags= mms->in_buffer[3];
read_result= ffurl_read_complete(mms->mms_hd, mms->in_buffer+8, 4);
if(read_result != 4) {
av_log(NULL, AV_LOG_ERROR,
"Reading command packet length failed: %d (%s)\n",
read_result,
read_result < 0 ? strerror(AVUNERROR(read_result)) :
"The server closed the connection");
return read_result < 0 ? read_result : AVERROR(EIO);
}
length_remaining= AV_RL32(mms->in_buffer+8) + 4;
av_log(NULL, AV_LOG_TRACE, "Length remaining is %d\n", length_remaining);
// read the rest of the packet.
if (length_remaining < 0
|| length_remaining > sizeof(mms->in_buffer) - 12) {
av_log(NULL, AV_LOG_ERROR,
"Incoming packet length %d exceeds bufsize %"SIZE_SPECIFIER"\n",
length_remaining, sizeof(mms->in_buffer) - 12);
return AVERROR_INVALIDDATA;
}
read_result = ffurl_read_complete(mms->mms_hd, mms->in_buffer + 12,
length_remaining) ;
if (read_result != length_remaining) {
av_log(NULL, AV_LOG_ERROR,
"Reading pkt data (length=%d) failed: %d (%s)\n",
length_remaining, read_result,
read_result < 0 ? strerror(AVUNERROR(read_result)) :
"The server closed the connection");
return read_result < 0 ? read_result : AVERROR(EIO);
}
packet_type= AV_RL16(mms->in_buffer+36);
if (read_result >= 44 && (hr = AV_RL32(mms->in_buffer + 40))) {
av_log(NULL, AV_LOG_ERROR,
"Server sent a message with packet type 0x%x and error status code 0x%08x\n", packet_type, hr);
return AVERROR(EINVAL);
}
} else {
int length_remaining;
int packet_id_type;
int tmp;
// note we cache the first 8 bytes,
// then fill up the buffer with the others
tmp = AV_RL16(mms->in_buffer + 6);
length_remaining = (tmp - 8) & 0xffff;
mmst->incoming_packet_seq = AV_RL32(mms->in_buffer);
packet_id_type = mms->in_buffer[4];
mmst->incoming_flags = mms->in_buffer[5];
if (length_remaining < 0
|| length_remaining > sizeof(mms->in_buffer) - 8) {
av_log(NULL, AV_LOG_ERROR,
"Data length %d is invalid or too large (max=%"SIZE_SPECIFIER")\n",
length_remaining, sizeof(mms->in_buffer));
return AVERROR_INVALIDDATA;
}
mms->remaining_in_len = length_remaining;
mms->read_in_ptr = mms->in_buffer;
read_result= ffurl_read_complete(mms->mms_hd, mms->in_buffer, length_remaining);
if(read_result != length_remaining) {
av_log(NULL, AV_LOG_ERROR,
"Failed to read packet data of size %d: %d (%s)\n",
length_remaining, read_result,
read_result < 0 ? strerror(AVUNERROR(read_result)) :
"The server closed the connection");
return read_result < 0 ? read_result : AVERROR(EIO);
}
// if we successfully read everything.
if(packet_id_type == mmst->header_packet_id) {
int err;
packet_type = SC_PKT_ASF_HEADER;
// Store the asf header
if(!mms->header_parsed) {
if ((err = av_reallocp(&mms->asf_header,
mms->asf_header_size +
mms->remaining_in_len)) < 0) {
mms->asf_header_size = 0;
return err;
}
memcpy(mms->asf_header + mms->asf_header_size,
mms->read_in_ptr, mms->remaining_in_len);
mms->asf_header_size += mms->remaining_in_len;
}
// 0x04 means asf header is sent in multiple packets.
if (mmst->incoming_flags == 0x04)
continue;
} else if(packet_id_type == mmst->packet_id) {
packet_type = SC_PKT_ASF_MEDIA;
} else {
av_log(NULL, AV_LOG_TRACE, "packet id type %d is old.", packet_id_type);
continue;
}
}
// preprocess some packet type
if(packet_type == SC_PKT_KEEPALIVE) {
send_keepalive_packet(mmst);
continue;
} else if(packet_type == SC_PKT_STREAM_CHANGING) {
handle_packet_stream_changing_type(mmst);
} else if(packet_type == SC_PKT_ASF_MEDIA) {
pad_media_packet(mms);
}
return packet_type;
}
}
static int mms_safe_send_recv(MMSTContext *mmst,
int (*send_fun)(MMSTContext *mmst),
const MMSSCPacketType expect_type)
{
MMSSCPacketType type;
if(send_fun) {
int ret = send_fun(mmst);
if (ret < 0) {
av_log(NULL, AV_LOG_TRACE, "Send Packet error before expecting recv packet %d\n", expect_type);
return ret;
}
}
if ((type = get_tcp_server_response(mmst)) != expect_type) {
av_log(NULL, AV_LOG_ERROR,
"Corrupt stream (unexpected packet type 0x%x, expected 0x%x)\n",
type, expect_type);
return AVERROR_INVALIDDATA;
} else {
return 0;
}
}
static int send_media_header_request(MMSTContext *mmst)
{
MMSContext *mms = &mmst->mms;
start_command_packet(mmst, CS_PKT_MEDIA_HEADER_REQUEST);
insert_command_prefixes(mms, 1, 0);
bytestream_put_le32(&mms->write_out_ptr, 0);
bytestream_put_le32(&mms->write_out_ptr, 0x00800000);
bytestream_put_le32(&mms->write_out_ptr, 0xffffffff);
bytestream_put_le32(&mms->write_out_ptr, 0);
bytestream_put_le32(&mms->write_out_ptr, 0);
bytestream_put_le32(&mms->write_out_ptr, 0);
// the media preroll value in milliseconds?
bytestream_put_le32(&mms->write_out_ptr, 0);
bytestream_put_le32(&mms->write_out_ptr, 0x40AC2000);
bytestream_put_le32(&mms->write_out_ptr, 2);
bytestream_put_le32(&mms->write_out_ptr, 0);
return send_command_packet(mmst);
}
/** Send the initial handshake. */
static int send_startup_packet(MMSTContext *mmst)
{
char data_string[256];
int ret;
MMSContext *mms = &mmst->mms;
// SubscriberName is defined in MS specification linked below.
// The guid value can be any valid value.
// path_to_url
// download/9/5/E/95EF66AF-9026-4BB0-A41D-A4F81802D92C/%5BMS-WMSP%5D.pdf
snprintf(data_string, sizeof(data_string),
"NSPlayer/7.0.0.1956; {%s}; Host: %s",
"7E667F5D-A661-495E-A512-F55686DDA178", mmst->host);
start_command_packet(mmst, CS_PKT_INITIAL);
insert_command_prefixes(mms, 0, 0x0004000b);
bytestream_put_le32(&mms->write_out_ptr, 0x0003001c);
if ((ret = mms_put_utf16(mms, data_string)) < 0)
return ret;
return send_command_packet(mmst);
}
/** Send MMST stream selection command based on the AVStream->discard values. */
static int send_stream_selection_request(MMSTContext *mmst)
{
int i;
MMSContext *mms = &mmst->mms;
// send the streams we want back...
start_command_packet(mmst, CS_PKT_STREAM_ID_REQUEST);
bytestream_put_le32(&mms->write_out_ptr, mms->stream_num); // stream nums
for(i= 0; i<mms->stream_num; i++) {
bytestream_put_le16(&mms->write_out_ptr, 0xffff); // flags
bytestream_put_le16(&mms->write_out_ptr, mms->streams[i].id); // stream id
bytestream_put_le16(&mms->write_out_ptr, 0); // selection
}
return send_command_packet(mmst);
}
static int send_close_packet(MMSTContext *mmst)
{
start_command_packet(mmst, CS_PKT_STREAM_CLOSE);
insert_command_prefixes(&mmst->mms, 1, 1);
return send_command_packet(mmst);
}
/** Close the MMSH/MMST connection */
static int mms_close(URLContext *h)
{
MMSTContext *mmst = (MMSTContext *)h->priv_data;
MMSContext *mms = &mmst->mms;
if(mms->mms_hd) {
send_close_packet(mmst);
ffurl_close(mms->mms_hd);
}
/* free all separately allocated pointers in mms */
av_freep(&mms->streams);
av_freep(&mms->asf_header);
return 0;
}
static int send_media_packet_request(MMSTContext *mmst)
{
MMSContext *mms = &mmst->mms;
start_command_packet(mmst, CS_PKT_START_FROM_PKT_ID);
insert_command_prefixes(mms, 1, 0x0001FFFF);
bytestream_put_le64(&mms->write_out_ptr, 0); // seek timestamp
bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // unknown
bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // packet offset
bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
bytestream_put_byte(&mms->write_out_ptr, 0x00); // stream time limit flag
mmst->packet_id++; // new packet_id
bytestream_put_le32(&mms->write_out_ptr, mmst->packet_id);
return send_command_packet(mmst);
}
static void clear_stream_buffers(MMSContext *mms)
{
mms->remaining_in_len = 0;
mms->read_in_ptr = mms->in_buffer;
}
static int mms_open(URLContext *h, const char *uri, int flags)
{
MMSTContext *mmst = h->priv_data;
MMSContext *mms;
int port, err;
char tcpname[256];
h->is_streamed = 1;
mms = &mmst->mms;
// only for MMS over TCP, so set proto = NULL
av_url_split(NULL, 0, NULL, 0,
mmst->host, sizeof(mmst->host), &port, mmst->path,
sizeof(mmst->path), uri);
if(port<0)
port = 1755; // defaut mms protocol port
// establish tcp connection.
ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, mmst->host, port, NULL);
err = ffurl_open(&mms->mms_hd, tcpname, AVIO_FLAG_READ_WRITE,
&h->interrupt_callback, NULL);
if (err)
goto fail;
mmst->packet_id = 3; // default, initial value.
mmst->header_packet_id = 2; // default, initial value.
err = mms_safe_send_recv(mmst, send_startup_packet, SC_PKT_CLIENT_ACCEPTED);
if (err)
goto fail;
err = mms_safe_send_recv(mmst, send_time_test_data, SC_PKT_TIMING_TEST_REPLY);
if (err)
goto fail;
err = mms_safe_send_recv(mmst, send_protocol_select, SC_PKT_PROTOCOL_ACCEPTED);
if (err)
goto fail;
err = mms_safe_send_recv(mmst, send_media_file_request, SC_PKT_MEDIA_FILE_DETAILS);
if (err)
goto fail;
err = mms_safe_send_recv(mmst, send_media_header_request, SC_PKT_HEADER_REQUEST_ACCEPTED);
if (err)
goto fail;
err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_HEADER);
if (err)
goto fail;
if((mmst->incoming_flags != 0X08) && (mmst->incoming_flags != 0X0C)) {
av_log(NULL, AV_LOG_ERROR,
"The server does not support MMST (try MMSH or RTSP)\n");
err = AVERROR(EINVAL);
goto fail;
}
err = ff_mms_asf_header_parser(mms);
if (err) {
av_log(NULL, AV_LOG_TRACE, "asf header parsed failed!\n");
goto fail;
}
mms->header_parsed = 1;
if (!mms->asf_packet_len || !mms->stream_num)
goto fail;
clear_stream_buffers(mms);
err = mms_safe_send_recv(mmst, send_stream_selection_request, SC_PKT_STREAM_ID_ACCEPTED);
if (err)
goto fail;
// send media packet request
err = mms_safe_send_recv(mmst, send_media_packet_request, SC_PKT_MEDIA_PKT_FOLLOWS);
if (err) {
goto fail;
}
av_log(NULL, AV_LOG_TRACE, "Leaving open (success)\n");
return 0;
fail:
mms_close(h);
av_log(NULL, AV_LOG_TRACE, "Leaving open (failure: %d)\n", err);
return err;
}
/** Read ASF data through the protocol. */
static int mms_read(URLContext *h, uint8_t *buf, int size)
{
/* TODO: see tcp.c:tcp_read() about a possible timeout scheme */
MMSTContext *mmst = h->priv_data;
MMSContext *mms = &mmst->mms;
int result = 0;
do {
if(mms->asf_header_read_size < mms->asf_header_size) {
/* Read from ASF header buffer */
result = ff_mms_read_header(mms, buf, size);
} else if(mms->remaining_in_len) {
/* Read remaining packet data to buffer.
* the result can not be zero because remaining_in_len is positive.*/
result = ff_mms_read_data(mms, buf, size);
} else {
/* Read from network */
int err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_MEDIA);
if (err == 0) {
if(mms->remaining_in_len>mms->asf_packet_len) {
av_log(NULL, AV_LOG_ERROR,
"Incoming pktlen %d is larger than ASF pktsize %d\n",
mms->remaining_in_len, mms->asf_packet_len);
result= AVERROR(EIO);
} else {
// copy the data to the packet buffer.
result = ff_mms_read_data(mms, buf, size);
if (result == 0) {
av_log(NULL, AV_LOG_TRACE, "Read ASF media packet size is zero!\n");
break;
}
}
} else {
av_log(NULL, AV_LOG_TRACE, "read packet error!\n");
break;
}
}
} while(!result); // only return one packet.
return result;
}
URLProtocol ff_mmst_protocol = {
.name = "mmst",
.url_open = mms_open,
.url_read = mms_read,
.url_close = mms_close,
.priv_data_size = sizeof(MMSTContext),
.flags = URL_PROTOCOL_FLAG_NETWORK,
};
```
|
```html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "path_to_url">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct template impl</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../nary_expr.html#id-1.3.33.5.41.69.4" title="Description">
<link rel="prev" href="../nary_expr.html" title="Struct template nary_expr">
<link rel="next" href="../is_expr.html" title="Struct template is_expr">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
<td align="center"><a href="../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="path_to_url">People</a></td>
<td align="center"><a href="path_to_url">FAQ</a></td>
<td align="center"><a href="../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../nary_expr.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../nary_expr.html#id-1.3.33.5.41.69.4"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../is_expr.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.proto.nary_expr.impl"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct template impl</span></h2>
<p>boost::proto::nary_expr::impl</p>
</div>
<h2 xmlns:rev="path_to_url~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="path_to_url~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../../proto/reference.html#header.boost.proto.traits_hpp" title="Header <boost/proto/traits.hpp>">boost/proto/traits.hpp</a>>
</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> <a class="link" href="../../../Expr.html" title="Concept Expr">Expr</a><span class="special">,</span> <span class="keyword">typename</span> State<span class="special">,</span> <span class="keyword">typename</span> Data<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="impl.html" title="Struct template impl">impl</a> <span class="special">:</span>
<span class="keyword"></span> <a class="link" href="../pass_through.html" title="Struct template pass_through">proto::pass_through</a><nary_expr>::template impl<Expr, State, Data>
<span class="special">{</span>
<span class="special">}</span><span class="special">;</span></pre></div>
</div>
<table xmlns:rev="path_to_url~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
file LICENSE_1_0.txt or copy at <a href="path_to_url" target="_top">path_to_url
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../nary_expr.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../nary_expr.html#id-1.3.33.5.41.69.4"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../is_expr.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
```
|
MidCoast Regional Airport at Wright Army Airfield is a joint public and military use airport at Fort Stewart, a United States Army post located near the city of Hinesville in Liberty County, Georgia, United States. The airport's physical address is 1116 E. Lowe Circle, Fort Stewart, GA 31314 and its mailing address is P.O. Box 10, Hinesville, GA 31310.
Wright Army Airfield became a joint-use facility in November 2007. The name MidCoast refers to its location on the Georgia coast between Savannah/Hilton Head International Airport and Brunswick Golden Isles Airport. The airport is managed by a Joint Management Board (JMB) consisting of the City of Hinesville, Liberty County Board of Commissioners and Liberty County Development Authority and the U.S. Army. The JMB contracted with ABS Aviation Management Services to manage and operate the new facilities and the fixed-base operator (FBO) for civilian operations.
Although most U.S. airports use the same three-letter location identifier for the FAA and IATA, this airport is assigned LHW by the FAA and LIY by the IATA (which assigns LHW to Lanzhou Zhongchuan International Airport, Gansu, China).
History
In early 1942, construction began on an airfield at Camp Stewart. Camp Stewart Army Airfield was also known as Liberty Airfield for its Georgia county location. The facility was quite small with two 5,000-ft. runways, approximately a dozen and a half hardstands, and barracks for 50 officers and 300 men.
On 1 January 1943, the Air Technical Service Command 4th Tow Target Detachment moved to the newly completed airfield from Atlanta Army Airfield with a mission of towing aerial targets for anti-aircraft artillery training, with the airfield becoming a sub-base of Atlanta, with the 142d Army Air Force Base Unit being the host unit.. The Detachment's aircraft consisted of a mixture of aircraft, consisting of the Douglas A-20 Havoc, Beech C-43 Staggerwing, Taylorcraft L-2 Grasshopper, Beech AT-7, Douglas A-24 Dauntless, Curtiss A-25 Helldiver, and the B-34 Lexington. In October, 15 Women Army Service Pilots (WASP) began a 90-day course in the operation of radio controlled targets while piloting A-24 and A-25 aircraft.
The peak utilization of Stewart AAF took place in the spring of 1944, during the buildup for the invasion of Europe when over 55,000 men were present. In addition to anti-aircraft artillery training, Stewart AAF also trained cooks and bakers as well as postal units. The camp also had a POW compound for Germans and Italians captured in North Africa. The POWs were put to work on the camp's construction projects and local farms. By the spring of 1945, the camp was virtually empty except for the POW compound. On March 25, 1945, the airfield deactivated and the Detachment transferred to Chatham AAF.
Following the end of the war, the Army used Camp Stewart as a separation center for a short period of time before deactivating it on 30 September 1945.
In the postwar years, the Army utilized the camp during the summer for the training of National Guard units. Camp Stewart re-opened during the Korean War for training of the 3rd Army's anti-aircraft artillery units. In 1953, the training of armor units was added. In 1959, the Army made the post a permanent United States Army facility, designated it as an Armor and Artillery Training Center, renaming it Fort Stewart. Camp Stewart Army Airfield was renamed Wright Army Airfield and used as a military airport within the Fort Stewart facility.
During the Vietnam War, the airfield trained initial entry Army Fixed Wing Aviators and helicopter pilots. When the Air Force closed Hunter AFB in 1967, the Army took it over as a sub-base of Fort Stewart and established a Flight Training Center. Fort Stewart became the Army's focal point in Aviation Training and between 1967-1970, the need for aviation increased. In early 1968, construction was complete for a new 110' control tower at Wright Army Airfield. Opening of the new control tower was delayed due to injuries sustained by construction workers while it was being built. A single fatality (Richard "Old Red" Frank) is also on record, due to a fall from the top of the tower. Construction was temporarily paused until improved measures could be put in place to ensure the safety of the men working. In 1970, Hunter AFB was re-designated Hunter Army Airfield and was used in-conjunction with Wright Army Airfield. With the end of the Vietnam War Fort Stewart became idle once again. That ended with the reactivation of the 24th Infantry Division at Stewart in 1974. In 1996, the 3rd Infantry Division activated and remains at Fort Stewart today, with Wright Army Airfield being an operational part of the facility.
Facilities and aircraft
The airport covers an area of at an elevation of 45 feet (14 m) above mean sea level. It has four asphalt paved runways: 6L/24R is 6,500 by 100 feet (1,527 x 30 m); 6R/24L is 2,605 by 100 feet (794 x 30 m); 15L/33R is 5,000 by 150 feet (1,524 x 46 m); 15R/33L is 2,518 by 100 feet (767 x 30 m) with an asphalt surface.
A new terminal building contains a civilian fixed-base operation (FBO) terminal and a military operations building which is leased to the Army Corps of Engineers. The airport has 12 T-hangars, 5 box hangars, and a bulk hangar with a door. The civilian general aviation part of the development also includes a large ramp, with both self-fueling, and Full-Service trucks for 100LL and Jet-A fuels, and aircraft wash facilities.
Over a 12-month period the airport had 5,600 aircraft operations, an average of 15 per day: 89% general aviation and 11% military. At that time there were 15 aircraft based at this airport: 86.7% single-engine, 6.7% multi-engine and 6.7% helicopter.
See also
Georgia World War II Army Airfields
Air Technical Service Command
References
External links
Airports in Georgia (U.S. state)
Airfields of the United States Army Air Forces in Georgia (U.S. state)
Buildings and structures in Liberty County, Georgia
Transportation in Liberty County, Georgia
|
```c++
/// Source : path_to_url
/// Author : liuyubobobo
/// Time : 2018-09-14
/// Updated: 2022-02-22
#include <iostream>
#include <vector>
#include <unordered_map>
using namespace std;
/// Definition for undirected graph.
class Node {
public:
int val;
vector<Node*> neighbors;
Node() {
val = 0;
neighbors = vector<Node*>();
}
Node(int _val) {
val = _val;
neighbors = vector<Node*>();
}
Node(int _val, vector<Node*> _neighbors) {
val = _val;
neighbors = _neighbors;
}
};
/// DFS
/// Time Complexity: O(V+E)
/// Space Complexity: O(V)
class Solution {
public:
Node *cloneGraph(Node *node) {
if(node == NULL)
return NULL;
unordered_map<Node*, Node*> nodeMap;
return dfs(node, nodeMap);
}
private:
Node *dfs(Node *node, unordered_map<Node*, Node*>& nodeMap){
if(nodeMap.count(node))
return nodeMap[node];
nodeMap[node] = new Node(node->val);
for(Node* next: node->neighbors)
nodeMap[node]->neighbors.push_back(dfs(next, nodeMap));
return nodeMap[node];
}
};
int main() {
return 0;
}
```
|
Silver Moon may refer to:
Silver Moon (album), a 2012 album by Donkeyboy
"Silver Moon" (Michael Nesmith song), 1970
"Silver Moon" (David Sylvian song), 1986
Silver Moon Bookshop, a defunct feminist bookshop in London
Silver Moon (ship), a cruise ship operated by Silversea Cruises
Silvermoon Drive-in, a drive-in theatre in Lakeland, Florida
Silvermoon, a community in Thames Centre, Ontario, Canada
See also
Silver moony, a tropical fish
|
The Portuguese Motorcycling Federation (FMP) (Portuguese: Federação de Motociclismo de Portugal; FMP) is the governing body of Motorcycling in Portugal.
It is based in the capital city of Lisbon.
It organises the Portuguese racing championships, which interests are: Enduro, Cross Country, Quad Cross, Motocross, Supercross, Offroad, SuperMoto, Stunt Riding, Trial and Road racing.
Besides racing, it covers several non-competitive activities like managing affiliated Clubs rallies calendar and events such as Portugal de Lés a Lés.
National members of the FIM
Motorcyclists organizations
Motorcycle racing
Motorcycling in Portugal
|
Akysis bilustris is a species of catfish belonging to the family Akysidae (the stream catfishes), known only from two geographically proximate localities in the Xe Kong drainage, a major subdrainage of the Mekong River, in Laos and Cambodia. This species grows to a length of SL.
Habitat and ecology
A. bilustris occurs in streams and rivers, on sandy to muddy substrates with submerged vegetation and/or debris.
Relationship to humans
A. bilustris is a component of local subsistence fisheries.
References
Further reading
External links
Akysidae
Catfish of Asia
Fish of Laos
Fish of Cambodia
Fish described in 2011
|
```javascript
/**
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
'use strict';
// MODULES //
var resolve = require( 'path' ).resolve;
var bench = require( '@stdlib/bench' );
var randu = require( '@stdlib/random/base/randu' );
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
var pow = require( '@stdlib/math/base/special/pow' );
var floor = require( '@stdlib/math/base/special/floor' );
var Float32Array = require( '@stdlib/array/float32' );
var scopy = require( '@stdlib/blas/base/scopy' );
var tryRequire = require( '@stdlib/utils/try-require' );
var pkg = require( './../package.json' ).name;
// VARIABLES //
var ssorthp = tryRequire( resolve( __dirname, './../lib/ssorthp.native.js' ) );
var opts = {
'skip': ( ssorthp instanceof Error )
};
// FUNCTIONS //
/**
* Create a benchmark function.
*
* @private
* @param {PositiveInteger} iter - number of iterations
* @param {PositiveInteger} len - array length
* @returns {Function} benchmark function
*/
function createBenchmark( iter, len ) {
var tmp;
var x;
var i;
var j;
x = [];
for ( i = 0; i < iter; i++ ) {
tmp = new Float32Array( len );
for ( j = 0; j < len; j++ ) {
tmp[ j ] = (randu()*20.0) - 10.0;
}
x.push( tmp );
}
return benchmark;
function benchmark( b ) {
var xc;
var y;
var i;
xc = x.slice();
for ( i = 0; i < iter; i++ ) {
xc[ i ] = scopy( len, x[ i ], 1, new Float32Array( len ), 1 );
}
b.tic();
for ( i = 0; i < b.iterations; i++ ) {
y = ssorthp( len, 1, xc[ i ], 1 );
if ( isnanf( y[ i%len ] ) ) {
b.fail( 'should not return NaN' );
}
}
b.toc();
if ( isnanf( y[ i%len ] ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
}
}
// MAIN //
function main() {
var bopts;
var iter;
var len;
var min;
var max;
var f;
var i;
iter = 1e6;
min = 1; // 10^min
max = 4; // 10^max
for ( i = min; i <= max; i++ ) {
len = pow( 10, i );
f = createBenchmark( iter, len );
bopts = {
'skip': opts.skip,
'iterations': iter
};
bench( pkg+'::native,unsorted,random:len='+len, bopts, f );
iter = floor( pow( iter, 3.0/4.0 ) );
}
}
main();
```
|
Fizzy Blood are a British alternative rock band from Leeds, England, formed in 2014. The group consists of Benji Inkley, Paul Howells, Jake Greenway, Ciaran Scanlon and Tim Malkin.
History
Fizzy Blood have released two Extended plays: Feast (2015) via DMF Records and Summer Of Luv (2017) via Killing Moon/Alya Records.
The band has played at major music festivals such as Reading and Leeds Festivals, Download Festival, South by Southwest, as well as touring with bands such as Dead Kennedys, While She Sleeps and Dinosaur Pile-Up. Fizzy Blood supported Spring King in February 2018 in the United Kingdom.
In 2017, they were featured as band of the day in Metro. They have also been awarded new band of the week at Team Rock, and were a recipient of the Momentum Music Fund grant from PRS for Music.
Discography
EPs
Members
Benji Inkley - lead vocals, guitar
Paul Howells - guitar, vocals, keys
Tim Malkin - keys, guitar, vocals
Ciaran Scanlon - bass guitar
Jake Greenway - drums
References
Musical groups established in 2014
Alternative rock groups from Leeds
2014 establishments in England
|
```glsl
Shader "Hidden/Post FX/Uber Shader"
{
Properties
{
_MainTex ("Texture", 2D) = "white" {}
_AutoExposure ("", 2D) = "" {}
_BloomTex ("", 2D) = "" {}
}
SubShader
{
Cull Off ZWrite Off ZTest Always
Pass
{
CGPROGRAM
#pragma vertex SetVertexShader
#pragma fragment SetPixelShader
#pragma target 3.0
#pragma multi_compile __ UNITY_COLORSPACE_GAMMA
#pragma multi_compile __ BLOOM BLOOM_LENS_DIRT
sampler2D _AutoExposure;
sampler2D _BloomTex;
float4 _BloomTex_TexelSize;
half2 _Bloom_Settings; // x: sampleScale, y: bloom.intensity
float4 _MainTex_ST;
float4 _MainTex_TexelSize;
sampler2D _MainTex;
half3 UpsampleFilter(sampler2D tex, float2 uv, float2 texelSize, float sampleScale)
{
float4 d = texelSize.xyxy * float4(1.0, 1.0, -1.0, 0.0) * sampleScale;
half3 s;
s = tex2D(tex, uv - d.xy).rgb;
s += tex2D(tex, uv - d.wy).rgb * 2.0;
s += tex2D(tex, uv - d.zy).rgb;
s += tex2D(tex, uv + d.zw).rgb * 2.0;
s += tex2D(tex, uv).rgb * 4.0;
s += tex2D(tex, uv + d.xw).rgb * 2.0;
s += tex2D(tex, uv + d.zy).rgb;
s += tex2D(tex, uv + d.wy).rgb * 2.0;
s += tex2D(tex, uv + d.xy).rgb;
return s * (1.0 / 16.0);
}
void SetVertexShader(inout float4 vertex : POSITION, inout float2 texcoord : TEXCOORD0)
{
vertex = UnityObjectToClipPos(vertex);
}
half4 SetPixelShader(in float4 vertex : POSITION, in float2 texcoord : TEXCOORD0) : SV_Target
{
float2 uv = texcoord;
half autoExposure = tex2D(_AutoExposure, uv).r;
half3 color = (0.0).xxx;
color = tex2D(_MainTex, texcoord).rgb;
color *= autoExposure;
#if UNITY_COLORSPACE_GAMMA //GammaToLinearSpace
{
color = color * (color * (color * 0.305306011h + 0.682171111h) + 0.012522878h);
}
#endif
half3 bloom = UpsampleFilter(_BloomTex, texcoord, _BloomTex_TexelSize.xy, _Bloom_Settings.x) * _Bloom_Settings.y;
color += bloom;
color = saturate(color);
#if UNITY_COLORSPACE_GAMMA //LinearToGammaSpace
{
color = max(color, half3(0.h, 0.h, 0.h));
color = max(1.055h * pow(color, 0.416666667h) - 0.055h, 0.h);
}
#endif
return half4(color, 1.0);
}
ENDCG
}
}
}
```
|
```c
/*
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom
the Software is furnished to do so, subject to the following conditions:
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 AUTHORS OR COPYRIGHT HOLDERS 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.
*/
#include <pthread.h>
#include "assert.h"
#include "../libdill.h"
int main() {
int rc = msleep(now());
errno_assert(rc == 0);
/* Check whether terminating main thread using pthread_exit works. */
pthread_exit(NULL);
return 0;
}
```
|
Anthony "Tony" Cetinski (born 31 May 1969) is a Croatian pop singer. Today, he is one of the most popular male singers in Croatia and countries of former Yugoslavia.
Biography
Born into a family of musicians in Pula (then SR Croatia, SFR Yugoslavia), Cetinski began singing when he was 15 years old with various local groups. He moved from Rovinj to Zagreb in 1991 to start his career, and quickly became one of Croatia's leading pop stars. In 1994, he represented Croatia at the Eurovision Song Contest with the song "Nek' ti bude ljubav sva".
At the 10th Croatian Radio Festival in 2006, Cetinski won all three prizes in pop-rock category: HRF Grand Prix – pop-rock, Listener's award and Music Editors award. He also recorded the song "Lagala nas mala" as a duet with Macedonian singer Toše Proeski. This song appears on both of Proeski's 2005 albums, Po tebe and its Croatian edition Pratim te. The song was also remixed by DeeJay Time.
In 2009, Cetinski won the Porin award for best male vocal performance with his song "Ako to se zove ljubav". Cetinski sold out two concerts in Arena Zagreb the same year with more than 30,000 people attending.
In December 2020, Cetinski was announced as one of the 14 finalists for Dora 2021, the national contest in Croatia to select the country's Eurovision Song Contest 2021 entry. He performed the song "Zapjevaj, sloboda je!" in a duet with its author Kristijan Rahimovski.
Personal life
Tony is married to Dubravka Dujak. He is a devout Roman Catholic.
Cetinski starred in the RTL Televizija TV show Mjenjačnica (Exchange Office) where he swapped his job with a stone carver from Donji Humac on the island of Brač for one day.
On 3 November 2017 in Rovinj, Cetinski drove over a 62-year-old man who was lying on the road in an alcoholic state, killing him. He was accused of causing a traffic accident through negligence, and pleaded not guilty. He was ultimately acquitted in September 2019.
In May 2020, amidst the COVID-19 pandemic in Croatia, Cetinski opposed to the COVID-19 vaccination, claiming that he would rather get detained into a Goli Otok prison for the unvaccinated, and spreading misinformation by relating the vaccination to microchipping. In September 2022, after USKOK arrested twelve Zagreber medical workers for falsifying vaccination certificates, Cetinski's name was one of those on the list of people who were issued false certificates. In July 2023, after Zagreb was hit by a powerful storm that killed two people, Cetinski alleged that the storm had been caused by HAARP.
Discography
Samo srce ne laže (1990)
Ljubomora I (1992)
Ljubomora II (1993)
Ljubav i bol (1995)
Prah i pepeo (1996)
A1 (1998)
Triptonyc (2000)
A sada... (2003)
Budi uz mene (2005)
Ako to se zove ljubav (2008)
Da Capo (2010)
Best of Tony Cetinski (2011)
Opet si pobijedila (2012)
Kao u snu (2018)
References
External links
1969 births
Living people
Eurovision Song Contest entrants for Croatia
21st-century Croatian male singers
Croatian pop singers
Eurovision Song Contest entrants of 1994
People from Pula
Hayat Production artists
20th-century Croatian male singers
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.